On 25/11/20 17:20, Reinette Chatre wrote:
Until the queued work is run, the moved task runs with old (and even
invalid in the case when its original resource group has been removed)
closid and rmid.
For a userspace task, that queued work should be run as soon as possible
(& relevant). If said task is currently running, then task_work_add() will
lead to an IPI;
the other cases (task moving itself or not currently
running) are covered by the return to userspace path.
At this time the work is added with the TWA_RESUME flag so the running
task does not get a signal. I tried to follow the task_work_add() path
if there is a change to use TWA_SIGNAL instead and (I may have
misunderstanding) it seems to me that a sleeping task will be woken (if
it is TASK_INTERRUPTIBLE)? That is unnecessary. The goal of this work is
only to change the CPU register to indicate the active closid/rmid so it
is unnecessary to wake a process to do that, it only needs to be done
next time the task is scheduled in (which is already done with the
resctrl_sched_in() call in __switch_to()). If a task is not running all
that is needed is to change the closid/rmid in its task_struct to be
used next time it is scheduled in.
The (default) TWA_RESUME ensures the targeted (userspace) task gets kicked
if it is currently running, and doesn't perturb any CPU otherwise;
see set_notify_resume() + exit_to_user_mode_loop() (or do_notify_resume()
on arm64)
In the new solution, after updating closid/rmid in the task_struct, the
CPU register is updated via smp_call_function_single() on a CPU the task
is running. Nothing is done for tasks not running, next time they are
scheduled in the CPU's register will be updated to reflect the task's
closid/rmid. Moving to the smp_call_function_xxx() API would also bring
this update in line with how other register updates are already done in
resctrl.
Kernel threads however are a prickly matter because they quite explicitly
don't have this return to userspace - they only run their task_work
callbacks on exit. So we currently have to wait for those kthreads to go
through a context switch to update the relevant register, but I don't
see any other alternative that wouldn't involve interrupting every other
CPU (the kthread could move between us triggering some remote work and its
previous CPU receiving the IPI).
This seems ok? In the new solution the closid/rmid would be updated in
task_struct and a smp_call_function_single() attempted on the CPU where
the kthread is running. If the kthread is no longer running at the time
the function is called the CPU register will not be changed.
Right, if the update happens before triggering the remote work then that
should all work. I was stuck thinking about keeping the update contained
within the remote work itself to prevent any other races (i.e. patch 3).
Anywho, that's enough speculation from me, I'll just sit tight and see what
comes next!
I assume
the kthread move would include a context switch that would result in the
register change (__switch_to()->resctrl_sched_in()) for the kthread to
run with its new closid/rmid after the move.