[PATCH v9 0/7] sched: Persistent user requested affinity

Waiman Long posted 7 patches 3 years, 6 months ago
There is a newer version of this series
kernel/sched/core.c     | 231 +++++++++++++++++++++++++---------------
kernel/sched/deadline.c |   7 +-
kernel/sched/sched.h    |  22 +++-
3 files changed, 169 insertions(+), 91 deletions(-)
[PATCH v9 0/7] sched: Persistent user requested affinity
Posted by Waiman Long 3 years, 6 months ago
v9:
 - Fix non-SMP config build errors in patch 4 reported by kernel test
   robot.
 - Disable user_cpus_ptr masking also when any of the SCA_MIGRATE_*
   flags are set.

v8:
 - Add patches "sched: Introduce affinity_context structure" and
   "sched: Always clear user_cpus_ptr in do_set_cpus_allowed()" as
   suggested by PeterZ.
 - Better handle cpuset and sched_setaffinity() race in patch 5.

v7:
 - Make changes recommended by Peter such as making scratch_mask
   allocation earlier and using percpu variable to pass information.

v6:
 - Drop the cpuset patch and make user_cpus_ptr masking applicable to
   all callers of set_cpus_allowed_ptr().
 - Make user_cpus_ptr and cpus_mask update in a single lock critical
   section to avoid race problems.

The user_cpus_ptr field is added by commit b90ca8badbd1 ("sched:
Introduce task_struct::user_cpus_ptr to track requested affinity")
which uses it narrowly to allow keeping cpus affinity intact with
asymmetric cpu setup.

This patchset extends user_cpus_ptr to store user requested cpus affinity
via the sched_setaffinity() API. With that information available, it will
enable cpuset and other callers of set_cpus_allowed_ptr() like hotplug
to keep cpus afinity as close to what the user wants as possible within
the cpu list constraint of the current cpuset. Otherwise some change
to the cpuset hierarchy or a hotplug event may reset the cpumask of
the tasks in the affected cpusets to the default cpuset value even if
those tasks have cpus affinity explicitly set by the users before.

It also means that once sched_setaffinity() is called successfully,
user_cpus_ptr will remain allocated until the task exits except in some
rare circumstances.

Waiman Long (7):
  sched: Add __releases annotations to affine_move_task()
  sched: Use user_cpus_ptr for saving user provided cpumask in
    sched_setaffinity()
  sched: Enforce user requested affinity
  sched: Introduce affinity_context structure
  sched: Handle set_cpus_allowed_ptr() & sched_setaffinity() race
  sched: Fix sched_setaffinity() and fork/clone() race
  sched: Always clear user_cpus_ptr in do_set_cpus_allowed()

 kernel/sched/core.c     | 231 +++++++++++++++++++++++++---------------
 kernel/sched/deadline.c |   7 +-
 kernel/sched/sched.h    |  22 +++-
 3 files changed, 169 insertions(+), 91 deletions(-)

-- 
2.31.1
Re: [PATCH v9 0/7] sched: Persistent user requested affinity
Posted by Peter Zijlstra 3 years, 6 months ago
On Fri, Sep 16, 2022 at 02:32:10PM -0400, Waiman Long wrote:

> Waiman Long (7):
>   sched: Add __releases annotations to affine_move_task()
>   sched: Use user_cpus_ptr for saving user provided cpumask in
>     sched_setaffinity()
>   sched: Enforce user requested affinity
>   sched: Introduce affinity_context structure
>   sched: Handle set_cpus_allowed_ptr() & sched_setaffinity() race
>   sched: Fix sched_setaffinity() and fork/clone() race
>   sched: Always clear user_cpus_ptr in do_set_cpus_allowed()

I still think this is ordered all wrong. Esp. with that affinity context
doing the right thing isn't onerous at all.

So please, re-order this and fold all fixes back in so that it becomes
a sane series. Basically patches 5 and 6 shouldn't exist, they fix
issues created by the earlier patches.
Re: [PATCH v9 0/7] sched: Persistent user requested affinity
Posted by Waiman Long 3 years, 6 months ago
On 9/22/22 04:45, Peter Zijlstra wrote:
> On Fri, Sep 16, 2022 at 02:32:10PM -0400, Waiman Long wrote:
>
>> Waiman Long (7):
>>    sched: Add __releases annotations to affine_move_task()
>>    sched: Use user_cpus_ptr for saving user provided cpumask in
>>      sched_setaffinity()
>>    sched: Enforce user requested affinity
>>    sched: Introduce affinity_context structure
>>    sched: Handle set_cpus_allowed_ptr() & sched_setaffinity() race
>>    sched: Fix sched_setaffinity() and fork/clone() race
>>    sched: Always clear user_cpus_ptr in do_set_cpus_allowed()
> I still think this is ordered all wrong. Esp. with that affinity context
> doing the right thing isn't onerous at all.
>
> So please, re-order this and fold all fixes back in so that it becomes
> a sane series. Basically patches 5 and 6 shouldn't exist, they fix
> issues created by the earlier patches.
>
Thanks for the suggestion. Will rework the series as suggested.

Cheers,
Longman