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
spbro
OpenXG-RAN
Commits
2a4fa1da
Commit
2a4fa1da
authored
Oct 04, 2016
by
Nikos Makris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed broken UL for data plane split
parent
9f3b8cb9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
23 deletions
+18
-23
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
+4
-9
openair2/LAYER2/PROTO_AGENT/proto_agent_common.c
openair2/LAYER2/PROTO_AGENT/proto_agent_common.c
+1
-1
openair2/LAYER2/RLC/rlc.c
openair2/LAYER2/RLC/rlc.c
+13
-13
No files found.
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
View file @
2a4fa1da
...
...
@@ -368,16 +368,10 @@ boolean_t pdcp_data_req(
#endif
//starting async
// const Enb_properties_array_t *enb_properties_p = NULL;
Enb_properties_array_t
*
enb_properties_p
=
NULL
;
// enb_properties_p = malloc(sizeof(Enb_properties_array_t));
// memset(enb_properties_p, 0, sizeof(Enb_properties_array_t));
// printf("starting the client\n\n");
// printf("Starting the async client\n")
;
// new_thread(proto_server_start, NULL);
enb_properties_p
=
enb_config_get
();
Enb_properties_array_t
*
enb_properties_p
=
NULL
;
enb_properties_p
=
enb_config_get
();
static
int
agent_started
=
1
;
...
...
@@ -407,6 +401,7 @@ boolean_t pdcp_data_req(
}
else
{
// It should never get here
rlc_status
=
rlc_data_req
(
ctxt_pP
,
srb_flagP
,
MBMS_FLAG_NO
,
rb_idP
,
muiP
,
confirmP
,
pdcp_pdu_size
,
pdcp_pdu_p
);
}
}
...
...
openair2/LAYER2/PROTO_AGENT/proto_agent_common.c
View file @
2a4fa1da
...
...
@@ -437,7 +437,7 @@ int proto_agent_pdcp_data_ind(mid_t mod_id, const void *params, Protocol__Flexsp
printf
(
"MSG payload is %u"
,
args
->
sdu_size
);
//
memcpy(pdu->fsp_pdu_data.data, args->sdu_p, args->sdu_size);
memcpy
(
pdu
->
fsp_pdu_data
.
data
,
args
->
sdu_p
,
args
->
sdu_size
);
pdu
->
has_fsp_pdu_data
=
1
;
// Copy data to the ctxt structure
...
...
openair2/LAYER2/RLC/rlc.c
View file @
2a4fa1da
...
...
@@ -653,25 +653,25 @@ void rlc_data_ind (
T
(
T_ENB_RLC_UL
,
T_INT
(
ctxt_pP
->
module_id
),
T_INT
(
ctxt_pP
->
rnti
),
T_INT
(
rb_idP
),
T_INT
(
sdu_sizeP
));
#endif
if
(
!
srb_flagP
)
{
//
if (!srb_flagP)
//
{
proto_agent_send_pdcp_data_ind
(
ctxt_pP
,
srb_flagP
,
MBMS_flagP
,
rb_idP
,
sdu_sizeP
,
sdu_pP
);
}
else
{
pdcp_data_ind
(
ctxt_pP
,
srb_flagP
,
MBMS_flagP
,
rb_idP
,
sdu_sizeP
,
sdu_pP
);
}
//
}
//
else
//
{
//
pdcp_data_ind (
//
ctxt_pP,
//
srb_flagP,
//
MBMS_flagP,
//
rb_idP,
//
sdu_sizeP,
//
sdu_pP);
//
}
}
//-----------------------------------------------------------------------------
void
rlc_data_conf
(
const
protocol_ctxt_t
*
const
ctxt_pP
,
...
...
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