X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrrlc%2Fmac_stub.c;h=1b621bf020f5e4dc49c5debcd952f55ceef6a82c;hb=a46f210198423478d5884486e9610eb9067d46e6;hp=bd0e1dfa8ea97aaf241551eccec48077d2aa9964;hpb=be7e4e372cc1d6f12f7af9c6b6d09a7ecedca58c;p=o-du%2Fl2.git diff --git a/src/5gnrrlc/mac_stub.c b/src/5gnrrlc/mac_stub.c index bd0e1dfa8..1b621bf02 100644 --- a/src/5gnrrlc/mac_stub.c +++ b/src/5gnrrlc/mac_stub.c @@ -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);