diff options
author | Nishanth Aravamudan <nacc@us.ibm.com> | 2005-05-02 02:34:57 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-06-26 18:30:15 -0400 |
commit | a9fc25108995f1f59ee30026818d7ec2bb016fbe (patch) | |
tree | 61aa2e5b01d749321dc1317ed2a734a0bcf009bf /drivers/net/slip.c | |
parent | 6835d09ad286db5df472dc91aae0a69128e7258b (diff) |
[PATCH] net/slip: replace schedule_timeout() with msleep_interruptible()
Use msleep_interruptible() instead of schedule_timeout() to guarantee
the task delays as expected.
Diffstat (limited to 'drivers/net/slip.c')
-rw-r--r-- | drivers/net/slip.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/slip.c b/drivers/net/slip.c index c79e0ad4ba02..16363b5c6f56 100644 --- a/drivers/net/slip.c +++ b/drivers/net/slip.c | |||
@@ -1383,10 +1383,8 @@ static void __exit slip_exit(void) | |||
1383 | /* First of all: check for active disciplines and hangup them. | 1383 | /* First of all: check for active disciplines and hangup them. |
1384 | */ | 1384 | */ |
1385 | do { | 1385 | do { |
1386 | if (busy) { | 1386 | if (busy) |
1387 | set_current_state(TASK_INTERRUPTIBLE); | 1387 | msleep_interruptible(100); |
1388 | schedule_timeout(HZ / 10); | ||
1389 | } | ||
1390 | 1388 | ||
1391 | busy = 0; | 1389 | busy = 0; |
1392 | for (i = 0; i < slip_maxdev; i++) { | 1390 | for (i = 0; i < slip_maxdev; i++) { |