From: Christophe Lucas Use set_current_state() instead of direct assignment of current->state. Signed-off-by: Christophe Lucas Signed-off-by: Domen Puncer --- hw_random.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: quilt/drivers/char/hw_random.c =================================================================== --- quilt.orig/drivers/char/hw_random.c +++ quilt/drivers/char/hw_random.c @@ -514,7 +514,7 @@ static ssize_t rng_dev_read (struct file if(need_resched()) { - current->state = TASK_INTERRUPTIBLE; + set_current_state(TASK_INTERRUPTIBLE); schedule_timeout(1); } else --