Skip to content
Snippets Groups Projects
Select Git revision
  • 5a4552752d8f7f4cef1d98775ece7adb7616fde2
  • master default protected
  • io_uring/ebpf_v4
  • io_uring/jailhouse
  • io_uring/ebpf_v3
  • io_uring/ebpf_v3_auto-removal-direct-open
  • io_uring/ebpf
  • v5.12
  • v5.12-rc8
  • v5.12-rc7
  • v5.12-rc6
  • v5.12-rc5
  • v5.12-rc4
  • v5.12-rc3
  • v5.12-rc2
  • v5.12-rc1-dontuse
  • v5.11
  • v5.11-rc7
  • v5.11-rc6
  • v5.11-rc5
  • v5.11-rc4
  • v5.11-rc3
  • v5.11-rc2
  • v5.11-rc1
  • v5.10
  • v5.10-rc7
  • v5.10-rc6
27 results

ipv4

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Nicolas Dichtel authored and David S. Miller committed
    Before the patch, it was possible to add two times the same tunnel:
    ip l a gre1 type gre remote 10.16.0.121 local 10.16.0.249
    ip l a gre2 type gre remote 10.16.0.121 local 10.16.0.249
    
    It was possible, because ip_tunnel_newlink() calls ip_tunnel_find() with the
    argument dev->type, which was set only later (when calling ndo_init handler
    in register_netdevice()). Let's set this type in the setup handler, which is
    called before newlink handler.
    
    Introduced by commit c5441932 ("GRE: Refactor GRE tunneling code.").
    
    CC: Pravin B Shelar <pshelar@nicira.com>
    Signed-off-by: default avatarNicolas Dichtel <nicolas.dichtel@6wind.com>
    Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
    5a455275
    History
    Name Last commit Last update
    ..