aboutsummaryrefslogtreecommitdiffstats
path: root/arch/nds32
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2021-02-17 08:48:00 -0700
committerJens Axboe <axboe@kernel.dk>2021-02-21 17:25:22 -0700
commit4727dc20e0422211a0e0c72b1ace4ed6096df8a6 (patch)
tree84f3eaae93034140ffce50ac4816171e679d7c3f /arch/nds32
parentio-wq: don't pass 'wqe' needlessly around (diff)
downloadlinux-dev-4727dc20e0422211a0e0c72b1ace4ed6096df8a6.tar.xz
linux-dev-4727dc20e0422211a0e0c72b1ace4ed6096df8a6.zip
arch: setup PF_IO_WORKER threads like PF_KTHREAD
PF_IO_WORKER are kernel threads too, but they aren't PF_KTHREAD in the sense that we don't assign ->set_child_tid with our own structure. Just ensure that every arch sets up the PF_IO_WORKER threads like kthreads in the arch implementation of copy_thread(). Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'arch/nds32')
-rw-r--r--arch/nds32/kernel/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/nds32/kernel/process.c b/arch/nds32/kernel/process.c
index e01ad5d17224..c1327e552ec6 100644
--- a/arch/nds32/kernel/process.c
+++ b/arch/nds32/kernel/process.c
@@ -156,7 +156,7 @@ int copy_thread(unsigned long clone_flags, unsigned long stack_start,
memset(&p->thread.cpu_context, 0, sizeof(struct cpu_context));
- if (unlikely(p->flags & PF_KTHREAD)) {
+ if (unlikely(p->flags & (PF_KTHREAD | PF_IO_WORKER))) {
memset(childregs, 0, sizeof(struct pt_regs));
/* kernel thread fn */
p->thread.cpu_context.r6 = stack_start;