netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* ip route add give rtnetlink message after update from 4.9.6 to 4.9.8
@ 2017-02-08 10:17 pupilla
  2017-02-08 15:44 ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: pupilla @ 2017-02-08 10:17 UTC (permalink / raw)
  To: netdev

Hi Folks,

After kernel update from 4.9.6 to 4.9.8, I get the below error
message when I run this command:

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
root@Typhoon:~# uname -a
Linux Typhoon 4.9.8 #1 SMP Tue Feb 7 17:14:54 CET 2017 x86_64 Intel(R) Core
(TM) i5-2520M CPU @ 2.50GHz GenuineIntel GNU/Linux

Is this the expected behaviour?

Any response are welcome
TIA

Marco

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

* Re: ip route add give rtnetlink message after update from 4.9.6 to 4.9.8
  2017-02-08 10:17 ip route add give rtnetlink message after update from 4.9.6 to 4.9.8 pupilla
@ 2017-02-08 15:44 ` David Miller
  2017-02-08 16:27   ` David Ahern
  2017-02-08 17:14   ` David Ahern
  0 siblings, 2 replies; 4+ messages in thread
From: David Miller @ 2017-02-08 15:44 UTC (permalink / raw)
  To: pupilla; +Cc: netdev, dsa

From: "pupilla@libero.it" <pupilla@libero.it>
Date: Wed, 8 Feb 2017 11:17:48 +0100 (CET)

> Hi Folks,
> 
> After kernel update from 4.9.6 to 4.9.8, I get the below error
> message when I run this command:
> 
> 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
> root@Typhoon:~# uname -a
> Linux Typhoon 4.9.8 #1 SMP Tue Feb 7 17:14:54 CET 2017 x86_64 Intel(R) Core
> (TM) i5-2520M CPU @ 2.50GHz GenuineIntel GNU/Linux
> 
> Is this the expected behaviour?

David, maybe this was an unintended side effect of commit
9ed59592e3e379b2e9557dc1d9e9ec8fcbb33f16 ("lwtunnel: fix autoload of
lwt modules").

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

* Re: ip route add give rtnetlink message after update from 4.9.6 to 4.9.8
  2017-02-08 15:44 ` David Miller
@ 2017-02-08 16:27   ` David Ahern
  2017-02-08 17:14   ` David Ahern
  1 sibling, 0 replies; 4+ messages in thread
From: David Ahern @ 2017-02-08 16:27 UTC (permalink / raw)
  To: David Miller, pupilla; +Cc: netdev

On 2/8/17 8:44 AM, David Miller wrote:
> From: "pupilla@libero.it" <pupilla@libero.it>
> Date: Wed, 8 Feb 2017 11:17:48 +0100 (CET)
> 
>> Hi Folks,
>>
>> After kernel update from 4.9.6 to 4.9.8, I get the below error
>> message when I run this command:
>>
>> 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
>> root@Typhoon:~# uname -a
>> Linux Typhoon 4.9.8 #1 SMP Tue Feb 7 17:14:54 CET 2017 x86_64 Intel(R) Core
>> (TM) i5-2520M CPU @ 2.50GHz GenuineIntel GNU/Linux
>>
>> Is this the expected behaviour?
> 
> David, maybe this was an unintended side effect of commit
> 9ed59592e3e379b2e9557dc1d9e9ec8fcbb33f16 ("lwtunnel: fix autoload of
> lwt modules").
> 

I'll take a look

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

* Re: ip route add give rtnetlink message after update from 4.9.6 to 4.9.8
  2017-02-08 15:44 ` David Miller
  2017-02-08 16:27   ` David Ahern
@ 2017-02-08 17:14   ` David Ahern
  1 sibling, 0 replies; 4+ messages in thread
From: David Ahern @ 2017-02-08 17:14 UTC (permalink / raw)
  To: David Miller, pupilla; +Cc: netdev

On 2/8/17 8:44 AM, David Miller wrote:
> From: "pupilla@libero.it" <pupilla@libero.it>
> Date: Wed, 8 Feb 2017 11:17:48 +0100 (CET)
> 
>> Hi Folks,
>>
>> After kernel update from 4.9.6 to 4.9.8, I get the below error
>> message when I run this command:
>>
>> 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
>> root@Typhoon:~# uname -a
>> Linux Typhoon 4.9.8 #1 SMP Tue Feb 7 17:14:54 CET 2017 x86_64 Intel(R) Core
>> (TM) i5-2520M CPU @ 2.50GHz GenuineIntel GNU/Linux
>>
>> Is this the expected behaviour?
> 
> David, maybe this was an unintended side effect of commit
> 9ed59592e3e379b2e9557dc1d9e9ec8fcbb33f16 ("lwtunnel: fix autoload of
> lwt modules").
> 

Missed the multihop case with LWTUNNEL disabled. patch coming.

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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-08 10:17 ip route add give rtnetlink message after update from 4.9.6 to 4.9.8 pupilla
2017-02-08 15:44 ` David Miller
2017-02-08 16:27   ` David Ahern
2017-02-08 17:14   ` David Ahern

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