diff options
author | Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | 2011-01-21 22:47:01 +0100 |
---|---|---|
committer | Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | 2011-01-21 22:47:01 +0100 |
commit | 1aea91818d2c0d5949005724b669699025a4c7bf (patch) | |
tree | 731b085c3e43978ee93ec7f7c5b15d0816a13499 | |
parent | c3ad618ce8e52a484d9cea024a4cd5d7cade444f (diff) |
ipset 5.4 releasedv5.4
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | kernel/ChangeLog | 23 |
2 files changed, 24 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d1f001d..c2b2967 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Boilerplate -AC_INIT([ipset], [5.3], [kadlec@blackhole.kfki.hu]) +AC_INIT([ipset], [5.4], [kadlec@blackhole.kfki.hu]) AC_CANONICAL_HOST AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADER([config.h]) diff --git a/kernel/ChangeLog b/kernel/ChangeLog index a8be34d..8a5b307 100644 --- a/kernel/ChangeLog +++ b/kernel/ChangeLog @@ -1,3 +1,26 @@ +5.4 + - Fixed broken ICMP and ICMPv6 handling + - Fix trailing whitespaces and pr_* messages + - Un-inline functions which are not small enough (suggested by Patrick McHardy) + - Fix module loading at create/header command (reported by Patrick McHardy) + - Fix wrong kzalloc flag in type_pf_expire + - The get_ip*_port functions are too large to be inlined, move into the core + - Add missing __GFP_HIGHMEM flag to __vmalloc (suggested by Eric Dumazet) + - Enforce network-order data in the netlink protocol + - Use annotated types and fix sparse warnings (suggested by Patrick McHardy) + - Move ip_set_alloc, ip_set_free and ip_set_get_ipaddr* into core + (suggested by Patrick McHardy) + - NETMASK*, HOSTMASK* macros are too generic, use small inline functions + (suggested by Patrick McHardy) + - Use static LIST_HEAD() for ip_set_type_list (suggested by Patrick McHardy) + - Move NLA_PUT_NET* macros to include/net/netlink.h (suggested by Patrick + McHardy) + - The module parameter max_sets should be unsigned int (reported by Patrick + McHardy) + - Get rid of ip_set_kernel.h (suggested by Patrick McHardy) + - Fix the placement style of boolean operators at continued lines + (suggested by Patrick McHardy) + 5.3 - There is no need to call synchronize_net() at swapping - Replace strncpy with strlcpy at creating a set |