]> git.baikalelectronics.ru Git - kernel.git/commit
x86, prctl: Hook L1D flushing in via prctl
authorBalbir Singh <sblbir@amazon.com>
Fri, 8 Jan 2021 12:10:55 +0000 (23:10 +1100)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 28 Jul 2021 09:42:25 +0000 (11:42 +0200)
commit1cab2c6357cdf3ad854916d01bb85128829649a8
tree5f9ce68517fe8a06ae0dd9220a45ab31a61556df
parent67a57f68395d2781d01960b2b82efa67e6bf8ffd
x86, prctl: Hook L1D flushing in via prctl

Use the existing PR_GET/SET_SPECULATION_CTRL API to expose the L1D flush
capability. For L1D flushing PR_SPEC_FORCE_DISABLE and
PR_SPEC_DISABLE_NOEXEC are not supported.

Enabling L1D flush does not check if the task is running on an SMT enabled
core, rather a check is done at runtime (at the time of flush), if the task
runs on a SMT sibling then the task is sent a SIGBUS which is executed
before the task returns to user space or to a guest.

This is better than the other alternatives of:

  a. Ensuring strict affinity of the task (hard to enforce without further
     changes in the scheduler)

  b. Silently skipping flush for tasks that move to SMT enabled cores.

Hook up the core prctl and implement the x86 specific parts which in turn
makes it functional.

Suggested-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Balbir Singh <sblbir@amazon.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20210108121056.21940-5-sblbir@amazon.com
arch/x86/kernel/cpu/bugs.c
include/uapi/linux/prctl.h