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
alex037yang
OpenXG-RAN
Commits
17b8ff50
Commit
17b8ff50
authored
4 years ago
by
Shweta Shrivastava
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor edits for consistency and clarity
parent
06f55552
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+9
-9
No files found.
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
17b8ff50
...
...
@@ -2918,9 +2918,9 @@ int8_t nr_ue_process_dci_freq_dom_resource_assignment(nfapi_nr_ue_pusch_pdu_t *p
pusch_config_pdu
->
rb_start
=
NRRIV2PRBOFFSET
(
riv
,
n_RB_ULBWP
);
// Sanity check in case a false or erroneous DCI is received
if
(
pusch_config_pdu
->
rb_size
+
pusch_config_pdu
->
rb_start
>
n_RB_ULBWP
)
{
if
(
(
pusch_config_pdu
->
rb_size
)
||
(
pusch_config_pdu
->
rb_size
>
n_RB_ULBWP
-
pusch_config_pdu
->
rb_start
)
)
{
// DCI is invalid!
LOG_W
(
MAC
,
"Frequency domain assignment values are invalid! #RBs: %d, Start RB: %d, n_RB_
D
LBWP: %d
\n
"
,
pusch_config_pdu
->
rb_size
,
pusch_config_pdu
->
rb_start
,
n_RB_ULBWP
);
LOG_W
(
MAC
,
"Frequency domain assignment values are invalid! #RBs: %d, Start RB: %d, n_RB_
U
LBWP: %d
\n
"
,
pusch_config_pdu
->
rb_size
,
pusch_config_pdu
->
rb_start
,
n_RB_ULBWP
);
return
-
1
;
}
...
...
@@ -3147,7 +3147,7 @@ int8_t nr_ue_process_dci(module_id_t module_id, int cc_id, uint8_t gNB_index, fr
int
bwp_id
=
1
;
int
mu
=
0
;
long
k2
=
0
;
int
pucch_res_set_
id
=
0
,
valid
=
0
;
int
pucch_res_set_
cnt
=
0
,
valid
=
0
;
uint16_t
frame_tx
=
0
,
slot_tx
=
0
;
NR_UE_MAC_INST_t
*
mac
=
get_mac_inst
(
module_id
);
...
...
@@ -3745,9 +3745,9 @@ int8_t nr_ue_process_dci(module_id_t module_id, int cc_id, uint8_t gNB_index, fr
dlsch_config_pdu_1_0
->
pucch_resource_id
=
dci
->
pucch_resource_indicator
;
// Sanity check for pucch_resource_indicator value received to check for false DCI.
valid
=
0
;
pucch_res_set_
id
=
mac
->
ULbwp
[
0
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
count
;
for
(
int
id
=
0
;
id
<
pucch_res_set_
id
;
id
++
)
{
if
(
dlsch_config_pdu_1_0
->
pucch_resource_id
<
mac
->
ULbwp
[
bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
array
[
id
]
->
resourceList
.
list
.
count
)
{
pucch_res_set_
cnt
=
mac
->
ULbwp
[
0
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
count
;
for
(
int
id
=
0
;
id
<
pucch_res_set_
cnt
;
id
++
)
{
if
(
dlsch_config_pdu_1_0
->
pucch_resource_id
<
mac
->
ULbwp
[
0
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
array
[
id
]
->
resourceList
.
list
.
count
)
{
valid
=
1
;
break
;
}
...
...
@@ -3892,9 +3892,9 @@ int8_t nr_ue_process_dci(module_id_t module_id, int cc_id, uint8_t gNB_index, fr
dlsch_config_pdu_1_1
->
pucch_resource_id
=
dci
->
pucch_resource_indicator
;
// Sanity check for pucch_resource_indicator value received to check for false DCI.
valid
=
0
;
pucch_res_set_
id
=
mac
->
ULbwp
[
0
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
count
;
for
(
int
id
=
0
;
id
<
pucch_res_set_
id
;
id
++
)
{
if
(
dlsch_config_pdu_1_1
->
pucch_resource_id
<
mac
->
ULbwp
[
bwp_id
-
1
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
array
[
id
]
->
resourceList
.
list
.
count
)
{
pucch_res_set_
cnt
=
mac
->
ULbwp
[
0
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
count
;
for
(
int
id
=
0
;
id
<
pucch_res_set_
cnt
;
id
++
)
{
if
(
dlsch_config_pdu_1_1
->
pucch_resource_id
<
mac
->
ULbwp
[
0
]
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
->
resourceSetToAddModList
->
list
.
array
[
id
]
->
resourceList
.
list
.
count
)
{
valid
=
1
;
break
;
}
...
...
This diff is collapsed.
Click to expand it.
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