Deleted the rlog folder
[o-du/l2.git] / src / 5gnrrlc / kw_uim.c
index c9e9e82..39eb209 100755 (executable)
@@ -18,7 +18,7 @@
 
 /********************************************************************20**
   
-     Name:    LTE-RLC Layer - Upper Interface Functions
+     Name:    NR RLC Layer - Upper Interface Functions
     
      Type:    C file
   
@@ -709,13 +709,13 @@ Reason   reason
  *    -# ROK 
  *    -# RFAILED
  */
-uint8_t rlcProcDlData(Pst *pst, KwuDatReqInfo *datReq, Buffer *mBuf)
+uint8_t rlcProcDlData(Pst *pst, RlcDatReqInfo *datReq, Buffer *mBuf)
 {
    uint8_t       ret = ROK;   /* Return Value */
    RlcDlRbCb     *rbCb;       /* RB Control Block */
    RlcCb         *tRlcCb;
 
-   DU_LOG("\nDEBUG  -->  RLC_UL : Received DL Data");
+   DU_LOG("\nDEBUG  -->  RLC_DL : Received DL Data");
 
 #if (ERRCLASS & ERRCLS_INT_PAR)
    if(pst->dstInst >= MAX_RLC_INSTANCES)
@@ -731,7 +731,7 @@ uint8_t rlcProcDlData(Pst *pst, KwuDatReqInfo *datReq, Buffer *mBuf)
    rlcDbmFetchDlRbCbByRbId(tRlcCb, &datReq->rlcId, &rbCb);
    if(!rbCb)
    {
-      DU_LOG("\nERROR  -->  RLC_UL : CellId[%u]:DL RbId [%d] not found",
+      DU_LOG("\nERROR  -->  RLC_DL : CellId[%u]:DL RbId [%d] not found",
             datReq->rlcId.cellId,datReq->rlcId.rbId);
       ODU_PUT_MSG_BUF(mBuf);
 
@@ -748,7 +748,7 @@ uint8_t rlcProcDlData(Pst *pst, KwuDatReqInfo *datReq, Buffer *mBuf)
          {
             /* kw002.201 Freeing from proper region */
             RLC_SHRABL_STATIC_BUF_FREE(pst->region, pst->pool, datReq, 
-                        sizeof(KwuDatReqInfo));
+                        sizeof(RlcDatReqInfo));
             ODU_PUT_MSG_BUF(mBuf);
              
             return RFAILED;
@@ -769,7 +769,7 @@ uint8_t rlcProcDlData(Pst *pst, KwuDatReqInfo *datReq, Buffer *mBuf)
       }
       default:
       {
-         DU_LOG("\nERROR  -->  RLC_UL : Invalid RB Mode");
+         DU_LOG("\nERROR  -->  RLC_DL : Invalid RB Mode");
          break;
       }
    }