Skip to content

Commit 3cc2393

Browse files
dmosbergerKalle Valo
authored andcommitted
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 <davidm@egauge.net> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20211209044411.3482259-4-davidm@egauge.net
1 parent 30e08bc commit 3cc2393

File tree

1 file changed

+1
-1
lines changed
  • drivers/net/wireless/microchip/wilc1000

1 file changed

+1
-1
lines changed

drivers/net/wireless/microchip/wilc1000/netdev.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ static int wlan_initialize_threads(struct net_device *dev)
468468
struct wilc *wilc = vif->wilc;
469469

470470
wilc->txq_thread = kthread_run(wilc_txq_task, (void *)wilc,
471-
"K_TXQ_TASK");
471+
"%s-tx", dev->name);
472472
if (IS_ERR(wilc->txq_thread)) {
473473
netdev_err(dev, "couldn't create TXQ thread\n");
474474
wilc->close = 0;

0 commit comments

Comments
 (0)