]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
rtnetlink: call ->dellink on failure when ->newlink exists
authorWANG Cong <xiyou.wangcong@gmail.com>
Fri, 13 Feb 2015 21:56:53 +0000 (13:56 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Mar 2015 12:31:21 +0000 (13:31 +0100)
commitb830ba60e4ccd5d53c4746a9c3c7283511628b5f
tree05b008a6c27747e101296f289426c882efd96e6a
parent8f9239642af2f19f57f0eda626e9b6138141a2e1
rtnetlink: call ->dellink on failure when ->newlink exists

[ Upstream commit 7afb8886a05be68e376655539a064ec672de8a8e ]

Ignacy reported that when eth0 is down and add a vlan device
on top of it like:

  ip link add link eth0 name eth0.1 up type vlan id 1

We will get a refcount leak:

  unregister_netdevice: waiting for eth0.1 to become free. Usage count = 2

The problem is when rtnl_configure_link() fails in rtnl_newlink(),
we simply call unregister_device(), but for stacked device like vlan,
we almost do nothing when we unregister the upper device, more work
is done when we unregister the lower device, so call its ->dellink().

Reported-by: Ignacy Gawedzki <ignacy.gawedzki@green-communications.fr>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/core/rtnetlink.c