X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=blobdiff_plain;f=lib%2Flibrte_eal%2Fcommon%2Feal_common_thread.c;h=4e75cb81f50126470f1ee6d52d42041df4aef508;hp=94d2a6e423af2669dbe07c3002261cb0aecba3e4;hb=d651ee4919cd694d58f6388c10d0af9ed9ae51f3;hpb=6383d2642b62f430c0ddb991dcfa75a5b2a4aec6 diff --git a/lib/librte_eal/common/eal_common_thread.c b/lib/librte_eal/common/eal_common_thread.c index 94d2a6e423..4e75cb81f5 100644 --- a/lib/librte_eal/common/eal_common_thread.c +++ b/lib/librte_eal/common/eal_common_thread.c @@ -16,6 +16,7 @@ #include #include +#include "eal_private.h" #include "eal_thread.h" RTE_DECLARE_PER_LCORE(unsigned , _socket_id); @@ -169,7 +170,9 @@ rte_ctrl_thread_create(pthread_t *thread, const char *name, .start_routine = start_routine, .arg = arg, }; - int ret; + unsigned int lcore_id; + rte_cpuset_t cpuset; + int cpu_found, ret; pthread_barrier_init(¶ms.configured, NULL, 2); @@ -183,6 +186,23 @@ rte_ctrl_thread_create(pthread_t *thread, const char *name, goto fail; } + cpu_found = 0; + CPU_ZERO(&cpuset); + for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) { + if (eal_cpu_detected(lcore_id) && + rte_lcore_has_role(lcore_id, ROLE_OFF)) { + CPU_SET(lcore_id, &cpuset); + cpu_found = 1; + } + } + /* if no detected cpu is off, use master core */ + if (!cpu_found) + CPU_SET(rte_get_master_lcore(), &cpuset); + + ret = pthread_setaffinity_np(*thread, sizeof(cpuset), &cpuset); + if (ret < 0) + goto fail; + pthread_barrier_wait(¶ms.configured); return 0;