[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20080514170316.672f809d@extreme>
Date: Wed, 14 May 2008 17:03:16 -0700
From: Stephen Hemminger <shemminger@...tta.com>
To: David Miller <davem@...emloft.net>
Cc: netdev@...r.kernel.org
Subject: [PATCH] net: Avoid problems with bonding and device rename
See: http://bugzilla.kernel.org/show_bug.cgi?id=10698
The use of /sys/class/net/bonding_masters was a poor ABI choice
that now we have to live with. Best choice is to just block other
usage of that name.
Signed-off-by: Stephen Hemminger <shemminger@...tta.com>
--- a/net/core/dev.c 2008-05-14 16:50:53.000000000 -0700
+++ b/net/core/dev.c 2008-05-14 16:52:25.000000000 -0700
@@ -758,6 +758,9 @@ int dev_valid_name(const char *name)
return 0;
if (!strcmp(name, ".") || !strcmp(name, ".."))
return 0;
+ /* Sigh. need better ABI discipline -- see bond_sysfs */
+ if (!strcmp(name, "bonding_masters"))
+ return 0;
while (*name) {
if (*name == '/' || isspace(*name))
--
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