linux-ppp.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v8] net: ppp - set name assign type
       [not found] <1405550594-11786-1-git-send-email-teg@jklm.no>
@ 2014-07-16 22:43 ` Tom Gundersen
  0 siblings, 0 replies; only message in thread
From: Tom Gundersen @ 2014-07-16 22:43 UTC (permalink / raw)
  To: netdev
  Cc: David Miller, linux-kernel, Tom Gundersen, Paul Mackerras, linux-ppp

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@jklm.no>
Cc: Paul Mackerras <paulus@samba.org>
Cc: linux-ppp@vger.kernel.org
---

This patch goes on top of net-next.

 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


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2014-07-16 22:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1405550594-11786-1-git-send-email-teg@jklm.no>
2014-07-16 22:43 ` [PATCH v8] net: ppp - set name assign type Tom Gundersen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).