Commit 0e3262cc authored by Siddharth Rana's avatar Siddharth Rana Committed by Vijay C

Rebasing from 3GPP_TTCN_System_Simulator Commit...

Rebasing from 3GPP_TTCN_System_Simulator Commit a36f5204bcfc297fff68d69c93dd7b1f24389949 to 507617c0e24cde488e4d09a788ada50766e895d4
parent 8f7e1b77
...@@ -52,9 +52,8 @@ static void ss_dumpReqMsg(struct NR_SYSTEM_CTRL_REQ *msg) ...@@ -52,9 +52,8 @@ static void ss_dumpReqMsg(struct NR_SYSTEM_CTRL_REQ *msg)
LOG_A(GNB_APP, "\tRequest=%d\n", msg->Request.d); LOG_A(GNB_APP, "\tRequest=%d\n", msg->Request.d);
} }
void ss_nr_port_man_send_cnf(struct NR_SYSTEM_CTRL_CNF recvCnf) void ss_nr_port_man_send_cnf(struct NR_SYSTEM_CTRL_CNF* recvCnf)
{ {
struct NR_SYSTEM_CTRL_CNF cnf;
const size_t size = 16 * 1024; const size_t size = 16 * 1024;
uint32_t status; uint32_t status;
...@@ -99,7 +98,7 @@ void ss_nr_port_man_send_cnf(struct NR_SYSTEM_CTRL_CNF recvCnf) ...@@ -99,7 +98,7 @@ void ss_nr_port_man_send_cnf(struct NR_SYSTEM_CTRL_CNF recvCnf)
/* Encode message /* Encode message
*/ */
if (acpNrSysProcessEncSrv(nrctx_g, buffer, &msgSize, &cnf) != 0) if (acpNrSysProcessEncSrv(nrctx_g, buffer, &msgSize, recvCnf) != 0)
{ {
acpFree(buffer); acpFree(buffer);
return; return;
......
...@@ -160,7 +160,6 @@ static void send_sys_cnf(enum ConfirmationResult_Type_Sel resType, ...@@ -160,7 +160,6 @@ static void send_sys_cnf(enum ConfirmationResult_Type_Sel resType,
default: default:
LOG_A(GNB_APP, "[SYS-GNB] Error not handled CNF TYPE to [SS-PORTMAN-GNB]\n"); LOG_A(GNB_APP, "[SYS-GNB] Error not handled CNF TYPE to [SS-PORTMAN-GNB]\n");
} }
SS_NR_SYS_PORT_MSG_CNF(message_p).cnf = msgCnf; SS_NR_SYS_PORT_MSG_CNF(message_p).cnf = msgCnf;
int send_res = itti_send_msg_to_task(TASK_SS_PORTMAN_GNB, INSTANCE_DEFAULT, message_p); int send_res = itti_send_msg_to_task(TASK_SS_PORTMAN_GNB, INSTANCE_DEFAULT, message_p);
if (send_res < 0) if (send_res < 0)
...@@ -1437,7 +1436,6 @@ static nr_pdcp_entity_t * ss_task_sys_get_rb(nr_pdcp_ue_t *ue, bool srb, uint16_ ...@@ -1437,7 +1436,6 @@ static nr_pdcp_entity_t * ss_task_sys_get_rb(nr_pdcp_ue_t *ue, bool srb, uint16_
*/ */
static bool ss_task_sys_fill_pdcp_cnt_rb(struct NR_PdcpCountInfo_Type* v, nr_pdcp_ue_t *ue, bool isSrb, uint8_t rbId) static bool ss_task_sys_fill_pdcp_cnt_rb(struct NR_PdcpCountInfo_Type* v, nr_pdcp_ue_t *ue, bool isSrb, uint8_t rbId)
{ {
if (rbId == 0) { if (rbId == 0) {
return false; return false;
} }
...@@ -1527,7 +1525,6 @@ bool ss_task_sys_nr_handle_pdcpCount(struct NR_SYSTEM_CTRL_REQ *req) ...@@ -1527,7 +1525,6 @@ bool ss_task_sys_nr_handle_pdcpCount(struct NR_SYSTEM_CTRL_REQ *req)
if (req->Request.v.PdcpCount.v.Get.d == NR_PdcpCountGetReq_Type_AllRBs) if (req->Request.v.PdcpCount.v.Get.d == NR_PdcpCountGetReq_Type_AllRBs)
{ {
PdcpCount.v.Get.d = 5; PdcpCount.v.Get.d = 5;
const size_t size = sizeof(struct NR_PdcpCountInfo_Type) * PdcpCount.v.Get.d; const size_t size = sizeof(struct NR_PdcpCountInfo_Type) * PdcpCount.v.Get.d;
PdcpCount.v.Get.v =(struct NR_PdcpCountInfo_Type *)acpMalloc(size); PdcpCount.v.Get.v =(struct NR_PdcpCountInfo_Type *)acpMalloc(size);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment