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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Thu, 17 Jul 2014 10:06:10 +0200 From: Tom Gundersen <teg@...m.no> To: netdev@...r.kernel.org Cc: David Miller <davem@...emloft.net>, linux-kernel@...r.kernel.org, Tom Gundersen <teg@...m.no>, Paul Mackerras <paulus@...ba.org>, linux-ppp@...r.kernel.org Subject: [PATCH net-next v9 9/9] net: ppp - set name assign type The ifname is of the form pppX where X is the unit number. This is either set by userspace, or userspace requests the kernel to chose one, which is then returned to userspace. Either way the creating user knows the name, so we treat both cases as if the user had explicitly chosen the name and label it NET_NAME_USER. Signed-off-by: Tom Gundersen <teg@...m.no> Cc: Paul Mackerras <paulus@...ba.org> Cc: linux-ppp@...r.kernel.org --- drivers/net/ppp/ppp_generic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ppp/ppp_generic.c b/drivers/net/ppp/ppp_generic.c index c38ee90..6526057 100644 --- a/drivers/net/ppp/ppp_generic.c +++ b/drivers/net/ppp/ppp_generic.c @@ -2728,6 +2728,7 @@ ppp_create_interface(struct net *net, int unit, int *retp) /* Initialize the new ppp unit */ ppp->file.index = unit; sprintf(dev->name, "ppp%d", unit); + dev->name_assign_type = NET_NAME_USER; ret = register_netdev(dev); if (ret != 0) { -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists