Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1348464 > unrolled thread

[REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for lo to become free. Usage count = 2

Started byJeremiah Mahler <jmmahler@gmail.com>
First post2016-03-02 21:40 +0100
Last post2016-03-03 06:30 +0100
Articles 4 — 3 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for lo  to become free. Usage count = 2 Jeremiah Mahler <jmmahler@gmail.com> - 2016-03-02 21:40 +0100
    Re: [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for  lo to become free. Usage count = 2 David Ahern <dsa@cumulusnetworks.com> - 2016-03-02 22:10 +0100
      Re: [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting  for lo to become free. Usage count = 2 Jeremiah Mahler <jmmahler@gmail.com> - 2016-03-03 02:30 +0100
        RE: [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for  lo to become free. Usage count = 2 Dexuan Cui <decui@microsoft.com> - 2016-03-03 06:30 +0100

#1348464 — [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for lo to become free. Usage count = 2

FromJeremiah Mahler <jmmahler@gmail.com>
Date2016-03-02 21:40 +0100
Subject[REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for lo to become free. Usage count = 2
Message-ID<r8lIR-4R2-7@gated-at.bofh.it>
Hi David,

On Tue, Mar 01, 2016 at 12:07:49PM -0800, Jeremiah Mahler wrote:
> Hi all,
> 
> On Tue, Mar 01, 2016 at 08:11:54AM +0000, Dexuan Cui wrote:
> > Hi, I got this line every 10 seconds with today's linux-next in a Hyper-V guest, even
> > when I didn't configure any NIC for the guest:
> >  
> > [   72.604249] unregister_netdevice: waiting for lo to become free. Usage count = 2
> > [   82.708170] unregister_netdevice: waiting for lo to become free. Usage count = 2
> > [   92.788079] unregister_netdevice: waiting for lo to become free. Usage count = 2
> > [  102.808132] unregister_netdevice: waiting for lo to become free. Usage count = 2
> > [  112.928166] unregister_netdevice: waiting for lo to become free. Usage count = 2
> > [  122.952069] unregister_netdevice: waiting for lo to become free. Usage count = 2
> > 
> > I don't think this is related to the underlying host, since it's related to "lo".
> > 
> > This should be a recent regression, as I remember the January linux-next didn't have
> > this issue.
> > 
> > Any idea?
> > 
> > The gzip-ed kernel config is attached FYI.
> > 
> > Thanks,
> > -- Dexuan
> > 
> 
> Just a "me too", but I have this problem on a Lenovo Carbon X1 when
> running linux-next 20160301.  It worked with 20160225.
> 
> I can test patches and I will try to bisect the problem as time allows.
> 
> -- 
> - Jeremiah Mahler

I performed a bisect and found that the following patch introduced the
regression.

  From f1705ec197e705b79ea40fe7a2cc5acfa1d3bfac Mon Sep 17 00:00:00 2001
  From: David Ahern <dsa@cumulusnetworks.com>
  Date: Wed, 24 Feb 2016 09:25:37 -0800
  Subject: [PATCH] net: ipv6: Make address flushing on ifdown optional
  
  Currently, all ipv6 addresses are flushed when the interface is configured
  down, including global, static addresses:
  
      $ ip -6 addr show dev eth1
      3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 state UP qlen 1000
          inet6 2100:1::2/120 scope global
             valid_lft forever preferred_lft forever
          inet6 fe80::e0:f9ff:fe79:34bd/64 scope link
             valid_lft forever preferred_lft forever
      $ ip link set dev eth1 down
      $ ip -6 addr show dev eth1
      << nothing; all addresses have been flushed>>
  
  Add a new sysctl to make this behavior optional. The new setting defaults to
  flush all addresses to maintain backwards compatibility. When the set global
  addresses with no expire times are not flushed on an admin down. The sysctl
  is per-interface or system-wide for all interfaces
  
      $ sysctl -w net.ipv6.conf.eth1.keep_addr_on_down=1
  or
      $ sysctl -w net.ipv6.conf.all.keep_addr_on_down=1
  
  Will keep addresses on eth1 on an admin down.
  
      $ ip -6 addr show dev eth1
      3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 state UP qlen 1000
          inet6 2100:1::2/120 scope global
             valid_lft forever preferred_lft forever
          inet6 fe80::e0:f9ff:fe79:34bd/64 scope link
             valid_lft forever preferred_lft forever
      $ ip link set dev eth1 down
      $ ip -6 addr show dev eth1
      3: eth1: <BROADCAST,MULTICAST> mtu 1500 state DOWN qlen 1000
          inet6 2100:1::2/120 scope global tentative
             valid_lft forever preferred_lft forever
          inet6 fe80::e0:f9ff:fe79:34bd/64 scope link tentative
             valid_lft forever preferred_lft forever
  
  Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
  Signed-off-by: David S. Miller <davem@davemloft.net>
  ---
   Documentation/networking/ip-sysctl.txt |   9 +++
   include/linux/ipv6.h                   |   1 +
   include/uapi/linux/ipv6.h              |   1 +
   net/ipv6/addrconf.c                    | 136 +++++++++++++++++++++++++++++----
   4 files changed, 132 insertions(+), 15 deletions(-)
  
  diff --git a/Documentation/networking/ip-sysctl.txt b/Documentation/networking/ip-sysctl.txt
  index 24ce97f..d5df40c 100644
  [...]

-- 
2.7.0


-- 
- Jeremiah Mahler

[toc] | [next] | [standalone]


#1348475 — Re: [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for lo to become free. Usage count = 2

FromDavid Ahern <dsa@cumulusnetworks.com>
Date2016-03-02 22:10 +0100
SubjectRe: [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for lo to become free. Usage count = 2
Message-ID<r8mbV-5gA-13@gated-at.bofh.it>
In reply to#1348464
On 3/2/16 12:31 PM, Jeremiah Mahler wrote:
>> On Tue, Mar 01, 2016 at 08:11:54AM +0000, Dexuan Cui wrote:
>>> Hi, I got this line every 10 seconds with today's linux-next in a Hyper-V guest, even
>>> when I didn't configure any NIC for the guest:
>>>
>>> [   72.604249] unregister_netdevice: waiting for lo to become free. Usage count = 2
>>> [   82.708170] unregister_netdevice: waiting for lo to become free. Usage count = 2
>>> [   92.788079] unregister_netdevice: waiting for lo to become free. Usage count = 2
>>> [  102.808132] unregister_netdevice: waiting for lo to become free. Usage count = 2
>>> [  112.928166] unregister_netdevice: waiting for lo to become free. Usage count = 2
>>> [  122.952069] unregister_netdevice: waiting for lo to become free. Usage count = 2
>>>
>>> I don't think this is related to the underlying host, since it's related to "lo".

This should fix it:
     https://patchwork.ozlabs.org/patch/591102/


David

[toc] | [prev] | [next] | [standalone]


#1348668 — Re: [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for lo to become free. Usage count = 2

FromJeremiah Mahler <jmmahler@gmail.com>
Date2016-03-03 02:30 +0100
SubjectRe: [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for lo to become free. Usage count = 2
Message-ID<r8qfw-84R-9@gated-at.bofh.it>
In reply to#1348475
Hi David,

On Wed, Mar 02, 2016 at 01:00:21PM -0800, David Ahern wrote:
> On 3/2/16 12:31 PM, Jeremiah Mahler wrote:
> >>On Tue, Mar 01, 2016 at 08:11:54AM +0000, Dexuan Cui wrote:
> >>>Hi, I got this line every 10 seconds with today's linux-next in a Hyper-V guest, even
> >>>when I didn't configure any NIC for the guest:
> >>>
> >>>[   72.604249] unregister_netdevice: waiting for lo to become free. Usage count = 2
> >>>[   82.708170] unregister_netdevice: waiting for lo to become free. Usage count = 2
> >>>[   92.788079] unregister_netdevice: waiting for lo to become free. Usage count = 2
> >>>[  102.808132] unregister_netdevice: waiting for lo to become free. Usage count = 2
> >>>[  112.928166] unregister_netdevice: waiting for lo to become free. Usage count = 2
> >>>[  122.952069] unregister_netdevice: waiting for lo to become free. Usage count = 2
> >>>
> >>>I don't think this is related to the underlying host, since it's related to "lo".
> 
> This should fix it:
>     https://patchwork.ozlabs.org/patch/591102/
> 
> 
> David

That patch fixes the problem on my machine.
Thanks for the quick fix :-)

-- 
- Jeremiah Mahler

[toc] | [prev] | [next] | [standalone]


#1348794 — RE: [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for lo to become free. Usage count = 2

FromDexuan Cui <decui@microsoft.com>
Date2016-03-03 06:30 +0100
SubjectRE: [REGRESSION, bisect] net: ipv6: unregister_netdevice: waiting for lo to become free. Usage count = 2
Message-ID<r8tZM-2hu-11@gated-at.bofh.it>
In reply to#1348668
> Hi David,
> On Wed, Mar 02, 2016 at 01:00:21PM -0800, David Ahern wrote:
> > On 3/2/16 12:31 PM, Jeremiah Mahler wrote:
> > >>On Tue, Mar 01, 2016 at 08:11:54AM +0000, Dexuan Cui wrote:
> > >>>Hi, I got this line every 10 seconds with today's linux-next in a Hyper-V
> guest, even
> > >>>when I didn't configure any NIC for the guest:
> > >>>
> > >>>[   72.604249] unregister_netdevice: waiting for lo to become free. Usage
> count = 2
> > >>>[   82.708170] unregister_netdevice: waiting for lo to become free. Usage
> count = 2
> > >>>[   92.788079] unregister_netdevice: waiting for lo to become free. Usage
> count = 2
> > >>>[  102.808132] unregister_netdevice: waiting for lo to become free. Usage
> count = 2
> > >>>[  112.928166] unregister_netdevice: waiting for lo to become free. Usage
> count = 2
> > >>>[  122.952069] unregister_netdevice: waiting for lo to become free. Usage
> count = 2
> > >>>
> > >>>I don't think this is related to the underlying host, since it's related to "lo".
> >
> > This should fix it:
> > https://patchwork.ozlabs.org/patch/591102/
> 
> > David
> 
> That patch fixes the problem on my machine.
> Thanks for the quick fix :-)
> 
> - Jeremiah Mahler

This works for me too! Thanks!

Thanks,
-- Dexuan

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web