Home
last modified time | relevance | path

Searched hist:"6 c734fb8592f6768170e48e7102cb2f0a1bb9759" (Results 1 – 1 of 1) sorted by relevance

/linux/net/ipv4/
H A Dip_gre.cdiff 6c734fb8592f6768170e48e7102cb2f0a1bb9759 Sat Jun 29 06:02:59 CEST 2013 Cong Wang <amwang@redhat.com> gre: fix a regression in ioctl

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 <pshelar@nicira.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Cong Wang <amwang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>