OSDN Git Service

net: vrf: Reset rt6i_idev in local dst after put
authorDavid Ahern <dsa@cumulusnetworks.com>
Fri, 17 Mar 2017 23:07:11 +0000 (16:07 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 22 Mar 2017 00:50:20 +0000 (17:50 -0700)
commit3dc857f0e8fc22610a59cbb346ba62c6e921863f
tree2ac3b4c99e619b8c31f50fd368bd891e646fff97
parent13e2d5187f6b965ba3556caedb914baf81b98ed2
net: vrf: Reset rt6i_idev in local dst after put

The VRF driver takes a reference to the inet6_dev on the VRF device for
its rt6_local dst when handling local traffic through the VRF device as
a loopback. When the device is deleted the driver does a put on the idev
but does not reset rt6i_idev in the rt6_info struct. When the dst is
destroyed, dst_destroy calls ip6_dst_destroy which does a second put for
what is essentially the same reference causing it to be prematurely freed.
Reset rt6i_idev after the put in the vrf driver.

Fixes: b4869aa2f881e ("net: vrf: ipv6 support for local traffic to
                       local addresses")
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/vrf.c