linux-sgx.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-03-11 04:54:55 to 2021-04-02 15:42:57 UTC [more...]

[PATCH v3 00/25] KVM SGX virtualization support
 2021-04-02 15:42 UTC  (92+ messages)
` [PATCH v3 01/25] x86/cpufeatures: Make SGX_LC feature bit depend on SGX bit
` [PATCH v3 02/25] x86/cpufeatures: Add SGX1 and SGX2 sub-features
` [PATCH v3 03/25] x86/sgx: Wipe out EREMOVE from sgx_free_epc_page()
  ` [PATCH v4 "
` [PATCH v3 04/25] x86/sgx: Add SGX_CHILD_PRESENT hardware error code
` [PATCH v3 05/25] x86/sgx: Introduce virtual EPC for use by KVM guests
  ` [PATCH v4 "
` [PATCH v3 06/25] x86/cpu/intel: Allow SGX virtualization without Launch Control support
` [PATCH v3 07/25] x86/sgx: Initialize virtual EPC driver even when SGX driver is disabled
` [PATCH v3 08/25] x86/sgx: Expose SGX architectural definitions to the kernel
` [PATCH v3 09/25] x86/sgx: Move ENCLS leaf definitions to sgx.h
` [PATCH v3 10/25] x86/sgx: Add SGX2 ENCLS leaf definitions (EAUG, EMODPR and EMODT)
` [PATCH v3 11/25] x86/sgx: Add encls_faulted() helper
` [PATCH v3 12/25] x86/sgx: Add helper to update SGX_LEPUBKEYHASHn MSRs
` [PATCH v3 13/25] x86/sgx: Add helpers to expose ECREATE and EINIT to KVM
` [PATCH v3 14/25] x86/sgx: Move provisioning device creation out of SGX driver
` [PATCH v3 15/25] KVM: x86: Export kvm_mmu_gva_to_gpa_{read,write}() for SGX (VMX)
` [PATCH v3 16/25] KVM: x86: Define new #PF SGX error code bit
` [PATCH v3 17/25] KVM: x86: Add support for reverse CPUID lookup of scattered features
` [PATCH v3 18/25] KVM: x86: Add reverse-CPUID lookup support for scattered SGX features
` [PATCH v3 19/25] KVM: VMX: Add basic handling of VM-Exit from SGX enclave
` [PATCH v3 20/25] KVM: VMX: Frame in ENCLS handler for SGX virtualization
` [PATCH v3 21/25] KVM: VMX: Add SGX ENCLS[ECREATE] handler to enforce CPUID restrictions
` [PATCH v3 22/25] KVM: VMX: Add emulation of SGX Launch Control LE hash MSRs
` [PATCH v3 23/25] KVM: VMX: Add ENCLS[EINIT] handler to support SGX Launch Control (LC)
` [PATCH v3 24/25] KVM: VMX: Enable SGX virtualization for SGX1, SGX2 and LC
` [PATCH v3 25/25] KVM: x86: Add capability to grant VM access to privileged SGX attribute

[PATCH RESEND 0/3] x86/sgx: eextend ioctl
 2021-04-02  8:38 UTC  (8+ messages)

[PATCH 1/2] x86/sgx: Do not update sgx_nr_free_pages in sgx_setup_epc_section()
 2021-04-01 19:32 UTC  (3+ messages)
` [PATCH 2/2] x86/sgx: Add sgx_nr_{all, free}_pages to the debugfs

[PATCH 1/3] x86/sgx: Adding eextend ioctl
 2021-04-01 14:52 UTC  (3+ messages)

[PATCH v4] sgx.7: New page with overview of Software Guard eXtensions (SGX)
 2021-04-01  2:21 UTC  (2+ messages)

[PATCH RESEND 1/3] x86/sgx: Adding eextend ioctl
 2021-03-31 12:51 UTC  (3+ messages)
` [PATCH RESEND 2/3] x86/sgx: Fix compatibility issue with OPENSSL < 1.1.0
` [PATCH RESEND 3/3] x86/sgx: eextend ioctl selftest

[PATCH 0/3] x86/sgx: eextend ioctl
 2021-03-31 12:18 UTC 

[PATCH 2/3] x86/sgx: Fix compatibility issue with OPENSSL < 1.1.0
 2021-03-31 12:18 UTC 

[PATCH 3/3] x86/sgx: eextend ioctl selftest
 2021-03-31 12:18 UTC 

Bidding invitation
 2021-03-31  7:13 UTC 

[PATCH] x86/sgx: fix incorrect kernel-doc comment syntax in files
 2021-03-31  2:56 UTC  (3+ messages)

[PATCH] x86/sgx: Remove unnecessary kmap() from sgx_ioc_enclave_init()
 2021-03-26 19:45 UTC  (2+ messages)

[PATCH v5] x86: Remove unnecessary kmap() from sgx_ioc_enclave_init()
 2021-03-24 18:24 UTC  (4+ messages)

[PATCH v6] selftests/x86: Use getauxval() to simplify the code in sgx
 2021-03-24  9:48 UTC  (6+ messages)

[PATCH] x86/sgx: Avoid returning NULL in __sgx_alloc_epc_page()
 2021-03-19 16:09 UTC  (12+ messages)

[PATCH] x86/sgx: fix uninitialized 'nid' variable
 2021-03-19  5:38 UTC  (2+ messages)

[PATCH] selftests/sgx: improve error detection and messages
 2021-03-19  5:37 UTC  (2+ messages)

[PATCH 1/2] x86/sgx: Replace section->init_laundry_list with sgx_dirty_page_list
 2021-03-18 19:28 UTC  (6+ messages)
` [PATCH 2/2] x86/sgx: Add a basic NUMA allocation scheme to sgx_alloc_epc_page()

[PATCH v2 00/25] KVM SGX virtualization support
 2021-03-18  0:04 UTC  (33+ messages)
` [PATCH v2 01/25] x86/cpufeatures: Make SGX_LC feature bit depend on SGX bit
` [PATCH v2 02/25] x86/cpufeatures: Add SGX1 and SGX2 sub-features
` [PATCH v2 06/25] x86/cpu/intel: Allow SGX virtualization without Launch Control support
` [PATCH v2 07/25] x86/sgx: Initialize virtual EPC driver even when SGX driver is disabled
` [PATCH v2 08/25] x86/sgx: Expose SGX architectural definitions to the kernel
` [PATCH v2 13/25] x86/sgx: Add helpers to expose ECREATE and EINIT to KVM

[PATCH v4 0/3] x86/sgx: NUMA
 2021-03-16 12:50 UTC  (14+ messages)
` [PATCH v4 1/3] x86/sgx: Use sgx_free_epc_page() in sgx_reclaim_pages()
` [PATCH v4 2/3] x86/sgx: Replace section local dirty page lists with a global list
` [PATCH v4 3/3] x86/sgx: Add a basic NUMA allocation scheme to sgx_alloc_epc_page()

[PATCH v2 03/25] x86/sgx: Wipe out EREMOVE from sgx_free_epc_page()
 2021-03-15 23:50 UTC  (11+ messages)
` [PATCH v3 "

[PATCH] selftests/sgx: fix EINIT failure dueto SGX_INVALID_SIGNATURE
 2021-03-12 16:53 UTC  (12+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).