lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 10 Feb 2009 03:46:42 +0900 (JST)
From:	Noriaki TAKAMIYA <takamiya@...ux-ipv6.org>
To:	shemminger@...tta.com
Cc:	takamiya@...ntts.co.jp, davem@...emloft.net,
	yoshfuji@...ux-ipv6.org, netdev@...r.kernel.org,
	usagi-core@...linux-ipv6.org
Subject: [PATCH] IPv6: fix to set device name when new IPv6 over IPv6
 tunnel device is created.

Hi,

  When the user creates IPv6 over IPv6 tunnel, the device name created
  by the kernel isn't set to t->parm.name, which is referred as the
  result of ioctl().

  Signed-off-by: Noriaki TAKAMIYA <takamiya@...ntts.co.jp>
---
 net/ipv6/ip6_tunnel.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c
index 58e2b0d..d994c55 100644
--- a/net/ipv6/ip6_tunnel.c
+++ b/net/ipv6/ip6_tunnel.c
@@ -249,8 +249,8 @@ static struct ip6_tnl *ip6_tnl_create(struct net *net, struct ip6_tnl_parm *p)
 	}
 
 	t = netdev_priv(dev);
-	ip6_tnl_dev_init(dev);
 	t->parms = *p;
+	ip6_tnl_dev_init(dev);
 
 	if ((err = register_netdevice(dev)) < 0)
 		goto failed_free;
-- 
Noriaki TAKAMIYA

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ