summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2013-05-02 10:52:27 +0200
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2013-05-02 10:52:27 +0200
commitbbecbecdf402fd323b6ddd81f50e6f91f39086fc (patch)
tree6b45cc5d471c45e3b8a5da31db920807da98f53e /kernel
parent18149c6ac307e089abe3dcc078fc3fccf6afc4c6 (diff)
Use fix sized type for timeout in the extension part
Diffstat (limited to 'kernel')
-rw-r--r--kernel/include/linux/netfilter/ipset/ip_set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/include/linux/netfilter/ipset/ip_set.h b/kernel/include/linux/netfilter/ipset/ip_set.h
index 1efe344..8499e25 100644
--- a/kernel/include/linux/netfilter/ipset/ip_set.h
+++ b/kernel/include/linux/netfilter/ipset/ip_set.h
@@ -68,7 +68,7 @@ enum ip_set_offset {
#define SET_WITH_COUNTER(s) ((s)->extensions & IPSET_EXT_COUNTER)
struct ip_set_ext {
- unsigned long timeout;
+ u32 timeout;
u64 packets;
u64 bytes;
};