summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2013-05-09 17:33:39 +0200
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2013-05-09 17:33:39 +0200
commit85196765617c27d69155618d113addbc418679ad (patch)
treef0ce2293c01011da355a49e048afd75e30cbab30
parenta7991c485e4e8d1c0fceb3c741b851f5aeaf9dcc (diff)
ipset 6.19 releasedv6.19
-rw-r--r--ChangeLog19
-rw-r--r--configure.ac2
-rw-r--r--kernel/ChangeLog39
3 files changed, 59 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 59c0ef9..e49f6f4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+6.19
+ - Check at modules_install whether depmod ignores the extra subdir
+ (reported by Husnu Demir and tian fang)
+ - The utils are updated from their sources
+ - Manpage typing error correction (reported by Husnu Demir)
+ - Update testsuite as the trailing space was eliminated at listings
+ - Add sparse checking support to userspace
+ - Improve XML output: add element tag and root element (suggested by Lucas
+ Hamie)
+ - Manpage updates
+ - Add new testsuite entries to verify counters and the new type
+ implementation
+ - Introduce the new set type revisions with counter support
+ - Support counters in the ipset library
+ - The uapi include split in the package itself
+
+6.18
+ - Kernel part bugfix release
+
6.17
- Fix revision printing in XML mode (reported by Mart Frauenlob)
- Correct "Suspicious condition (assignment + comparison)" (Thomas Jarosch)
diff --git a/configure.ac b/configure.ac
index a86d596..6b64576 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
dnl Boilerplate
-AC_INIT([ipset], [6.17], [kadlec@blackhole.kfki.hu])
+AC_INIT([ipset], [6.19], [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 b9ca38c..2706c79 100644
--- a/kernel/ChangeLog
+++ b/kernel/ChangeLog
@@ -1,3 +1,42 @@
+6.19
+ - Compatibility fixes to keep the support of kernels back to 2.6.32
+ - Backport nla_put_net64
+ - Support package fragments for IPv4 protos without ports
+ (Anders K. Pedersen)
+ - Use fix sized type for timeout in the extension part
+ - Make sure kernel configured properly for sparse checkings
+ - Fix "may be used uninitialized" warnings (reported by Pablo Neira
+ Ayuso)
+ - Rename simple macro names to avoid namespace issues. (reported by
+ David Laight)
+ - Fix sparse warnings due to missing rcu annotations (reported by
+ Pablo Neira Ayuso)
+ - Sparse warning about shadowed variable fixed
+ - Don't call ip_nest_end needlessly in the error path (suggested by
+ Pablo Neira Ayuso)
+ - set match: add support to match the counters
+ - The list:set type with counter support
+ - The hash types with counter support
+ - The bitmap types with counter support
+ - Introduce the counter extension in the core
+ - list:set type using the extension interface
+ - Hash types using the unified code base
+ - Unified hash type generation
+ - Bitmap types using the unified code base
+ - Unified bitmap type generation
+ - Introduce extensions to elements in the core
+ - Move often used IPv6 address masking function to header file
+ - Make possible to test elements marked with nomatch, from userspace
+ - netfilter ipset: Use ipv6_addr_equal() where appropriate.
+ (YOSHIFUJI Hideaki)
+ - Add a compatibility header file for easier maintenance
+ - The uapi include split in the package itself
+ - Reorder modules a little bit in Kbuild
+
+6.18
+ - list:set: update reference counter when last element pushed off
+ - hash:*net*: nomatch flag not excluded on set resize
+
6.17
- Make sure ip_set_max isn't set to IPSET_INVALID_ID
- netfilter: ipset: timeout values corrupted on set resize (Josh Hunt)