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
zzha zzha
OpenXG-RAN
Commits
3df849ec
Commit
3df849ec
authored
Sep 03, 2021
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code clean up
parent
0b7ce435
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
+0
-7
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c
+0
-7
No files found.
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c
View file @
3df849ec
...
...
@@ -1587,25 +1587,18 @@ int nr_rlc_entity_am_generate_pdu(nr_rlc_entity_t *_entity,
{
nr_rlc_entity_am_t
*
entity
=
(
nr_rlc_entity_am_t
*
)
_entity
;
int
ret
;
LOG_I
(
MAC
,
"Melissa Elkadi, in %s(): %d
\n
"
,
__FUNCTION__
,
__LINE__
);
if
(
status_to_report
(
entity
))
{
LOG_I
(
MAC
,
"Melissa Elkadi, in %s(): %d
\n
"
,
__FUNCTION__
,
__LINE__
);
ret
=
generate_status
(
entity
,
buffer
,
size
);
if
(
ret
!=
0
)
return
ret
;
}
if
(
entity
->
retransmit_list
!=
NULL
)
{
LOG_I
(
MAC
,
"Melissa Elkadi, in %s(): %d
\n
"
,
__FUNCTION__
,
__LINE__
);
ret
=
generate_retx_pdu
(
entity
,
buffer
,
size
);
if
(
ret
!=
0
)
return
ret
;
}
char
buf
[
1024
];
hexdump
(
buffer
,
size
,
buf
,
sizeof
(
buf
));
LOG_I
(
MAC
,
"Melissa Elkadi, this is hexdump of pdu %s right before calling generate_pdu in %s
\n
"
,
buf
,
__FUNCTION__
);
return
generate_tx_pdu
(
entity
,
buffer
,
size
);
}
...
...
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