eal: set name when creating a control thread
[dpdk.git] / lib / librte_eal / linuxapp / eal / eal_interrupts.c
index 8fee317..4b5e6da 100644 (file)
@@ -873,7 +873,7 @@ eal_intr_thread_main(__rte_unused void *arg)
 int
 rte_eal_intr_init(void)
 {
-       int ret = 0, ret_1 = 0;
+       int ret = 0;
        char thread_name[RTE_MAX_THREAD_NAME_LEN];
 
        /* init the global interrupt source head */
@@ -889,20 +889,13 @@ rte_eal_intr_init(void)
        }
 
        /* create the host thread to wait/handle the interrupt */
-       ret = rte_ctrl_thread_create(&intr_thread, NULL,
+       snprintf(thread_name, sizeof(thread_name), "eal-intr-thread");
+       ret = rte_ctrl_thread_create(&intr_thread, thread_name, NULL,
                        eal_intr_thread_main, NULL);
        if (ret != 0) {
                rte_errno = -ret;
                RTE_LOG(ERR, EAL,
                        "Failed to create thread for interrupt handling\n");
-       } else {
-               /* Set thread_name for aid in debugging. */
-               snprintf(thread_name, RTE_MAX_THREAD_NAME_LEN,
-                       "eal-intr-thread");
-               ret_1 = rte_thread_setname(intr_thread, thread_name);
-               if (ret_1 != 0)
-                       RTE_LOG(DEBUG, EAL,
-                       "Failed to set thread name for interrupt handling\n");
        }
 
        return ret;