Skip to content

Commit cb556c8

Browse files
robertfalkenbergcodebot
authored andcommitted
gnb: configurable size of ue_up_ul_exec queue
1 parent d8ff8aa commit cb556c8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/gnb/gnb_worker_manager.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,9 @@ void worker_manager::create_du_cu_executors(const gnb_appconfig& appcfg)
165165
for (unsigned i = 0; i != nof_up_strands; ++i) {
166166
cu_up_strands.push_back(
167167
strand{{{fmt::format("ue_up_ctrl_exec#{}", i), concurrent_queue_policy::lockfree_mpmc, task_worker_queue_size},
168-
{fmt::format("ue_up_ul_exec#{}", i), concurrent_queue_policy::lockfree_mpmc, task_worker_queue_size},
168+
{fmt::format("ue_up_ul_exec#{}", i),
169+
concurrent_queue_policy::lockfree_mpmc,
170+
appcfg.cu_up_cfg.gtpu_queue_size}, // TODO: Consider separate param for size of UL queue if needed.
169171
{fmt::format("ue_up_dl_exec#{}", i),
170172
concurrent_queue_policy::lockfree_spsc,
171173
appcfg.cu_up_cfg.gtpu_queue_size}}});

0 commit comments

Comments
 (0)