* [PATCH net] bridge: fix regression in ageing time
@ 2016-02-12 21:31 Stephen Hemminger
2016-02-13 21:35 ` Ido Schimmel
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Stephen Hemminger @ 2016-02-12 21:31 UTC (permalink / raw)
To: David Miller, Scott Feldman; +Cc: netdev, bridge, Jiri Pirko, Jouni Malinen
This fixes a regression in the bridge ageing time caused by:
commit c62987bbd8a1 ("bridge: push bridge setting ageing_time down to switchdev")
There are users of Linux bridge which use the feature that if ageing time
is set to 0 it causes entries to never expire.
This feature is even listed on the web page:
https://www.linuxfoundation.org/collaborate/workgroups/networking/bridge
For a pure software bridge, it is unnecessary for the code to have
arbitrary restrictions on what values are allowable.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
Please apply to 4.4 for stable as well.
include/linux/if_bridge.h | 5 -----
net/bridge/br_stp.c | 9 ++++++---
2 files changed, 6 insertions(+), 8 deletions(-)
--- a/include/linux/if_bridge.h 2015-09-23 16:17:25.387594110 -0700
+++ b/include/linux/if_bridge.h 2016-02-11 07:49:35.016689397 -0800
@@ -45,11 +45,6 @@ struct br_ip_list {
#define BR_PROXYARP BIT(8)
#define BR_LEARNING_SYNC BIT(9)
#define BR_PROXYARP_WIFI BIT(10)
-
-/* values as per ieee8021QBridgeFdbAgingTime */
-#define BR_MIN_AGEING_TIME (10 * HZ)
-#define BR_MAX_AGEING_TIME (1000000 * HZ)
-
#define BR_DEFAULT_AGEING_TIME (300 * HZ)
extern void brioctl_set(int (*ioctl_hook)(struct net *, unsigned int, void __user *));
--- a/net/bridge/br_stp.c 2015-12-17 17:17:18.650746679 -0800
+++ b/net/bridge/br_stp.c 2016-02-11 07:49:53.240772672 -0800
@@ -568,6 +568,12 @@ int br_set_max_age(struct net_bridge *br
}
+/* Set the how long dynamic forwarding database entries live.
+ * The Linux bridge allows values outside the standard 802.1
+ * specification to allow for special cases:
+ * 0 - means entry never age.
+ * 1 - means entries disappear in next clock tick
+ */
int br_set_ageing_time(struct net_bridge *br, u32 ageing_time)
{
struct switchdev_attr attr = {
@@ -579,9 +585,6 @@ int br_set_ageing_time(struct net_bridge
unsigned long t = clock_t_to_jiffies(ageing_time);
int err;
- if (t < BR_MIN_AGEING_TIME || t > BR_MAX_AGEING_TIME)
- return -ERANGE;
-
err = switchdev_port_attr_set(br->dev, &attr);
if (err)
return err;
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] bridge: fix regression in ageing time
2016-02-12 21:31 [PATCH net] bridge: fix regression in ageing time Stephen Hemminger
@ 2016-02-13 21:35 ` Ido Schimmel
2016-02-14 15:15 ` Ido Schimmel
2016-02-15 10:16 ` Jiri Pirko
2 siblings, 0 replies; 4+ messages in thread
From: Ido Schimmel @ 2016-02-13 21:35 UTC (permalink / raw)
To: Stephen Hemminger
Cc: Jiri Pirko, netdev, bridge, Scott Feldman, Jouni Malinen,
David Miller
Fri, Feb 12, 2016 at 11:31:09PM IST, stephen@networkplumber.org wrote:
Hi,
>This fixes a regression in the bridge ageing time caused by:
>
>commit c62987bbd8a1 ("bridge: push bridge setting ageing_time down to switchdev")
>
>There are users of Linux bridge which use the feature that if ageing time
>is set to 0 it causes entries to never expire.
>This feature is even listed on the web page:
> https://www.linuxfoundation.org/collaborate/workgroups/networking/bridge
>
>For a pure software bridge, it is unnecessary for the code to have
>arbitrary restrictions on what values are allowable.
>
>Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
>
>---
>Please apply to 4.4 for stable as well.
>
> include/linux/if_bridge.h | 5 -----
> net/bridge/br_stp.c | 9 ++++++---
> 2 files changed, 6 insertions(+), 8 deletions(-)
>
>--- a/include/linux/if_bridge.h 2015-09-23 16:17:25.387594110 -0700
>+++ b/include/linux/if_bridge.h 2016-02-11 07:49:35.016689397 -0800
>@@ -45,11 +45,6 @@ struct br_ip_list {
> #define BR_PROXYARP BIT(8)
> #define BR_LEARNING_SYNC BIT(9)
> #define BR_PROXYARP_WIFI BIT(10)
>-
>-/* values as per ieee8021QBridgeFdbAgingTime */
>-#define BR_MIN_AGEING_TIME (10 * HZ)
rocker is using this value:
vi drivers/net/ethernet/rocker/rocker.c +3707
>-#define BR_MAX_AGEING_TIME (1000000 * HZ)
>-
> #define BR_DEFAULT_AGEING_TIME (300 * HZ)
>
> extern void brioctl_set(int (*ioctl_hook)(struct net *, unsigned int, void __user *));
>--- a/net/bridge/br_stp.c 2015-12-17 17:17:18.650746679 -0800
>+++ b/net/bridge/br_stp.c 2016-02-11 07:49:53.240772672 -0800
>@@ -568,6 +568,12 @@ int br_set_max_age(struct net_bridge *br
>
> }
>
>+/* Set the how long dynamic forwarding database entries live.
Maybe drop the 'the'?
>+ * The Linux bridge allows values outside the standard 802.1
>+ * specification to allow for special cases:
>+ * 0 - means entry never age.
s/entry/entries/ ?
>+ * 1 - means entries disappear in next clock tick
Missing dot. ;)
>+ */
> int br_set_ageing_time(struct net_bridge *br, u32 ageing_time)
> {
> struct switchdev_attr attr = {
>@@ -579,9 +585,6 @@ int br_set_ageing_time(struct net_bridge
> unsigned long t = clock_t_to_jiffies(ageing_time);
> int err;
>
>- if (t < BR_MIN_AGEING_TIME || t > BR_MAX_AGEING_TIME)
>- return -ERANGE;
Removing this and trying to set ageing time to 0 will cause mlxsw driver
to error out (firmware is checking for min value). I will send you a patch
for both rocker and mlxsw tomorrow, so that you can squash to yours and
do this change atomically.
Thanks for looking into this.
>-
> err = switchdev_port_attr_set(br->dev, &attr);
> if (err)
> return err;
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] bridge: fix regression in ageing time
2016-02-12 21:31 [PATCH net] bridge: fix regression in ageing time Stephen Hemminger
2016-02-13 21:35 ` Ido Schimmel
@ 2016-02-14 15:15 ` Ido Schimmel
2016-02-15 10:16 ` Jiri Pirko
2 siblings, 0 replies; 4+ messages in thread
From: Ido Schimmel @ 2016-02-14 15:15 UTC (permalink / raw)
To: Stephen Hemminger
Cc: David Miller, Scott Feldman, netdev, Jiri Pirko, Jouni Malinen,
bridge
Fri, Feb 12, 2016 at 11:31:09PM IST, stephen@networkplumber.org wrote:
>This fixes a regression in the bridge ageing time caused by:
>
>commit c62987bbd8a1 ("bridge: push bridge setting ageing_time down to switchdev")
>
>There are users of Linux bridge which use the feature that if ageing time
>is set to 0 it causes entries to never expire.
>This feature is even listed on the web page:
> https://www.linuxfoundation.org/collaborate/workgroups/networking/bridge
>
>For a pure software bridge, it is unnecessary for the code to have
>arbitrary restrictions on what values are allowable.
>
>Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
>
>---
>Please apply to 4.4 for stable as well.
>
> include/linux/if_bridge.h | 5 -----
> net/bridge/br_stp.c | 9 ++++++---
> 2 files changed, 6 insertions(+), 8 deletions(-)
>
>--- a/include/linux/if_bridge.h 2015-09-23 16:17:25.387594110 -0700
>+++ b/include/linux/if_bridge.h 2016-02-11 07:49:35.016689397 -0800
>@@ -45,11 +45,6 @@ struct br_ip_list {
> #define BR_PROXYARP BIT(8)
> #define BR_LEARNING_SYNC BIT(9)
> #define BR_PROXYARP_WIFI BIT(10)
>-
>-/* values as per ieee8021QBridgeFdbAgingTime */
>-#define BR_MIN_AGEING_TIME (10 * HZ)
>-#define BR_MAX_AGEING_TIME (1000000 * HZ)
>-
> #define BR_DEFAULT_AGEING_TIME (300 * HZ)
>
> extern void brioctl_set(int (*ioctl_hook)(struct net *, unsigned int, void __user *));
>--- a/net/bridge/br_stp.c 2015-12-17 17:17:18.650746679 -0800
>+++ b/net/bridge/br_stp.c 2016-02-11 07:49:53.240772672 -0800
>@@ -568,6 +568,12 @@ int br_set_max_age(struct net_bridge *br
>
> }
>
>+/* Set the how long dynamic forwarding database entries live.
>+ * The Linux bridge allows values outside the standard 802.1
>+ * specification to allow for special cases:
>+ * 0 - means entry never age.
Looking at the code I didn't quite understand how this could happen and
indeed with your patch I see that the FDB is never populated. Maybe
that's the expected behavior? I also found the following, which seems to
support this:
https://lists.linuxfoundation.org/pipermail/bridge/2010-November/007410.html
Thanks.
>+ * 1 - means entries disappear in next clock tick
>+ */
> int br_set_ageing_time(struct net_bridge *br, u32 ageing_time)
> {
> struct switchdev_attr attr = {
>@@ -579,9 +585,6 @@ int br_set_ageing_time(struct net_bridge
> unsigned long t = clock_t_to_jiffies(ageing_time);
> int err;
>
>- if (t < BR_MIN_AGEING_TIME || t > BR_MAX_AGEING_TIME)
>- return -ERANGE;
>-
> err = switchdev_port_attr_set(br->dev, &attr);
> if (err)
> return err;
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] bridge: fix regression in ageing time
2016-02-12 21:31 [PATCH net] bridge: fix regression in ageing time Stephen Hemminger
2016-02-13 21:35 ` Ido Schimmel
2016-02-14 15:15 ` Ido Schimmel
@ 2016-02-15 10:16 ` Jiri Pirko
2 siblings, 0 replies; 4+ messages in thread
From: Jiri Pirko @ 2016-02-15 10:16 UTC (permalink / raw)
To: Stephen Hemminger
Cc: David Miller, Scott Feldman, netdev, Jouni Malinen, bridge
Fri, Feb 12, 2016 at 10:31:09PM CET, stephen@networkplumber.org wrote:
>This fixes a regression in the bridge ageing time caused by:
>
>commit c62987bbd8a1 ("bridge: push bridge setting ageing_time down to switchdev")
>
>There are users of Linux bridge which use the feature that if ageing time
>is set to 0 it causes entries to never expire.
>This feature is even listed on the web page:
> https://www.linuxfoundation.org/collaborate/workgroups/networking/bridge
>
>For a pure software bridge, it is unnecessary for the code to have
>arbitrary restrictions on what values are allowable.
>
>Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
>
>---
>Please apply to 4.4 for stable as well.
>
> include/linux/if_bridge.h | 5 -----
> net/bridge/br_stp.c | 9 ++++++---
> 2 files changed, 6 insertions(+), 8 deletions(-)
>
>--- a/include/linux/if_bridge.h 2015-09-23 16:17:25.387594110 -0700
>+++ b/include/linux/if_bridge.h 2016-02-11 07:49:35.016689397 -0800
>@@ -45,11 +45,6 @@ struct br_ip_list {
> #define BR_PROXYARP BIT(8)
> #define BR_LEARNING_SYNC BIT(9)
> #define BR_PROXYARP_WIFI BIT(10)
>-
>-/* values as per ieee8021QBridgeFdbAgingTime */
>-#define BR_MIN_AGEING_TIME (10 * HZ)
>-#define BR_MAX_AGEING_TIME (1000000 * HZ)
>-
> #define BR_DEFAULT_AGEING_TIME (300 * HZ)
>
> extern void brioctl_set(int (*ioctl_hook)(struct net *, unsigned int, void __user *));
>--- a/net/bridge/br_stp.c 2015-12-17 17:17:18.650746679 -0800
>+++ b/net/bridge/br_stp.c 2016-02-11 07:49:53.240772672 -0800
>@@ -568,6 +568,12 @@ int br_set_max_age(struct net_bridge *br
>
> }
>
>+/* Set the how long dynamic forwarding database entries live.
>+ * The Linux bridge allows values outside the standard 802.1
>+ * specification to allow for special cases:
>+ * 0 - means entry never age.
>+ * 1 - means entries disappear in next clock tick
>+ */
> int br_set_ageing_time(struct net_bridge *br, u32 ageing_time)
> {
> struct switchdev_attr attr = {
>@@ -579,9 +585,6 @@ int br_set_ageing_time(struct net_bridge
> unsigned long t = clock_t_to_jiffies(ageing_time);
> int err;
>
>- if (t < BR_MIN_AGEING_TIME || t > BR_MAX_AGEING_TIME)
>- return -ERANGE;
>-
rocker and mlxsw rely on this check. If you remove it here, you have to
add it there.
> err = switchdev_port_attr_set(br->dev, &attr);
> if (err)
> return err;
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-02-15 10:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-12 21:31 [PATCH net] bridge: fix regression in ageing time Stephen Hemminger
2016-02-13 21:35 ` Ido Schimmel
2016-02-14 15:15 ` Ido Schimmel
2016-02-15 10:16 ` Jiri Pirko
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).