mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 10:33:41 +02:00
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
This commit is contained in:
parent
30e08bc0a9
commit
3cc23932ba
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user