[patch 13/14] message/i2o_core: replace schedule_timeout() with msleep()

From: janitor
Date: Wed Sep 01 2004 - 19:17:58 EST








I would appreciate any comments from the janitor@sternweltens list.

Thanks,
Nish



Description: Uses msleep() instead of schedule_timeout() so the task
is guaranteed to delay the desired time.

Signed-off-by: Nishanth Aravamudan <nacc@xxxxxxxxxx>
Signed-off-by: Maximilian Attems <janitor@xxxxxxxxxxxxxx>

Looks good to me, please forward to Linus to apply.
From: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx>



---

linux-2.6.9-rc1-bk7-max/drivers/message/i2o/i2o_core.c | 3 +--
1 files changed, 1 insertion(+), 2 deletions(-)

diff -puN drivers/message/i2o/i2o_core.c~msleep-drivers_message_i2o_i2o_core drivers/message/i2o/i2o_core.c
--- linux-2.6.9-rc1-bk7/drivers/message/i2o/i2o_core.c~msleep-drivers_message_i2o_i2o_core 2004-09-01 19:35:24.000000000 +0200
+++ linux-2.6.9-rc1-bk7-max/drivers/message/i2o/i2o_core.c 2004-09-01 19:35:24.000000000 +0200
@@ -892,8 +892,7 @@ int i2o_release_device(struct i2o_device
if((err=i2o_issue_claim(I2O_CMD_UTIL_RELEASE, d->controller, d->lct_data.tid, I2O_CLAIM_PRIMARY)) )
{
err = -ENXIO;
- current->state = TASK_UNINTERRUPTIBLE;
- schedule_timeout(HZ);
+ msleep(1000);
}
else
{

_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/