public inbox for linux-sgx@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-11-13 19:09:33 to 2026-02-27 20:12:59 UTC [more...]

[PATCH v1 00/16] mm: cleanups around unmapping / zapping
 2026-02-27 20:08 UTC  (15+ messages)
` [PATCH v1 01/16] mm/madvise: drop range checks in madvise_free_single_vma()
` [PATCH v1 02/16] mm/memory: remove "zap_details" parameter from zap_page_range_single()
` [PATCH v1 03/16] mm/memory: inline unmap_mapping_range_vma() into unmap_mapping_range_tree()
` [PATCH v1 04/16] mm/memory: simplify calculation in unmap_mapping_range_tree()
` [PATCH v1 05/16] mm/oom_kill: use MMU_NOTIFY_CLEAR in __oom_reap_task_mm()
` [PATCH v1 06/16] mm/oom_kill: factor out zapping of VMA into zap_vma_for_reaping()
` [PATCH v1 07/16] mm/memory: rename unmap_single_vma() to __zap_vma_range()
` [PATCH v1 08/16] mm/memory: move adjusting of address range to unmap_vmas()
` [PATCH v1 09/16] mm/memory: convert details->even_cows into details->skip_cows
` [PATCH v1 10/16] mm/memory: use __zap_vma_range() in zap_vma_for_reaping()
` [PATCH v1 11/16] mm/memory: inline unmap_page_range() into __zap_vma_range()
` [PATCH v1 12/16] mm: rename zap_vma_pages() to zap_vma()
` [PATCH v1 13/16] mm: rename zap_page_range_single_batched() to zap_vma_range_batched()
` [PATCH v1 14/16] mm: rename zap_page_range_single() to zap_vma_range()

[PATCH][v2] x86/sgx: Use list_for_each_entry_srcu() for mm_list traversal
 2026-02-26  1:40 UTC 

[PATCH] x86/sgx: Fix SRCU list traversal
 2026-02-24  2:51 UTC  (7+ messages)
  ` 答复: [外部邮件] "
      ` 答复: "

[PATCH v2 00/13] mm: add bitmap VMA flag helpers and convert all mmap_prepare to use them
 2026-02-10 17:44 UTC  (55+ messages)
` [PATCH v2 01/13] mm/vma: remove __private sparse decoration from vma_flags_t
` [PATCH v2 02/13] mm: rename vma_flag_test/set_atomic() to vma_test/set_atomic_flag()
` [PATCH v2 03/13] mm: add mk_vma_flags() bitmap flag macro helper
` [PATCH v2 04/13] tools: bitmap: add missing bitmap_[subset(), andnot()]
` [PATCH v2 05/13] mm: add basic VMA flag operation helper functions
` [PATCH v2 06/13] mm: update hugetlbfs to use VMA flags on mmap_prepare
` [PATCH v2 07/13] mm: update secretmem "
` [PATCH v2 08/13] mm: update shmem_[kernel]_file_*() functions to use vma_flags_t
` [PATCH v2 09/13] mm: update all remaining mmap_prepare users "
` [PATCH v2 10/13] mm: make vm_area_desc utilise vma_flags_t only
` [PATCH v2 11/13] tools/testing/vma: separate VMA userland tests into separate files
` [PATCH v2 12/13] tools/testing/vma: separate out vma_internal.h into logical headers
` [PATCH v2 13/13] tools/testing/vma: add VMA userland tests for VMA flag functions

[PATCH v4 00/10] x86/entry/vdso: clean up the vdso build, vdso updates
 2026-02-10  5:24 UTC  (38+ messages)
` [PATCH v4 01/10] x86/entry/vdso: rename vdso_image_* to vdso*_image
` [PATCH v4 02/10] x86/entry/vdso: move vdso2c to arch/x86/tools
` [PATCH v4 03/10] x86/entry/vdso: refactor the vdso build
` [PATCH v4 04/10] x86/entry/vdso32: don't rely on int80_landing_pad for adjusting ip
` [PATCH v4 05/10] x86/entry/vdso32: remove SYSCALL_ENTER_KERNEL macro in sigreturn.S
` [PATCH v4 06/10] x86/entry/vdso32: remove open-coded DWARF "
` [PATCH v4 07/10] x86/entry/vdso: include GNU_PROPERTY and GNU_STACK PHDRs
` [PATCH v4 08/10] x86/vdso: abstract out vdso system call internals
` [PATCH v4 09/10] x86/cpufeature: replace X86_FEATURE_SYSENTER32 with X86_FEATURE_SYSFAST32
` [PATCH v4 10/10] x86/entry/vdso32: when using int $0x80, use it directly
` [PATCH v4.1 00/10] x86/entry/vdso: clean up the vdso build, vdso updates
  ` [PATCH v4.1 01/10] x86/entry/vdso: rename vdso_image_* to vdso*_image
  ` [PATCH v4.1 02/10] x86/entry/vdso: move vdso2c to arch/x86/tools
  ` [PATCH v4.1 03/10] x86/entry/vdso: refactor the vdso build
  ` [PATCH v4.1 04/10] x86/entry/vdso32: don't rely on int80_landing_pad for adjusting ip
  ` [PATCH v4.1 05/10] x86/entry/vdso32: remove SYSCALL_ENTER_KERNEL macro in sigreturn.S
  ` [PATCH v4.1 06/10] x86/entry/vdso32: remove open-coded DWARF "
  ` [PATCH v4.1 07/10] x86/entry/vdso: include GNU_PROPERTY and GNU_STACK PHDRs
  ` [PATCH v4.1 08/10] x86/vdso: abstract out vdso system call internals
  ` [PATCH v4.1 09/10] x86/cpufeature: replace X86_FEATURE_SYSENTER32 with X86_FEATURE_SYSFAST32
  ` [PATCH v4.1 10/10] x86/entry/vdso32: when using int $0x80, use it directly

[PATCH v2] x86/sgx: use vm_flags_t for vm_prot_bits
 2026-01-25 14:46 UTC  (5+ messages)

[PATCH] x86/sgx: use vm_flags_t for vm_prot_bits
 2026-01-25 14:45 UTC  (4+ messages)

[PATCH RESEND 00/12] mm: add bitmap VMA flag helpers and convert all mmap_prepare to use them
 2026-01-22 15:47 UTC  (29+ messages)
` [PATCH RESEND 01/12] mm: rename vma_flag_test/set_atomic() to vma_test/set_atomic_flag()
` [PATCH RESEND 02/12] mm: add mk_vma_flags() bitmap flag macro helper
` [PATCH RESEND 03/12] tools: bitmap: add missing bitmap_[subset(), andnot()]
` [PATCH RESEND 04/12] mm: add basic VMA flag operation helper functions
` [PATCH RESEND 05/12] mm: update hugetlbfs to use VMA flags on mmap_prepare
` [PATCH RESEND 06/12] mm: update secretmem "
` [PATCH RESEND 07/12] mm: update shmem_[kernel]_file_*() functions to use vma_flags_t
` [PATCH RESEND 08/12] mm: update all remaining mmap_prepare users "
` [PATCH RESEND 09/12] mm: make vm_area_desc utilise vma_flags_t only
` [PATCH RESEND 10/12] tools/testing/vma: separate VMA userland tests into separate files
` [PATCH RESEND 11/12] tools/testing/vma: separate out vma_internal.h into logical headers
` [PATCH RESEND 12/12] tools/testing/vma: add VMA userland tests for VMA flag functions

[PATCH] MAINTAINERS: adjust file entry in INTEL SGX
 2026-01-19 22:29 UTC  (2+ messages)

[PATCH 00/12] mm: add bitmap VMA flag helpers and convert all mmap_prepare to use them
 2026-01-19 21:18 UTC  (16+ messages)
` [PATCH 01/12] mm: rename vma_flag_test/set_atomic() to vma_test/set_atomic_flag()
` [PATCH 02/12] mm: add mk_vma_flags() bitmap flag macro helper
` [PATCH 03/12] tools: bitmap: add missing bitmap_[subset(), andnot()]
` [PATCH 04/12] mm: add basic VMA flag operation helper functions
` [PATCH 05/12] mm: update hugetlbfs to use VMA flags on mmap_prepare
` [PATCH 06/12] mm: update secretmem "
` [PATCH 07/12] mm: update shmem_[kernel]_file_*() functions to use vma_flags_t
` [PATCH 08/12] mm: update all remaining mmap_prepare users "
` [PATCH 09/12] mm: make vm_area_desc utilise vma_flags_t only
` [PATCH 10/12] tools/testing/vma: separate VMA userland tests into separate files
` [PATCH 11/12] tools/testing/vma: separate out vma_internal.h into logical headers
` [PATCH 12/12] tools/testing/vma: add VMA userland tests for VMA flag functions

[daveh-devel:testme] [x86/entry/vdso] 4a3273d119: kernel-selftests.vDSO.make.fail
 2026-01-16  8:57 UTC 

[PATCH] x86/sgx: Use goto to remove redundant if check in sgx_encl_init
 2025-12-13 19:14 UTC  (8+ messages)

[PATCH] x86/sgx: Remove unmatched quote in __sgx_encl_extend function comment
 2025-12-11 22:01 UTC  (2+ messages)

[PATCH 0/5] x86/sgx: Fix kernel-doc warnings
 2025-11-19  2:28 UTC  (13+ messages)
` [PATCH 1/5] x86/sgx: Add a missing colon in kernel-doc markup for "struct sgx_enclave_run"
` [PATCH 2/5] x86/sgx: Add kernel-doc descriptions for params passed to vDSO user handler
` [PATCH 4/5] x86/sgx: Remove superfluous asterisk from copyright comment in asm/sgx.h
` [PATCH 5/5] x86/sgx: Fix a typo in the kernel-doc comment for enum sgx_attribute

[PATCH] x86/sgx: fix enum kernel-doc notation
 2025-11-16  9:37 UTC  (2+ messages)

[PATCH v2 0/9] x86/entry/vdso: clean up the vdso build, vdso updates
 2025-11-14 21:08 UTC  (8+ messages)
` [PATCH v2 7/9] x86/vdso: abstract out vdso system call internals

[PATCH 0/4] x86: Restrict KVM-induced symbol exports to KVM
 2025-11-14  9:03 UTC  (2+ messages)

[PATCH v3 0/9] x86/entry/vdso: clean up the vdso build, vdso updates
 2025-11-13 22:41 UTC  (10+ messages)
` [PATCH v3 1/9] x86/entry/vdso: rename vdso_image_* to vdso*_image
` [PATCH v3 2/9] x86/entry/vdso: refactor the vdso build
` [PATCH v3 6/9] x86/entry/vdso: include GNU_PROPERTY and GNU_STACK PHDRs


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