public inbox for linux-sgx@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2023-08-19 10:40:36 to 2023-10-02 22:55:27 UTC [more...]

[PATCH v5 00/18] Add Cgroup support for SGX EPC memory
 2023-10-02 22:55 UTC  (44+ 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  (44+ 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 07/18] x86/sgx: Introduce RECLAIM_IN_PROGRESS state
` [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 10/18] x86/sgx: Add EPC page flags to identify owner types
` [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

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

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

[v5.15] WARNING in kvm_arch_vcpu_ioctl_run
 2023-08-28 15:23 UTC  (3+ messages)

[PATCH] x86/sgx: Describe the parameters of sgx_calc_section_metric()
 2023-08-27 18:38 UTC  (3+ messages)

[PATCH v3 0/9] selftests/sgx: Fix compilation errors
 2023-08-25 13:27 UTC  (26+ messages)
` [PATCH v3 1/9] selftests/sgx: Fix uninitialized pointer dereference in error path
` [PATCH v3 2/9] selftests/sgx: Produce static-pie executable for test enclave
` [PATCH v3 3/9] selftests/sgx: Handle relocations in "
` [PATCH v3 4/9] selftests/sgx: Fix linker script asserts
` [PATCH v3 5/9] selftests/sgx: Include memory clobber for inline asm in test enclave
` [PATCH v3 6/9] selftests/sgx: Ensure test enclave buffer is entirely preserved
` [PATCH v3 7/9] selftests/sgx: Ensure expected location of test enclave buffer
` [PATCH v3 8/9] selftests/sgx: Separate linker options
` [PATCH v3 9/9] selftests/sgx: Specify freestanding environment for enclave compilation

[CfP] Confidential Computing Microconference @ LPC 2023
 2023-08-25 13:16 UTC  (2+ messages)

[PATCH v2] tpm: Enable hwrng only for Pluton on AMD CPUs
 2023-08-22 23:16 UTC  (3+ messages)

[PATCH] tpm: Enable hwrng only for Pluton on AMD CPUs
 2023-08-22 20:28 UTC 

[PATCH v2 0/6] Extend struct tpm_buf to support sized buffers (TPM2B)
 2023-08-22 17:54 UTC 

[PATCH v2 0/6] Extend struct tpm_buf to support sized buffers (TPM2B)
 2023-08-22 17:52 UTC  (7+ messages)
` [PATCH v2 1/6] tpm: Move buffer handling from static inlines to real functions
` [PATCH v2 2/6] tpm: Store TPM buffer length
` [PATCH v2 3/6] tpm: Detach tpm_buf_reset() from tpm_buf_init()
` [PATCH v2 4/6] tpm: Support TPM2 sized buffers (TPM2B)
` [PATCH v2 5/6] tpm: Add tpm_buf_read_{u8,u16,u32}
` [PATCH v2 6/6] KEYS: trusted: tpm2: Use struct tpm_buf for sized buffers

[PATCH v2 0/8] selftests/sgx: Fix compilation errors
 2023-08-22 10:07 UTC  (5+ messages)
` [PATCH 3/8] selftests/sgx: Handle relocations in test enclave

[PATCH 0/5] selftests/sgx: Fix compilation errors
 2023-08-21 13:24 UTC  (8+ messages)
` [PATCH 2/5] selftests/sgx: Fix function pointer relocation 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