lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1344869014-7110-1-git-send-email-shchepetkov@ispras.ru> Date: Mon, 13 Aug 2012 18:43:34 +0400 From: Ilya Shchepetkov <shchepetkov@...ras.ru> To: "David S. Miller" <davem@...emloft.net> Cc: Ilya Shchepetkov <shchepetkov@...ras.ru>, netdev@...r.kernel.org, linux-kernel@...r.kernel.org, ldv-project@...ras.ru Subject: [PATCH] net: Fix incorrect comment in netif_tx_stop_queue() netif_stop_queue() can be called before register_netdev() because now TX queues are allocated inside alloc_netdev_mqs(). (since ed9af2e839c06c18f721da2c768fbb444c4a10e5 commit) Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Ilya Shchepetkov <shchepetkov@...ras.ru> --- include/linux/netdevice.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index a9db4f3..a94fbbd 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1860,7 +1860,7 @@ static inline void netif_tx_wake_all_queues(struct net_device *dev) static inline void netif_tx_stop_queue(struct netdev_queue *dev_queue) { if (WARN_ON(!dev_queue)) { - pr_info("netif_stop_queue() cannot be called before register_netdev()\n"); + pr_info("dev_queue is null\n"); return; } set_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state); -- 1.7.7 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists