From: Wang Chen <wangchen@cn.fujitsu.com>
To: "David S. Miller" <davem@davemloft.net>
Cc: Stephen Hemminger <shemminger@vyatta.com>,
NETDEV <netdev@vger.kernel.org>,
Patrick McHardy <kaber@trash.net>
Subject: [PATCH net-next 4/8] bridge: sysfs cleanup
Date: Fri, 20 Jun 2008 08:55:15 +0800 [thread overview]
Message-ID: <485AFFF3.6070802@cn.fujitsu.com> (raw)
When I am doing this series of patch, I notice that bridge's sysfs are
not cleanuped after failure and bridge delete.
Here is the patch for it.
Signed-off-by: Wang Chen <wangchen@cn.fujitsu.com>
---
net/bridge/br_if.c | 2 ++
net/bridge/br_sysfs_if.c | 9 ++++++++-
2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c
index 49dd433..4b730fa 100644
--- a/net/bridge/br_if.c
+++ b/net/bridge/br_if.c
@@ -161,6 +161,7 @@ static void del_br(struct net_bridge *br)
struct net_bridge_port *p, *n;
list_for_each_entry_safe(p, n, &br->port_list, list) {
+ br_sysfs_removeif(p);
del_nbp(p);
}
@@ -435,6 +436,7 @@ int br_del_if(struct net_bridge *br, struct net_device *dev)
if (!p || p->br != br)
return -EINVAL;
+ br_sysfs_removeif(p);
del_nbp(p);
spin_lock_bh(&br->lock);
diff --git a/net/bridge/br_sysfs_if.c b/net/bridge/br_sysfs_if.c
index 7f80462..9e9d17c 100644
--- a/net/bridge/br_sysfs_if.c
+++ b/net/bridge/br_sysfs_if.c
@@ -226,10 +226,17 @@ int br_sysfs_addif(struct net_bridge_port *p)
for (a = brport_attrs; *a; ++a) {
err = sysfs_create_file(&p->kobj, &((*a)->attr));
if (err)
- goto out2;
+ goto out1;
}
err = sysfs_create_link(br->ifobj, &p->kobj, p->dev->name);
+ if (err)
+ goto out1;
+ return 0;
+out1:
+ for (a = brport_attrs; *a; ++a)
+ sysfs_remove_file(&p->kobj, &((*a)->attr));
+ sysfs_remove_link(&br->dev->dev.kobj, SYSFS_BRIDGE_PORT_LINK);
out2:
return err;
}
--
1.5.3.4
next reply other threads:[~2008-06-20 0:59 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-20 0:55 Wang Chen [this message]
2008-06-20 1:19 ` [PATCH net-next 4/8] bridge: sysfs cleanup Stephen Hemminger
2008-06-20 2:17 ` Wang Chen
2008-06-20 4:48 ` Wang Chen
2008-06-20 17:44 ` Stephen Hemminger
2008-06-21 3:41 ` Wang Chen
2008-06-21 3:48 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=485AFFF3.6070802@cn.fujitsu.com \
--to=wangchen@cn.fujitsu.com \
--cc=davem@davemloft.net \
--cc=kaber@trash.net \
--cc=netdev@vger.kernel.org \
--cc=shemminger@vyatta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.