X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Frg_ex_ms.c;h=8f5f68d71ca6d4f05e372df3182a3553cedb894f;hb=refs%2Fchanges%2F56%2F6056%2F4;hp=a4c422c98ce5a0d06b91b20f9ddbc7316f051cdc;hpb=762bc0a2a50222d74b01d9a88071bfaf5d90979b;p=o-du%2Fl2.git diff --git a/src/5gnrmac/rg_ex_ms.c b/src/5gnrmac/rg_ex_ms.c index a4c422c98..8f5f68d71 100755 --- a/src/5gnrmac/rg_ex_ms.c +++ b/src/5gnrmac/rg_ex_ms.c @@ -107,13 +107,13 @@ Buffer *mBuf /* message buffer */ /* Process MAC cell config */ unpackDuMacCellCfg(MacProcCellCfgReq, pst, mBuf); break; - case EVENT_MAC_CELL_START_REQ: + case EVENT_MAC_CELL_START: /* Process MAC cell start request */ - unpackMacCellStartReq(MacProcCellStartReq, pst, mBuf); + unpackMacCellStart(MacProcCellStart, pst, mBuf); break; - case EVENT_MAC_CELL_STOP_REQ: + case EVENT_MAC_CELL_STOP: /* Process MAC cell stop request */ - unpackMacCellStopReq(MacProcCellStopReq, pst, mBuf); + unpackMacCellStop(MacProcCellStop, pst, mBuf); break; case EVENT_MAC_DL_CCCH_IND: /* Process DL CCCH Ind */ @@ -127,7 +127,17 @@ Buffer *mBuf /* message buffer */ /* Process Ue Reconfig Request */ unpackMacUeReconfigReq(MacProcUeReconfigReq, pst, mBuf); break; - default: + case EVENT_MAC_UE_DELETE_REQ: + { + unpackMacUeDeleteReq(MacProcUeDeleteReq, pst, mBuf); + break; + } + case EVENT_MAC_CELL_DELETE_REQ: + { + unpackMacCellDeleteReq(MacProcCellDeleteReq, pst, mBuf); + break; + } + default: RG_FREE_MSG(mBuf); break; }