linux-sgx.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-10-08 04:46:17 to 2019-10-26 14:08:20 UTC [more...]

[PATCH for_v2? v2 00/14] selftests/x86/sgx: Improve tests
 2019-10-26 14:08 UTC  (24+ messages)
` [PATCH for_v2? v2 01/14] selftests/x86/sgx: Fix a benign linker warning
` [PATCH for_v2? v2 02/14] selftests/x86/sgx: Use getauxval() to retrieve the vDSO base address
` [PATCH for_v2? v2 03/14] selftests/x86/sgx: Sanitize the types for sgx_vdso_call()'s input params
` [PATCH for_v2? v2 04/14] selftests/x86/sgx: Mark helper functions as static
` [PATCH for_v2? v2 05/14] selftests/x86/sgx: Move vDSO setup to a helper function
` [PATCH for_v2? v2 06/14] selftests/x86/sgx: Move individual tests into helper functions
` [PATCH for_v2? v2 07/14] selftests/x86/sgx: Use standard helper function to signal pass/fail
` [PATCH for_v2? v2 08/14] selftests/harness: Move operator macros to their own header file
` [PATCH for_v2? v2 09/14] selftests/x86/sgx: Use kselftest operators to check test results
` [PATCH for_v2? v2 10/14] selftests/x86/sgx: Handle setup failures via kselftest assertions
` [PATCH for_v2? v2 11/14] selftests/x86/sgx: Add a check on the vDSO exception reporting mechanism
` [PATCH for_v2? v2 12/14] selftests/x86/sgx: Add test of vDSO with basic exit handler
` [PATCH for_v2? v2 13/14] selftests/x86/sgx: Add check to verify exit handler stack alignment
` [PATCH for_v2? v2 14/14] selftests/x86/sgx: Add test for exception behavior with exit handler

[PATCH for_v23 0/3] x86/sgx: More cleanup for v23
 2019-10-24 20:22 UTC  (12+ messages)
` [PATCH for_v23 1/3] x86/sgx: Update the free page count in a single operation
` [PATCH for_v23 2/3] x86/sgx: Do not add in-use EPC page to the free page list
` [PATCH for_v23 3/3] x86/sgx: Move reclaim logic out of sgx_free_page()

[PATCH for_v23 v3 00/12] x86/sgx: Bug fixes for v23
 2019-10-23 12:02 UTC  (32+ messages)
` [PATCH for_v23 v3 01/12] x86/sgx: Pass EADD the kernel's virtual address for the source page
` [PATCH for_v23 v3 02/12] x86/sgx: Check the validity of the source page address for EADD
` [PATCH for_v23 v3 03/12] x86/sgx: Fix EEXTEND error handling
` [PATCH for_v23 v3 04/12] x86/sgx: Drop mmap_sem before EEXTENDing an enclave page
` [PATCH for_v23 v3 05/12] x86/sgx: Remove redundant message from WARN on non-emtpy mm_list
` [PATCH for_v23 v3 06/12] x86/sgx: Fix a memory leak in sgx_encl_destroy()
` [PATCH for_v23 v3 07/12] x86/sgx: WARN on any non-zero return from __eremove()
` [PATCH for_v23 v3 08/12] x86/sgx: WARN only once if EREMOVE fails
` [PATCH for_v23 v3 09/12] x86/sgx: Split second half of sgx_free_page() to a separate helper
` [PATCH for_v23 v3 10/12] x86/sgx: Use the post-reclaim variant of __sgx_free_page()
` [PATCH for_v23 v3 11/12] x86/sgx: Don't update free page count if EPC section allocation fails
` [PATCH for_v23 v3 12/12] x86/sgx: Reinstate per EPC section free page counts

[PATCH for_v23 0/7] x86/sgx: Improve add pages ioctl
 2019-10-21 11:24 UTC  (18+ messages)
` [PATCH for_v23 1/7] x86/sgx: Modify ADD_PAGE ioctl to take offset instead of full address
` [PATCH for_v23 2/7] selftests/x86/sgx: Update test to account for ADD_PAGE change
` [PATCH for_v23 3/7] x86/sgx: Tweak ADD_PAGE ioctl to allow adding multiple pages
` [PATCH for_v23 4/7] selftests/x86/sgx: Update enclave build flow to do multi-page add
` [PATCH for_v23 5/7] x86/sgx: Add a flag to ADD_PAGES to allow replicating the source page
` [PATCH for_v23 6/7] selftests/x86/sgx: Update selftest to account for ADD_PAGES flag
` [PATCH for_v23 7/7] selftests/x86/sgx: Add test coverage for reclaim and replicate

x86/sgx: v23-rc2
 2019-10-17 17:57 UTC  (8+ messages)

[PATCH for_v23 0/4] x86/sgx: Fix add page bugs
 2019-10-17 16:25 UTC  (8+ messages)
` [PATCH for_v23 1/4] x86/sgx: Pass EADD the kernel's virtual address for the source page
` [PATCH for_v23 2/4] x86/sgx: Check the validity of the source page address for EADD
` [PATCH for_v23 3/4] x86/sgx: Fix EEXTEND error handling
` [PATCH for_v23 4/4] x86/sgx: Drop mmap_sem before EEXTENDing an enclave page

[PATCH for_v23 v2 0/3] x86/vdso: sgx: Bug fixes for v23
 2019-10-17  0:05 UTC  (4+ messages)
` [PATCH for_v23 v2 1/3] x86/vdso: sgx: Save untrusted stack before aligning %rsp
` [PATCH for_v23 v2 2/3] x86/vdso: sgx: Use an extra push to align the stack
` [PATCH for_v23 v2 3/3] x86/vdso: sgx: Fix unwinder support, again

[PATCH for_v23 0/5] x86/vdso: sgx: Bug fixes
 2019-10-16 23:06 UTC  (12+ messages)
` [PATCH for_v23 1/5] x86/vdso: sgx: Fix misaligned stack bug when invoking exit handler
` [PATCH for_v23 2/5] selftests/x86/sgx: Add check to verify exit handler stack alignment
` [PATCH for_v23 3/5] x86/vdso: sgx: Fix unwinder support
` [PATCH for_v23 4/5] x86/vdso: sgx: Reorder params to callback to improve readability
` [PATCH for_v23 5/5] selftests/x86/sgx: Update the callbacks function parameters

[PATCH for_v23 00/16] x86/vdso: sgx: Major vDSO cleanup
 2019-10-16 22:53 UTC  (31+ messages)
` [PATCH for_v23 06/16] x86/vdso: sgx: Rewrite __vdso_sgx_enter_enclave() function comment
` [PATCH for_v23 07/16] selftests/x86: Fix linker warning in SGX selftest
` [PATCH for_v23 08/16] selftests/x86/sgx: Use getauxval() to retrieve the vDSO base address
` [PATCH for_v23 09/16] selftests/x86/sgx: Add helper function and macros to assert results
` [PATCH for_v23 10/16] selftests/x86/sgx: Handle setup failures via test assertions
` [PATCH for_v23 11/16] selftests/x86/sgx: Sanitize the types for sgx_call()'s input params
` [PATCH for_v23 12/16] selftests/x86/sgx: Move existing sub-test to a separate helper
` [PATCH for_v23 13/16] selftests/x86/sgx: Add a test of the vDSO exception reporting mechanism
` [PATCH for_v23 14/16] selftests/x86/sgx: Add test of vDSO with basic exit handler
` [PATCH for_v23 15/16] selftests/x86/sgx: Add sub-test for exception behavior with "
` [PATCH for_v23 16/16] x86/vdso: sgx: Rework __vdso_sgx_enter_enclave() to prefer "no callback"

Selftests updated
 2019-10-15 13:46 UTC 

[PATCH for_v23 0/9] x86/sgx: misc page related fixes
 2019-10-14 23:57 UTC  (17+ messages)
` [PATCH for_v23 1/9] x86/sgx: WARN once if an enclave is released with unfreed EPC pages
` [PATCH for_v23 2/9] x86/sgx: Do not EWB SECS if the enclave is dead
` [PATCH for_v23 3/9] x86/sgx: Fix a memory leak in sgx_encl_destroy()
` [PATCH for_v23 4/9] x86/sgx: WARN on any non-zero return from __eremove()
` [PATCH for_v23 5/9] x86/sgx: WARN only once if EREMOVE fails
` [PATCH for_v23 6/9] x86/sgx: Split second half of sgx_free_page() to a separate helper
` [PATCH for_v23 7/9] x86/sgx: Use the post-reclaim variant of __sgx_free_page()
` [PATCH for_v23 8/9] x86/sgx: Don't update free page count if EPC section allocation fails
` [PATCH for_v23 9/9] x86/sgx: Reinstate per EPC section free page counts

[PATCH for_v23 v2 0/9] x86/sgx: Misc page related fixes
 2019-10-10 23:21 UTC  (10+ messages)
` [PATCH for_v23 v2 1/9] x86/sgx: WARN once if an enclave is released with unfreed EPC pages
` [PATCH for_v23 v2 2/9] x86/sgx: Do not EWB SECS if the enclave is dead
` [PATCH for_v23 v2 3/9] x86/sgx: Fix a memory leak in sgx_encl_destroy()
` [PATCH for_v23 v2 4/9] x86/sgx: WARN on any non-zero return from __eremove()
` [PATCH for_v23 v2 5/9] x86/sgx: WARN only once if EREMOVE fails
` [PATCH for_v23 v2 6/9] x86/sgx: Split second half of sgx_free_page() to a separate helper
` [PATCH for_v23 v2 7/9] x86/sgx: Use the post-reclaim variant of __sgx_free_page()
` [PATCH for_v23 v2 8/9] x86/sgx: Don't update free page count if EPC section allocation fails
` [PATCH for_v23 v2 9/9] x86/sgx: Reinstate per EPC section free page counts

[PATCH] x86/sgx: WARN once if EREMOVE fails when killing an enclave
 2019-10-10 20:52 UTC  (5+ messages)

x86/sgx: v23-rc1
 2019-10-10  8:07 UTC  (5+ messages)

[PATCH 0/2] x86/sgx: Revert two recent master changes
 2019-10-08 23:28 UTC  (2+ messages)

[PATCH v22 00/24] Intel SGX foundations
 2019-10-08 19:19 UTC  (32+ messages)
` [PATCH v22 07/24] x86/sgx: Add wrappers for ENCLS leaf functions
` [PATCH v22 09/24] x86/sgx: Add functions to allocate and free EPC pages
` [PATCH v22 10/24] x86/sgx: Add sgx_einit() for wrapping ENCLS[EINIT]
` [PATCH v22 11/24] mm: Introduce vm_ops->may_mprotect()
` [PATCH v22 12/24] x86/sgx: Linux Enclave Driver
` [PATCH v22 16/24] x86/vdso: Add support for exception fixup in vDSO functions


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