Commit a9990512 authored by WEI-TAI CHEN's avatar WEI-TAI CHEN

Amend L1 instant

parent 4323aa48
...@@ -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);
} }
......
...@@ -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]);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment