All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 4/8] bridge: sysfs cleanup
@ 2008-06-20  0:55 Wang Chen
  2008-06-20  1:19 ` Stephen Hemminger
  2008-06-20 17:44 ` Stephen Hemminger
  0 siblings, 2 replies; 7+ messages in thread
From: Wang Chen @ 2008-06-20  0:55 UTC (permalink / raw)
  To: David S. Miller; +Cc: Stephen Hemminger, NETDEV, Patrick McHardy

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




^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 4/8] bridge: sysfs cleanup
  2008-06-20  0:55 [PATCH net-next 4/8] bridge: sysfs cleanup Wang Chen
@ 2008-06-20  1:19 ` Stephen Hemminger
  2008-06-20  2:17   ` Wang Chen
  2008-06-20 17:44 ` Stephen Hemminger
  1 sibling, 1 reply; 7+ messages in thread
From: Stephen Hemminger @ 2008-06-20  1:19 UTC (permalink / raw)
  To: Wang Chen; +Cc: David S. Miller, NETDEV, Patrick McHardy

On Fri, 20 Jun 2008 08:55:15 +0800
Wang Chen <wangchen@cn.fujitsu.com> wrote:

> 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>

Let me look at this, I don't think it used to be a problem before the
conversion from class_device to just device model.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 4/8] bridge: sysfs cleanup
  2008-06-20  1:19 ` Stephen Hemminger
@ 2008-06-20  2:17   ` Wang Chen
  2008-06-20  4:48     ` Wang Chen
  0 siblings, 1 reply; 7+ messages in thread
From: Wang Chen @ 2008-06-20  2:17 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: David S. Miller, NETDEV, Patrick McHardy

Stephen Hemminger said the following on 2008-6-20 9:19:
> On Fri, 20 Jun 2008 08:55:15 +0800
> Wang Chen <wangchen@cn.fujitsu.com> wrote:
> 
>> 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>
> 
> Let me look at this, I don't think it used to be a problem before the
> conversion from class_device to just device model.
> 

But, sysfs_create_link/file will leave some junk after failing.
Don't we care about that?


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 4/8] bridge: sysfs cleanup
  2008-06-20  2:17   ` Wang Chen
@ 2008-06-20  4:48     ` Wang Chen
  0 siblings, 0 replies; 7+ messages in thread
From: Wang Chen @ 2008-06-20  4:48 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: David S. Miller, NETDEV, Patrick McHardy

Wang Chen said the following on 2008-6-20 10:17:
> Stephen Hemminger said the following on 2008-6-20 9:19:
>> On Fri, 20 Jun 2008 08:55:15 +0800
>> Wang Chen <wangchen@cn.fujitsu.com> wrote:
>>
>>> 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>
>> Let me look at this, I don't think it used to be a problem before the
>> conversion from class_device to just device model.
>>
> 
> But, sysfs_create_link/file will leave some junk after failing.
> Don't we care about that?
> 

Stephen, since I changed PATCH 3/8, I have to resend a new one for
4/8.
But, about whether this fix is needed, we can talk.

---
Do sysfs cleanup after failure and bridge deleting.

---
 net/bridge/br_if.c       |    2 ++
 net/bridge/br_private.h  |    2 ++
 net/bridge/br_sysfs_if.c |   26 +++++++++++++++++++++++++-
 3 files changed, 29 insertions(+), 1 deletions(-)

diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c
index 805dbb7..5d22d23 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);
 	}
 
@@ -434,6 +435,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_private.h b/net/bridge/br_private.h
index c11b554..c1bbfea 100644
--- a/net/bridge/br_private.h
+++ b/net/bridge/br_private.h
@@ -250,6 +250,7 @@ extern void br_ifinfo_notify(int event, struct net_bridge_port *port);
 /* br_sysfs_if.c */
 extern struct sysfs_ops brport_sysfs_ops;
 extern int br_sysfs_addif(struct net_bridge_port *p);
+extern void br_sysfs_removeif(struct net_bridge_port *p);
 
 /* br_sysfs_br.c */
 extern int br_sysfs_addbr(struct net_device *dev);
@@ -258,6 +259,7 @@ extern void br_sysfs_delbr(struct net_device *dev);
 #else
 
 #define br_sysfs_addif(p)	(0)
+#define br_sysfs_removeif(p)	do { } while (0)
 #define br_sysfs_addbr(dev)	(0)
 #define br_sysfs_delbr(dev)	do { } while(0)
 #endif /* CONFIG_SYSFS */
diff --git a/net/bridge/br_sysfs_if.c b/net/bridge/br_sysfs_if.c
index 02b2d50..9e9d17c 100644
--- a/net/bridge/br_sysfs_if.c
+++ b/net/bridge/br_sysfs_if.c
@@ -226,10 +226,34 @@ 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;
 }
+
+/*
+ * Remove sysfs entries of ethernet device added to a bridge.
+ * Revert all the things be done by br_sysfs_addif().
+ */
+void br_sysfs_removeif(struct net_bridge_port *p)
+{
+	struct net_bridge *br = p->br;
+	struct brport_attribute **a;
+
+	sysfs_remove_link(&p->kobj, p->dev->name);
+
+	for (a = brport_attrs; *a; ++a)
+		sysfs_remove_file(&p->kobj, &((*a)->attr));
+
+	sysfs_remove_link(&br->dev->dev.kobj, SYSFS_BRIDGE_PORT_LINK);
+}
-- 
1.5.3.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 4/8] bridge: sysfs cleanup
  2008-06-20  0:55 [PATCH net-next 4/8] bridge: sysfs cleanup Wang Chen
  2008-06-20  1:19 ` Stephen Hemminger
@ 2008-06-20 17:44 ` Stephen Hemminger
  2008-06-21  3:41   ` Wang Chen
  1 sibling, 1 reply; 7+ messages in thread
From: Stephen Hemminger @ 2008-06-20 17:44 UTC (permalink / raw)
  To: Wang Chen; +Cc: David S. Miller, NETDEV, Patrick McHardy

On Fri, 20 Jun 2008 08:55:15 +0800
Wang Chen <wangchen@cn.fujitsu.com> wrote:

> 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;
>  }

This is unneeded since the bridge port kobject is deleted when removed
or in case of error and kobject_del calls sysfs_remove_dir.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 4/8] bridge: sysfs cleanup
  2008-06-20 17:44 ` Stephen Hemminger
@ 2008-06-21  3:41   ` Wang Chen
  2008-06-21  3:48     ` David Miller
  0 siblings, 1 reply; 7+ messages in thread
From: Wang Chen @ 2008-06-21  3:41 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: David S. Miller, NETDEV, Patrick McHardy

Stephen Hemminger said the following on 2008-6-21 1:44:
> On Fri, 20 Jun 2008 08:55:15 +0800
> Wang Chen <wangchen@cn.fujitsu.com> wrote:
> 
>> 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;
>>  }
> 
> This is unneeded since the bridge port kobject is deleted when removed
> or in case of error and kobject_del calls sysfs_remove_dir.
> 

Stephen, thank you for your explanation.
Since kobject_del will unwind what sysfs_create_* did,
I also think this patch is unneeded.

David, would you please ignore this patch.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 4/8] bridge: sysfs cleanup
  2008-06-21  3:41   ` Wang Chen
@ 2008-06-21  3:48     ` David Miller
  0 siblings, 0 replies; 7+ messages in thread
From: David Miller @ 2008-06-21  3:48 UTC (permalink / raw)
  To: wangchen; +Cc: shemminger, netdev, kaber

From: Wang Chen <wangchen@cn.fujitsu.com>
Date: Sat, 21 Jun 2008 11:41:30 +0800

> David, would you please ignore this patch.

Ok.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-06-21  3:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-06-20  0:55 [PATCH net-next 4/8] bridge: sysfs cleanup Wang Chen
2008-06-20  1:19 ` 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

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.