On 08/15/2005 02:27:51 PM, Nishanth Aravamudan wrote:
> Description: Use schedule_timeout_uninterruptible() instead of
> set_current_state()/schedule_timeout() to reduce kernel size.
> 
> Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]>
> 
> ---
> 
>  drivers/scsi/osst.c           |    9 +++------
>
> diff -urpN 2.6.13-rc5-mm1/drivers/scsi/osst.c
> 2.6.13-rc5-mm1-dev/drivers/scsi/osst.c
> --- 2.6.13-rc5-mm1/drivers/scsi/osst.c        2005-08-07 10:05:21.000000000
> -0700
> +++ 2.6.13-rc5-mm1-dev/drivers/scsi/osst.c    2005-08-12
> 13:42:13.000000000 -0700
> @@ -862,8 +862,7 @@ static int osst_recover_wait_frame(struc
>                               retval = osst_write_error_recovery(STp,
> aSRpnt, 0);
>                               break;
>                       }
> -                     set_current_state(TASK_INTERRUPTIBLE);
> -                     schedule_timeout (HZ / OSST_POLL_PER_SEC);
> +                     schedule_timeout_interruptible(HZ /
OSST_POLL_PER_SEC);

Others have suggested using msleep in osst instead of schedule, which I think
is 
more appropriate.

Regards, Willem Riede.



-
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to