* Re: [PATCH net-next] switchdev: fix handling for drivers not supporting IPv4 fib add/del ops
2015-06-11 0:04 [PATCH net-next] switchdev: fix handling for drivers not supporting IPv4 fib add/del ops sfeldma
@ 2015-06-11 0:03 ` Florian Fainelli
2015-06-11 6:56 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: Florian Fainelli @ 2015-06-11 0:03 UTC (permalink / raw)
To: sfeldma, netdev; +Cc: jiri, andrew
On 10/06/15 17:04, sfeldma@gmail.com wrote:
> From: Scott Feldman <sfeldma@gmail.com>
>
> If CONFIG_NET_SWITCHDEV is enabled, but port driver does not implement
> support for IPv4 FIB add/del ops, don't fail route add/del offload
> operations. Route adds will not be marked as OFFLOAD. Routes will be
> installed in the kernel FIB, as usual.
>
> This was report/fixed by Florian when testing DSA driver with net-next on
> devices with L2 offload support but no L3 offload support. What he reported
> was an initial route installed from DHCP client would fail (route not
> installed to kernel FIB). This was triggering the setting of
> ipv4.fib_offload_disabled, which would disable route offloading after the
> first failure. So subsequent attempts to install the route would succeed.
>
> There is follow-on work/discussion to address the handling of route install
> failures, but for now, let's differentiate between no support and failed
> support.
>
> Reported-by: Florian Fainelli <f.fainelli@gmail.com>
> Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> ---
> net/switchdev/switchdev.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/net/switchdev/switchdev.c b/net/switchdev/switchdev.c
> index 99bced4..28637e9 100644
> --- a/net/switchdev/switchdev.c
> +++ b/net/switchdev/switchdev.c
> @@ -853,7 +853,7 @@ int switchdev_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi,
> if (!err)
> fi->fib_flags |= RTNH_F_OFFLOAD;
>
> - return err;
> + return err == -EOPNOTSUPP ? 0 : err;
> }
> EXPORT_SYMBOL_GPL(switchdev_fib_ipv4_add);
>
> @@ -898,7 +898,7 @@ int switchdev_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi,
> if (!err)
> fi->fib_flags &= ~RTNH_F_OFFLOAD;
>
> - return err;
> + return err == -EOPNOTSUPP ? 0 : err;
> }
> EXPORT_SYMBOL_GPL(switchdev_fib_ipv4_del);
>
>
--
Florian
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH net-next] switchdev: fix handling for drivers not supporting IPv4 fib add/del ops
@ 2015-06-11 0:04 sfeldma
2015-06-11 0:03 ` Florian Fainelli
2015-06-11 6:56 ` David Miller
0 siblings, 2 replies; 3+ messages in thread
From: sfeldma @ 2015-06-11 0:04 UTC (permalink / raw)
To: netdev; +Cc: jiri, f.fainelli, andrew
From: Scott Feldman <sfeldma@gmail.com>
If CONFIG_NET_SWITCHDEV is enabled, but port driver does not implement
support for IPv4 FIB add/del ops, don't fail route add/del offload
operations. Route adds will not be marked as OFFLOAD. Routes will be
installed in the kernel FIB, as usual.
This was report/fixed by Florian when testing DSA driver with net-next on
devices with L2 offload support but no L3 offload support. What he reported
was an initial route installed from DHCP client would fail (route not
installed to kernel FIB). This was triggering the setting of
ipv4.fib_offload_disabled, which would disable route offloading after the
first failure. So subsequent attempts to install the route would succeed.
There is follow-on work/discussion to address the handling of route install
failures, but for now, let's differentiate between no support and failed
support.
Reported-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
---
net/switchdev/switchdev.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/switchdev/switchdev.c b/net/switchdev/switchdev.c
index 99bced4..28637e9 100644
--- a/net/switchdev/switchdev.c
+++ b/net/switchdev/switchdev.c
@@ -853,7 +853,7 @@ int switchdev_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi,
if (!err)
fi->fib_flags |= RTNH_F_OFFLOAD;
- return err;
+ return err == -EOPNOTSUPP ? 0 : err;
}
EXPORT_SYMBOL_GPL(switchdev_fib_ipv4_add);
@@ -898,7 +898,7 @@ int switchdev_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi,
if (!err)
fi->fib_flags &= ~RTNH_F_OFFLOAD;
- return err;
+ return err == -EOPNOTSUPP ? 0 : err;
}
EXPORT_SYMBOL_GPL(switchdev_fib_ipv4_del);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] switchdev: fix handling for drivers not supporting IPv4 fib add/del ops
2015-06-11 0:04 [PATCH net-next] switchdev: fix handling for drivers not supporting IPv4 fib add/del ops sfeldma
2015-06-11 0:03 ` Florian Fainelli
@ 2015-06-11 6:56 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2015-06-11 6:56 UTC (permalink / raw)
To: sfeldma; +Cc: netdev, jiri, f.fainelli, andrew
From: sfeldma@gmail.com
Date: Wed, 10 Jun 2015 17:04:49 -0700
> From: Scott Feldman <sfeldma@gmail.com>
>
> If CONFIG_NET_SWITCHDEV is enabled, but port driver does not implement
> support for IPv4 FIB add/del ops, don't fail route add/del offload
> operations. Route adds will not be marked as OFFLOAD. Routes will be
> installed in the kernel FIB, as usual.
>
> This was report/fixed by Florian when testing DSA driver with net-next on
> devices with L2 offload support but no L3 offload support. What he reported
> was an initial route installed from DHCP client would fail (route not
> installed to kernel FIB). This was triggering the setting of
> ipv4.fib_offload_disabled, which would disable route offloading after the
> first failure. So subsequent attempts to install the route would succeed.
>
> There is follow-on work/discussion to address the handling of route install
> failures, but for now, let's differentiate between no support and failed
> support.
>
> Reported-by: Florian Fainelli <f.fainelli@gmail.com>
> Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Applied, thanks everyone.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-06-11 6:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-11 0:04 [PATCH net-next] switchdev: fix handling for drivers not supporting IPv4 fib add/del ops sfeldma
2015-06-11 0:03 ` Florian Fainelli
2015-06-11 6:56 ` David Miller
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).