From 658aa7fbcf40f0b5072d01a3c872bcf10e44ab54 Mon Sep 17 00:00:00 2001 From: Ferrol Aderholdt Date: Wed, 30 Oct 2024 12:07:30 -0700 Subject: [PATCH] CL/DOCA_UROM: disable core pinning in doca worker (#1019) * CL/DOCA_UROM: disable core pinning in doca worker * REVIEW: address feedback --------- Co-authored-by: ferrol aderholdt --- contrib/doca_urom_ucc_plugin/dpu/worker_ucc.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/contrib/doca_urom_ucc_plugin/dpu/worker_ucc.c b/contrib/doca_urom_ucc_plugin/dpu/worker_ucc.c index 426b2f0e98..779fb15504 100644 --- a/contrib/doca_urom_ucc_plugin/dpu/worker_ucc.c +++ b/contrib/doca_urom_ucc_plugin/dpu/worker_ucc.c @@ -178,8 +178,6 @@ static doca_error_t urom_worker_ucc_open(struct urom_worker_ctx *ctx) ucp_worker_params_t worker_params; struct urom_worker_ucc *ucc_worker; - dpu_thread_set_affinity_specific_core(get_ncores() - 1); - if (ctx == NULL) { return DOCA_ERROR_INVALID_VALUE; } @@ -995,8 +993,6 @@ static void *urom_worker_ucc_progress_thread(void *arg) int size; struct ucc_queue_element *qe; - dpu_thread_set_affinity(thread_id); - while (ucc_component_enabled) { size = queue_size[thread_id]; for (i = 0; i < size; i++) {