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
0a95d831
Commit
0a95d831
authored
Sep 25, 2023
by
swu
Committed by
Jerome Peraldi
Sep 25, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug #127933: [SS][rrc-eNB]add implementation of rrc reestablishment in SS mode
parent
d9cea1c5
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
140 additions
and
30 deletions
+140
-30
openair2/RRC/LTE/L2_interface.c
openair2/RRC/LTE/L2_interface.c
+9
-0
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+130
-29
openair3/SS/ss_eNB_sys_task.c
openair3/SS/ss_eNB_sys_task.c
+1
-1
No files found.
openair2/RRC/LTE/L2_interface.c
View file @
0a95d831
...
@@ -227,6 +227,15 @@ mac_rrc_data_req(
...
@@ -227,6 +227,15 @@ mac_rrc_data_req(
if
(
(
Srb_id
&
RAB_OFFSET
)
==
CCCH
)
{
if
(
(
Srb_id
&
RAB_OFFSET
)
==
CCCH
)
{
struct
rrc_eNB_ue_context_s
*
ue_context_p
=
rrc_eNB_get_ue_context
(
RC
.
rrc
[
Mod_idP
],
rnti
);
struct
rrc_eNB_ue_context_s
*
ue_context_p
=
rrc_eNB_get_ue_context
(
RC
.
rrc
[
Mod_idP
],
rnti
);
if
(
ue_context_p
==
NULL
){
/* Check reestablishment context */
for
(
int
i
=
0
;
i
<
MAX_MOBILES_PER_ENB
;
i
++
)
{
if
(
reestablish_rnti_map
[
i
][
0
]
==
rnti
)
{
ue_context_p
=
rrc_eNB_get_ue_context
(
RC
.
rrc
[
Mod_idP
],
reestablish_rnti_map
[
i
][
1
]);
break
;
}
}
}
if
(
ue_context_p
==
NULL
)
return
(
0
);
if
(
ue_context_p
==
NULL
)
return
(
0
);
...
...
openair2/RRC/LTE/rrc_eNB.c
View file @
0a95d831
This diff is collapsed.
Click to expand it.
openair3/SS/ss_eNB_sys_task.c
View file @
0a95d831
...
@@ -775,7 +775,7 @@ int sys_add_reconfig_cell(struct SYSTEM_CTRL_REQ *req)
...
@@ -775,7 +775,7 @@ int sys_add_reconfig_cell(struct SYSTEM_CTRL_REQ *req)
{
{
RRC_CONFIGURATION_REQ
(
msg_p
).
ActiveParam
[
cell_index
].
b_C_RNTI_Present
=
true
;
RRC_CONFIGURATION_REQ
(
msg_p
).
ActiveParam
[
cell_index
].
b_C_RNTI_Present
=
true
;
RRC_CONFIGURATION_REQ
(
msg_p
).
ActiveParam
[
cell_index
].
C_RNTI
=
bin_to_int
(
AddOrReconfigure
->
Active
.
v
.
C_RNTI
.
v
,
16
);
RRC_CONFIGURATION_REQ
(
msg_p
).
ActiveParam
[
cell_index
].
C_RNTI
=
bin_to_int
(
AddOrReconfigure
->
Active
.
v
.
C_RNTI
.
v
,
16
);
//
SS_context.SSCell_list[cell_index].ss_rnti_g = RRC_CONFIGURATION_REQ(msg_p).ActiveParam[cell_index].C_RNTI;
SS_context
.
SSCell_list
[
cell_index
].
ss_rnti_g
=
RRC_CONFIGURATION_REQ
(
msg_p
).
ActiveParam
[
cell_index
].
C_RNTI
;
LOG_A
(
ENB_SS_SYS_TASK
,
"C_RNTI present in Active Cell Config %d
\n
"
,
RRC_CONFIGURATION_REQ
(
msg_p
).
ActiveParam
[
cell_index
].
C_RNTI
);
LOG_A
(
ENB_SS_SYS_TASK
,
"C_RNTI present in Active Cell Config %d
\n
"
,
RRC_CONFIGURATION_REQ
(
msg_p
).
ActiveParam
[
cell_index
].
C_RNTI
);
}
}
if
(
AddOrReconfigure
->
Active
.
v
.
RachProcedureConfig
.
d
==
true
)
if
(
AddOrReconfigure
->
Active
.
v
.
RachProcedureConfig
.
d
==
true
)
...
...
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