From 27c16768219517681e97580b09cc2a2e1d1dd2a7 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 1 Sep 2009 00:50:27 +0200 Subject: [PATCH] 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) --- extensions/ipset/ip_set_iptree.c | 1 + extensions/ipset/ip_set_iptreemap.c | 1 + 2 files changed, 2 insertions(+) diff --git a/extensions/ipset/ip_set_iptree.c b/extensions/ipset/ip_set_iptree.c index ba0bf24..362ebd6 100644 --- a/extensions/ipset/ip_set_iptree.c +++ b/extensions/ipset/ip_set_iptree.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include diff --git a/extensions/ipset/ip_set_iptreemap.c b/extensions/ipset/ip_set_iptreemap.c index 00f3357..fd558ef 100644 --- a/extensions/ipset/ip_set_iptreemap.c +++ b/extensions/ipset/ip_set_iptreemap.c @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include