summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2015-11-07 13:25:38 +0100
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2015-11-07 13:25:38 +0100
commit071e3c2ff0634432a73f621b19a1bd09bdd70e51 (patch)
treea79dfff240b806c29532498b3cebffb21a7cb2be
parent5ed34e58696f004fba2112e783229022f37910e0 (diff)
ipset 6.27 releasedv6.27
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac2
-rw-r--r--kernel/ChangeLog14
3 files changed, 18 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1bfd6e5..9d38db5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+6.27
+ - Handle uint64_t alignment issue in ipset tool
+
6.26
- Out of bound access in hash:net* types fixed (reported by Dave Jones):
new tests added to the testsuite to verify the fix
diff --git a/configure.ac b/configure.ac
index 8829403..6627ee7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
dnl Boilerplate
-AC_INIT([ipset], [6.26], [kadlec@blackhole.kfki.hu])
+AC_INIT([ipset], [6.27], [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 a8a6a49..3b0016c 100644
--- a/kernel/ChangeLog
+++ b/kernel/ChangeLog
@@ -1,3 +1,17 @@
+6.27
+ - Fix reported memory size for hash:* types
+ - Fix hash type expire: release empty hash bucket block
+ - Fix hash type expiration: incorrect index fixed
+ - Collapse same condition body to a single one
+ - Fix extension alignment
+ - Compatibility: include linux/export.h when needed
+ - Compatibility: make sure vmalloc.h is included for kvfree()
+ - Compatibility: Fix detecting 'struct net' in 'struct tcf_ematch'
+ - Compatibility: Protect definition of RCU_INIT_POINTER in compatibility
+ header file
+ - netfilter: ipset: Fix sleeping memory allocation in atomic context
+ (Nikolay Borisov)
+
6.26
- Out of bound access in hash:net* types fixed (reported by Dave Jones)
- Make struct htype per ipset family (originally from Sergey Popovich)