| To: | cramerj@xxxxxxxxx, john.ronciak@xxxxxxxxx, ganesh.venkatesan@xxxxxxxxx |
|---|---|
| Subject: | [PATCH 6/28] net/e1000_osdep: replace schedule_timeout() with msleep() |
| From: | Nishanth Aravamudan <nacc@xxxxxxxxxx> |
| Date: | Thu, 6 Jan 2005 16:19:31 -0800 |
| Cc: | kernel-janitors@xxxxxxxxxxxxxx, linux-net@xxxxxxxxxxxxxxx, netdev@xxxxxxxxxxx |
| Sender: | netdev-bounce@xxxxxxxxxxx |
| User-agent: | Mutt/1.5.6+20040907i |
Hi,
Description: Use msleep() instead of schedule_timeout() to guarantee the task
delays as expected.
Signed-off-by: Nishanth Aravamudan <nacc@xxxxxxxxxx>
--- 2.6.10-v/drivers/net/e1000/e1000_osdep.h 2004-12-24 13:34:26.000000000
-0800
+++ 2.6.10/drivers/net/e1000/e1000_osdep.h 2005-01-04 14:57:49.000000000
-0800
@@ -46,8 +46,7 @@
/* Don't mdelay in interrupt context! */ \
BUG(); \
} else { \
- set_current_state(TASK_UNINTERRUPTIBLE); \
- schedule_timeout((x * HZ)/1000 + 2); \
+ msleep(x);
} } while(0)
/* Some workarounds require millisecond delays and are run during interrupt
* context. Most notably, when establishing link, the phy may need tweaking
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Fw: [Bugme-new] [Bug 4001] New: can't lower mtu of via_velocity, Andrew Morton |
|---|---|
| Next by Date: | [PATCH 2.4 1/3] e100: Replace locally implemented delay routines with call to msleep (nacc@xxxxxxxxxx), Ganesh Venkatesan |
| Previous by Thread: | Fw: [Bugme-new] [Bug 4001] New: can't lower mtu of via_velocity, Andrew Morton |
| Next by Thread: | Re: [PATCH 6/28] net/e1000_osdep: replace schedule_timeout() with msleep(), Nishanth Aravamudan |
| Indexes: | [Date] [Thread] [Top] [All Lists] |