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
Michael Black
OpenXG-RAN
Commits
a9faf533
Commit
a9faf533
authored
Jun 24, 2022
by
luis_pereira87
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix SA with COTS UE in monolithic mode after merge
parent
0e04fba0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
24 deletions
+5
-24
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
+0
-5
openair2/RRC/NR/L2_nr_interface.c
openair2/RRC/NR/L2_nr_interface.c
+0
-8
openair2/RRC/NR/nr_rrc_proto.h
openair2/RRC/NR/nr_rrc_proto.h
+0
-6
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+5
-5
No files found.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
View file @
a9faf533
...
...
@@ -1530,11 +1530,6 @@ void nr_generate_Msg4(module_id_t module_idP, int CC_id, frame_t frameP, sub_fra
if
(
ra
->
Msg4_frame
==
frameP
&&
ra
->
Msg4_slot
==
slotP
)
{
if
(
nr_mac_rrc_check_RRCSetup
(
module_idP
,
ra
->
rnti
)
<=
0
){
ra
->
Msg4_frame
++
;
return
;
}
uint8_t
time_domain_assignment
=
0
;
uint8_t
mcsIndex
=
0
;
...
...
openair2/RRC/NR/L2_nr_interface.c
View file @
a9faf533
...
...
@@ -306,14 +306,6 @@ int8_t nr_mac_rrc_bwp_switch_req(const module_id_t module_idP,
return
0
;
}
int8_t
nr_mac_rrc_check_RRCSetup
(
const
module_id_t
Mod_idP
,
const
rnti_t
rnti
)
{
struct
rrc_gNB_ue_context_s
*
ue_context_p
=
rrc_gNB_get_ue_context
(
RC
.
nrrrc
[
Mod_idP
],
rnti
);
char
payload_size
=
ue_context_p
->
ue_context
.
Srb0
.
Tx_buffer
.
payload_size
;
return
payload_size
;
}
int8_t
nr_mac_rrc_data_ind
(
const
module_id_t
module_idP
,
const
int
CC_id
,
const
frame_t
frameP
,
...
...
openair2/RRC/NR/nr_rrc_proto.h
View file @
a9faf533
...
...
@@ -163,12 +163,6 @@ nr_rrc_data_req(
const
pdcp_transmission_mode_t
modeP
);
int8_t
nr_mac_rrc_check_RRCSetup
(
const
module_id_t
Mod_idP
,
const
rnti_t
rnti
);
int
nr_rrc_mac_remove_ue
(
module_id_t
mod_idP
,
rnti_t
rntiP
);
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
a9faf533
...
...
@@ -600,8 +600,7 @@ rrc_gNB_process_RRCSetupComplete(
void
rrc_gNB_generate_defaultRRCReconfiguration
(
const
protocol_ctxt_t
*
const
ctxt_pP
,
rrc_gNB_ue_context_t
*
ue_context_pP
,
NR_CellGroupConfig_t
*
cellGroupConfig
rrc_gNB_ue_context_t
*
ue_context_pP
)
//-----------------------------------------------------------------------------
{
...
...
@@ -716,6 +715,7 @@ rrc_gNB_generate_defaultRRCReconfiguration(
}
gNB_RRC_INST
*
rrc
=
RC
.
nrrrc
[
ctxt_pP
->
module_id
];
gNB_RRC_UE_t
*
ue_p
=
&
ue_context_pP
->
ue_context
;
memset
(
buffer
,
0
,
sizeof
(
buffer
));
size
=
do_RRCReconfiguration
(
ctxt_pP
,
buffer
,
sizeof
(
buffer
),
xid
,
...
...
@@ -730,7 +730,7 @@ rrc_gNB_generate_defaultRRCReconfiguration(
&
rrc
->
carrier
,
&
rrc
->
configuration
,
NULL
,
cellGroupConfig
);
ue_p
->
masterCellGroup
);
free
(
ue_context_pP
->
ue_context
.
nas_pdu
.
buffer
);
...
...
@@ -2778,7 +2778,7 @@ rrc_gNB_decode_dcch(
if
(
ue_context_p
->
ue_context
.
established_pdu_sessions_flag
==
1
)
{
rrc_gNB_generate_dedicatedRRCReconfiguration
(
ctxt_pP
,
ue_context_p
,
NULL
);
}
else
{
rrc_gNB_generate_defaultRRCReconfiguration
(
ctxt_pP
,
ue_context_p
,
NULL
);
rrc_gNB_generate_defaultRRCReconfiguration
(
ctxt_pP
,
ue_context_p
);
}
}
else
{
...
...
@@ -3711,7 +3711,7 @@ static void rrc_CU_process_ue_context_setup_response(MessageDef *msg_p, const ch
if
(
ue_context_p
->
ue_context
.
established_pdu_sessions_flag
==
1
)
{
rrc_gNB_generate_dedicatedRRCReconfiguration
(
&
ctxt
,
ue_context_p
,
cellGroupConfig
);
}
else
{
rrc_gNB_generate_defaultRRCReconfiguration
(
&
ctxt
,
ue_context_p
,
NULL
);
rrc_gNB_generate_defaultRRCReconfiguration
(
&
ctxt
,
ue_context_p
);
}
free
(
cellGroupConfig
->
rlc_BearerToAddModList
);
...
...
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