mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
sched/core: Fix a missed update of user_cpus_ptr
Since commit8f9ea86fdf
("sched: Always preserve the user requested cpumask"), a successful call to sched_setaffinity() should always save the user requested cpu affinity mask in a task's user_cpus_ptr. However, when the given cpu mask is the same as the current one, user_cpus_ptr is not updated. Fix this by saving the user mask in this case too. Fixes:8f9ea86fdf
("sched: Always preserve the user requested cpumask") Signed-off-by: Waiman Long <longman@redhat.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lkml.kernel.org/r/20230203181849.221943-1-longman@redhat.com
This commit is contained in:
parent
eedeb787eb
commit
df14b7f9ef
@ -2951,8 +2951,11 @@ static int __set_cpus_allowed_ptr_locked(struct task_struct *p,
|
||||
}
|
||||
|
||||
if (!(ctx->flags & SCA_MIGRATE_ENABLE)) {
|
||||
if (cpumask_equal(&p->cpus_mask, ctx->new_mask))
|
||||
if (cpumask_equal(&p->cpus_mask, ctx->new_mask)) {
|
||||
if (ctx->flags & SCA_USER)
|
||||
swap(p->user_cpus_ptr, ctx->user_mask);
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (WARN_ON_ONCE(p == current &&
|
||||
is_migration_disabled(p) &&
|
||||
|
Loading…
Reference in New Issue
Block a user