diff options
author | Sean Christopherson <sean.j.christopherson@intel.com> | 2021-03-19 20:23:03 +1300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-04-06 09:43:41 +0200 |
commit | 8ca52cc38dc8fdcbdbd0c23eafb19db5e5f5c8d0 (patch) | |
tree | e7cf15a948d3887436be1b74eb4c3a83bc1355fc /arch/x86/kernel/cpu/sgx/sgx.h | |
parent | faa7d3e6f3b983a28bf0f88f82dcb1c162e61105 (diff) | |
download | linux-8ca52cc38dc8fdcbdbd0c23eafb19db5e5f5c8d0.tar.gz |
x86/sgx: Expose SGX architectural definitions to the kernel
Expose SGX architectural structures, as KVM will use many of the
architectural constants and structs to virtualize SGX.
Name the new header file as asm/sgx.h, rather than asm/sgx_arch.h, to
have single header to provide SGX facilities to share with other kernel
componments. Also update MAINTAINERS to include asm/sgx.h.
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Co-developed-by: Kai Huang <kai.huang@intel.com>
Signed-off-by: Kai Huang <kai.huang@intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Jarkko Sakkinen <jarkko@kernel.org>
Acked-by: Dave Hansen <dave.hansen@intel.com>
Link: https://lkml.kernel.org/r/6bf47acd91ab4d709e66ad1692c7803e4c9063a0.1616136308.git.kai.huang@intel.com
Diffstat (limited to 'arch/x86/kernel/cpu/sgx/sgx.h')
-rw-r--r-- | arch/x86/kernel/cpu/sgx/sgx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/sgx/sgx.h b/arch/x86/kernel/cpu/sgx/sgx.h index 4854f3980edd..e4cbc71bf136 100644 --- a/arch/x86/kernel/cpu/sgx/sgx.h +++ b/arch/x86/kernel/cpu/sgx/sgx.h @@ -8,7 +8,7 @@ #include <linux/rwsem.h> #include <linux/types.h> #include <asm/asm.h> -#include "arch.h" +#include <asm/sgx.h> #undef pr_fmt #define pr_fmt(fmt) "sgx: " fmt |