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
a9990512
Commit
a9990512
authored
Jul 02, 2018
by
WEI-TAI CHEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Amend L1 instant
parent
4323aa48
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
targets/RT/USER/nr-gnb.c
targets/RT/USER/nr-gnb.c
+1
-1
targets/RT/USER/nr-softmodem.c
targets/RT/USER/nr-softmodem.c
+3
-3
No files found.
targets/RT/USER/nr-gnb.c
View file @
a9990512
...
@@ -949,7 +949,7 @@ void init_gNB(int single_thread_flag,int wait_for_sync) {
...
@@ -949,7 +949,7 @@ void init_gNB(int single_thread_flag,int wait_for_sync) {
void
stop_gNB
(
int
nb_inst
)
{
void
stop_gNB
(
int
nb_inst
)
{
for
(
int
inst
=
0
;
inst
<
nb_
nr_
inst
;
inst
++
)
{
for
(
int
inst
=
0
;
inst
<
nb_inst
;
inst
++
)
{
LOG_I
(
PHY
,
"Killing gNB %d processing threads
\n
"
,
inst
);
LOG_I
(
PHY
,
"Killing gNB %d processing threads
\n
"
,
inst
);
kill_gNB_proc
(
inst
);
kill_gNB_proc
(
inst
);
}
}
...
...
targets/RT/USER/nr-softmodem.c
View file @
a9990512
...
@@ -801,7 +801,7 @@ int stop_L1L2(module_id_t gnb_id)
...
@@ -801,7 +801,7 @@ int stop_L1L2(module_id_t gnb_id)
LOG_I
(
ENB_APP
,
"calling kill_RU_proc() for instance %d
\n
"
,
gnb_id
);
LOG_I
(
ENB_APP
,
"calling kill_RU_proc() for instance %d
\n
"
,
gnb_id
);
kill_RU_proc
(
gnb_id
);
kill_RU_proc
(
gnb_id
);
oai_exit
=
0
;
oai_exit
=
0
;
for
(
int
cc_id
=
0
;
cc_id
<
RC
.
nb_CC
[
gnb_id
];
cc_id
++
)
{
for
(
int
cc_id
=
0
;
cc_id
<
RC
.
nb_
nr_
CC
[
gnb_id
];
cc_id
++
)
{
//free_transport(RC.gNB[gnb_id][cc_id]);
//free_transport(RC.gNB[gnb_id][cc_id]);
phy_free_nr_gNB
(
RC
.
gNB
[
gnb_id
][
cc_id
]);
phy_free_nr_gNB
(
RC
.
gNB
[
gnb_id
][
cc_id
]);
}
}
...
@@ -824,7 +824,7 @@ int restart_L1L2(module_id_t gnb_id)
...
@@ -824,7 +824,7 @@ int restart_L1L2(module_id_t gnb_id)
/* block threads */
/* block threads */
sync_var
=
-
1
;
sync_var
=
-
1
;
for
(
cc_id
=
0
;
cc_id
<
RC
.
nb_L1_CC
[
gnb_id
];
cc_id
++
)
{
for
(
cc_id
=
0
;
cc_id
<
RC
.
nb_
nr_
L1_CC
[
gnb_id
];
cc_id
++
)
{
RC
.
gNB
[
gnb_id
][
cc_id
]
->
configured
=
0
;
RC
.
gNB
[
gnb_id
][
cc_id
]
->
configured
=
0
;
}
}
...
@@ -1257,7 +1257,7 @@ int main( int argc, char **argv )
...
@@ -1257,7 +1257,7 @@ int main( int argc, char **argv )
/* release memory used by the RU/gNB threads (incomplete), after all
/* release memory used by the RU/gNB threads (incomplete), after all
* threads have been stopped (they partially use the same memory) */
* threads have been stopped (they partially use the same memory) */
for
(
int
inst
=
0
;
inst
<
NB_gNB_INST
;
inst
++
)
{
for
(
int
inst
=
0
;
inst
<
NB_gNB_INST
;
inst
++
)
{
for
(
int
cc_id
=
0
;
cc_id
<
RC
.
nb_CC
[
inst
];
cc_id
++
)
{
for
(
int
cc_id
=
0
;
cc_id
<
RC
.
nb_
nr_
CC
[
inst
];
cc_id
++
)
{
//free_transport(RC.gNB[inst][cc_id]);
//free_transport(RC.gNB[inst][cc_id]);
phy_free_nr_gNB
(
RC
.
gNB
[
inst
][
cc_id
]);
phy_free_nr_gNB
(
RC
.
gNB
[
inst
][
cc_id
]);
}
}
...
...
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