Skip to content
Snippets Groups Projects
Commit 4f2f0f11 authored by Wu Jing's avatar Wu Jing
Browse files

fix issue that RCC calls phy_procedures_eNB_TX if PARALLEL_RU_L1_SPLIT

parent e9d04428
No related branches found
No related tags found
5 merge requests!650Release v1.1.0 Candidate,!649Develop: Integration 2019 Week 30,!642Develop: Integration 2019 Mid-Week 29,!630nfapi interface bug fix,!588Develop nr merge
...@@ -402,13 +402,14 @@ static void *L1_thread( void *param ) { ...@@ -402,13 +402,14 @@ static void *L1_thread( void *param ) {
if (rxtx(eNB,proc,thread_name) < 0) break; if (rxtx(eNB,proc,thread_name) < 0) break;
} }
if(get_thread_parallel_conf() == PARALLEL_RU_L1_SPLIT) phy_procedures_eNB_TX(eNB, proc, 1);
if (release_thread(&proc->mutex,&proc->instance_cnt,thread_name)<0) break; if (release_thread(&proc->mutex,&proc->instance_cnt,thread_name)<0) break;
if (NFAPI_MODE!=NFAPI_MODE_VNF) { if (NFAPI_MODE!=NFAPI_MODE_VNF) {
if(get_thread_parallel_conf() == PARALLEL_RU_L1_TRX_SPLIT) wakeup_tx(eNB); if(get_thread_parallel_conf() == PARALLEL_RU_L1_TRX_SPLIT) wakeup_tx(eNB);
else if(get_thread_parallel_conf() == PARALLEL_RU_L1_SPLIT) wakeup_txfh(proc,eNB); else if(get_thread_parallel_conf() == PARALLEL_RU_L1_SPLIT) {
phy_procedures_eNB_TX(eNB, proc, 1);
wakeup_txfh(proc,eNB);
}
} }
} // while !oai_exit } // while !oai_exit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment