netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/12] ipset kernel patches
@ 2011-01-14 23:23 Jozsef Kadlecsik
  2011-01-14 23:23 ` [PATCH 01/12] IP set core support Jozsef Kadlecsik
  2011-01-18 15:16 ` [PATCH 00/12] ipset kernel patches Patrick McHardy
  0 siblings, 2 replies; 20+ messages in thread
From: Jozsef Kadlecsik @ 2011-01-14 23:23 UTC (permalink / raw)
  To: netfilter-devel; +Cc: Patrick McHardy, Pablo Neira Ayuso, Jozsef Kadlecsik

Hi,

Please review and consider for applying the following patches, which
are the kernel part of the ipset 5.x release.

Best regards,
Jozsef

Jozsef Kadlecsik (12):
  IP set core support
  bitmap:ip set type support
  bitmap:ip,mac type support
  bitmap:port set type support
  hash:ip set type support
  hash:ip,port set type support
  hash:ip,port,ip set type support
  hash:ip,port,net set type support
  hash:net set type support
  hash:net,port set type support
  list:set set type support
  "set" match and "SET" target support

 include/linux/netfilter/ipset/ip_set.h         |  522 ++++++++
 include/linux/netfilter/ipset/ip_set_ahash.h   | 1074 ++++++++++++++++
 include/linux/netfilter/ipset/ip_set_bitmap.h  |   31 +
 include/linux/netfilter/ipset/ip_set_getport.h |  126 ++
 include/linux/netfilter/ipset/ip_set_hash.h    |   26 +
 include/linux/netfilter/ipset/ip_set_kernel.h  |   15 +
 include/linux/netfilter/ipset/ip_set_list.h    |   27 +
 include/linux/netfilter/ipset/ip_set_timeout.h |  127 ++
 include/linux/netfilter/ipset/pfxlen.h         |   16 +
 include/linux/netfilter/nfnetlink.h            |    3 +-
 include/linux/netfilter/xt_set.h               |   55 +
 net/netfilter/Kconfig                          |   14 +
 net/netfilter/Makefile                         |    4 +
 net/netfilter/ipset/Kconfig                    |  121 ++
 net/netfilter/ipset/Makefile                   |   24 +
 net/netfilter/ipset/ip_set_bitmap_ip.c         |  728 +++++++++++
 net/netfilter/ipset/ip_set_bitmap_ipmac.c      |  661 ++++++++++
 net/netfilter/ipset/ip_set_bitmap_port.c       |  649 ++++++++++
 net/netfilter/ipset/ip_set_core.c              | 1556 ++++++++++++++++++++++++
 net/netfilter/ipset/ip_set_hash_ip.c           |  485 ++++++++
 net/netfilter/ipset/ip_set_hash_ipport.c       |  570 +++++++++
 net/netfilter/ipset/ip_set_hash_ipportip.c     |  591 +++++++++
 net/netfilter/ipset/ip_set_hash_ipportnet.c    |  657 ++++++++++
 net/netfilter/ipset/ip_set_hash_net.c          |  486 ++++++++
 net/netfilter/ipset/ip_set_hash_netport.c      |  606 +++++++++
 net/netfilter/ipset/ip_set_list_set.c          |  589 +++++++++
 net/netfilter/ipset/pfxlen.c                   |  289 +++++
 net/netfilter/xt_set.c                         |  370 ++++++
 28 files changed, 10421 insertions(+), 1 deletions(-)
 create mode 100644 include/linux/netfilter/ipset/ip_set.h
 create mode 100644 include/linux/netfilter/ipset/ip_set_ahash.h
 create mode 100644 include/linux/netfilter/ipset/ip_set_bitmap.h
 create mode 100644 include/linux/netfilter/ipset/ip_set_getport.h
 create mode 100644 include/linux/netfilter/ipset/ip_set_hash.h
 create mode 100644 include/linux/netfilter/ipset/ip_set_kernel.h
 create mode 100644 include/linux/netfilter/ipset/ip_set_list.h
 create mode 100644 include/linux/netfilter/ipset/ip_set_timeout.h
 create mode 100644 include/linux/netfilter/ipset/pfxlen.h
 create mode 100644 include/linux/netfilter/xt_set.h
 create mode 100644 net/netfilter/ipset/Kconfig
 create mode 100644 net/netfilter/ipset/Makefile
 create mode 100644 net/netfilter/ipset/ip_set_bitmap_ip.c
 create mode 100644 net/netfilter/ipset/ip_set_bitmap_ipmac.c
 create mode 100644 net/netfilter/ipset/ip_set_bitmap_port.c
 create mode 100644 net/netfilter/ipset/ip_set_core.c
 create mode 100644 net/netfilter/ipset/ip_set_hash_ip.c
 create mode 100644 net/netfilter/ipset/ip_set_hash_ipport.c
 create mode 100644 net/netfilter/ipset/ip_set_hash_ipportip.c
 create mode 100644 net/netfilter/ipset/ip_set_hash_ipportnet.c
 create mode 100644 net/netfilter/ipset/ip_set_hash_net.c
 create mode 100644 net/netfilter/ipset/ip_set_hash_netport.c
 create mode 100644 net/netfilter/ipset/ip_set_list_set.c
 create mode 100644 net/netfilter/ipset/pfxlen.c
 create mode 100644 net/netfilter/xt_set.c


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

end of thread, other threads:[~2011-01-20 22:38 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-14 23:23 [PATCH 00/12] ipset kernel patches Jozsef Kadlecsik
2011-01-14 23:23 ` [PATCH 01/12] IP set core support Jozsef Kadlecsik
2011-01-14 23:23   ` [PATCH 02/12] bitmap:ip set type support Jozsef Kadlecsik
2011-01-14 23:23     ` [PATCH 03/12] bitmap:ip,mac " Jozsef Kadlecsik
2011-01-14 23:23       ` [PATCH 04/12] bitmap:port set " Jozsef Kadlecsik
2011-01-14 23:23         ` [PATCH 05/12] hash:ip " Jozsef Kadlecsik
2011-01-14 23:23           ` [PATCH 06/12] hash:ip,port " Jozsef Kadlecsik
2011-01-14 23:23             ` [PATCH 07/12] hash:ip,port,ip " Jozsef Kadlecsik
2011-01-14 23:23               ` [PATCH 08/12] hash:ip,port,net " Jozsef Kadlecsik
2011-01-14 23:23                 ` [PATCH 09/12] hash:net " Jozsef Kadlecsik
2011-01-14 23:23                   ` [PATCH 10/12] hash:net,port " Jozsef Kadlecsik
2011-01-14 23:23                     ` [PATCH 11/12] list:set " Jozsef Kadlecsik
2011-01-14 23:23                       ` [PATCH 12/12] "set" match and "SET" target support Jozsef Kadlecsik
2011-01-19 16:05   ` [PATCH 01/12] IP set core support Patrick McHardy
2011-01-19 21:54     ` Jozsef Kadlecsik
2011-01-19 22:41       ` Patrick McHardy
2011-01-20 22:38         ` Jozsef Kadlecsik
2011-01-19 16:24   ` Eric Dumazet
2011-01-19 21:55     ` Jozsef Kadlecsik
2011-01-18 15:16 ` [PATCH 00/12] ipset kernel patches Patrick McHardy

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