x86/resctrl: Apply READ_ONCE/WRITE_ONCE to task_struct.{rmid,closid}
authorValentin Schneider <valentin.schneider@arm.com>
Thu, 17 Dec 2020 22:31:21 +0000 (14:31 -0800)
committerBorislav Petkov <bp@suse.de>
Mon, 11 Jan 2021 10:43:23 +0000 (11:43 +0100)
commit6d3b47ddffed70006cf4ba360eef61e9ce097d8f
tree10e43585b7bf84f6866076eddbe72862f223c30d
parente0ad6dc8969f790f14bddcfd7ea284b7e5f88a16
x86/resctrl: Apply READ_ONCE/WRITE_ONCE to task_struct.{rmid,closid}

A CPU's current task can have its {closid, rmid} fields read locally
while they are being concurrently written to from another CPU.
This can happen anytime __resctrl_sched_in() races with either
__rdtgroup_move_task() or rdt_move_group_tasks().

Prevent load / store tearing for those accesses by giving them the
READ_ONCE() / WRITE_ONCE() treatment.

Signed-off-by: Valentin Schneider <valentin.schneider@arm.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/9921fda88ad81afb9885b517fbe864a2bc7c35a9.1608243147.git.reinette.chatre@intel.com
arch/x86/include/asm/resctrl.h
arch/x86/kernel/cpu/resctrl/rdtgroup.c