netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL nf-next 00/21] Second Round of IPVS Updates for v3.18
@ 2014-09-16  0:34 Simon Horman
  2014-09-16  0:34 ` [PATCH nf-next 01/21] ipvs: Add simple weighted failover scheduler Simon Horman
                   ` (21 more replies)
  0 siblings, 22 replies; 27+ messages in thread
From: Simon Horman @ 2014-09-16  0:34 UTC (permalink / raw)
  To: Pablo Neira Ayuso
  Cc: lvs-devel, netdev, netfilter-devel, Wensong Zhang,
	Julian Anastasov, Simon Horman

Hi Pablo,

please consider these IPVS updates for v3.18.

* Add simple weighted failover scheduler
  - Thanks to Kenny Mathis
* Support v6 real servers in v4 pools and vice versa
  - Thanks to Alex Gartrell and Julian Anastasov


The following changes since commit 0bbe80e571c7b866afd92a98edd32a969467a7a9:

  netfilter: masquerading needs to be independent of x_tables in Kconfig (2014-09-12 09:40:18 +0200)

are available in the git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git tags/ipvs2-for-v3.18

for you to fetch changes up to 87f2b83b77d6139a888af87352ff35894e5c5d69:

  ipvs: Allow heterogeneous pools now that we support them (2014-09-16 09:03:43 +0900)

----------------------------------------------------------------
Alex Gartrell (10):
      ipvs: Add destination address family to netlink interface
      ipvs: Supply destination addr family to ip_vs_{lookup_dest,find_dest}
      ipvs: Pass destination address family to ip_vs_trash_get_dest
      ipvs: Supply destination address family to ip_vs_conn_new
      ipvs: prevent mixing heterogeneous pools and synchronization
      ipvs: Pull out crosses_local_route_boundary logic
      ipvs: Pull out update_pmtu code
      ipvs: Add generic ensure_mtu_is_adequate to handle mixed pools
      ipvs: support ipv4 in ipv6 and ipv6 in ipv4 tunnel forwarding
      ipvs: Allow heterogeneous pools now that we support them

Julian Anastasov (10):
      ipvs: address family of LBLC entry depends on svc family
      ipvs: address family of LBLCR entry depends on svc family
      ipvs: use correct address family in DH logs
      ipvs: use correct address family in LC logs
      ipvs: use correct address family in NQ logs
      ipvs: use correct address family in RR logs
      ipvs: use correct address family in SED logs
      ipvs: use correct address family in SH logs
      ipvs: use correct address family in WLC logs
      ipvs: use the new dest addr family field

Kenny Mathis (1):
      ipvs: Add simple weighted failover scheduler

 include/net/ip_vs.h                   |  15 +-
 include/uapi/linux/ip_vs.h            |   3 +
 net/netfilter/ipvs/Kconfig            |  10 +
 net/netfilter/ipvs/Makefile           |   1 +
 net/netfilter/ipvs/ip_vs_conn.c       |  74 +++++--
 net/netfilter/ipvs/ip_vs_core.c       |  15 +-
 net/netfilter/ipvs/ip_vs_ctl.c        | 112 +++++++---
 net/netfilter/ipvs/ip_vs_dh.c         |   2 +-
 net/netfilter/ipvs/ip_vs_fo.c         |  79 +++++++
 net/netfilter/ipvs/ip_vs_ftp.c        |   6 +-
 net/netfilter/ipvs/ip_vs_lblc.c       |  12 +-
 net/netfilter/ipvs/ip_vs_lblcr.c      |  12 +-
 net/netfilter/ipvs/ip_vs_lc.c         |   2 +-
 net/netfilter/ipvs/ip_vs_nq.c         |   3 +-
 net/netfilter/ipvs/ip_vs_proto_sctp.c |   2 +-
 net/netfilter/ipvs/ip_vs_proto_tcp.c  |   2 +-
 net/netfilter/ipvs/ip_vs_rr.c         |   2 +-
 net/netfilter/ipvs/ip_vs_sed.c        |   3 +-
 net/netfilter/ipvs/ip_vs_sh.c         |   8 +-
 net/netfilter/ipvs/ip_vs_sync.c       |  13 +-
 net/netfilter/ipvs/ip_vs_wlc.c        |   3 +-
 net/netfilter/ipvs/ip_vs_xmit.c       | 388 +++++++++++++++++++++-------------
 22 files changed, 543 insertions(+), 224 deletions(-)
 create mode 100644 net/netfilter/ipvs/ip_vs_fo.c

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

end of thread, other threads:[~2014-09-18  0:27 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-16  0:34 [GIT PULL nf-next 00/21] Second Round of IPVS Updates for v3.18 Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 01/21] ipvs: Add simple weighted failover scheduler Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 02/21] ipvs: Add destination address family to netlink interface Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 03/21] ipvs: Supply destination addr family to ip_vs_{lookup_dest,find_dest} Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 04/21] ipvs: Pass destination address family to ip_vs_trash_get_dest Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 05/21] ipvs: Supply destination address family to ip_vs_conn_new Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 06/21] ipvs: prevent mixing heterogeneous pools and synchronization Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 07/21] ipvs: Pull out crosses_local_route_boundary logic Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 08/21] ipvs: Pull out update_pmtu code Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 09/21] ipvs: Add generic ensure_mtu_is_adequate to handle mixed pools Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 10/21] ipvs: support ipv4 in ipv6 and ipv6 in ipv4 tunnel forwarding Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 11/21] ipvs: address family of LBLC entry depends on svc family Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 12/21] ipvs: address family of LBLCR " Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 13/21] ipvs: use correct address family in DH logs Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 14/21] ipvs: use correct address family in LC logs Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 15/21] ipvs: use correct address family in NQ logs Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 16/21] ipvs: use correct address family in RR logs Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 17/21] ipvs: use correct address family in SED logs Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 18/21] ipvs: use correct address family in SH logs Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 19/21] ipvs: use correct address family in WLC logs Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 20/21] ipvs: use the new dest addr family field Simon Horman
2014-09-16  0:34 ` [PATCH nf-next 21/21] ipvs: Allow heterogeneous pools now that we support them Simon Horman
2014-09-16 17:25 ` [GIT PULL nf-next 00/21] Second Round of IPVS Updates for v3.18 Pablo Neira Ayuso
2014-09-16 21:27   ` Julian Anastasov
2014-09-17  8:30     ` Pablo Neira Ayuso
2014-09-17 23:56       ` Simon Horman
2014-09-18  0:27         ` Simon Horman

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