X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Frg_utl.c;h=c5e4025c63c7a96d7b7f86957f5b9439f2e16d1d;hb=ef21e69ff09d53e6db07ec4f5b75bf644f40c5e6;hp=2e2e3796444d5924c231ad4b810b31a81ca84a41;hpb=def50dc175cebc67238db5f1acd5ff322a2279bd;p=o-du%2Fl2.git diff --git a/src/5gnrmac/rg_utl.c b/src/5gnrmac/rg_utl.c index 2e2e37964..c5e4025c6 100755 --- a/src/5gnrmac/rg_utl.c +++ b/src/5gnrmac/rg_utl.c @@ -32,9 +32,6 @@ @brief This file implements utility functions for LTE MAC */ -static const char* RLOG_MODULE_NAME="MAC"; -static int RLOG_MODULE_ID=4096; -static int RLOG_FILE_ID=179; /* header include files (.h) */ #include "common_def.h" @@ -70,13 +67,13 @@ static int RLOG_FILE_ID=179; /* local externs */ /* forward references */ -PRIVATE S16 rgUtlHndlCrntiChng ARGS(( +static S16 rgUtlHndlCrntiChng ARGS(( Inst inst, RgCellCb *cell, CmLteRnti rnti, CmLteRnti newRnti )); -PRIVATE Void rgUtlHndlCrntiRls ARGS(( +static Void rgUtlHndlCrntiRls ARGS(( RgCellCb *cell, RgInfRlsRnti *rlsRnti )); @@ -87,7 +84,7 @@ S16 rgDelUeFrmAllSCell ARGS(( )); #ifdef LTE_ADV -PRIVATE S16 rgUtlSndCrntiChngReq2AllSMacs ARGS(( +static S16 rgUtlSndCrntiChngReq2AllSMacs ARGS(( RgCellCb *cell, CmLteRnti rnti, CmLteRnti newRnti @@ -112,19 +109,12 @@ PRIVATE S16 rgUtlSndCrntiChngReq2AllSMacs ARGS(( * File : rg_utl.c * **********************************************************/ -#ifdef ANSI S16 rgAllocShrablSBuf ( Inst inst, Data **pData, /* Pointer of the data to be returned */ Size size /* size */ ) -#else -S16 rgAllocShrablSBuf(inst,pData, size) -Inst inst; -Data **pData; /* Pointer of the data to be returned */ -Size size; /* size */ -#endif { RgUstaDgn dgn; /* Alarm diagnostics structure */ @@ -145,16 +135,16 @@ Size size; /* size */ /* Send an alarm to Layer Manager */ rgLMMStaInd(inst,LCM_CATEGORY_RESOURCE, LCM_EVENT_SMEM_ALLOC_FAIL, LCM_CAUSE_MEM_ALLOC_FAIL, &dgn); - RGLOGERROR(inst,ERRCLS_DEBUG, ERG028, 0, "Unable to Allocate Buffer"); + DU_LOG("\nERROR --> MAC : Unable to Allocate Buffer"); return RFAILED; } #ifndef ALIGN_64BIT - RGDBGINFO(inst,(rgPBuf(inst), "SGetSBuf(Region (%d), Pool (%d), Size (%ld)), Data (0x%p))\n", - rgCb[inst].rgInit.region, rgCb[inst].rgInit.pool, size, *pData)); + DU_LOG("\nDEBUG --> MAC : SGetSBuf(Region (%d), Pool (%d), Size (%ld)), Data (0x%p))\n", + rgCb[inst].rgInit.region, rgCb[inst].rgInit.pool, size, *pData); #else - RGDBGINFO(inst,(rgPBuf(inst), "SGetSBuf(Region (%d), Pool (%d), Size (%d)), Data (0x%p))\n", - rgCb[inst].rgInit.region, rgCb[inst].rgInit.pool, size, *pData)); + DU_LOG("\nDEBUG --> MAC : SGetSBuf(Region (%d), Pool (%d), Size (%d)), Data (0x%p))\n", + rgCb[inst].rgInit.region, rgCb[inst].rgInit.pool, size, *pData); #endif /* zero out the allocated memory */ @@ -182,19 +172,12 @@ Size size; /* size */ * File : rg_utl.c * **********************************************************/ -#ifdef ANSI S16 rgAllocSBuf ( Inst inst, Data **pData, /* Pointer of the data to be returned */ Size size /* size */ ) -#else -S16 rgAllocSBuf(inst,pData, size) -Inst inst; -Data **pData; /* Pointer of the data to be returned */ -Size size; /* size */ -#endif { RgUstaDgn dgn; /* Alarm diagnostics structure */ @@ -218,7 +201,7 @@ Size size; /* size */ /* Send an alarm to Layer Manager */ rgLMMStaInd(inst,LCM_CATEGORY_RESOURCE, LCM_EVENT_SMEM_ALLOC_FAIL, LCM_CAUSE_MEM_ALLOC_FAIL, &dgn); - RGLOGERROR(inst,ERRCLS_DEBUG, ERG028, 0, "Unable to Allocate Buffer"); + DU_LOG("\nERROR --> MAC : Unable to Allocate Buffer"); return RFAILED; } @@ -245,19 +228,12 @@ Size size; /* size */ * * File: rg_utl.c */ -#ifdef ANSI Void rgFreeSharableSBuf ( Inst inst, Data **data, /* address of pointer to data */ Size size /* size */ ) -#else -Void rgFreeSharableSBuf(inst,data, size) -Inst inst; -Data **data; /* address of pointer to data */ -Size size; /* size */ -#endif { S16 ret; @@ -299,19 +275,12 @@ Size size; /* size */ * * File: rg_utl.c */ -#ifdef ANSI Void rgFreeSBuf ( Inst inst, Data **data, /* address of pointer to data */ Size size /* size */ ) -#else -Void rgFreeSBuf(inst,data, size) -Inst inst; -Data **data; /* address of pointer to data */ -Size size; /* size */ -#endif { S16 ret; @@ -330,7 +299,7 @@ Size size; /* size */ if (ret != ROK) { - RGLOGERROR(inst,ERRCLS_DEBUG, ERG029, (ErrVal) 0, "rgFreeSBuf failed.\n"); + DU_LOG("\nERROR --> MAC : rgFreeSBuf failed.\n"); return; } @@ -357,17 +326,11 @@ Size size; /* size */ * File : rg_utl.c * **********************************************************/ -#ifdef ANSI S16 rgGetMsg ( Inst inst, Buffer **mBuf /* Message Buffer pointer be returned */ ) -#else -S16 rgGetMsg(inst,mBuf) -Inst inst; -Buffer **mBuf; /* Message Buffer pointer be returned */ -#endif { S16 ret; @@ -386,7 +349,7 @@ Buffer **mBuf; /* Message Buffer pointer be returned */ /* Send an alarm to Layer Manager */ rgLMMStaInd(inst,LCM_CATEGORY_RESOURCE, LCM_EVENT_DMEM_ALLOC_FAIL, LCM_CAUSE_MEM_ALLOC_FAIL, &dgn); - RGLOGERROR(inst,ERRCLS_DEBUG, ERG030, 0, "Unable to Allocate Buffer"); + DU_LOG("\nERROR --> MAC : Unable to Allocate Buffer"); return RFAILED; } @@ -408,19 +371,12 @@ Buffer **mBuf; /* Message Buffer pointer be returned */ * File : rg_utl.c * **********************************************************/ -#ifdef ANSI Void rgFillDgnParams ( Inst inst, RgUstaDgn *dgn, -uint8_t dgnType +uint8_t dgnType ) -#else -Void rgFillDgnParams(inst,dgn, dgnType) -Inst inst; -RgUstaDgn *dgn; -uint8_t dgnType; -#endif { switch(dgnType) @@ -455,7 +411,6 @@ uint8_t dgnType; * File : rg_utl.c * **********************************************************/ -#ifdef ANSI Void rgUpdtRguDedSts ( Inst inst, @@ -463,13 +418,6 @@ RgUpSapCb *rguDlSap, uint8_t stsType, /* Statistics type to update */ RgRguDedDatReq *datReq /* DatReq pointer */ ) -#else -Void rgUpdtRguDedSts(inst,rguDlSap,stsType, datReq) -Inst inst; -RgUpSapCb *rguDlSap; -uint8_t stsType; /* Statistics type to update */ -RgRguDedDatReq *datReq; /* DatReq pointer */ -#endif { uint8_t idx1,idx2; uint32_t idx; @@ -530,19 +478,12 @@ RgRguDedDatReq *datReq; /* DatReq pointer */ * File : rg_utl.c * **********************************************************/ -#ifdef ANSI Void rgUpdtRguCmnSts ( Inst inst, RgUpSapCb *rguDlSap, uint8_t stsType /* Statistics type to update */ ) -#else -Void rgUpdtRguCmnSts(inst,rguDlSap,stsType) -Inst inst; -RgUpSapCb *rguDlSap; -uint8_t stsType; /* Statistics type to update */ -#endif { switch(stsType) @@ -577,17 +518,7 @@ uint8_t stsType; /* Statistics type to update */ * File : rg_utl.c * **********************************************************/ -#ifdef ANSI -Void rgUpdtCellCnt -( -Inst inst, -uint8_t updtType -) -#else -Void rgUpdtCellCnt(inst,updtType) -Inst inst; -uint8_t updtType; -#endif +Void rgUpdtCellCnt(Inst inst,uint8_t updtType) { switch (updtType) @@ -623,17 +554,7 @@ uint8_t updtType; * File : rg_utl.c * **********************************************************/ -#ifdef ANSI -Void rgUpdtUeCnt -( -Inst inst, -uint8_t updtType -) -#else -Void rgUpdtUeCnt (inst,updtType) -Inst inst; -uint8_t updtType; -#endif +Void rgUpdtUeCnt(Inst inst,uint8_t updtType) { switch (updtType) { @@ -663,22 +584,16 @@ uint8_t updtType; * File: rg_utl.c * */ -#ifdef ANSI S16 rgAllocEventMem ( Inst inst, Ptr *memPtr, Size memSize ) -#else -S16 rgAllocEventMem(inst,memPtr, memSize) -Inst inst; -Ptr *memPtr; -Size memSize; -#endif { - Mem sMem; - VOLATILE uint32_t startTime=0; + Mem sMem; + volatile uint32_t startTime=0; + sMem.region = rgCb[inst].rgInit.region; sMem.pool = rgCb[inst].rgInit.pool; @@ -686,8 +601,7 @@ Size memSize; #if (ERRCLASS & ERRCLS_DEBUG) if (memSize<= 0) { - RGLOGERROR(inst,ERRCLS_INT_PAR, ERG031, memSize, - "rgAllocEventMem(): memSize invalid\n"); + DU_LOG("\nERROR --> MAC : rgAllocEventMem(): memSize invalid\n"); return (RFAILED); } #endif /* ERRCLASS & ERRCLS_DEBUG */ @@ -705,7 +619,7 @@ Size memSize; if(ROK != cmAllocEvnt(memSize, TFU_MAX_MEMBLK_SIZE, &sMem, memPtr)) #endif /* */ { - RLOG0(L_ERROR,"cmAllocEvnt Failed"); + DU_LOG("\nERROR --> MAC : cmAllocEvnt Failed"); return RFAILED; } @@ -729,7 +643,6 @@ Size memSize; * File: rg_utl.c * */ -#ifdef ANSI S16 rgGetEventMem ( Inst inst, @@ -737,13 +650,6 @@ Ptr *ptr, Size len, Ptr memCp ) -#else -S16 rgGetEventMem(inst,ptr, len, memCp) -Inst inst; -Ptr *ptr; -Size len; -Ptr memCp; -#endif { S16 ret; @@ -772,19 +678,12 @@ Ptr memCp; * File : rg_utl.c * **********************************************************/ -#ifdef ANSI Void rgGetPstToInst ( Pst *pst, Inst srcInst, Inst dstInst ) -#else -Void rgGetPstToInst (pst, srcInst, dstInst) -Pst *pst; -Inst srcInst; -Inst dstInst; -#endif { pst->srcEnt = rgCb[srcInst].rgInit.ent; @@ -825,17 +724,7 @@ Inst dstInst; * File : rg_utl.c * **********************************************************/ -#ifdef ANSI -S16 RgSchMacLcgRegReq -( -Pst *pst, -RgInfLcgRegReq *lcgRegReq -) -#else -S16 RgSchMacLcgRegReq (pst, lcgRegReq) -Pst *pst; -RgInfLcgRegReq *lcgRegReq; -#endif +S16 RgSchMacLcgRegReq(Pst *pst,RgInfLcgRegReq *lcgRegReq) { Inst inst; RgCellCb *cell = NULLP; @@ -849,13 +738,13 @@ RgInfLcgRegReq *lcgRegReq; (cell->cellId != lcgRegReq->cellId)) { - RLOG_ARG0(L_ERROR,DBG_CELLID,lcgRegReq->cellId,"Cell does not exist "); + DU_LOG("\nERROR --> MAC : Cell does not exist "); return RFAILED; } if ((ue = rgDBMGetUeCb(cell, lcgRegReq->crnti)) == NULLP) { - RLOG_ARG1(L_ERROR, DBG_CELLID,cell->cellId,"CRNTI:%d does not exist", + DU_LOG("\nERROR --> MAC : CRNTI:%d does not exist", lcgRegReq->crnti); return RFAILED; } @@ -882,17 +771,7 @@ RgInfLcgRegReq *lcgRegReq; * File : rg_utl.c * **********************************************************/ -#ifdef ANSI -S16 RgSchMacUlSpsResetReq -( -Pst *pst, -RgInfUlSpsReset *ulSpsResetInfo -) -#else -S16 RgSchMacUlSpsResetReq (pst, lcInfo) -Pst *pst; -RgInfUlSpsReset *ulSpsResetInfo; -#endif +S16 RgSchMacUlSpsResetReq(Pst *pst,RgInfUlSpsReset *ulSpsResetInfo) { Inst inst; RgCellCb *cell = NULLP; @@ -906,13 +785,13 @@ RgInfUlSpsReset *ulSpsResetInfo; (cell->cellId != ulSpsResetInfo->cellId)) { - RLOG_ARG0(L_ERROR, DBG_CELLID,ulSpsResetInfo->cellId,"Cell does not exist "); + DU_LOG("\nERROR --> MAC : Cell does not exist "); return RFAILED; } if ((ue = rgDBMGetUeCb(cell, ulSpsResetInfo->crnti)) == NULLP) { - RLOG_ARG1(L_ERROR, DBG_CELLID,cell->cellId,"CRNTI:%d does not exist", + DU_LOG("\nERROR --> MAC : CRNTI:%d does not exist", ulSpsResetInfo->crnti); return RFAILED; } @@ -950,17 +829,7 @@ RgInfUlSpsReset *ulSpsResetInfo; * File : rg_utl.c * **********************************************************/ -#ifdef ANSI -S16 RgSchMacSpsLcRegReq -( -Pst *pst, -RgInfSpsLcInfo *lcInfo -) -#else -S16 RgSchMacSpsLcRegReq (pst, lcInfo) -Pst *pst; -RgInfSpsLcInfo *lcInfo; -#endif +S16 RgSchMacSpsLcRegReq(Pst *pst,RgInfSpsLcInfo *lcInfo) { Inst inst; RgCellCb *cell= NULLP; @@ -975,13 +844,13 @@ RgInfSpsLcInfo *lcInfo; (cell->cellId != lcInfo->cellId)) { - RLOG_ARG0(L_ERROR,DBG_CELLID,lcInfo->cellId, "Cell does not exist "); + DU_LOG("\nERROR --> MAC : Cell does not exist "); return RFAILED; } if ((ue = rgDBMGetUeCb(cell, lcInfo->crnti)) == NULLP) { - RLOG_ARG1(L_ERROR, DBG_CELLID,cell->cellId,"CRNTI:%d does not exist", + DU_LOG("\nERROR --> MAC : CRNTI:%d does not exist", lcInfo->crnti); return RFAILED; } @@ -999,8 +868,7 @@ RgInfSpsLcInfo *lcInfo; /* Insert the UE into SPS UE List */ if (rgDBMInsSpsUeCb(cell, ue) == RFAILED) { - RLOG_ARG1(L_ERROR,DBG_CELLID,cell->cellId, - "Ue insertion into SPS list failed SPS CRNTI:%d", ue->spsRnti); + DU_LOG("\nERROR --> MAC : Ue insertion into SPS list failed SPS CRNTI:%d", ue->spsRnti); return RFAILED; } @@ -1031,19 +899,7 @@ RgInfSpsLcInfo *lcInfo; * File : rg_utl.c * **********************************************************/ -#ifdef ANSI -S16 RgSchMacSpsLcDeregReq -( -Pst *pst, -CmLteCellId cellId, -CmLteRnti crnti -) -#else -S16 RgSchMacSpsLcDeregReq (pst, cellId, crnti) -Pst *pst; -CmLteCellId cellId; -CmLteRnti crnti; -#endif +S16 RgSchMacSpsLcDeregReq(Pst *pst,CmLteCellId cellId,CmLteRnti crnti) { Inst inst; RgCellCb *cell = NULLP; @@ -1057,13 +913,13 @@ CmLteRnti crnti; (cell->cellId != cellId)) { - RLOG_ARG0(L_ERROR,DBG_CELLID,cellId, "Cell does not exist "); + DU_LOG("\nERROR --> MAC : Cell does not exist "); return RFAILED; } if ((ue = rgDBMGetUeCb(cell, crnti)) == NULLP) { - RLOG_ARG1(L_ERROR, DBG_CELLID,cellId,"CRNTI:%d Ue does not exist", crnti); + DU_LOG("\nERROR --> MAC : CRNTI:%d Ue does not exist", crnti); return RFAILED; } @@ -1097,21 +953,13 @@ CmLteRnti crnti; * -# ROK * -# RFAILED **/ -#ifdef ANSI -PRIVATE S16 rgUtlHndlCrntiChng +static S16 rgUtlHndlCrntiChng ( Inst inst, RgCellCb *cell, CmLteRnti rnti, CmLteRnti newRnti ) -#else -PRIVATE S16 rgUtlHndlCrntiChng(inst,cell, rnti, newRnti) -Inst inst; -RgCellCb *cell; -CmLteRnti rnti; -CmLteRnti newRnti; -#endif { RgUeCb *ue = NULLP; RgUeCb *newUe = NULLP; @@ -1120,13 +968,12 @@ CmLteRnti newRnti; newUe = rgDBMGetUeCbFromRachLst(cell, newRnti); if ((ue == NULLP) || (newUe == NULLP)) { - RLOG_ARG4(L_ERROR,DBG_CELLID,cell->cellId, - "RNTI:%d Failed to get UECB[%lu:%lu] or NEW RNTI:%d", + DU_LOG("\nERROR --> MAC : RNTI:%d Failed to get UECB[%lu:%lu] or NEW RNTI:%d", rnti, ((PTR)ue), ((PTR)newUe), newRnti); return RFAILED; } #ifdef XEON_SPECIFIC_CHANGES - CM_LOG_DEBUG(CM_LOG_ID_MAC, "MAC:UE[%d] id changed to %d\n", rnti, newRnti); + DU_LOG("\nDEBUG --> MAC : MAC:UE[%d] id changed to %d\n", rnti, newRnti); #endif rgDBMDelUeCb(cell, ue); @@ -1163,17 +1010,7 @@ CmLteRnti newRnti; * @param[in] RgUeCb *ue * @return ROK is SUCCESS **/ -#ifdef ANSI -S16 rgDelUeFrmAllSCell -( -RgCellCb *cell, -RgUeCb *ue -) -#else -S16 rgDelUeFrmAllSCell(cell, ue) -RgCellCb *cell; -RgUeCb *ue; -#endif +S16 rgDelUeFrmAllSCell(RgCellCb *cell,RgUeCb *ue) { Inst inst = cell->macInst - RG_INST_START; uint8_t idx = 0; @@ -1218,19 +1055,7 @@ RgUeCb *ue; * @return S16 * -# ROK **/ -#ifdef ANSI -S16 rgUtlVltdAddSCellCfg -( - RgPrgUeSCellCfgInfo *ueSCellCb, - RgCellCb *cell, - Inst inst -) -#else -S16 rgUtlVltdAddSCellCfg(ueSCellCb, cell, inst) - RgPrgUeSCellCfgInfo *ueSCellCb; - RgCellCb *cell; - Inst inst; -#endif +S16 rgUtlVltdAddSCellCfg(RgPrgUeSCellCfgInfo *ueSCellCb,RgCellCb *cell,Inst inst) { S16 ret = ROK; @@ -1238,19 +1063,18 @@ S16 rgUtlVltdAddSCellCfg(ueSCellCb, cell, inst) if((cell == NULLP) || (cell->cellId != ueSCellCb->cellId)) { - RGDBGERRNEW(inst, (rgPBuf(inst), - "[%d]Sec Cell does not exit %d\n", - ueSCellCb->ueId, ueSCellCb->cellId)); + DU_LOG("\nERROR --> MAC : [%d]Sec Cell does not exit %d\n", + ueSCellCb->ueId, ueSCellCb->cellId); ret = RFAILED; } #ifdef TENB_MULT_CELL_SUPPRT if((ueSCellCb->rguDlSapId > rgCb[inst].numRguSaps) || (ueSCellCb->rguUlSapId > rgCb[inst].numRguSaps)) { - RGDBGERRNEW(inst,(rgPBuf(inst), "Invald Sap Id: DL %d UL %d for ueId %d failed\n", + DU_LOG("\nERROR --> MAC : Invald Sap Id: DL %d UL %d for ueId %d failed\n", ueSCellCb->rguDlSapId, ueSCellCb->rguUlSapId, - ueSCellCb->cellId)); + ueSCellCb->cellId); ret = RFAILED; } #endif @@ -1275,19 +1099,12 @@ S16 rgUtlVltdAddSCellCfg(ueSCellCb, cell, inst) * @return S16 * -# ROK **/ -#ifdef ANSI -PRIVATE S16 rgUtlSndCrntiChngReq2AllSMacs +static S16 rgUtlSndCrntiChngReq2AllSMacs ( RgCellCb *cell, CmLteRnti rnti, CmLteRnti newRnti ) -#else -PRIVATE S16 rgUtlSndCrntiChngReq2AllSMacs(cell, rnti, newRnti) -RgCellCb *cell; -CmLteRnti rnti; -CmLteRnti newRnti; -#endif { Inst inst = cell->macInst - RG_INST_START; Inst sCellInstIdx; @@ -1303,8 +1120,8 @@ TfuDelDatReqInfo delDatReq; ue = rgDBMGetUeCb(cell, newRnti); if (ue == NULLP) { - RGDBGERRNEW(inst,(rgPBuf(inst),"[%d]RNTI:Failed to get ueCb \ - newRnti=%d\n", rnti, newRnti)); + DU_LOG("\nERROR --> MAC : [%d]RNTI:Failed to get ueCb \ + newRnti=%d\n", rnti, newRnti); return RFAILED; } /* For all added SCells, prepare and send ueIdChngReq */ @@ -1357,17 +1174,7 @@ TfuDelDatReqInfo delDatReq; * @param[in] CmLteRnti rnti * @return Void **/ -#ifdef ANSI -PRIVATE Void rgUtlHndlCrntiRls -( -RgCellCb *cell, -RgInfRlsRnti *rlsRnti -) -#else -PRIVATE Void rgUtlHndlCrntiRls(cell, rlsRnti) -RgCellCb *cell; -CmLteRnti *rlsRnti; -#endif +static Void rgUtlHndlCrntiRls(RgCellCb *cell,RgInfRlsRnti *rlsRnti) { Inst inst = cell->macInst - RG_INST_START; RgUeCb *ue = NULLP; @@ -1388,8 +1195,7 @@ CmLteRnti *rlsRnti; } else { - RLOG_ARG1(L_WARNING,DBG_CELLID,cell->cellId, - "RNTI:%d No ueCb found in RachLst",rlsRnti->rnti); + DU_LOG("\nERROR --> MAC : RNTI:%d No ueCb found in RachLst",rlsRnti->rnti); } } else @@ -1417,8 +1223,7 @@ CmLteRnti *rlsRnti; { if((ue=rgDBMGetUeCbFromRachLst (cell, rlsRnti->rnti)) != NULLP) { - RLOG_ARG1(L_ERROR,DBG_CELLID,cell->cellId, - "RNTI:%d STALE UE is still present", rlsRnti->rnti); + DU_LOG("\nERROR --> MAC : RNTI:%d STALE UE is still present", rlsRnti->rnti); } } } @@ -1445,17 +1250,7 @@ CmLteRnti *rlsRnti; * @return S16 * -# ROK **/ -#ifdef ANSI -S16 RgSchMacRlsRntiReq -( -Pst *pst, -RgInfRlsRnti *rlsRnti -) -#else -S16 RgSchMacRlsRntiReq(pst, rlsRnti) -Pst *pst; -RgInfRlsRnti *rlsRnti; -#endif +S16 RgSchMacRlsRntiReq(Pst *pst,RgInfRlsRnti *rlsRnti) { // Pst schPst; // RgInfUeDelInd ueDelInd; @@ -1478,8 +1273,7 @@ TfuDelDatReqInfo delDatReq; (cell->cellId != rlsRnti->cellId)) { - RLOG_ARG1(L_ERROR,DBG_CELLID,rlsRnti->cellId, - "No cellCb found with cellId for RNTI:%d", + DU_LOG("\nERROR --> MAC : No cellCb found with cellId for RNTI:%d", rlsRnti->rnti); return RFAILED; } @@ -1492,8 +1286,7 @@ TfuDelDatReqInfo delDatReq; * is dummy */ if (rgUtlHndlCrntiChng(macInst,cell, rlsRnti->rnti, rlsRnti->newRnti) != ROK) { - RLOG_ARG2(L_ERROR,DBG_CELLID,rlsRnti->cellId, - "CRNTI change failed for RNTI:%d new RNTI:%d", + DU_LOG("\nERROR --> MAC : CRNTI change failed for RNTI:%d new RNTI:%d", rlsRnti->rnti,rlsRnti->newRnti); return RFAILED; } @@ -1540,15 +1333,7 @@ TfuDelDatReqInfo delDatReq; } /* end of RgSchMacRlsRntiReq */ #ifdef L2_OPTMZ -#ifdef ANSI -Bool RgUtlIsTbMuxed -( - TfuDatReqTbInfo *tb -) -#else -Bool RgUtlIsTbMuxed() - TfuDatReqTbInfo *tb -#endif +Bool RgUtlIsTbMuxed(TfuDatReqTbInfo *tb) { MsgLen len = 0; SFndLenMsg(tb->macHdr, &len);