mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-07 18:05:21 +02:00
io_uring/io-wq: inherit cpuset of cgroup in io worker
[ Upstream commit84eacf177f
] The io worker threads are userland threads that just never exit to the userland. By that, they are also assigned to a cgroup (the group of the creating task). When creating a new io worker, this worker should inherit the cpuset of the cgroup. Fixes:da64d6db3b
("io_uring: One wqe per wq") Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com> Link: https://lore.kernel.org/r/20240910171157.166423-3-felix.moessbauer@siemens.com Signed-off-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
7b3a35584d
commit
5740c0fa93
|
@ -1170,7 +1170,7 @@ struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
|
||||||
|
|
||||||
if (!alloc_cpumask_var(&wq->cpu_mask, GFP_KERNEL))
|
if (!alloc_cpumask_var(&wq->cpu_mask, GFP_KERNEL))
|
||||||
goto err;
|
goto err;
|
||||||
cpumask_copy(wq->cpu_mask, cpu_possible_mask);
|
cpuset_cpus_allowed(data->task, wq->cpu_mask);
|
||||||
wq->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
|
wq->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
|
||||||
wq->acct[IO_WQ_ACCT_UNBOUND].max_workers =
|
wq->acct[IO_WQ_ACCT_UNBOUND].max_workers =
|
||||||
task_rlimit(current, RLIMIT_NPROC);
|
task_rlimit(current, RLIMIT_NPROC);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user