From: David Mosberger-Tang Date: Thu, 9 Dec 2021 04:44:28 +0000 (+0000) Subject: wilc1000: Rename tx task from "K_TXQ_TASK" to NETDEV-tx X-Git-Tag: v6.6.17~8491^2~165^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3cc23932ba2a9aaa8c62d1a9ecb1fe7c296f9f32;p=platform%2Fkernel%2Flinux-rpi.git wilc1000: Rename tx task from "K_TXQ_TASK" to NETDEV-tx This follows normal Linux conventions and is also more useful because the netdevice name is part of the task name (e.g., "wlan0-tx" for network device "wlan0"). Signed-off-by: David Mosberger-Tang Signed-off-by: Kalle Valo Link: https://lore.kernel.org/r/20211209044411.3482259-4-davidm@egauge.net --- diff --git a/drivers/net/wireless/microchip/wilc1000/netdev.c b/drivers/net/wireless/microchip/wilc1000/netdev.c index a423095..dec550c 100644 --- a/drivers/net/wireless/microchip/wilc1000/netdev.c +++ b/drivers/net/wireless/microchip/wilc1000/netdev.c @@ -468,7 +468,7 @@ static int wlan_initialize_threads(struct net_device *dev) struct wilc *wilc = vif->wilc; wilc->txq_thread = kthread_run(wilc_txq_task, (void *)wilc, - "K_TXQ_TASK"); + "%s-tx", dev->name); if (IS_ERR(wilc->txq_thread)) { netdev_err(dev, "couldn't create TXQ thread\n"); wilc->close = 0;