X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Fmac_demux.c;h=1ef7f01e35aa0aa68a8464f298c89a4fe538b138;hb=d0d5d7b78e2a24af16003322cfd1c78bcd8d7664;hp=7dbf665b6df9bf2ae104f9f3f34268f357dbb274;hpb=ba2574ac618b40905509604da8d3a2b1b9e39664;p=o-du%2Fl2.git diff --git a/src/5gnrmac/mac_demux.c b/src/5gnrmac/mac_demux.c index 7dbf665b6..1ef7f01e3 100644 --- a/src/5gnrmac/mac_demux.c +++ b/src/5gnrmac/mac_demux.c @@ -85,7 +85,7 @@ uint8_t unpackRxData(uint16_t cellId, SlotIndInfo slotInfo, RxDataIndPdu *rxData MAC_ALLOC_SHRABL_BUF(pdu, length); if(!pdu) { - DU_LOG("\nMAC : UL CCCH PDU memory allocation failed"); + DU_LOG("\nERROR --> MAC : UL CCCH PDU memory allocation failed"); return RFAILED; } idx++; @@ -103,7 +103,7 @@ uint8_t unpackRxData(uint16_t cellId, SlotIndInfo slotInfo, RxDataIndPdu *rxData case MAC_LCID_MIN ... MAC_LCID_MAX : { - DU_LOG("\nMAC : PDU received for LC ID %d", lcId); + DU_LOG("\nINFO --> MAC : PDU received for LC ID %d", lcId); pduLen--; idx++; @@ -119,7 +119,7 @@ uint8_t unpackRxData(uint16_t cellId, SlotIndInfo slotInfo, RxDataIndPdu *rxData MAC_ALLOC_SHRABL_BUF(pdu, length); if(!pdu) { - DU_LOG("\nMAC : Memory allocation failed while demuxing Rx Data PDU"); + DU_LOG("\nERROR --> MAC : Memory allocation failed while demuxing Rx Data PDU"); return RFAILED; } pduLen--; @@ -205,7 +205,7 @@ uint8_t unpackRxData(uint16_t cellId, SlotIndInfo slotInfo, RxDataIndPdu *rxData default: { - DU_LOG("\nMAC : Invalid LC Id %d", lcId); + DU_LOG("\nERROR --> MAC : Invalid LC Id %d", lcId); return RFAILED; } } /* End of switch */