netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] lwtunnel: valid encap attr check should return 0 when lwtunnel is disabled
@ 2017-02-08 17:29 David Ahern
  2017-02-08 17:55 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: David Ahern @ 2017-02-08 17:29 UTC (permalink / raw)
  To: netdev, davem; +Cc: pupilla, David Ahern

An error was reported upgrading to 4.9.8:
    root@Typhoon:~# ip route add default table 210 nexthop dev eth0 via 10.68.64.1
    weight 1 nexthop dev eth0 via 10.68.64.2 weight 1
    RTNETLINK answers: Operation not supported

The problem occurs when CONFIG_LWTUNNEL is not enabled and a multipath
route is submitted.

The point of lwtunnel_valid_encap_type_attr is catch modules that
need to be loaded before any references are taken with rntl held. With
CONFIG_LWTUNNEL disabled, there will be no modules to load so the
lwtunnel_valid_encap_type_attr stub should just return 0.

Fixes: 9ed59592e3e3 ("lwtunnel: fix autoload of lwt modules")
Reported-by: pupilla@libero.it
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
---
 include/net/lwtunnel.h | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/include/net/lwtunnel.h b/include/net/lwtunnel.h
index 73dd87647460..0388b9c5f5e2 100644
--- a/include/net/lwtunnel.h
+++ b/include/net/lwtunnel.h
@@ -178,7 +178,10 @@ static inline int lwtunnel_valid_encap_type(u16 encap_type)
 }
 static inline int lwtunnel_valid_encap_type_attr(struct nlattr *attr, int len)
 {
-	return -EOPNOTSUPP;
+	/* return 0 since we are not walking attr looking for
+	 * RTA_ENCAP_TYPE attribute on nexthops.
+	 */
+	return 0;
 }
 
 static inline int lwtunnel_build_state(struct net_device *dev, u16 encap_type,
-- 
2.1.4

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

* Re: [PATCH net] lwtunnel: valid encap attr check should return 0 when lwtunnel is disabled
  2017-02-08 17:29 [PATCH net] lwtunnel: valid encap attr check should return 0 when lwtunnel is disabled David Ahern
@ 2017-02-08 17:55 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2017-02-08 17:55 UTC (permalink / raw)
  To: dsa; +Cc: netdev, pupilla

From: David Ahern <dsa@cumulusnetworks.com>
Date: Wed,  8 Feb 2017 09:29:00 -0800

> An error was reported upgrading to 4.9.8:
>     root@Typhoon:~# ip route add default table 210 nexthop dev eth0 via 10.68.64.1
>     weight 1 nexthop dev eth0 via 10.68.64.2 weight 1
>     RTNETLINK answers: Operation not supported
> 
> The problem occurs when CONFIG_LWTUNNEL is not enabled and a multipath
> route is submitted.
> 
> The point of lwtunnel_valid_encap_type_attr is catch modules that
> need to be loaded before any references are taken with rntl held. With
> CONFIG_LWTUNNEL disabled, there will be no modules to load so the
> lwtunnel_valid_encap_type_attr stub should just return 0.
> 
> Fixes: 9ed59592e3e3 ("lwtunnel: fix autoload of lwt modules")
> Reported-by: pupilla@libero.it
> Signed-off-by: David Ahern <dsa@cumulusnetworks.com>

Applied and queued up for -stable, thanks for fixing this so quickly David.

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

end of thread, other threads:[~2017-02-08 17:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-08 17:29 [PATCH net] lwtunnel: valid encap attr check should return 0 when lwtunnel is disabled David Ahern
2017-02-08 17:55 ` 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).