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
zzha zzha
OpenXG-RAN
Commits
2c2915da
Commit
2c2915da
authored
Nov 20, 2023
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reestablish only exisiting RBs
parent
107913d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+4
-3
No files found.
openair2/RRC/NR/rrc_gNB.c
View file @
2c2915da
...
...
@@ -1052,9 +1052,10 @@ static void rrc_gNB_generate_RRCReestablishment(rrc_gNB_ue_context_t *ue_context
}
// TODO: should send E1 UE Bearer Modification with PDCP Reestablishment flag
/* TODO: reestablish only exisiting RBs */
for
(
int
drb_id
=
1
;
drb_id
<=
MAX_DRBS_PER_UE
;
drb_id
++
)
nr_pdcp_reestablishment
(
ue_p
->
rrc_ue_id
,
drb_id
,
false
);
for
(
int
drb_id
=
1
;
drb_id
<=
MAX_DRBS_PER_UE
;
drb_id
++
)
{
if
(
ue_p
->
established_drbs
[
drb_id
-
1
].
status
!=
DRB_INACTIVE
)
nr_pdcp_reestablishment
(
ue_p
->
rrc_ue_id
,
drb_id
,
false
);
}
f1_ue_data_t
ue_data
=
cu_get_f1_ue_data
(
ue_p
->
rrc_ue_id
);
RETURN_IF_INVALID_ASSOC_ID
(
ue_data
);
...
...
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