linux-sgx.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-09-13 04:09:08 to 2023-10-30 18:20:34 UTC [more...]

[PATCH v6 00/12] Add Cgroup support for SGX EPC memory
 2023-10-30 18:20 UTC 

[PATCH] x86/sgx: Return VM_FAULT_SIGBUS for EPC exhaustion
 2023-10-28  8:24 UTC  (9+ messages)

[PATCH v7 00/13] selftests/sgx: Fix compilation errors
 2023-10-23 21:32 UTC  (21+ messages)
` [PATCH v7 01/13] selftests/sgx: Fix uninitialized pointer dereference in error path
` [PATCH v7 02/13] selftests/sgx: Fix uninitialized pointer dereferences in encl_get_entry
` [PATCH v7 03/13] selftests/sgx: Include memory clobber for inline asm in test enclave
` [PATCH v7 04/13] selftests/sgx: Separate linker options
` [PATCH v7 05/13] selftests/sgx: Specify freestanding environment for enclave compilation
` [PATCH v7 06/13] selftests/sgx: Remove redundant enclave base address save/restore
` [PATCH v7 07/13] selftests/sgx: Produce static-pie executable for test enclave
` [PATCH v7 08/13] selftests/sgx: Handle relocations in "
` [PATCH v7 09/13] selftests/sgx: Fix linker script asserts
` [PATCH v7 10/13] selftests/sgx: Ensure test enclave buffer is entirely preserved
` [PATCH v7 11/13] selftests/sgx: Ensure expected location of test enclave buffer
` [PATCH v7 12/13] selftests/sgx: Discard unsupported ELF sections
` [PATCH v7 13/13] selftests/sgx: Remove incomplete ABI sanitization code in test enclave

[PATCH v5 00/18] Add Cgroup support for SGX EPC memory
 2023-10-22 18:26 UTC  (119+ messages)
` [PATCH v5 01/18] cgroup/misc: Add per resource callbacks for CSS events
` [PATCH v5 02/18] cgroup/misc: Add SGX EPC resource type and export APIs for SGX driver
` [PATCH v5 03/18] x86/sgx: Add sgx_epc_lru_lists to encapsulate LRU lists
` [PATCH v5 04/18] x86/sgx: Use sgx_epc_lru_lists for existing active page list
` [PATCH v5 05/18] x86/sgx: Store reclaimable EPC pages in sgx_epc_lru_lists
` [PATCH v5 06/18] x86/sgx: Introduce EPC page states
` [PATCH v5 07/18] x86/sgx: Introduce RECLAIM_IN_PROGRESS state
` [PATCH v5 08/18] x86/sgx: Use a list to track to-be-reclaimed pages
` [PATCH v5 09/18] x86/sgx: Store struct sgx_encl when allocating new VA pages
` [PATCH v5 10/18] x86/sgx: Add EPC page flags to identify owner types
` [PATCH v5 11/18] x86/sgx: store unreclaimable pages in LRU lists
` [PATCH v5 12/18] x86/sgx: Add EPC OOM path to forcefully reclaim EPC
` [PATCH v5 13/18] x86/sgx: Expose sgx_reclaim_pages() for use by EPC cgroup
` [PATCH v5 14/18] x86/sgx: Add helper to grab pages from an arbitrary EPC LRU
` [PATCH v5 15/18] x86/sgx: Prepare for multiple LRUs
` [PATCH v5 16/18] x86/sgx: Limit process EPC usage with misc cgroup controller
` [PATCH v5 17/18] Docs/x86/sgx: Add description for cgroup support
` [PATCH v5 18/18] selftests/sgx: Add scripts for EPC cgroup testing

[PATCH v6] x86/sgx: Resolves SECS reclaim vs. page fault for EAUG race
 2023-09-29  1:08 UTC  (4+ messages)

[PATCH v4 00/18] Add Cgroup support for SGX EPC memory
 2023-09-25 16:57 UTC  (42+ messages)
` [PATCH v4 01/18] cgroup/misc: Add per resource callbacks for CSS events
` [PATCH v4 02/18] cgroup/misc: Add SGX EPC resource type and export APIs for SGX driver
` [PATCH v4 03/18] x86/sgx: Add sgx_epc_lru_lists to encapsulate LRU lists
` [PATCH v4 04/18] x86/sgx: Use sgx_epc_lru_lists for existing active page list
` [PATCH v4 05/18] x86/sgx: Store reclaimable EPC pages in sgx_epc_lru_lists
` [PATCH v4 06/18] x86/sgx: Introduce EPC page states
` [PATCH v4 08/18] x86/sgx: Use a list to track to-be-reclaimed pages
` [PATCH v4 09/18] x86/sgx: Store struct sgx_encl when allocating new VA pages
` [PATCH v4 11/18] x86/sgx: store unreclaimable pages in LRU lists
` [PATCH v4 12/18] x86/sgx: Add EPC OOM path to forcefully reclaim EPC
` [PATCH v4 13/18] x86/sgx: Expose sgx_reclaim_pages() for use by EPC cgroup
` [PATCH v4 14/18] x86/sgx: Add helper to grab pages from an arbitrary EPC LRU
` [PATCH v4 15/18] x86/sgx: Prepare for multiple LRUs
` [PATCH v4 16/18] x86/sgx: Limit process EPC usage with misc cgroup controller
` [PATCH v4 17/18] Docs/x86/sgx: Add description for cgroup support
` [PATCH v4 18/18] selftests/sgx: Add scripts for epc cgroup testing

[PATCH v6 00/13] selftests/sgx: Fix compilation errors
 2023-09-25 16:44 UTC  (15+ messages)
` [PATCH v6 01/13] selftests/sgx: Fix uninitialized pointer dereference in error path
` [PATCH v6 02/13] selftests/sgx: Fix uninitialized pointer dereferences in encl_get_entry
` [PATCH v6 03/13] selftests/sgx: Include memory clobber for inline asm in test enclave
` [PATCH v6 04/13] selftests/sgx: Separate linker options
` [PATCH v6 05/13] selftests/sgx: Specify freestanding environment for enclave compilation
` [PATCH v6 06/13] selftests/sgx: Remove redundant enclave base address save/restore
` [PATCH v6 07/13] selftests/sgx: Produce static-pie executable for test enclave
` [PATCH v6 08/13] selftests/sgx: Handle relocations in "
` [PATCH v6 09/13] selftests/sgx: Fix linker script asserts
` [PATCH v6 10/13] selftests/sgx: Ensure test enclave buffer is entirely preserved
` [PATCH v6 11/13] selftests/sgx: Ensure expected location of test enclave buffer
` [PATCH v6 12/13] selftests/sgx: Discard unsupported ELF sections
` [PATCH v6 13/13] selftests/sgx: Remove incomplete ABI sanitization code in test enclave


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).