X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrrlc%2Fkw_ul.x;h=7367ee83375f9529003644c3c3e69b02bd94c190;hb=3330932565e15a749fd5dd5039cdea2862ca51cc;hp=6be3ced7e6d45eeb19fbf16f7b32a6875904b8c8;hpb=def50dc175cebc67238db5f1acd5ff322a2279bd;p=o-du%2Fl2.git diff --git a/src/5gnrrlc/kw_ul.x b/src/5gnrrlc/kw_ul.x index 6be3ced7e..7367ee833 100755 --- a/src/5gnrrlc/kw_ul.x +++ b/src/5gnrrlc/kw_ul.x @@ -18,12 +18,12 @@ /********************************************************************20** - Name: LTE RLC file for uplink and non real time tasks + Name: NR RLC file for uplink and non real time tasks Type: C include file Desc: This file contains all the data structures and - prototypes for LTE RLC in the uplink. + prototypes for RLC in the uplink. File: kw_ul.x @@ -42,8 +42,26 @@ extern "C" { typedef struct rlcUlUeCb RlcUlUeCb; -/** @defgroup um_uplink UM Uplink Module +/** + * @brief Structure to hold a RLC UM PDU segment + * + * @details + * - lstEnt : This is required for the linked list in which the segments + * are stored + * - seg : Holds the segment data + * - segSz : The length of the segment in bytes + * - soEnd : SOEnd + * - umHdr : The UM Header for the PDU segment + * */ +typedef struct rlcUmSeg +{ + CmLList lstEnt; /*!< List entry for PDU segment */ + Buffer *seg; /*!< PDU segment */ + MsgLen segSz; /*!< Buffer Size */ + uint16_t soEnd; /*!< Segment Offset End */ + RlcUmHdr umHdr; /*!