netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: pablo@netfilter.org
To: netfilter-devel@vger.kernel.org
Cc: davem@davemloft.net
Subject: [PATCH 00/14] netfilter updates for 3.2
Date: Tue,  1 Nov 2011 10:11:22 +0100	[thread overview]
Message-ID: <1320138696-28048-1-git-send-email-pablo@netfilter.org> (raw)

From: Pablo Neira Ayuso <pablo@netfilter.org>

Hi Dave,

The following patchset includes netfilter updates for 3.2. Basically,
they are:

- Two fixes from Florian Westpal. One refcount leak fix for the IPv6
  routing templates and one fix nf_queue if the bypass mechanism is used.
  I'll pass these two to stable once they hit Linus tree.

- Export missing NAT definitions to user-space. Anthony G. Basile
  reported that several tools are internal defining the NAT structures
  because of the lack of public definition in the kernel tree.

- Lots of cleanups, one documentation update and one compilation fix
  from the IPVS guys (Simon Horman and Krzysztof Wilczynski).

- Update the MAINTAINERS file to include me. I have also deleted
  developers that were not active in the netfilter field since long
  time ago.

- One cleanup from Joe Perches, to reduce unnecessary OOM logging
  messages.

You can pull them from my nf branch at:

	git://1984.lsi.us.es/net/.git nf

Thanks!

Florian Westphal (2):
  netfilter: ipv6: fix afinfo->route refcnt leak on error
  netfilter: do not propagate nf_queue errors in nf_hook_slow

Joe Perches (1):
  netfilter: Remove unnecessary OOM logging messages

Krzysztof Wilczynski (3):
  ipvs: Expose ip_vs_ftp module parameters via sysfs.
  ipvs: Remove unused variable "cs" from ip_vs_leave function.
  ipvs: Fix compilation error in ip_vs.h for ip_vs_confirm_conntrack
    function.

Pablo Neira Ayuso (2):
  netfilter: export NAT definitions through
    linux/netfilter_ipv4/nf_nat.h
  MAINTAINERS: update netfilter maintainers

Simon Horman (6):
  ipvs: Add documentation for new sysctl entries
  ipvs: Remove unused parameter from ip_vs_confirm_conntrack()
  ipvs: Remove unused return value of protocol state transitions
  ipvs: Removed unused variables
  ipvs: secure_tcp does provide alternate state timeouts
  ipvs: Enhance grammar used to refer to Kconfig options

 Documentation/networking/ipvs-sysctl.txt   |   62 ++++++++++++++++++++++++---
 MAINTAINERS                                |    4 +-
 include/linux/netfilter_ipv4/Kbuild        |    1 +
 include/linux/netfilter_ipv4/nf_nat.h      |   58 ++++++++++++++++++++++++++
 include/net/ip_vs.h                        |   11 ++---
 include/net/netfilter/nf_conntrack_tuple.h |   27 +------------
 include/net/netfilter/nf_nat.h             |   26 +-----------
 net/bridge/netfilter/ebt_ulog.c            |    7 +--
 net/ipv4/netfilter/ipt_CLUSTERIP.c         |    1 -
 net/ipv4/netfilter/ipt_ULOG.c              |    4 +-
 net/ipv4/netfilter/nf_nat_snmp_basic.c     |   22 +---------
 net/ipv6/netfilter.c                       |   13 ++++-
 net/ipv6/netfilter/nf_conntrack_reasm.c    |    7 +--
 net/netfilter/core.c                       |   11 ++---
 net/netfilter/ipset/ip_set_core.c          |    4 +-
 net/netfilter/ipvs/ip_vs_core.c            |   20 ++++-----
 net/netfilter/ipvs/ip_vs_ctl.c             |   22 +++-------
 net/netfilter/ipvs/ip_vs_dh.c              |    5 +-
 net/netfilter/ipvs/ip_vs_ftp.c             |    5 +-
 net/netfilter/ipvs/ip_vs_lblc.c            |    9 +---
 net/netfilter/ipvs/ip_vs_lblcr.c           |   13 ++----
 net/netfilter/ipvs/ip_vs_nfct.c            |    2 +-
 net/netfilter/ipvs/ip_vs_proto.c           |    5 +-
 net/netfilter/ipvs/ip_vs_proto_sctp.c      |   14 ++----
 net/netfilter/ipvs/ip_vs_proto_tcp.c       |    6 +--
 net/netfilter/ipvs/ip_vs_proto_udp.c       |    5 +-
 net/netfilter/ipvs/ip_vs_sh.c              |    5 +-
 net/netfilter/ipvs/ip_vs_wrr.c             |    5 +-
 net/netfilter/ipvs/ip_vs_xmit.c            |    2 +-
 net/netfilter/nf_conntrack_core.c          |    5 +--
 net/netfilter/nfnetlink_log.c              |    7 +--
 net/netfilter/xt_IDLETIMER.c               |    2 -
 net/netfilter/xt_hashlimit.c               |    5 +--
 33 files changed, 194 insertions(+), 201 deletions(-)
 create mode 100644 include/linux/netfilter_ipv4/nf_nat.h

-- 
1.7.2.5


             reply	other threads:[~2011-11-01  9:11 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-01  9:11 pablo [this message]
2011-11-01  9:11 ` [PATCH 01/14] ipvs: Expose ip_vs_ftp module parameters via sysfs pablo
2011-11-01  9:11 ` [PATCH 02/14] ipvs: Add documentation for new sysctl entries pablo
2011-11-01  9:11 ` [PATCH 03/14] ipvs: Remove unused parameter from ip_vs_confirm_conntrack() pablo
2011-11-01  9:11 ` [PATCH 04/14] ipvs: Remove unused return value of protocol state transitions pablo
2011-11-01  9:11 ` [PATCH 05/14] ipvs: Removed unused variables pablo
2011-11-01  9:11 ` [PATCH 06/14] ipvs: secure_tcp does provide alternate state timeouts pablo
2011-11-01  9:11 ` [PATCH 07/14] ipvs: Enhance grammar used to refer to Kconfig options pablo
2011-11-01  9:11 ` [PATCH 08/14] netfilter: Remove unnecessary OOM logging messages pablo
2011-11-01  9:11 ` [PATCH 09/14] netfilter: export NAT definitions through linux/netfilter_ipv4/nf_nat.h pablo
2011-11-01  9:11 ` [PATCH 10/14] ipvs: Remove unused variable "cs" from ip_vs_leave function pablo
2011-11-01  9:11 ` [PATCH 11/14] ipvs: Fix compilation error in ip_vs.h for ip_vs_confirm_conntrack function pablo
2011-11-01  9:11 ` [PATCH 12/14] netfilter: ipv6: fix afinfo->route refcnt leak on error pablo
2011-11-01  9:11 ` [PATCH 13/14] MAINTAINERS: update netfilter maintainers pablo
2011-11-01  9:11 ` [PATCH 14/14] netfilter: do not propagate nf_queue errors in nf_hook_slow pablo
2011-11-01  9:34 ` [PATCH 00/14] netfilter updates for 3.2 David Miller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1320138696-28048-1-git-send-email-pablo@netfilter.org \
    --to=pablo@netfilter.org \
    --cc=davem@davemloft.net \
    --cc=netfilter-devel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).