public inbox for linux-sgx@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2022-03-08 11:11:16 to 2022-04-05 06:59:52 UTC [more...]

[PATCH V3 00/30] x86/sgx and selftests/sgx: Support SGX2
 2022-04-05  7:00 UTC  (45+ messages)
` [PATCH V3 01/30] x86/sgx: Add short descriptions to ENCLS wrappers
` [PATCH V3 02/30] x86/sgx: Add wrapper for SGX2 EMODPR function
` [PATCH V3 03/30] x86/sgx: Add wrapper for SGX2 EMODT function
` [PATCH V3 04/30] x86/sgx: Add wrapper for SGX2 EAUG function
` [PATCH V3 05/30] x86/sgx: Support loading enclave page without VMA permissions check
` [PATCH V3 06/30] x86/sgx: Export sgx_encl_ewb_cpumask()
` [PATCH V3 07/30] x86/sgx: Rename sgx_encl_ewb_cpumask() as sgx_encl_cpumask()
` [PATCH V3 08/30] x86/sgx: Move PTE zap code to new sgx_zap_enclave_ptes()
` [PATCH V3 09/30] x86/sgx: Make sgx_ipi_cb() available internally
` [PATCH V3 10/30] x86/sgx: Create utility to validate user provided offset and length
` [PATCH V3 11/30] x86/sgx: Keep record of SGX page type
` [PATCH V3 12/30] x86/sgx: Export sgx_encl_{grow,shrink}()
` [PATCH V3 13/30] x86/sgx: Export sgx_encl_page_alloc()
` [PATCH V3 14/30] x86/sgx: Support restricting of enclave page permissions
` [PATCH V3 15/30] x86/sgx: Support adding of pages to an initialized enclave
` [PATCH V3 16/30] x86/sgx: Tighten accessible memory range after enclave initialization
` [PATCH V3 17/30] x86/sgx: Support modifying SGX page type
` [PATCH V3 18/30] x86/sgx: Support complete page removal
` [PATCH V3 19/30] x86/sgx: Free up EPC pages directly to support large page ranges
` [PATCH V3 20/30] Documentation/x86: Introduce enclave runtime management section
` [PATCH V3 21/30] selftests/sgx: Add test for EPCM permission changes
` [PATCH V3 22/30] selftests/sgx: Add test for TCS page "
` [PATCH V3 23/30] selftests/sgx: Test two different SGX2 EAUG flows
` [PATCH V3 24/30] selftests/sgx: Introduce dynamic entry point
` [PATCH V3 25/30] selftests/sgx: Introduce TCS initialization enclave operation
` [PATCH V3 26/30] selftests/sgx: Test complete changing of page type flow
` [PATCH V3 27/30] selftests/sgx: Test faulty enclave behavior
` [PATCH V3 28/30] selftests/sgx: Test invalid access to removed enclave page
` [PATCH V3 29/30] selftests/sgx: Test reclaiming of untouched page
` [PATCH V3 30/30] selftests/sgx: Page removal stress test

Odd looking #PF fault code
 2022-04-05  5:59 UTC  (4+ messages)

[RFC PATCH v3 00/10] Support microcode updates affecting SGX
 2022-04-03 10:20 UTC  (21+ messages)
` [RFC PATCH v3 01/10] x86/sgx: Introduce mechanism to prevent new initializations of EPC pages
` [RFC PATCH v3 02/10] x86/sgx: Provide VA page non-NULL owner
` [RFC PATCH v3 03/10] x86/sgx: Save enclave pointer for VA page
` [RFC PATCH v3 04/10] x86/sgx: Keep record for SGX VA and Guest page type
` [RFC PATCH v3 05/10] x86/sgx: Save the size of each EPC section
` [RFC PATCH v3 06/10] x86/sgx: Forced EPC page zapping for EUPDATESVN
` [RFC PATCH v3 07/10] x86/sgx: Define error codes for ENCLS[EUPDATESVN]
` [RFC PATCH v3 08/10] x86/sgx: Implement ENCLS[EUPDATESVN]
` [RFC PATCH v3 09/10] x86/cpu: Call ENCLS[EUPDATESVN] procedure in microcode update
` [RFC PATCH v3 10/10] x86/sgx: Call ENCLS[EUPDATESVN] during SGX initialization

[PATCH v2] selftests/sgx: Use rip relative addressing for encl_stack
 2022-03-31  0:59 UTC  (3+ messages)

[PATCH v2 1/2] selftests/sgx: Use rip relative addressing for encl_stack
 2022-03-30 22:30 UTC  (11+ messages)
` [PATCH v2 2/2] selftests/sgx: Make TCS table relocatable

[PATCH] x86/sgx: Allow RW for TCS pages
 2022-03-30 15:07 UTC  (3+ messages)

[PATCH V2 00/32] x86/sgx and selftests/sgx: Support SGX2
 2022-03-30 15:02 UTC  (49+ messages)
` [PATCH V2 06/32] x86/sgx: Support VMA permissions more relaxed than enclave permissions
` [PATCH V2 16/32] x86/sgx: Support restricting of enclave page permissions

[PATCH] selftests/sgx: Make TCS table relocatable
 2022-03-22  7:25 UTC 

[RFC PATCH v2 00/10] Support microcode updates affecting SGX
 2022-03-22  1:35 UTC  (24+ messages)
` [RFC PATCH v2 01/10] x86/sgx: Introduce mechanism to prevent new initializations of EPC pages
` [RFC PATCH v2 02/10] x86/sgx: Provide VA page non-NULL owner
` [RFC PATCH v2 03/10] x86/sgx: Save enclave pointer for VA page
` [RFC PATCH v2 04/10] x86/sgx: Keep record for SGX VA and Guest page type
` [RFC PATCH v2 05/10] x86/sgx: Save the size of each EPC section
` [RFC PATCH v2 06/10] x86/sgx: Forced EPC page zapping for EUPDATESVN
` [RFC PATCH v2 07/10] x86/sgx: Define error codes for ENCLS[EUPDATESVN]
` [RFC PATCH v2 08/10] x86/sgx: Implement ENCLS[EUPDATESVN]
` [RFC PATCH v2 09/10] x86/cpu: Call ENCLS[EUPDATESVN] procedure in microcode update
` [RFC PATCH v2 10/10] x86/sgx: Call ENCLS[EUPDATESVN] during SGX initialization

[PATCH] selftest/sgx: Use rip relative addressing for encl_stack
 2022-03-22  0:17 UTC 

[RFC PATCH v2.1 01/30] x86/sgx: Add short descriptions to ENCLS wrappers
 2022-03-14 19:04 UTC  (12+ messages)
` [RFC PATCH v2.1 14/30] x86/sgx: Support restricting of enclave page permissions

[PATCH v6] x86/sgx: Free backing memory after faulting the enclave page
 2022-03-10 18:00 UTC  (5+ messages)

[PATCH V2 16/32] x86/sgx: Support restricting of enclave page permissions
 2022-03-10  5:59 UTC  (12+ messages)

[RFC PATCH 00/11] Support microcode updates affecting SGX
 2022-03-10  5:24 UTC  (25+ messages)
` [RFC PATCH 01/11] x86/sgx: Introduce mechanism to prevent new initializations of EPC pages
` [RFC PATCH 02/11] x86/sgx: Provide VA page non-NULL owner
` [RFC PATCH 03/11] x86/sgx: Save enclave pointer for VA page
` [RFC PATCH 04/11] x86/sgx: Keep record for SGX VA and Guest page type
` [RFC PATCH 05/11] x86/sgx: Save the size of each EPC section
` [RFC PATCH 06/11] x86/sgx: Forced EPC page zapping for EUPDATESVN
` [RFC PATCH 07/11] x86/sgx: Define error codes for ENCLS[EUPDATESVN]
` [RFC PATCH 08/11] x86/sgx: Implement ENCLS[EUPDATESVN]
` [RFC PATCH 09/11] x86/microcode: Expose EUPDATESVN procedure via sysfs
` [RFC PATCH 10/11] x86/sgx: Call ENCLS[EUPDATESVN] during SGX initialization
` [RFC PATCH 11/11] Documentation/x86/sgx: Document EUPDATESVN sysfs file

[PATCH RFC v3 0/3] MAP_POPULATE for device memory
 2022-03-08 11:41 UTC  (5+ messages)
` [PATCH RFC v3 1/3] mm: Add f_op->populate() for populating memory outside of core mm
` [PATCH RFC v3 2/3] x86/sgx: Export sgx_encl_page_alloc()
` [PATCH RFC v3 3/3] x86/sgx: Implement EAUG population with MAP_POPULATE

[PATCH RFC v2 0/3] MAP_POPULATE for device memory
 2022-03-08 11:16 UTC  (4+ messages)
` [PATCH RFC v2 1/3] mm: Add f_op->populate() for populating memory outside of core mm
` [PATCH RFC v2 3/3] x86/sgx: Implement EAUG population with MAP_POPULATE


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox