mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-07 13:15:12 +02:00
ipset: fix compile error with 2.6.20
$e/ipset/ip_set_iptree.c: In function "iptree_test": $e/ipset/ip_set_iptree.c:84:6: warning: implicit declaration of function "time_after" $e/ipset/ip_set_iptree.c:84:39: error: "jiffies" undeclared (first use in this function) $e/ipset/ip_set_iptree.c:84:39: error: (Each undeclared identifier is reported only once $e/ipset/ip_set_iptree.c:84:39: error: for each function it appears in.) $e/ipset/ip_set_iptree.c: In function "iptree_add": $e/ipset/ip_set_iptree.c:130:57: error: "jiffies" undeclared (first use in this function) $e/ipset/ip_set_iptree.c:134:48: error: "HZ" undeclared (first use in this function) $e/ipset/ip_set_iptree.c: In function "ip_tree_gc": $e/ipset/ip_set_iptree.c:214:8: warning: implicit declaration of function "time_before" $e/ipset/ip_set_iptree.c:214:42: error: "jiffies" undeclared (first use in this function) $e/ipset/ip_set_iptree.c:258:49: error: "HZ" undeclared (first use in this function) $e/ipset/ip_set_iptree.c: In function "init_gc_timer": $e/ipset/ip_set_iptree.c:274:20: error: "jiffies" undeclared (first use in this function) $e/ipset/ip_set_iptree.c:274:49: error: "HZ" undeclared (first use in this function) $e/ipset/ip_set_iptree.c: In function "iptree_list_members_size": $e/ipset/ip_set_iptree.c:380:58: error: "jiffies" undeclared (first use in this function) $e/ipset/ip_set_iptree.c: In function "iptree_list_members": $e/ipset/ip_set_iptree.c:407:58: error: "jiffies" undeclared (first use in this function) $e/ipset/ip_set_iptree.c:411:37: error: "HZ" undeclared (first use in this function) $e/ipset/ip_set_iptreemap.c: In function "gc": $e/ipset/ip_set_iptreemap.c:456:20: error: "jiffies" undeclared (first use in this function) $e/ipset/ip_set_iptreemap.c:456:20: error: (Each undeclared identifier is reported only once $e/ipset/ip_set_iptreemap.c:456:20: error: for each function it appears in.) $e/ipset/ip_set_iptreemap.c:456:49: error: "HZ" undeclared (first use in this function) $e/ipset/ip_set_iptreemap.c: In function "init_gc_timer": $e/ipset/ip_set_iptreemap.c:468:20: error: "jiffies" undeclared (first use in this function) $e/ipset/ip_set_iptreemap.c:468:49: error: "HZ" undeclared (first use in this function)
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
#include <linux/module.h>
|
||||
#include <linux/moduleparam.h>
|
||||
#include <linux/ip.h>
|
||||
#include <linux/jiffies.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/delay.h>
|
||||
|
@@ -14,6 +14,7 @@
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/ip.h>
|
||||
#include <linux/jiffies.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/delay.h>
|
||||
|
Reference in New Issue
Block a user