summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog13
-rw-r--r--configure.ac2
-rw-r--r--kernel/ChangeLog23
3 files changed, 37 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 20b8a77..c41a93c 100644
--- 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
diff --git a/configure.ac b/configure.ac
index 985d592..4212274 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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])
diff --git a/kernel/ChangeLog b/kernel/ChangeLog
index 1ca4feb..b218107 100644
--- a/kernel/ChangeLog
+++ b/kernel/ChangeLog
@@ -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)