From: Nishanth Aravamudan <[EMAIL PROTECTED]>
Use set_current_state() instead of direct assignment of current->state. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> Signed-off-by: Maximilian Attems <[EMAIL PROTECTED]> Signed-off-by: Domen Puncer <[EMAIL PROTECTED]> --- tms380tr.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: quilt/drivers/net/tokenring/tms380tr.c =================================================================== --- quilt.orig/drivers/net/tokenring/tms380tr.c +++ quilt/drivers/net/tokenring/tms380tr.c @@ -1244,7 +1244,7 @@ void tms380tr_wait(unsigned long time) tmp = jiffies + time/(1000000/HZ); do { - current->state = TASK_INTERRUPTIBLE; + set_current_state(TASK_INTERRUPTIBLE); tmp = schedule_timeout(tmp); } while(time_after(tmp, jiffies)); #else -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/