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
b11ba62b
Commit
b11ba62b
authored
Apr 23, 2018
by
Tien-Thinh Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix for multiple flows
parent
a0070948
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
openair2/RRC/LITE/rrc_UE.c
openair2/RRC/LITE/rrc_UE.c
+12
-1
No files found.
openair2/RRC/LITE/rrc_UE.c
View file @
b11ba62b
...
...
@@ -6123,7 +6123,7 @@ void *rrc_control_socket_thread_fct(void *arg)
pc5s_rbid
=
UE_rrc_inst
[
module_id
].
sl_info
[
j
-
1
].
LCID
;
UE_rrc_inst
[
module_id
].
sl_info
[
j
-
1
].
destinationL2Id
=
destinationL2Id
;
UE_rrc_inst
[
module_id
].
sl_info
[
j
-
1
].
sourceL2Id
=
sourceL2Id
;
LOG_I
(
RRC
,
"[PC5EstablishReq] establish rbid %d for
destinationL2Id Id: 0x%08x
\n
"
,
pc5s_rbid
,
UE_rrc_inst
[
module_id
].
sl_info
[
j
-
1
].
destinationL2Id
);
LOG_I
(
RRC
,
"[PC5EstablishReq] establish rbid %d for
PC5S TX (destinationL2Id Id: 0x%08x)
\n
"
,
pc5s_rbid
,
UE_rrc_inst
[
module_id
].
sl_info
[
j
-
1
].
destinationL2Id
);
}
}
...
...
@@ -6131,6 +6131,17 @@ void *rrc_control_socket_thread_fct(void *arg)
}
else
{
//RX
UE_rrc_inst
[
module_id
].
sourceL2Id
=
sourceL2Id
;
j
=
0
;
i
=
0
;
for
(
i
=
MAX_NUM_LCID_DATA
;
i
<
MAX_NUM_LCID
;
i
++
)
{
if
((
UE_rrc_inst
[
module_id
].
sl_info
[
i
].
LCID
==
0
)
&&
(
j
==
0
))
j
=
i
+
1
;
}
if
((
i
==
MAX_NUM_LCID
)
&&
(
j
>
0
))
{
UE_rrc_inst
[
module_id
].
sl_info
[
j
-
1
].
LCID
=
(
j
-
1
);
pc5s_rbid
=
UE_rrc_inst
[
module_id
].
sl_info
[
j
-
1
].
LCID
;
UE_rrc_inst
[
module_id
].
sl_info
[
j
-
1
].
sourceL2Id
=
sourceL2Id
;
LOG_I
(
RRC
,
"[PC5EstablishReq] establish rbid %d for PC5S (RX)
\n
"
,
pc5s_rbid
);
}
}
// configure lower layers PDCP/MAC/PHY for this communication
...
...
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