From: Chengwen Feng <fengcheng...@huawei.com>

This patch supports set VSI reset thread name which is helpful for
debugging.

Signed-off-by: Chengwen Feng <fengcheng...@huawei.com>
Signed-off-by: Min Hu (Connor) <humi...@huawei.com>
---
 drivers/net/ice/ice_dcf_parent.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ice/ice_dcf_parent.c b/drivers/net/ice/ice_dcf_parent.c
index a8571b3..c8e4332 100644
--- a/drivers/net/ice/ice_dcf_parent.c
+++ b/drivers/net/ice/ice_dcf_parent.c
@@ -151,7 +151,9 @@ ice_dcf_vsi_update_service_handler(void *param)
 static void
 start_vsi_reset_thread(struct ice_dcf_hw *dcf_hw, bool vfr, uint16_t vf_id)
 {
+#define THREAD_NAME_LEN        16
        struct ice_dcf_reset_event_param *param;
+       char name[THREAD_NAME_LEN];
        pthread_t thread;
        int ret;
 
@@ -165,9 +167,10 @@ start_vsi_reset_thread(struct ice_dcf_hw *dcf_hw, bool 
vfr, uint16_t vf_id)
        param->vfr = vfr;
        param->vf_id = vf_id;
 
-       ret = pthread_create(&thread, NULL,
-                            ice_dcf_vsi_update_service_handler, param);
-       if (ret) {
+       snprintf(name, sizeof(name), "ice-reset-%u", vf_id);
+       ret = rte_ctrl_thread_create(&thread, name, NULL,
+                                    ice_dcf_vsi_update_service_handler, param);
+       if (ret != 0) {
                PMD_DRV_LOG(ERR, "Failed to start the thread for reset 
handling");
                free(param);
        }
-- 
2.7.4

Reply via email to