Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Commits
dbd37dac
Commit
dbd37dac
authored
5 months ago
by
Jaroslava Fiedlerova
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/minor-ue-fixes' into integration_2024_w40b
parents
169dddf8
8f46b07b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3021
Integration: `2024.w40b`
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openair2/RRC/NR_UE/rrc_UE.c
+6
-4
6 additions, 4 deletions
openair2/RRC/NR_UE/rrc_UE.c
openair2/UTIL/OPT/probe.c
+1
-1
1 addition, 1 deletion
openair2/UTIL/OPT/probe.c
with
7 additions
and
5 deletions
openair2/RRC/NR_UE/rrc_UE.c
+
6
−
4
View file @
dbd37dac
...
@@ -551,14 +551,16 @@ static void nr_rrc_ue_decode_NR_BCCH_BCH_Message(NR_UE_RRC_INST_t *rrc,
...
@@ -551,14 +551,16 @@ static void nr_rrc_ue_decode_NR_BCCH_BCH_Message(NR_UE_RRC_INST_t *rrc,
}
}
int
get_sib
=
0
;
int
get_sib
=
0
;
if
(
get_softmodem_params
()
->
sa
&&
if
(
get_softmodem_params
()
->
sa
&&
bcch_message
->
message
.
present
==
NR_BCCH_BCH_MessageType_PR_mib
bcch_message
->
message
.
choice
.
mib
->
cellBarred
==
NR_MIB__cellBarred_notBarred
&&
&&
bcch_message
->
message
.
choice
.
mib
->
cellBarred
==
NR_MIB__cellBarred_notBarred
&&
rrc
->
nrRrcState
!=
RRC_STATE_DETACH_NR
)
{
rrc
->
nrRrcState
!=
RRC_STATE_DETACH_NR
)
{
NR_UE_RRC_SI_INFO
*
SI_info
=
&
rrc
->
perNB
[
gNB_index
].
SInfo
;
NR_UE_RRC_SI_INFO
*
SI_info
=
&
rrc
->
perNB
[
gNB_index
].
SInfo
;
// to schedule MAC to get SI if required
// to schedule MAC to get SI if required
get_sib
=
check_si_status
(
SI_info
);
get_sib
=
check_si_status
(
SI_info
);
}
}
nr_rrc_mac_config_req_mib
(
rrc
->
ue_id
,
0
,
bcch_message
->
message
.
choice
.
mib
,
get_sib
);
if
(
bcch_message
->
message
.
present
==
NR_BCCH_BCH_MessageType_PR_mib
)
nr_rrc_mac_config_req_mib
(
rrc
->
ue_id
,
0
,
bcch_message
->
message
.
choice
.
mib
,
get_sib
);
else
LOG_E
(
NR_RRC
,
"RRC-received BCCH message is not a MIB
\n
"
);
ASN_STRUCT_FREE
(
asn_DEF_NR_BCCH_BCH_Message
,
bcch_message
);
ASN_STRUCT_FREE
(
asn_DEF_NR_BCCH_BCH_Message
,
bcch_message
);
return
;
return
;
}
}
...
...
This diff is collapsed.
Click to expand it.
openair2/UTIL/OPT/probe.c
+
1
−
1
View file @
dbd37dac
...
@@ -254,7 +254,7 @@ int opt_create_listener_socket(char *ip_address, uint16_t port) {
...
@@ -254,7 +254,7 @@ int opt_create_listener_socket(char *ip_address, uint16_t port) {
LOG_E
(
OPT
,
"Failed to bind socket to (%s:%u): %s
\n
"
,
LOG_E
(
OPT
,
"Failed to bind socket to (%s:%u): %s
\n
"
,
inet_ntoa
(
opt_listener
.
address
.
sin_addr
),
inet_ntoa
(
opt_listener
.
address
.
sin_addr
),
ntohs
(
opt_listener
.
address
.
sin_port
),
strerror
(
errno
));
ntohs
(
opt_listener
.
address
.
sin_port
),
strerror
(
errno
));
opt_type
=
OPT_NONE
;
// we log anyway as planned because other OAI process may have created the sink
close
(
opt_listener
.
sd
);
close
(
opt_listener
.
sd
);
opt_listener
.
sd
=
-
1
;
opt_listener
.
sd
=
-
1
;
return
-
1
;
return
-
1
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment