CRC and Rx Data Indication
[o-du/l2.git] / src / 5gnrrlc / mac_stub.c
index bd0e1df..1b621bf 100644 (file)
@@ -26,9 +26,9 @@ uint64_t ulDatNum = 0;
 PUBLIC S16 macStubBOStatus(Pst *pst, SpId spId, RlcMacBOStatus *boSta)
 {
   Pst rspPst;
-  RlcMacSchedRep *schRep;
+  RlcMacSchedRepInfo *schRep;
 
-  DU_LOG("\nMAC_STUB : Received BO status from RLC");
+  DU_LOG("\nMAC : Received BO status from RLC");
 
 //  SGetSBuf(pst->region, pst->pool, (Data **)&rspPst, sizeof(Pst));
 
@@ -42,7 +42,7 @@ PUBLIC S16 macStubBOStatus(Pst *pst, SpId spId, RlcMacBOStatus *boSta)
   rspPst.pool    = pst->pool;
 
   /* Filling Scheduling Report */
-  KW_SHRABL_STATIC_BUF_ALLOC(pst->region, pst->pool, schRep, sizeof(RlcMacSchedRep));
+  KW_SHRABL_STATIC_BUF_ALLOC(pst->region, pst->pool, schRep, sizeof(RlcMacSchedRepInfo));
    
   schRep->cellId = boSta->cellId;
   schRep->rnti   = boSta->rnti;
@@ -51,7 +51,7 @@ PUBLIC S16 macStubBOStatus(Pst *pst, SpId spId, RlcMacBOStatus *boSta)
   schRep->lchSta[0].lchStaInd.lcId = boSta->lcId;
   schRep->lchSta[0].lchStaInd.totBufSize = boSta->bo + 5; /* Extra buffer space including RLC and MAC Header size */
 
-  DU_LOG("\nMAC_STUB : Sending scheduling report to RLC");
+  DU_LOG("\nMAC : Sending scheduling report to RLC");
   
   RlcMacProcSchedRep(&rspPst, 1, schRep);