netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/12] ipset patches against nf-next-2.6, updated again
@ 2011-06-01 21:35 Jozsef Kadlecsik
  2011-06-01 21:35 ` [PATCH 01/12] netfilter: ipset: Timeout can be modified for already added elements Jozsef Kadlecsik
                   ` (2 more replies)
  0 siblings, 3 replies; 25+ messages in thread
From: Jozsef Kadlecsik @ 2011-06-01 21:35 UTC (permalink / raw)
  To: netfilter-devel; +Cc: Patrick McHardy, Pablo Neira Ayuso, Jozsef Kadlecsik

Hi Patrick,

I have updated the patches with the changes since last time I sent them.
The patches can be applied only if nf-next-2.6 is rebased onto current
net-next-2.6.

Please consider applying them.

Best regards,
Jozsef

Jozsef Kadlecsik (12):
  netfilter: ipset: Timeout can be modified for already added elements
  netfilter: ipset: Options and flags support added to the kernel API
  netfilter: ipset: Support listing setnames and headers too
  netfilter: ipset: Fix adding ranges to hash types
  netfilter: ipset: Set type support with multiple revisions added
  netfilter: ipset: Support range for IPv4 at adding/deleting elements
    for hash:*net* types
  netfilter: ipset: Take into account cidr value for the from address
    when creating the set
  netfilter: ipset: Add xt_action_param to the variant level kadt
    functions
  netfilter: ipset: Fix return code for destroy when sets are in use
  netfilter: ipset: Use the stored first cidr value instead of '1'
  netfilter: ipset: hash:net,iface type introduced
  netfilter: ipset: Whitespace and coding fixes, detected by
    checkpatch.pl

 include/linux/netfilter/ipset/ip_set.h         |   50 ++-
 include/linux/netfilter/ipset/ip_set_ahash.h   |   48 ++-
 include/linux/netfilter/ipset/ip_set_hash.h    |    4 +
 include/linux/netfilter/ipset/ip_set_timeout.h |    3 +
 include/linux/netfilter/ipset/pfxlen.h         |   11 +-
 include/linux/netfilter/xt_set.h               |   15 +-
 net/netfilter/ipset/Kconfig                    |   10 +
 net/netfilter/ipset/Makefile                   |    1 +
 net/netfilter/ipset/ip_set_bitmap_ip.c         |   35 +-
 net/netfilter/ipset/ip_set_bitmap_ipmac.c      |   38 +-
 net/netfilter/ipset/ip_set_bitmap_port.c       |   31 +-
 net/netfilter/ipset/ip_set_core.c              |  165 +++---
 net/netfilter/ipset/ip_set_hash_ip.c           |   43 +-
 net/netfilter/ipset/ip_set_hash_ipport.c       |   63 ++-
 net/netfilter/ipset/ip_set_hash_ipportip.c     |   67 ++-
 net/netfilter/ipset/ip_set_hash_ipportnet.c    |  141 +++--
 net/netfilter/ipset/ip_set_hash_net.c          |   90 +++-
 net/netfilter/ipset/ip_set_hash_netiface.c     |  762 ++++++++++++++++++++++++
 net/netfilter/ipset/ip_set_hash_netport.c      |  119 +++--
 net/netfilter/ipset/ip_set_list_set.c          |  106 +++--
 net/netfilter/ipset/pfxlen.c                   |   23 +-
 net/netfilter/xt_set.c                         |  152 ++++--
 22 files changed, 1588 insertions(+), 389 deletions(-)
 create mode 100644 net/netfilter/ipset/ip_set_hash_netiface.c


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

end of thread, other threads:[~2011-06-16 16:16 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-01 21:35 [PATCH 00/12] ipset patches against nf-next-2.6, updated again Jozsef Kadlecsik
2011-06-01 21:35 ` [PATCH 01/12] netfilter: ipset: Timeout can be modified for already added elements Jozsef Kadlecsik
2011-06-01 21:35   ` [PATCH 02/12] netfilter: ipset: Options and flags support added to the kernel API Jozsef Kadlecsik
2011-06-01 21:35     ` [PATCH 03/12] netfilter: ipset: Support listing setnames and headers too Jozsef Kadlecsik
2011-06-01 21:35       ` [PATCH 04/12] netfilter: ipset: Fix adding ranges to hash types Jozsef Kadlecsik
2011-06-01 21:35         ` [PATCH 05/12] netfilter: ipset: Set type support with multiple revisions added Jozsef Kadlecsik
2011-06-01 21:35           ` [PATCH 06/12] netfilter: ipset: Support range for IPv4 at adding/deleting elements for hash:*net* types Jozsef Kadlecsik
2011-06-01 21:35             ` [PATCH 07/12] netfilter: ipset: Take into account cidr value for the from address when creating the set Jozsef Kadlecsik
2011-06-01 21:35               ` [PATCH 08/12] netfilter: ipset: Add xt_action_param to the variant level kadt functions Jozsef Kadlecsik
2011-06-01 21:35                 ` [PATCH 09/12] netfilter: ipset: Fix return code for destroy when sets are in use Jozsef Kadlecsik
2011-06-01 21:35                   ` [PATCH 10/12] netfilter: ipset: Use the stored first cidr value instead of '1' Jozsef Kadlecsik
2011-06-01 21:35                     ` [PATCH 11/12] netfilter: ipset: hash:net,iface type introduced Jozsef Kadlecsik
2011-06-01 21:35                       ` [PATCH 12/12] netfilter: ipset: Whitespace and coding fixes, detected by checkpatch.pl Jozsef Kadlecsik
2011-06-02 12:57                         ` Pablo Neira Ayuso
2011-06-02 12:57                       ` [PATCH 11/12] netfilter: ipset: hash:net,iface type introduced Pablo Neira Ayuso
2011-06-02 12:56                     ` [PATCH 10/12] netfilter: ipset: Use the stored first cidr value instead of '1' Pablo Neira Ayuso
2011-06-02 12:56                   ` [PATCH 09/12] netfilter: ipset: Fix return code for destroy when sets are in use Pablo Neira Ayuso
2011-06-02 12:56                 ` [PATCH 08/12] netfilter: ipset: Add xt_action_param to the variant level kadt functions Pablo Neira Ayuso
2011-06-02 12:31 ` [PATCH 00/12] ipset patches against nf-next-2.6, updated again Pablo Neira Ayuso
2011-06-09 16:10 ` Patrick McHardy
2011-06-09 18:41   ` Pablo Neira Ayuso
2011-06-11 14:57     ` Jozsef Kadlecsik
2011-06-16 14:57       ` Patrick McHardy
2011-06-16 15:04         ` Patrick McHardy
2011-06-16 16:15           ` Jozsef Kadlecsik

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