netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 net-next 0/8] Geneve: Add support for tunnel metadata mode
@ 2015-08-24 17:43 Pravin B Shelar
  2015-08-24 17:43 ` [PATCH v3 net-next 1/8] geneve: Initialize ethernet address in device setup Pravin B Shelar
                   ` (7 more replies)
  0 siblings, 8 replies; 29+ messages in thread
From: Pravin B Shelar @ 2015-08-24 17:43 UTC (permalink / raw)
  To: netdev; +Cc: Pravin B Shelar

Following patches adds support for Geneve tunnel metadata
mode. OVS can make use of Geneve net-device with tunnel
metadata API from kernel.

This also allows us to consolidate Geneve implementation
from two kernel modules geneve_core and geneve to single
geneve module. geneve_core module was targeted to share
Geneve encap and decap code between Geneve netdevice and
OVS Geneve tunnel implementation, Since OVS no longer
needs these API, Geneve code can be consolidated into
single geneve module.

v2-v3:
- make tunnel medata device and regular device mutually exclusive.
- Fix Kconfig dependency for Geneve.
- Fix dst-port netlink encoding.
- drop changelink patch.

v1-v2:
- Replaced per hash table tunnel pointer (metadata enabled) with flag.
- Added support for changelink.
- Improve geneve device route lookup with more parameters.

Pravin B Shelar (8):
  geneve: Initialize ethernet address in device setup.
  geneve: Use skb mark and protocol to lookup route.
  tunnel: introduce udp_tun_rx_dst()
  geneve: Make dst-port configurable.
  geneve: Add support to collect tunnel metadata.
  openvswitch: Use Geneve device.
  geneve: Consolidate Geneve functionality in single module.
  geneve: Move device hash table to geneve socket.

 drivers/net/Kconfig            |    2 +-
 drivers/net/geneve.c           |  730 ++++++++++++++++++++++++++++++++++------
 drivers/net/vxlan.c            |   29 +--
 include/net/dst_metadata.h     |   61 ++++
 include/net/geneve.h           |   35 +--
 include/net/udp_tunnel.h       |    4 +
 include/uapi/linux/if_link.h   |    2 +
 net/ipv4/Kconfig               |   14 -
 net/ipv4/Makefile              |    1 -
 net/ipv4/geneve_core.c         |  447 ------------------------
 net/ipv4/ip_gre.c              |   20 +-
 net/ipv4/udp_tunnel.c          |   25 ++-
 net/openvswitch/Kconfig        |    2 +-
 net/openvswitch/vport-geneve.c |  179 ++--------
 14 files changed, 760 insertions(+), 791 deletions(-)
 delete mode 100644 net/ipv4/geneve_core.c

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

end of thread, other threads:[~2015-08-26 21:15 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-24 17:43 [PATCH v3 net-next 0/8] Geneve: Add support for tunnel metadata mode Pravin B Shelar
2015-08-24 17:43 ` [PATCH v3 net-next 1/8] geneve: Initialize ethernet address in device setup Pravin B Shelar
2015-08-26 20:42   ` John W. Linville
2015-08-24 17:43 ` [PATCH v3 net-next 2/8] geneve: Use skb mark and protocol to lookup route Pravin B Shelar
2015-08-26 20:46   ` John W. Linville
2015-08-24 17:43 ` [PATCH v3 net-next 3/8] tunnel: introduce udp_tun_rx_dst() Pravin B Shelar
2015-08-24 22:02   ` Jesse Gross
2015-08-25 17:46   ` Thomas Graf
2015-08-24 17:43 ` [PATCH v3 net-next 4/8] geneve: Make dst-port configurable Pravin B Shelar
2015-08-25 17:47   ` Thomas Graf
2015-08-26 20:47   ` John W. Linville
2015-08-24 17:43 ` [PATCH v3 net-next 5/8] geneve: Add support to collect tunnel metadata Pravin B Shelar
2015-08-25  1:42   ` Jesse Gross
2015-08-25  2:15     ` Pravin Shelar
2015-08-25 16:50       ` Jesse Gross
2015-08-25 17:48         ` Thomas Graf
2015-08-25 21:16         ` Pravin Shelar
2015-08-25 18:12   ` Thomas Graf
2015-08-24 17:43 ` [PATCH v3 net-next 6/8] openvswitch: Use Geneve device Pravin B Shelar
2015-08-25 17:48   ` Thomas Graf
2015-08-24 17:43 ` [PATCH v3 net-next 7/8] geneve: Consolidate Geneve functionality in single module Pravin B Shelar
2015-08-25 18:19   ` Thomas Graf
2015-08-25 20:55     ` Pravin Shelar
2015-08-25 19:03   ` Jesse Gross
2015-08-25 20:54     ` Pravin Shelar
2015-08-25 21:35       ` Jesse Gross
2015-08-26  0:05         ` Pravin Shelar
2015-08-24 17:43 ` [PATCH v3 net-next 8/8] geneve: Move device hash table to geneve socket Pravin B Shelar
2015-08-26 21:14   ` John W. Linville

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