X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrrlc%2Fkw.x;h=b9ef809b0fe4ae09dcd4872e2c1da076fb08fe47;hb=7ebfb1f80967fe83bf169c2915cedf2c9fb5cbf7;hp=00c3797ecea263acdf6c00bda920cf755bd43794;hpb=28f46cc35608de7bddea133457cff5fb330fd86d;p=o-du%2Fl2.git diff --git a/src/5gnrrlc/kw.x b/src/5gnrrlc/kw.x index 00c3797ec..b9ef809b0 100755 --- a/src/5gnrrlc/kw.x +++ b/src/5gnrrlc/kw.x @@ -18,12 +18,12 @@ /********************************************************************20** - Name: LTE RLC file + Name: NR RLC file Type: C include file Desc: This file contains all the data structures and - prototypes for LTE RLC. + prototypes for RLC. File: kw.x @@ -58,7 +58,7 @@ typedef struct _amRlcStats uint32_t numDLMaxRetx; uint32_t numDLRetransPdus; uint32_t numULPdusDiscarded; - uint32_t numULReOrdTimerExpires; + uint32_t numULReAsmblTimerExpires; uint32_t numULStaPduRcvd; uint32_t numULNackInStaPduRcvd; uint32_t numRlcAmCellSduTx; /* Count of SDUs transmitted in DL for all UEs */ @@ -78,7 +78,7 @@ typedef struct _umRlcStats uint32_t numDLBytesUnused; uint32_t numDLMaxRetx; uint32_t numULPdusDiscarded; - uint32_t numULReOrdTimerExpires; + uint32_t numULReAsmblTimerExpires; uint32_t numULPdusOutsideWindow; }UMRLCStats; @@ -96,31 +96,23 @@ typedef struct rlcSduSnMap RlcSduSnMap; typedef RguLchMapInfo KwLchMapInfo; #endif /* LTE_L2_MEAS */ - /** @defgroup ummode UM Module Info */ /** * @brief Structure to hold an Unacknowledged Mode header * * @details - * - fi : Framing Info + * - si : Segmentation Info * - sn : Sequence number - * - numLi : Number of length indicators in the following array (li) - * - li : Length indicators + * - so : Segmentation offset */ typedef struct rlcUmHdr { -#ifdef NR_RLC_UL - uint8_t si; /*!< Segmentation Info */ - uint16_t so; /*!< Segment offset 5G NR */ -#endif - uint8_t fi; /*!< Framing Info */ + uint8_t si; /*!< Segmentation Info */ RlcSn sn; /*!< Sequence number */ - uint16_t numLi; /*!< Number of LIs */ - uint16_t li[RLC_MAX_UL_LI]; /*!< Array of LIs */ + uint16_t so; /*!< Segmentation offset */ }RlcUmHdr; - /** * @brief Structure to hold an Acknowledged Mode header *