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
c2ab0aab
Commit
c2ab0aab
authored
Aug 05, 2023
by
swu
Committed by
Jerome Peraldi
Aug 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug #122144: [LTE][36523 8.1.2.2][eNB][RA]fake HARQ feedback for...
parent
808f0b34
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
openair2/LAYER2/MAC/eNB_scheduler_RA.c
openair2/LAYER2/MAC/eNB_scheduler_RA.c
+5
-0
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+2
-0
No files found.
openair2/LAYER2/MAC/eNB_scheduler_RA.c
View file @
c2ab0aab
...
@@ -1016,6 +1016,11 @@ generate_Msg4(module_id_t module_idP,
...
@@ -1016,6 +1016,11 @@ generate_Msg4(module_id_t module_idP,
// put HARQ process round to 0
// put HARQ process round to 0
ra
->
harq_pid
=
frame_subframe2_dl_harq_pid
(
cc
->
tdd_Config
,
frameP
,
subframeP
);
ra
->
harq_pid
=
frame_subframe2_dl_harq_pid
(
cc
->
tdd_Config
,
frameP
,
subframeP
);
UE_info
->
UE_sched_ctrl
[
UE_id
].
round
[
CC_idP
][
ra
->
harq_pid
]
=
0
;
UE_info
->
UE_sched_ctrl
[
UE_id
].
round
[
CC_idP
][
ra
->
harq_pid
]
=
0
;
if
(
rrc_sdu_length
>
0
&&
rrc_sdu_length
<=
10
&&
RC
.
ss
.
mode
>
SS_ENB
){
//This is simple condition to determine the rrc message is rrcConnectionReject
// UE would not send HARQ feedback as DL HARQ entity release when received rrcConnectionReject
UE_info
->
UE_sched_ctrl
[
UE_id
].
round
[
CC_idP
][
ra
->
harq_pid
]
=
8
;
/* fake ACK, No retransmission */
}
if
((
ra
->
msg4_TBsize
-
rrc_sdu_length
-
msg4_header
)
<=
2
)
{
if
((
ra
->
msg4_TBsize
-
rrc_sdu_length
-
msg4_header
)
<=
2
)
{
msg4_padding
=
ra
->
msg4_TBsize
-
rrc_sdu_length
-
msg4_header
;
msg4_padding
=
ra
->
msg4_TBsize
-
rrc_sdu_length
-
msg4_header
;
...
...
openair2/RRC/LTE/rrc_eNB.c
View file @
c2ab0aab
...
@@ -9627,6 +9627,8 @@ void *rrc_enb_process_itti_msg(void *notUsed) {
...
@@ -9627,6 +9627,8 @@ void *rrc_enb_process_itti_msg(void *notUsed) {
rrc_eNB_generate_RRCConnectionReject
(
&
ctxt
,
ue_context_pP
,
cc_id
);
rrc_eNB_generate_RRCConnectionReject
(
&
ctxt
,
ue_context_pP
,
cc_id
);
lchannelType
=
Bearer_CCCH_e
;
lchannelType
=
Bearer_CCCH_e
;
bcchTransportType
=
dlsch_TRANSPORT
;
bcchTransportType
=
dlsch_TRANSPORT
;
ue_context_pP
->
ue_context
.
ue_release_timer
=
1
;
ue_context_pP
->
ue_context
.
ue_release_timer_thres
=
10
;
}
}
}
}
}
}
...
...
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