aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorHimangi Saraogi <himangi774@gmail.com>2014-08-20 13:44:10 -0400
committerDavid S. Miller <davem@davemloft.net>2014-08-22 15:23:11 -0400
commitc72c95a064e55923c5dd050d099e51ac550f29a2 (patch)
tree8b6f1a9b6d913b49266f7b2073b3c8781ef96fd1 /net/ipv4
parentb5c5c36d367c670b9a93b1029d9b3af8610d9535 (diff)
ipconfig: Use time_before
The functions time_before, time_before_eq, time_after, and time_after_eq are more robust for comparing jiffies against other values. A simplified version of the Coccinelle semantic patch making this change is as follows: @change@ expression E1,E2; @@ - jiffies - E1 < E2 + time_before(jiffies, E1+E2) Signed-off-by: Himangi Saraogi <himangi774@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/ipconfig.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c
index 5bbef4fdcb43..648fa1490ea7 100644
--- a/net/ipv4/ipconfig.c
+++ b/net/ipv4/ipconfig.c
@@ -262,7 +262,8 @@ static int __init ic_open_devs(void)
262 /* wait for a carrier on at least one device */ 262 /* wait for a carrier on at least one device */
263 start = jiffies; 263 start = jiffies;
264 next_msg = start + msecs_to_jiffies(CONF_CARRIER_TIMEOUT/12); 264 next_msg = start + msecs_to_jiffies(CONF_CARRIER_TIMEOUT/12);
265 while (jiffies - start < msecs_to_jiffies(CONF_CARRIER_TIMEOUT)) { 265 while (time_before(jiffies, start +
266 msecs_to_jiffies(CONF_CARRIER_TIMEOUT))) {
266 int wait, elapsed; 267 int wait, elapsed;
267 268
268 for_each_netdev(&init_net, dev) 269 for_each_netdev(&init_net, dev)