Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shweta Shrivastava
openairinterface5G
Commits
f3776562
Commit
f3776562
authored
10 years ago
by
gauthier
Browse files
Options
Downloads
Patches
Plain Diff
debug trace
git-svn-id:
http://svn.eurecom.fr/openair4G/trunk@5247
818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent
e46ed53f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_reassembly.c
+12
-4
12 additions, 4 deletions
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_reassembly.c
with
12 additions
and
4 deletions
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_reassembly.c
+
12
−
4
View file @
f3776562
...
@@ -144,12 +144,20 @@ void rlc_am_send_sdu (rlc_am_entity_t *rlc_pP,frame_t frameP, eNB_flag_t eNB_fla
...
@@ -144,12 +144,20 @@ void rlc_am_send_sdu (rlc_am_entity_t *rlc_pP,frame_t frameP, eNB_flag_t eNB_fla
LOG_E
(
RLC
,
"[FRAME %5u][%s][RLC_AM][MOD %u/%u][RB %u][SEND_SDU] ERROR SIZE <= 0 ... DO NOTHING, SET SDU SIZE TO 0
\n
"
,
LOG_E
(
RLC
,
"[FRAME %5u][%s][RLC_AM][MOD %u/%u][RB %u][SEND_SDU] ERROR SIZE <= 0 ... DO NOTHING, SET SDU SIZE TO 0
\n
"
,
frameP
,
frameP
,
(
rlc_pP
->
is_enb
)
?
"eNB"
:
"UE"
,
(
rlc_pP
->
is_enb
)
?
"eNB"
:
"UE"
,
rlc_pP
->
enb_module_id
,
rlc_pP
->
enb_module_id
,
rlc_pP
->
ue_module_id
,
rlc_pP
->
ue_module_id
,
rlc_pP
->
rb_id
);
rlc_pP
->
rb_id
);
//msg("[RLC_AM][MOD %d] Freeing mem_block ...\n", rlc_pP->module_id);
//msg("[RLC_AM][MOD %d] Freeing mem_block ...\n", rlc_pP->module_id);
//free_mem_block (rlc_pP->output_sdu_in_construction);
//free_mem_block (rlc_pP->output_sdu_in_construction);
assert
(
3
==
4
);
AssertFatal
(
3
==
4
,
"[FRAME %5u][%s][RLC_AM][MOD %u/%u][%s %u] SEND SDU REQUESTED %d bytes"
,
frameP
,
(
rlc_pP
->
is_enb
)
?
"eNB"
:
"UE"
,
rlc_pP
->
enb_module_id
,
rlc_pP
->
ue_module_id
,
(
rlc_pP
->
is_data_plane
)
?
"DRB"
:
"SRB"
,
rlc_pP
->
rb_id
,
rlc_pP
->
output_sdu_size_to_write
);
}
}
rlc_pP
->
output_sdu_size_to_write
=
0
;
rlc_pP
->
output_sdu_size_to_write
=
0
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment