From: Paul Walmsley Date: Tue, 8 May 2007 21:01:41 +0000 (-0600) Subject: fix ipt_IDLETIMER.c compilation X-Git-Tag: v2.6.22-omap1~160 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=da664efc74ff19fa987f085afb673563de313c21;p=linux-2.6-omap-h63xx.git fix ipt_IDLETIMER.c compilation Update net/ipv4/netfilter/ipt_IDLETIMER.c to compile after recent changes to include/linux/netdevice.h (commit 4e9cac2ba437fcb093c7417b1cd91a77ebd1756a). Compile-tested only. CC net/ipv4/netfilter/ipt_IDLETIMER.o net/ipv4/netfilter/ipt_IDLETIMER.c: In function 'utimer_notifier_call': net/ipv4/netfilter/ipt_IDLETIMER.c:189: warning: ignoring return value of 'device_create_file', declared with attribute warn_unused_result net/ipv4/netfilter/ipt_IDLETIMER.c: In function 'utimer_fini': net/ipv4/netfilter/ipt_IDLETIMER.c:222: error: 'dev_base' undeclared (first use in this function) net/ipv4/netfilter/ipt_IDLETIMER.c:222: error: (Each undeclared identifier is reported only once net/ipv4/netfilter/ipt_IDLETIMER.c:222: error: for each function it appears in.) net/ipv4/netfilter/ipt_IDLETIMER.c:222: error: 'struct net_device' has no member named 'next' make[3]: *** [net/ipv4/netfilter/ipt_IDLETIMER.o] Error 1 Signed-off-by: Paul Walmsley Signed-off-by: Tony Lindgren --- diff --git a/net/ipv4/netfilter/ipt_IDLETIMER.c b/net/ipv4/netfilter/ipt_IDLETIMER.c index 05f76345240..8e032e829ba 100644 --- a/net/ipv4/netfilter/ipt_IDLETIMER.c +++ b/net/ipv4/netfilter/ipt_IDLETIMER.c @@ -219,7 +219,7 @@ static void utimer_fini(void) rtnl_lock(); unregister_netdevice_notifier(&utimer_notifier_block); - for (dev = dev_base; dev; dev = dev->next) + for_each_netdev(dev) utimer_notifier_call(&utimer_notifier_block, NETDEV_DOWN, dev); rtnl_unlock();