All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 net-next 0/5] Tunneling: Tunnel restructuring.
@ 2013-03-26  0:49 Pravin B Shelar
  2013-03-26 16:27 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Pravin B Shelar @ 2013-03-26  0:49 UTC (permalink / raw)
  To: davem; +Cc: netdev, jesse, Pravin B Shelar

Following patch series restructure GRE and IPIP tunneling code
to make it modular. It adds ip_tunnel module which acts as
generic tunneling layer which has common code.

These patches do not change any functionality.
v3:v4:
 - Fixed compilation error in ipv6.
 - Few coding style fixes.
v2-v3:
 - Use GPL exports for all export symbols.
 - Set default config NET_IP_TUNNEL to m.
v1-v2:
 - Dropped patch to convert gre_proto_lock to rtnl lock.

Pravin B Shelar (5):
  GRE: Refactor GRE tunneling code.
  IPIP: Use ip-tunneling code.
  VXLAN: Fix vxlan stats handling.
  VXLAN: Use IP Tunnels tunnel ENC encap API
  Tunneling: use IP Tunnel stats APIs.

 drivers/net/Kconfig      |    1 +
 drivers/net/vxlan.c      |  100 +---
 include/net/gre.h        |   51 ++
 include/net/ip6_tunnel.h |    1 +
 include/net/ip_tunnels.h |  177 ++++++
 include/net/ipip.h       |   84 ---
 net/ipv4/Kconfig         |    7 +
 net/ipv4/Makefile        |    1 +
 net/ipv4/af_inet.c       |    1 -
 net/ipv4/gre.c           |    5 -
 net/ipv4/ip_gre.c        | 1504 ++++++++++------------------------------------
 net/ipv4/ip_tunnel.c     | 1035 +++++++++++++++++++++++++++++++
 net/ipv4/ip_vti.c        |   42 +--
 net/ipv4/ipip.c          |  748 ++---------------------
 net/ipv4/ipmr.c          |    2 +-
 net/ipv6/Kconfig         |    2 +
 net/ipv6/af_inet6.c      |    1 -
 net/ipv6/ip6_gre.c       |   45 +--
 net/ipv6/ip6_tunnel.c    |    1 +
 net/ipv6/sit.c           |   39 +--
 20 files changed, 1668 insertions(+), 2179 deletions(-)
 create mode 100644 include/net/ip_tunnels.h
 delete mode 100644 include/net/ipip.h
 create mode 100644 net/ipv4/ip_tunnel.c

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

* Re: [PATCH v4 net-next 0/5] Tunneling: Tunnel restructuring.
  2013-03-26  0:49 [PATCH v4 net-next 0/5] Tunneling: Tunnel restructuring Pravin B Shelar
@ 2013-03-26 16:27 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2013-03-26 16:27 UTC (permalink / raw)
  To: pshelar; +Cc: netdev, jesse

From: Pravin B Shelar <pshelar@nicira.com>
Date: Mon, 25 Mar 2013 17:49:29 -0700

> Following patch series restructure GRE and IPIP tunneling code
> to make it modular. It adds ip_tunnel module which acts as
> generic tunneling layer which has common code.
> 
> These patches do not change any functionality.
> v3:v4:
>  - Fixed compilation error in ipv6.
>  - Few coding style fixes.
> v2-v3:
>  - Use GPL exports for all export symbols.
>  - Set default config NET_IP_TUNNEL to m.
> v1-v2:
>  - Dropped patch to convert gre_proto_lock to rtnl lock.

Series applied, thanks.

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

end of thread, other threads:[~2013-03-26 16:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-26  0:49 [PATCH v4 net-next 0/5] Tunneling: Tunnel restructuring Pravin B Shelar
2013-03-26 16:27 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.