From c8c153d0ed9d428028df6614a0d2983e6af6fb66 Mon Sep 17 00:00:00 2001 From: "lal.harshita" Date: Tue, 28 Sep 2021 19:42:41 +0530 Subject: [PATCH] [ODUHIGH-359]: Multibearer support changes Change-Id: I8850ccdbeb199190a1e81b47adf3c9ac025d34b3 Signed-off-by: lal.harshita --- src/du_app/du_ue_mgr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/du_app/du_ue_mgr.c b/src/du_app/du_ue_mgr.c index 78bac831c..21491e2c5 100644 --- a/src/du_app/du_ue_mgr.c +++ b/src/du_app/du_ue_mgr.c @@ -132,7 +132,8 @@ uint8_t fetchLcId(uint8_t drbId) numLcs = duCb.actvCellLst[cellIdx]->ueCb[ueIdx].rlcUeCfg.numLcs; for(lcIdx = 0; lcIdx < numLcs; lcIdx++) { - if(duCb.actvCellLst[cellIdx]->ueCb[ueIdx].rlcUeCfg.rlcLcCfg[lcIdx].rbId == drbId) + if(duCb.actvCellLst[cellIdx]->ueCb[ueIdx].rlcUeCfg.rlcLcCfg[lcIdx].rbId == drbId && \ + duCb.actvCellLst[cellIdx]->ueCb[ueIdx].rlcUeCfg.rlcLcCfg[lcIdx].rbType == RB_TYPE_DRB) { lcId = duCb.actvCellLst[cellIdx]->ueCb[ueIdx].rlcUeCfg.rlcLcCfg[lcIdx].lcId; return lcId; -- 2.16.6