diff options
Diffstat (limited to 'net/decnet/dn_dev.c')
-rw-r--r-- | net/decnet/dn_dev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/decnet/dn_dev.c b/net/decnet/dn_dev.c index 3b726f31c64c..4400da7739da 100644 --- a/net/decnet/dn_dev.c +++ b/net/decnet/dn_dev.c | |||
@@ -41,6 +41,7 @@ | |||
41 | #include <linux/sysctl.h> | 41 | #include <linux/sysctl.h> |
42 | #include <linux/notifier.h> | 42 | #include <linux/notifier.h> |
43 | #include <linux/slab.h> | 43 | #include <linux/slab.h> |
44 | #include <linux/jiffies.h> | ||
44 | #include <asm/uaccess.h> | 45 | #include <asm/uaccess.h> |
45 | #include <net/net_namespace.h> | 46 | #include <net/net_namespace.h> |
46 | #include <net/neighbour.h> | 47 | #include <net/neighbour.h> |
@@ -875,7 +876,7 @@ static void dn_send_endnode_hello(struct net_device *dev, struct dn_ifaddr *ifa) | |||
875 | static int dn_am_i_a_router(struct dn_neigh *dn, struct dn_dev *dn_db, struct dn_ifaddr *ifa) | 876 | static int dn_am_i_a_router(struct dn_neigh *dn, struct dn_dev *dn_db, struct dn_ifaddr *ifa) |
876 | { | 877 | { |
877 | /* First check time since device went up */ | 878 | /* First check time since device went up */ |
878 | if ((jiffies - dn_db->uptime) < DRDELAY) | 879 | if (time_before(jiffies, dn_db->uptime + DRDELAY)) |
879 | return 0; | 880 | return 0; |
880 | 881 | ||
881 | /* If there is no router, then yes... */ | 882 | /* If there is no router, then yes... */ |