Re: [Patch net-next v3] gre: fix a regression in ioctl
From: Dmitry Kravkov <hidden>
Date: 2013-06-29 18:42:49
On Sat, Jun 29, 2013 at 7:02 AM, Cong Wang [off-list ref] wrote:
From: Cong Wang <redacted>
When testing GRE tunnel, I got:
# ip tunnel show
get tunnel gre0 failed: Invalid argument
get tunnel gre1 failed: Invalid argument
This is a regression introduced by commit c54419321455631079c7d
("GRE: Refactor GRE tunneling code.") because previously we
only check the parameters for SIOCADDTUNNEL and SIOCCHGTUNNEL,
after that commit, the check is moved for all commands.
So, just check for SIOCADDTUNNEL and SIOCCHGTUNNEL.
After this patch I got:
# ip tunnel show
gre0: gre/ip remote any local any ttl inherit nopmtudisc
gre1: gre/ip remote 192.168.122.101 local 192.168.122.45 ttl inherit
Cc: Pravin B Shelar <redacted>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Cong Wang <redacted>
---
v2: check TUNNEL_* flags
v3: the check should be kept in gre moduleShouldn't this be addressed in net-tree?