]> granicus.if.org Git - ipset/commitdiff
ipset 6.24 released v6.24
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Mon, 24 Nov 2014 20:46:45 +0000 (21:46 +0100)
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Mon, 24 Nov 2014 20:46:45 +0000 (21:46 +0100)
ChangeLog
configure.ac
kernel/ChangeLog

index 20b8a77f9195986cb365712e8b445c8716c2aa90..c41a93c8f78d2094e158da74d728ee4339885fbe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+6.24
+  - The "extra" subdirectory for kernel modules may have a full subtree
+    (reported by Jesper Dangaard Brouer)
+  - Add more compatibility checkings to support older kernel releases
+  - Make_global.am: Don't include host headers (Baruch Siach)
+  - Alignment problem between 64bit kernel 32bit userspace fixed
+    (reported by Sven-Haegar Koch)
+  - Add script to check libipset.map for missing symbols
+  - Update libipset.map with ipset_parse_tcp_udp_port (Thomas Backlund)
+  - libipset: Bump lib version and update map file (Neutron Soutmun)
+  - Bash utilities updated
+  - ipset: Fix hyphen used as minus sign in manpage (Neutron Soutmun)
+
 6.23
   - The utils are updated from their sources
   - Order create and add options in manpage so that generic ones
index 985d5924ca5670982b0d574c5428200c6e05f72f..421227458f3b2afb7a136c298ce78b957579ab24 100644 (file)
@@ -1,5 +1,5 @@
 dnl Boilerplate
-AC_INIT([ipset], [6.23], [kadlec@blackhole.kfki.hu])
+AC_INIT([ipset], [6.24], [kadlec@blackhole.kfki.hu])
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CANONICAL_HOST
 AC_CONFIG_MACRO_DIR([m4])
index 1ca4feb428af79caefd345460f1e65e5ad161e70..b2181073fa33e9798b88300b531659e10309cb04 100644 (file)
@@ -1,3 +1,26 @@
+6.24
+  - netfilter: ipset: small potential read beyond the end of buffer
+    (Dan Carpenter)
+  - Fix parallel resizing and listing of the same set
+  - styles warned by checkpatch.pl fixed
+  - Introduce RCU in all set types instead of rwlock per set
+    (performance tested by Jesper Dangaard Brouer)
+  - Remove rbtree from hash:net,iface in order to run under RCU
+  - Explicitly add padding elements to hash:net,net and hash:net,port,net
+  - Allocate the proper size of memory when /0 networks are supported
+  - Simplify cidr handling for hash:*net* types
+  - Indicate when /0 networks are supported
+  - Kernel API changes in em_ipset.c, support both old and new ones
+  - netfilter: Convert uses of __constant_<foo> to <foo> (Joe Perches)
+  - net: use the new API kvfree() (WANG Cong)
+  - treewide: fix errors in print (Masanari Iida)
+  - netfilter: use IS_ENABLED(CONFIG_BRIDGE_NETFILTER) (Pablo Neira Ayuso)
+  - Use IS_ENABLED macro and define it if required
+  - Alignment problem between 64bit kernel 32bit userspace fixed
+    (reported by Sven-Haegar Koch)
+  - netfilter: ipset: off by one in ip_set_nfnl_get_byindex()
+    (Dan Carpenter)
+
 6.23
   - Support updating extensions when the set is full
     (fixes bugzilla id #880)