diff options
author | Kristen Carlson Accardi <kristen@linux.intel.com> | 2022-11-15 08:16:26 -0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2022-12-02 14:59:56 +0100 |
commit | 89e927bbcd45d507e5612ef72fda04182e544a38 (patch) | |
tree | 014facff69c8f3b34e9336d1ba56c316f3b6842d /arch/x86/kvm/vmx/capabilities.h | |
parent | 16a7fe3728a8b832ef0d1add66875a666b1f24fc (diff) | |
download | linux-89e927bbcd45d507e5612ef72fda04182e544a38.tar.bz2 |
x86/sgx: Replace kmap/kunmap_atomic() calls
kmap_local_page() is the preferred way to create temporary mappings when it
is feasible, because the mappings are thread-local and CPU-local.
kmap_local_page() uses per-task maps rather than per-CPU maps. This in
effect removes the need to disable preemption on the local CPU while the
mapping is active, and thus vastly reduces overall system latency. It is
also valid to take pagefaults within the mapped region.
The use of kmap_atomic() in the SGX code was not an explicit design choice
to disable page faults or preemption, and there is no compelling design
reason to using kmap_atomic() vs. kmap_local_page().
Signed-off-by: Kristen Carlson Accardi <kristen@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Reviewed-by: Fabio M. De Francesco <fmdefrancesco@gmail.com>
Reviewed-by: Ira Weiny <ira.weiny@intel.com>
Link: https://lore.kernel.org/linux-sgx/Y0biN3%2FJsZMa0yUr@kernel.org/
Link: https://lore.kernel.org/r/20221115161627.4169428-1-kristen@linux.intel.com
Diffstat (limited to 'arch/x86/kvm/vmx/capabilities.h')
0 files changed, 0 insertions, 0 deletions