All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] ipset patches against nf-next-2.6, next try
@ 2011-06-07 16:56 Jozsef Kadlecsik
  2011-06-07 16:56 ` [PATCH 01/15] netfilter: ipset: Timeout can be modified for already added elements Jozsef Kadlecsik
  0 siblings, 1 reply; 31+ messages in thread
From: Jozsef Kadlecsik @ 2011-06-07 16:56 UTC (permalink / raw)
  To: netfilter-devel; +Cc: Pablo Neira Ayuso, Jozsef Kadlecsik

Hi Pablo,

Here follows the ipset patches against nf-next-2.6. My last batch could
not be applied due to old patches missing from the tree.

Best regards,
Jozsef

Jozsef Kadlecsik (15):
  netfilter: ipset: Timeout can be modified for already added elements
  netfilter: ipset: Whitespace fixes: some space before tab slipped in.
  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: Adding ranges to hash types with timeout could
    still fail, fixed
  netfilter: ipset: Take into account cidr value for the from address
    when creating the set
  netfilter: ipset: Use unified from/to address masking and check the
    usage
  netfilter: ipset: Add xt_action_param to the variant level kadt
    functions, ipset API change
  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 |    5 +-
 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, 1589 insertions(+), 390 deletions(-)
 create mode 100644 net/netfilter/ipset/ip_set_hash_netiface.c


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

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

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-07 16:56 [PATCH 00/15] ipset patches against nf-next-2.6, next try Jozsef Kadlecsik
2011-06-07 16:56 ` [PATCH 01/15] netfilter: ipset: Timeout can be modified for already added elements Jozsef Kadlecsik
2011-06-07 16:56   ` [PATCH 02/15] netfilter: ipset: Whitespace fixes: some space before tab slipped in Jozsef Kadlecsik
2011-06-07 16:56     ` [PATCH 03/15] netfilter: ipset: Options and flags support added to the kernel API Jozsef Kadlecsik
2011-06-07 16:56       ` [PATCH 04/15] netfilter: ipset: Support listing setnames and headers too Jozsef Kadlecsik
2011-06-07 16:56         ` [PATCH 05/15] netfilter: ipset: Fix adding ranges to hash types Jozsef Kadlecsik
2011-06-07 16:56           ` [PATCH 06/15] netfilter: ipset: Set type support with multiple revisions added Jozsef Kadlecsik
2011-06-07 16:56             ` [PATCH 07/15] netfilter: ipset: Support range for IPv4 at adding/deleting elements for hash:*net* types Jozsef Kadlecsik
2011-06-07 16:56               ` [PATCH 08/15] netfilter: ipset: Adding ranges to hash types with timeout could still fail, fixed Jozsef Kadlecsik
2011-06-07 16:56                 ` [PATCH 09/15] netfilter: ipset: Take into account cidr value for the from address when creating the set Jozsef Kadlecsik
2011-06-07 16:56                   ` [PATCH 10/15] netfilter: ipset: Use unified from/to address masking and check the usage Jozsef Kadlecsik
2011-06-07 16:56                     ` [PATCH 11/15] netfilter: ipset: Add xt_action_param to the variant level kadt functions, ipset API change Jozsef Kadlecsik
2011-06-07 16:56                       ` [PATCH 12/15] netfilter: ipset: Fix return code for destroy when sets are in use Jozsef Kadlecsik
2011-06-07 16:56                         ` [PATCH 13/15] netfilter: ipset: Use the stored first cidr value instead of '1' Jozsef Kadlecsik
2011-06-07 16:56                           ` [PATCH 14/15] netfilter: ipset: hash:net,iface type introduced Jozsef Kadlecsik
2011-06-07 16:56                             ` [PATCH 15/15] netfilter: ipset: Whitespace and coding fixes detected by checkpatch.pl Jozsef Kadlecsik
2011-06-16 17:01                               ` Patrick McHardy
2011-06-16 17:01                             ` [PATCH 14/15] netfilter: ipset: hash:net,iface type introduced Patrick McHardy
2011-06-16 16:58                           ` [PATCH 13/15] netfilter: ipset: Use the stored first cidr value instead of '1' Patrick McHardy
2011-06-16 16:58                         ` [PATCH 12/15] netfilter: ipset: Fix return code for destroy when sets are in use Patrick McHardy
2011-06-16 16:57                       ` [PATCH 11/15] netfilter: ipset: Add xt_action_param to the variant level kadt functions, ipset API change Patrick McHardy
2011-06-16 16:56                     ` [PATCH 10/15] netfilter: ipset: Use unified from/to address masking and check the usage Patrick McHardy
2011-06-16 16:55                   ` [PATCH 09/15] netfilter: ipset: Take into account cidr value for the from address when creating the set Patrick McHardy
2011-06-16 16:54                 ` [PATCH 08/15] netfilter: ipset: Adding ranges to hash types with timeout could still fail, fixed Patrick McHardy
2011-06-16 16:53               ` [PATCH 07/15] netfilter: ipset: Support range for IPv4 at adding/deleting elements for hash:*net* types Patrick McHardy
2011-06-16 16:52             ` [PATCH 06/15] netfilter: ipset: Set type support with multiple revisions added Patrick McHardy
2011-06-16 16:51           ` [PATCH 05/15] netfilter: ipset: Fix adding ranges to hash types Patrick McHardy
2011-06-16 16:49         ` [PATCH 04/15] netfilter: ipset: Support listing setnames and headers too Patrick McHardy
2011-06-16 16:46       ` [PATCH 03/15] netfilter: ipset: Options and flags support added to the kernel API Patrick McHardy
2011-06-16 16:42     ` [PATCH 02/15] netfilter: ipset: Whitespace fixes: some space before tab slipped in Patrick McHardy
2011-06-16 16:41   ` [PATCH 01/15] netfilter: ipset: Timeout can be modified for already added elements Patrick McHardy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.