From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Joonwoo Park" Subject: NET: ASSERT_RTNL in __dev_set_promiscuity makes debug warning Date: Tue, 4 Dec 2007 18:48:24 +0900 Message-ID: <000001c8365a$e0e500c0$9c94fea9@jason> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: , "'Linux Kernel Mailing List'" Return-path: Received: from wa-out-1112.google.com ([209.85.146.180]:54625 "EHLO wa-out-1112.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751216AbXLDJtW (ORCPT ); Tue, 4 Dec 2007 04:49:22 -0500 Received: by wa-out-1112.google.com with SMTP id v27so5995816wah for ; Tue, 04 Dec 2007 01:49:20 -0800 (PST) Sender: netdev-owner@vger.kernel.org List-ID: Hi, dev_set_rx_mode calls __dev_set_rx_mode with softirq disabled (by netif_tx_lock_bh) therefore __dev_set_promiscuity can be called with softirq disabled. It will cause in_interrupt() to return true and ASSERT_RTNL warning. Is there a good solution to fix it besides blowing ASSERT_RTNL up? Thanks. Joonwoo --- diff --git a/net/core/dev.c b/net/core/dev.c index 86d6261..6f8e72f 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -2747,8 +2747,6 @@ static void __dev_set_promiscuity(struct net_device *dev, int inc) { unsigned short old_flags = dev->flags; - ASSERT_RTNL(); - if ((dev->promiscuity += inc) == 0) dev->flags &= ~IFF_PROMISC; else --- message from e1000 (netdev->set_rx_mode is NULL) + vlan device mac address chage. WARNING: at kernel/mutex.c:324 __mutex_trylock_slowpath() Pid: 4523, comm: ifconfig Not tainted 2.6.24-rc3 #179 [] show_trace_log_lvl+0x1a/0x30 [] show_trace+0x12/0x20 [] dump_stack+0x6e/0x80 [] mutex_trylock+0xcd/0x130 [] rtnl_trylock+0xd/0x10 [] __dev_set_promiscuity+0x19/0x130 [] __dev_set_rx_mode+0x54/0x90 [] dev_unicast_add+0x61/0xb0 [] vlan_set_mac_address+0x104/0x150 [] dev_set_mac_address+0x51/0x70 [] dev_ifsioc+0x11a/0x270 [] dev_ioctl+0x211/0x510 [] sock_ioctl+0xea/0x220 [] do_ioctl+0x28/0x80 [] vfs_ioctl+0x57/0x280 [] sys_ioctl+0x39/0x60 [] sysenter_past_esp+0x5f/0x85 =======================