mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-14 08:13:56 +08:00
Revert "signal: don't allow STOP on PF_IO_WORKER threads"
This reverts commit 4db4b1a0d1
.
The IO threads allow and handle SIGSTOP now, so don't special case them
anymore in task_set_jobctl_pending().
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
d3dc04cd81
commit
1e4cf0d3d0
@ -288,8 +288,7 @@ bool task_set_jobctl_pending(struct task_struct *task, unsigned long mask)
|
|||||||
JOBCTL_STOP_SIGMASK | JOBCTL_TRAPPING));
|
JOBCTL_STOP_SIGMASK | JOBCTL_TRAPPING));
|
||||||
BUG_ON((mask & JOBCTL_TRAPPING) && !(mask & JOBCTL_PENDING_MASK));
|
BUG_ON((mask & JOBCTL_TRAPPING) && !(mask & JOBCTL_PENDING_MASK));
|
||||||
|
|
||||||
if (unlikely(fatal_signal_pending(task) ||
|
if (unlikely(fatal_signal_pending(task) || (task->flags & PF_EXITING)))
|
||||||
(task->flags & (PF_EXITING | PF_IO_WORKER))))
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (mask & JOBCTL_STOP_SIGMASK)
|
if (mask & JOBCTL_STOP_SIGMASK)
|
||||||
|
Loading…
Reference in New Issue
Block a user