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
Michael Black
OpenXG-RAN
Commits
4876c7a3
Commit
4876c7a3
authored
Nov 25, 2021
by
Laurent THOMAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug in WORKER_DISABLE
parent
4ccc1c72
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
openair1/SCHED_NR/nr_ru_procedures.c
openair1/SCHED_NR/nr_ru_procedures.c
+4
-3
openair2/LAYER2/nr_pdcp/nr_pdcp_timer_thread.c
openair2/LAYER2/nr_pdcp/nr_pdcp_timer_thread.c
+2
-0
No files found.
openair1/SCHED_NR/nr_ru_procedures.c
View file @
4876c7a3
...
...
@@ -477,9 +477,10 @@ void nr_feptx_prec(RU_t *ru,int frame_tx,int tti_tx) {
memcpy
((
void
*
)
ru
->
common
.
txdataF
[
i
],
(
void
*
)
&
gNB
->
common_vars
.
txdataF
[
i
][
txdataF_offset
],
fp
->
samples_per_slot_wCP
*
sizeof
(
int32_t
));
memcpy
((
void
*
)
&
ru
->
common
.
beam_id
[
i
][
slot_tx
*
fp
->
symbols_per_slot
],
(
void
*
)
&
gNB
->
common_vars
.
beam_id
[
i
][
slot_tx
*
fp
->
symbols_per_slot
],
fp
->
symbols_per_slot
*
sizeof
(
uint8_t
));
if
(
ru
->
do_precoding
==
1
)
memcpy
((
void
*
)
&
ru
->
common
.
beam_id
[
i
][
slot_tx
*
fp
->
symbols_per_slot
],
(
void
*
)
&
gNB
->
common_vars
.
beam_id
[
i
][
slot_tx
*
fp
->
symbols_per_slot
],
fp
->
symbols_per_slot
*
sizeof
(
uint8_t
));
}
if
(
ru
->
nb_tx
==
1
&&
ru
->
nb_log_antennas
==
1
)
{
...
...
openair2/LAYER2/nr_pdcp/nr_pdcp_timer_thread.c
View file @
4876c7a3
...
...
@@ -19,6 +19,7 @@
* contact@openairinterface.org
*/
#define _GNU_SOURCE
#include "nr_pdcp_timer_thread.h"
#include <stdlib.h>
...
...
@@ -33,6 +34,7 @@ static volatile uint64_t timer_thread_curtime = 0;
static
void
*
nr_pdcp_timer_thread
(
void
*
_nr_pdcp_ue_manager
)
{
pthread_setname_np
(
pthread_self
(),
"pdcp_timer"
);
nr_pdcp_ue_manager_t
*
nr_pdcp_ue_manager
=
(
nr_pdcp_ue_manager_t
*
)
_nr_pdcp_ue_manager
;
nr_pdcp_ue_t
**
ue_list
;
int
ue_count
;
...
...
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