diff options
author | Peter Zijlstra <peterz@infradead.org> | 2021-06-11 11:28:12 +0300 |
---|---|---|
committer | Peter Zijlstra <peterz@infradead.org> | 2021-06-18 12:43:07 +0300 |
commit | b03fbd4ff24c5f075e58eb19261d5f8b3e40d7c6 (patch) | |
tree | aa8a970bc1cf036c71a1c3201a0cd0ed8fb66636 /include/linux/sched.h | |
parent | 37aadc687ab441bbcb693ddae613acf9afcea1ab (diff) | |
download | linux-b03fbd4ff24c5f075e58eb19261d5f8b3e40d7c6.tar.xz |
sched: Introduce task_is_running()
Replace a bunch of 'p->state == TASK_RUNNING' with a new helper:
task_is_running(p).
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Davidlohr Bueso <dave@stgolabs.net>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Will Deacon <will@kernel.org>
Link: https://lore.kernel.org/r/20210611082838.222401495@infradead.org
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index ac5a7d29fd4f..2cd56352dae1 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -113,6 +113,8 @@ struct task_group; __TASK_TRACED | EXIT_DEAD | EXIT_ZOMBIE | \ TASK_PARKED) +#define task_is_running(task) (READ_ONCE((task)->state) == TASK_RUNNING) + #define task_is_traced(task) ((task->state & __TASK_TRACED) != 0) #define task_is_stopped(task) ((task->state & __TASK_STOPPED) != 0) |