diff options
author | Peter Zijlstra <[email protected]> | 2021-06-11 10:28:12 +0200 |
---|---|---|
committer | Peter Zijlstra <[email protected]> | 2021-06-18 11:43:07 +0200 |
commit | b03fbd4ff24c5f075e58eb19261d5f8b3e40d7c6 (patch) | |
tree | aa8a970bc1cf036c71a1c3201a0cd0ed8fb66636 /arch/sparc/kernel/process_64.c | |
parent | 37aadc687ab441bbcb693ddae613acf9afcea1ab (diff) |
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) <[email protected]>
Acked-by: Davidlohr Bueso <[email protected]>
Acked-by: Geert Uytterhoeven <[email protected]>
Acked-by: Will Deacon <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'arch/sparc/kernel/process_64.c')
-rw-r--r-- | arch/sparc/kernel/process_64.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/sparc/kernel/process_64.c b/arch/sparc/kernel/process_64.c index 7afd0a859a78..d33c58a58d4f 100644 --- a/arch/sparc/kernel/process_64.c +++ b/arch/sparc/kernel/process_64.c @@ -674,8 +674,7 @@ unsigned long get_wchan(struct task_struct *task) unsigned long ret = 0; int count = 0; - if (!task || task == current || - task->state == TASK_RUNNING) + if (!task || task == current || task_is_running(task)) goto out; tp = task_thread_info(task); |