sched: Add get_current_state()
Remove yet another few p->state accesses. Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Acked-by: Will Deacon <will@kernel.org> Link: https://lore.kernel.org/r/20210611082838.347475156@infradead.org
This commit is contained in:
parent
3ba9f93b12
commit
d6c23bb3a2
4 changed files with 7 additions and 5 deletions
|
|
@ -9098,15 +9098,15 @@ static inline int preempt_count_equals(int preempt_offset)
|
|||
|
||||
void __might_sleep(const char *file, int line, int preempt_offset)
|
||||
{
|
||||
unsigned int state = get_current_state();
|
||||
/*
|
||||
* Blocking primitives will set (and therefore destroy) current->state,
|
||||
* since we will exit with TASK_RUNNING make sure we enter with it,
|
||||
* otherwise we will destroy state.
|
||||
*/
|
||||
WARN_ONCE(current->state != TASK_RUNNING && current->task_state_change,
|
||||
WARN_ONCE(state != TASK_RUNNING && current->task_state_change,
|
||||
"do not call blocking ops when !TASK_RUNNING; "
|
||||
"state=%lx set at [<%p>] %pS\n",
|
||||
current->state,
|
||||
"state=%x set at [<%p>] %pS\n", state,
|
||||
(void *)current->task_state_change,
|
||||
(void *)current->task_state_change);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue