[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1589469647-33814-1-git-send-email-xianting_tian@126.com>
Date: Thu, 14 May 2020 11:20:47 -0400
From: Xianting Tian <xianting_tian@....com>
To: tglx@...utronix.de, john.stultz@...aro.org, sboyd@...nel.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] timers: Use set_current_state macro
Use set_current_state macro instead of current->state = TASK_RUNNING
Signed-off-by: Xianting Tian <xianting_tian@....com>
---
kernel/time/timer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/time/timer.c b/kernel/time/timer.c
index 4820823..b9ecf87 100644
--- a/kernel/time/timer.c
+++ b/kernel/time/timer.c
@@ -1882,7 +1882,7 @@ signed long __sched schedule_timeout(signed long timeout)
printk(KERN_ERR "schedule_timeout: wrong timeout "
"value %lx\n", timeout);
dump_stack();
- current->state = TASK_RUNNING;
+ set_current_state(TASK_RUNNING);
goto out;
}
}
--
1.8.3.1
Powered by blists - more mailing lists