X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Fmac_msg_hdl.c;h=a1e4c20e534aaf3d80c016839313c8db375dfd61;hb=0fccb83e55b237d60cf451bab71a0c7242cc6e66;hp=92eb13a9ffb6ee3dce455c155891c7833093ad3f;hpb=6d3c64bdc3314b00244e259c4f5d5bd336d789db;p=o-du%2Fl2.git diff --git a/src/5gnrmac/mac_msg_hdl.c b/src/5gnrmac/mac_msg_hdl.c index 92eb13a9f..a1e4c20e5 100644 --- a/src/5gnrmac/mac_msg_hdl.c +++ b/src/5gnrmac/mac_msg_hdl.c @@ -128,7 +128,7 @@ uint16_t MacHdlCellStartReq(Pst *pst, MacCellStartInfo *cellStartInfo) DU_LOG("\nMAC : Handling cell start request"); sendToLowerMac(START_REQUEST, 0, cellStartInfo); - MAC_FREE_MEM(pst->region, pst->pool, cellStartInfo, \ + MAC_FREE_SHRABL_BUF(pst->region, pst->pool, cellStartInfo, \ sizeof(MacCellStartInfo)); return ROK; @@ -153,10 +153,12 @@ uint16_t MacHdlCellStartReq(Pst *pst, MacCellStartInfo *cellStartInfo) * ****************************************************************/ uint16_t MacHdlCellStopReq(Pst *pst, MacCellStopInfo *cellStopInfo) { - DU_LOG("\nMAC : Handling cell stop request"); - sendToLowerMac(STOP_REQUEST, 0, cellStopInfo); + #ifdef FAPI + DU_LOG("\nMAC : Sending cell stop request to Lower Mac"); + sendToLowerMac(FAPI_STOP_REQUEST, 0, cellStopInfo); + #endif - MAC_FREE_MEM(pst->region, pst->pool, cellStopInfo, \ + MAC_FREE_SHRABL_BUF(pst->region, pst->pool, cellStopInfo, \ sizeof(MacCellStopInfo)); return ROK;