netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL next-net] IPVS
@ 2012-05-02  1:24 Simon Horman
  2012-05-02  1:24 ` [PATCH 01/17] ipvs: timeout tables do not need GFP_ATOMIC allocation Simon Horman
                   ` (17 more replies)
  0 siblings, 18 replies; 20+ messages in thread
From: Simon Horman @ 2012-05-02  1:24 UTC (permalink / raw)
  To: Pablo Neira Ayuso
  Cc: lvs-devel, netdev, netfilter-devel, Wensong Zhang,
	Julian Anastasov, Hans Schillstrom, Jesper Dangaard Brouer

Hi Pablo,

please consider the following 5 changes for 3.4, they are all bug fixes.
I would also like these changes considered for stable.

Please note that there will be a conflict with the following when merged with
net-next:

	4a17fd5 sock: Introduce named constants for sk_reuse


The following changes since commit c3dc836d807a9b9855eefe535fdcbcf7cbb7a574:

  netfilter: bridge: optionally set indev to vlan (2012-04-24 01:22:44 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git master

for you to fetch changes up to f0cb1dbac57864ed702da8ada6a00155fff0a13b:

  IPVS: ip_vs_proto.c: local functions should not be exposed globally (2012-05-02 10:12:37 +0900)

----------------------------------------------------------------
H Hartley Sweeten (2):
      IPVS: ip_vs_ftp.c: local functions should not be exposed globally
      IPVS: ip_vs_proto.c: local functions should not be exposed globally

Julian Anastasov (14):
      ipvs: timeout tables do not need GFP_ATOMIC allocation
      ipvs: LBLC scheduler does not need GFP_ATOMIC allocation on init
      ipvs: DH scheduler does not need GFP_ATOMIC allocation
      ipvs: WRR scheduler does not need GFP_ATOMIC allocation
      ipvs: LBLCR scheduler does not need GFP_ATOMIC allocation on init
      ipvs: SH scheduler does not need GFP_ATOMIC allocation
      ipvs: ignore IP_VS_CONN_F_NOOUTPUT in backup server
      ipvs: remove check for IP_VS_CONN_F_SYNC from ip_vs_bind_dest
      ipvs: fix ip_vs_try_bind_dest to rebind app and transmitter
      ipvs: always update some of the flags bits in backup
      ipvs: wakeup master thread
      ipvs: reduce sync rate with time thresholds
      ipvs: add support for sync threads
      ipvs: optimize the use of flags in ip_vs_bind_dest

Sasha Levin (1):
      netfilter: ipvs: use GFP_KERNEL allocation where possible

 include/linux/ip_vs.h            |    5 +
 include/net/ip_vs.h              |   87 ++++-
 net/netfilter/ipvs/ip_vs_conn.c  |   69 ++--
 net/netfilter/ipvs/ip_vs_core.c  |   30 +-
 net/netfilter/ipvs/ip_vs_ctl.c   |   70 +++-
 net/netfilter/ipvs/ip_vs_dh.c    |    2 +-
 net/netfilter/ipvs/ip_vs_ftp.c   |    2 +-
 net/netfilter/ipvs/ip_vs_lblc.c  |    2 +-
 net/netfilter/ipvs/ip_vs_lblcr.c |    2 +-
 net/netfilter/ipvs/ip_vs_proto.c |    6 +-
 net/netfilter/ipvs/ip_vs_sh.c    |    2 +-
 net/netfilter/ipvs/ip_vs_sync.c  |  662 ++++++++++++++++++++++++++------------
 net/netfilter/ipvs/ip_vs_wrr.c   |    2 +-
 13 files changed, 667 insertions(+), 274 deletions(-)

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

end of thread, other threads:[~2012-05-02  6:18 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-02  1:24 [GIT PULL next-net] IPVS Simon Horman
2012-05-02  1:24 ` [PATCH 01/17] ipvs: timeout tables do not need GFP_ATOMIC allocation Simon Horman
2012-05-02  1:24 ` [PATCH 02/17] ipvs: LBLC scheduler does not need GFP_ATOMIC allocation on init Simon Horman
2012-05-02  1:24 ` [PATCH 03/17] ipvs: DH scheduler does not need GFP_ATOMIC allocation Simon Horman
2012-05-02  1:24 ` [PATCH 04/17] ipvs: WRR " Simon Horman
2012-05-02  1:24 ` [PATCH 05/17] ipvs: LBLCR scheduler does not need GFP_ATOMIC allocation on init Simon Horman
2012-05-02  1:24 ` [PATCH 06/17] ipvs: SH scheduler does not need GFP_ATOMIC allocation Simon Horman
2012-05-02  1:24 ` [PATCH 07/17] netfilter: ipvs: use GFP_KERNEL allocation where possible Simon Horman
2012-05-02  1:24 ` [PATCH 08/17] ipvs: ignore IP_VS_CONN_F_NOOUTPUT in backup server Simon Horman
2012-05-02  1:24 ` [PATCH 09/17] ipvs: remove check for IP_VS_CONN_F_SYNC from ip_vs_bind_dest Simon Horman
2012-05-02  1:24 ` [PATCH 10/17] ipvs: fix ip_vs_try_bind_dest to rebind app and transmitter Simon Horman
2012-05-02  1:24 ` [PATCH 11/17] ipvs: always update some of the flags bits in backup Simon Horman
2012-05-02  1:24 ` [PATCH 12/17] ipvs: wakeup master thread Simon Horman
2012-05-02  1:24 ` [PATCH 13/17] ipvs: reduce sync rate with time thresholds Simon Horman
2012-05-02  1:24 ` [PATCH 14/17] ipvs: add support for sync threads Simon Horman
2012-05-02  1:24 ` [PATCH 15/17] ipvs: optimize the use of flags in ip_vs_bind_dest Simon Horman
2012-05-02  1:25 ` [PATCH 16/17] IPVS: ip_vs_ftp.c: local functions should not be exposed globally Simon Horman
2012-05-02  1:25 ` [PATCH 17/17] IPVS: ip_vs_proto.c: " Simon Horman
2012-05-02  5:53 ` [GIT PULL next-net] IPVS Simon Horman
2012-05-02  6:18   ` 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).