diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2013-08-19 03:05:10 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-08-20 18:12:15 -0400 |
commit | ea857f28ab5ca82508e70ffbc8cb296705133f01 (patch) | |
tree | 77b8faadb781bdf6253d815b12233473270add10 /net/ipv4 | |
parent | 0dde80268ee0a5a1511935bdb9c547191d616aa9 (diff) |
ipip: dereferencing an ERR_PTR in ip_tunnel_init_net()
We need to move the derefernce after the IS_ERR() check.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/ip_tunnel.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv4/ip_tunnel.c b/net/ipv4/ip_tunnel.c index a4d9126c7b51..24549b4aeae2 100644 --- a/net/ipv4/ip_tunnel.c +++ b/net/ipv4/ip_tunnel.c | |||
@@ -854,14 +854,14 @@ int ip_tunnel_init_net(struct net *net, int ip_tnl_net_id, | |||
854 | 854 | ||
855 | rtnl_lock(); | 855 | rtnl_lock(); |
856 | itn->fb_tunnel_dev = __ip_tunnel_create(net, ops, &parms); | 856 | itn->fb_tunnel_dev = __ip_tunnel_create(net, ops, &parms); |
857 | /* FB netdevice is special: we have one, and only one per netns. | ||
858 | * Allowing to move it to another netns is clearly unsafe. | ||
859 | */ | ||
860 | itn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL; | ||
861 | rtnl_unlock(); | 857 | rtnl_unlock(); |
862 | 858 | ||
863 | if (IS_ERR(itn->fb_tunnel_dev)) | 859 | if (IS_ERR(itn->fb_tunnel_dev)) |
864 | return PTR_ERR(itn->fb_tunnel_dev); | 860 | return PTR_ERR(itn->fb_tunnel_dev); |
861 | /* FB netdevice is special: we have one, and only one per netns. | ||
862 | * Allowing to move it to another netns is clearly unsafe. | ||
863 | */ | ||
864 | itn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL; | ||
865 | 865 | ||
866 | return 0; | 866 | return 0; |
867 | } | 867 | } |