lkml.org 
[lkml]   [2022]   [Jul]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH v2] sched/rt: fix bad task migration for rt tasks
Valentin Schneider <vschneid@redhat.com> writes:

> On 27/06/22 23:40, Schspa Shi wrote:
>> @@ -2115,6 +2115,15 @@ static int push_rt_task(struct rq *rq, bool pull)
>> if (WARN_ON(next_task == rq->curr))
>> return 0;
>>
>> + /*
>> + * It is possible the task has running for a while, we need to check
>> + * task migration disable flag again. If task migration is disabled,
>> + * the retry code will retry to push the current running task on this
>> + * CPU away.
>> + */
>> + if (unlikely(is_migration_disabled(next_task)))
>> + goto retry;
>> +
>
> Can we ever hit this? The previous is_migration_disabled() check is in the
> same rq->lock segment.

Ahh, I'm sorry, I add this to the wrong place, It should be in front of
deactivate_task(rq, next_task, 0);
Sorry for this mistake.

>
> AFAIA this doesn't fix the problem v1 was fixing, which is next_task can
> become migrate_disable() after push_rt_task() goes through
> find_lock_lowest_rq().
>

Something in the following should fix it.

put_task_struct(next_task);
next_task = task;
goto retry;
}

if (unlikely(is_migration_disabled(next_task))) {
put_task_struct(next_task);
goto retry;
}

deactivate_task(rq, next_task, 0);

> For the task to still be in the pushable_tasks list after having made
> itself migration disabled, it must no longer be current, which means we
> enqueued a higher priority RT task, in which case we went through
> set_next_task_rt() so we did rt_queue_push_tasks().

The current task may not have a higher priority, maybe a process of
the same priority preempted the migration disabled task.

In this case, we still have the opportunity to make this migration
disabled task execute faster by migrating the higher priority task
to other CPUs. And this is what the commit
95158a89dd50 ("sched,rt: Use the full cpumask for balancing")
and
1beec5b55060 ("sched: Fix migrate_disable() vs rt/dl balancing")
doing.

Considering this, the V1 patch is not the best solution, and I send
this V2 patch (although there is a misplaced bug here).

Or can we ignore this small possibility?

>
> So I think what you had in v1 was actually what we needed.
>

Yes, v1 is the patch I have tested for a week, V2 hasn't done this
long time.


>> /* We might release rq lock */
>> get_task_struct(next_task);
>>
>> --
>> 2.24.3 (Apple Git-128)

--
Schspa Shi
BRs

\
 
 \ /
  Last update: 2022-07-01 14:20    [W:0.051 / U:0.704 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site