Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhongxiao
OpenXG-RAN
Commits
506df7c3
Commit
506df7c3
authored
May 01, 2023
by
Swetank Srivastava
Committed by
Vijay C
May 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Portman Changes and crash fix due to LOG
parent
e7403759
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
12 deletions
+12
-12
executables/create_tasks.c
executables/create_tasks.c
+2
-2
openair2/LAYER2/rlc_v2/rlc_oai_api.c
openair2/LAYER2/rlc_v2/rlc_oai_api.c
+2
-2
openair3/SS/ss_eNB_port_man_task.c
openair3/SS/ss_eNB_port_man_task.c
+1
-1
openair3/SS/ss_eNB_sys_task.c
openair3/SS/ss_eNB_sys_task.c
+7
-7
No files found.
executables/create_tasks.c
View file @
506df7c3
...
...
@@ -64,10 +64,10 @@ int create_tasks(uint32_t enb_nb) {
{
rc
=
itti_create_task
(
TASK_SS_PORTMAN
,
ss_eNB_port_man_eNB_task
,
NULL
);
AssertFatal
(
rc
>=
0
,
"Create task for SS manager failed
\n
"
);
#if 0
rc = itti_create_task(TASK_SS_PORTMAN_ACP, ss_eNB_port_man_acp_task, NULL);
AssertFatal(rc >= 0, "Create task for SS manager failed\n");
#endif
rc
=
itti_create_task
(
TASK_SYS
,
ss_eNB_sys_task
,
NULL
);
AssertFatal
(
rc
>=
0
,
"Create task for SS failed
\n
"
);
...
...
openair2/LAYER2/rlc_v2/rlc_oai_api.c
View file @
506df7c3
...
...
@@ -323,11 +323,11 @@ rlc_op_status_t rlc_data_req (const protocol_ctxt_t *const ctxt_pP,
if
(
MBMS_flagP
==
MBMS_FLAG_YES
)
rnti
=
0xfffd
;
/*
LOG_D(RLC, "%s rnti %d srb_flag %d rb_id %d mui %d confirm %d sdu_size %d MBMS_flag %d frame % subframe %d\n",
__FUNCTION__, rnti, srb_flagP, (int)rb_idP, muiP, confirmP, sdu_sizeP,
MBMS_flagP,ctxt_pP->frame,ctxt_pP->subframe);
*/
if
(
ctxt_pP
->
enb_flag
)
T
(
T_ENB_RLC_DL
,
T_INT
(
ctxt_pP
->
module_id
),
T_INT
(
ctxt_pP
->
rntiMaybeUEid
),
T_INT
(
rb_idP
),
T_INT
(
sdu_sizeP
));
...
...
openair3/SS/ss_eNB_port_man_task.c
View file @
506df7c3
...
...
@@ -484,7 +484,7 @@ void *ss_port_man_process_itti_msg(void *notUsed)
MessageDef
*
received_msg
=
NULL
;
int
result
;
LOG_D
(
ENB_SS_PORTMAN
,
"Entry in fxn:%s
\n
"
,
__FUNCTION__
);
itti_
receive
_msg
(
TASK_SS_PORTMAN
,
&
received_msg
);
itti_
poll
_msg
(
TASK_SS_PORTMAN
,
&
received_msg
);
if
(
received_msg
!=
NULL
)
{
LOG_A
(
ENB_SS_PORTMAN
,
"Received a message id : %d
\n
"
,
...
...
openair3/SS/ss_eNB_sys_task.c
View file @
506df7c3
...
...
@@ -2520,10 +2520,10 @@ void *ss_eNB_sys_process_itti_msg(void *notUsed)
{
LOG_A
(
ENB_SS_SYS_TASK
,
"Signalling main thread for cell config done indication
\n
"
);
send_sys_cnf
(
SS_context
.
sys_cnf
.
resType
,
SS_context
.
sys_cnf
.
resVal
,
SS_context
.
sys_cnf
.
cnfType
,
(
void
*
)
SS_context
.
sys_cnf
.
msg_buffer
);
sys_confirm_done_indication
();
SS_context
.
sys_cnf
.
resVal
,
SS_context
.
sys_cnf
.
cnfType
,
(
void
*
)
SS_context
.
sys_cnf
.
msg_buffer
);
sys_confirm_done_indication
();
}
break
;
}
...
...
@@ -2562,12 +2562,12 @@ void *ss_eNB_sys_process_itti_msg(void *notUsed)
LOG_A
(
ENB_SS_SYS_TASK
,
"Not hanled SYS_PORT message received
\n
"
);
}
if
(
SS_SYS_PORT_MSG_IND
(
received_msg
).
req
)
free
(
SS_SYS_PORT_MSG_IND
(
received_msg
).
req
);
if
(
SS_SYS_PORT_MSG_IND
(
received_msg
).
req
->
Common
.
ControlInfo
.
CnfFlag
==
false
)
sys_confirm_done_indication
();
if
(
SS_SYS_PORT_MSG_IND
(
received_msg
).
req
)
free
(
SS_SYS_PORT_MSG_IND
(
received_msg
).
req
);
LOG_A
(
ENB_SS_SYS_TASK
,
"Signalling main thread for cell config done indication
\n
"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment