From: Nishanth Aravamudan Date: Thu, 23 Jun 2005 05:11:44 +0000 (-0700) Subject: [ATALK] aarp: replace schedule_timeout() with msleep() X-Git-Tag: v2.6.13-rc4~130^2~154^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=285b3afefacff14bc98e5754b8b48a0a2b42f0df;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git [ATALK] aarp: replace schedule_timeout() with msleep() From: Nishanth Aravamudan Use msleep() instead of schedule_timeout() to guarantee the task delays as expected. The current code is not wrong, but it does not account for early return due to signals, so I think msleep() should be appropriate. Signed-off-by: Nishanth Aravamudan Signed-off-by: Domen Puncer Signed-off-by: David S. Miller --- diff --git a/net/appletalk/aarp.c b/net/appletalk/aarp.c index 10d0404..c34614e 100644 --- a/net/appletalk/aarp.c +++ b/net/appletalk/aarp.c @@ -35,6 +35,7 @@ #include #include #include +#include #include #include #include @@ -462,8 +463,7 @@ void aarp_probe_network(struct atalk_iface *atif) aarp_send_probe(atif->dev, &atif->address); /* Defer 1/10th */ - current->state = TASK_INTERRUPTIBLE; - schedule_timeout(HZ / 10); + msleep(100); if (atif->status & ATIF_PROBE_FAIL) break; @@ -510,9 +510,8 @@ int aarp_proxy_probe_network(struct atalk_iface *atif, struct atalk_addr *sa) aarp_send_probe(atif->dev, sa); /* Defer 1/10th */ - current->state = TASK_INTERRUPTIBLE; write_unlock_bh(&aarp_lock); - schedule_timeout(HZ / 10); + msleep(100); write_lock_bh(&aarp_lock); if (entry->status & ATIF_PROBE_FAIL)