forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of git://1984.lsi.us.es/nf
Pablo Neira Ayuso says: ==================== * One to get the timeout special parameter for the SET target back working (this was introduced while trying to fix another bug in 3.4) from Jozsef Kadlecsik. * One crash fix if containers and nf_conntrack are used reported by Hans Schillstrom by myself. ==================== Signed-off-by: David S. Miller <[email protected]>
- Loading branch information
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
|
||
#include <linux/netfilter/x_tables.h> | ||
#include <linux/netfilter/xt_set.h> | ||
#include <linux/netfilter/ipset/ip_set_timeout.h> | ||
|
||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Jozsef Kadlecsik <[email protected]>"); | ||
|
@@ -310,7 +311,8 @@ set_target_v2(struct sk_buff *skb, const struct xt_action_param *par) | |
info->del_set.flags, 0, UINT_MAX); | ||
|
||
/* Normalize to fit into jiffies */ | ||
if (add_opt.timeout > UINT_MAX/MSEC_PER_SEC) | ||
if (add_opt.timeout != IPSET_NO_TIMEOUT && | ||
add_opt.timeout > UINT_MAX/MSEC_PER_SEC) | ||
add_opt.timeout = UINT_MAX/MSEC_PER_SEC; | ||
if (info->add_set.index != IPSET_INVALID_ID) | ||
ip_set_add(info->add_set.index, skb, par, &add_opt); | ||
|