2005-05-13 22:40:52

by Domen Puncer

[permalink] [raw]
Subject: [patch 1/1] drivers/cdrom/sbpcd.c: replace direct assignment with set_current_state()

From: Christophe Lucas <[email protected]>



Use set_current_state() instead of direct assignment of
current->state.

Signed-off-by: Christophe Lucas <[email protected]>
Signed-off-by: Domen Puncer <[email protected]>


---
sbpcd.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

Index: quilt/drivers/cdrom/sbpcd.c
===================================================================
--- quilt.orig/drivers/cdrom/sbpcd.c
+++ quilt/drivers/cdrom/sbpcd.c
@@ -830,7 +830,7 @@ static void mark_timeout_audio(u_long i)
static void sbp_sleep(u_int time)
{
sti();
- current->state = TASK_INTERRUPTIBLE;
+ set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout(time);
sti();
}

--