linux-api.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-11-03 04:10:13 to 2020-11-13 13:59:24 UTC [more...]

[PATCH v8 0/9] mm: introduce memfd_secret system call to create "secret" memory areas
 2020-11-13 13:58 UTC  (20+ messages)
` [PATCH v8 1/9] mm: add definition of PMD_PAGE_ORDER
` [PATCH v8 2/9] mmap: make mlock_future_check() global
` [PATCH v8 3/9] set_memory: allow set_direct_map_*_noflush() for multiple pages
` [PATCH v8 4/9] mm: introduce memfd_secret system call to create "secret" memory areas
` [PATCH v8 5/9] secretmem: use PMD-size pages to amortize direct map fragmentation
` [PATCH v8 6/9] secretmem: add memcg accounting
` [PATCH v8 7/9] PM: hibernate: disable when there are active secretmem users
` [PATCH v8 8/9] arch, mm: wire up memfd_secret system call were relevant
` [PATCH v8 9/9] secretmem: test: add basic selftest for memfd_secret(2)

[PATCH v16 0/6] arm64: expose FAR_EL1 tag bits in siginfo
 2020-11-13  2:53 UTC  (7+ messages)
` [PATCH v16 1/6] parisc: Drop parisc special case for __sighandler_t
` [PATCH v16 2/6] parisc: start using signal-defs.h
` [PATCH v16 3/6] arch: move SA_* definitions to generic headers
` [PATCH v16 4/6] signal: clear non-uapi flag bits when passing/returning sa_flags
` [PATCH v16 5/6] signal: define the SA_UNSUPPORTED bit in sa_flags
` [PATCH v16 6/6] arm64: expose FAR_EL1 tag bits in siginfo

[PATCH v15 0/6] arm64: expose FAR_EL1 tag bits in siginfo
 2020-11-13  2:52 UTC  (8+ messages)
` [PATCH v15 1/6] parisc: Drop parisc special case for __sighandler_t
` [PATCH v15 2/6] parisc: start using signal-defs.h
` [PATCH v15 3/6] arch: move SA_* definitions to generic headers
` [PATCH v15 4/6] signal: clear non-uapi flag bits when passing/returning sa_flags
` [PATCH v15 5/6] signal: define the SA_UNSUPPORTED bit in sa_flags
` [PATCH v15 6/6] arm64: expose FAR_EL1 tag bits in siginfo

[PATCH v14 0/8] arm64: expose FAR_EL1 tag bits in siginfo
 2020-11-12 23:20 UTC  (32+ messages)
` [PATCH v14 1/8] parisc: Drop parisc special case for __sighandler_t
` [PATCH v14 2/8] parisc: start using signal-defs.h
` [PATCH v14 3/8] arch: move SA_* definitions to generic headers
` [PATCH v14 4/8] signal: deduplicate code dealing with common _sigfault fields
` [PATCH v14 5/8] signal: clear non-uapi flag bits when passing/returning sa_flags
` [PATCH v14 6/8] signal: define the SA_UNSUPPORTED bit in sa_flags
` [PATCH v14 7/8] signal: define the field siginfo.si_faultflags
` [PATCH v14 8/8] arm64: expose FAR_EL1 tag bits in siginfo

[PATCH] syscalls: Fix file comments for syscalls implemented in kernel/sys.c
 2020-11-12 21:56 UTC 

[PATCH v24 00/12] Landlock LSM
 2020-11-12 20:51 UTC  (13+ messages)
` [PATCH v24 01/12] landlock: Add object management
` [PATCH v24 02/12] landlock: Add ruleset and domain management
` [PATCH v24 03/12] landlock: Set up the security framework and manage credentials
` [PATCH v24 04/12] landlock: Add ptrace restrictions
` [PATCH v24 05/12] LSM: Infrastructure management of the superblock
` [PATCH v24 06/12] fs,security: Add sb_delete hook
` [PATCH v24 07/12] landlock: Support filesystem access-control
` [PATCH v24 08/12] landlock: Add syscall implementations
` [PATCH v24 09/12] arch: Wire up Landlock syscalls
` [PATCH v24 10/12] selftests/landlock: Add user space tests
` [PATCH v24 11/12] samples/landlock: Add a sandbox manager example
` [PATCH v24 12/12] landlock: Add user and kernel documentation

Corporate and Personal Loan *
 2020-11-11  8:29 UTC 

[RFC PATCH] docs: ABI: ABI documentation for procfs attribute files used by multiple LSMs
 2020-11-10 17:28 UTC 

[PATCH v15 00/26] Control-flow Enforcement: Shadow Stack
 2020-11-10 16:22 UTC  (27+ messages)
` [PATCH v15 01/26] Documentation/x86: Add CET description
` [PATCH v15 02/26] x86/cpufeatures: Add CET CPU feature flags for Control-flow Enforcement Technology (CET)
` [PATCH v15 03/26] x86/fpu/xstate: Introduce CET MSR XSAVES supervisor states
` [PATCH v15 04/26] x86/cet: Add control-protection fault handler
` [PATCH v15 05/26] x86/cet/shstk: Add Kconfig option for user-mode Shadow Stack
` [PATCH v15 06/26] x86/mm: Change _PAGE_DIRTY to _PAGE_DIRTY_HW
` [PATCH v15 07/26] x86/mm: Remove _PAGE_DIRTY_HW from kernel RO pages
` [PATCH v15 08/26] x86/mm: Introduce _PAGE_COW
` [PATCH v15 09/26] drm/i915/gvt: Change _PAGE_DIRTY to _PAGE_DIRTY_BITS
` [PATCH v15 10/26] x86/mm: Update pte_modify for _PAGE_COW
` [PATCH v15 11/26] x86/mm: Update ptep_set_wrprotect() and pmdp_set_wrprotect() for transition from _PAGE_DIRTY_HW to _PAGE_COW
` [PATCH v15 12/26] mm: Introduce VM_SHSTK for shadow stack memory
` [PATCH v15 13/26] x86/mm: Shadow Stack page fault error checking
` [PATCH v15 14/26] x86/mm: Update maybe_mkwrite() for shadow stack
` [PATCH v15 15/26] mm: Fixup places that call pte_mkwrite() directly
` [PATCH v15 16/26] mm: Add guard pages around a shadow stack
` [PATCH v15 17/26] mm/mmap: Add shadow stack pages to memory accounting
` [PATCH v15 18/26] mm: Update can_follow_write_pte() for shadow stack
` [PATCH v15 19/26] mm: Re-introduce vm_flags to do_mmap()
` [PATCH v15 20/26] x86/cet/shstk: User-mode shadow stack support
` [PATCH v15 21/26] x86/cet/shstk: Handle signals for shadow stack
` [PATCH v15 22/26] binfmt_elf: Define GNU_PROPERTY_X86_FEATURE_1_AND properties
` [PATCH v15 23/26] ELF: Introduce arch_setup_elf_property()
` [PATCH v15 24/26] x86/cet/shstk: Handle thread shadow stack
` [PATCH v15 25/26] x86/cet/shstk: Add arch_prctl functions for "
` [PATCH v15 26/26] mm: Introduce PROT_SHSTK "

[PATCH v15 0/7] Control-flow Enforcement: Indirect Branch Tracking
 2020-11-10 16:24 UTC  (8+ messages)
` [PATCH v15 1/7] x86/cet/ibt: Add Kconfig option for user-mode "
` [PATCH v15 2/7] x86/cet/ibt: User-mode Indirect Branch Tracking support
` [PATCH v15 3/7] x86/cet/ibt: Handle signals for Indirect Branch Tracking
` [PATCH v15 4/7] x86/cet/ibt: ELF header parsing "
` [PATCH v15 5/7] x86/cet/ibt: Update arch_prctl functions "
` [PATCH v15 6/7] x86/vdso/32: Add ENDBR32 to __kernel_vsyscall entry point
` [PATCH v15 7/7] x86/vdso: Insert endbr32/endbr64 to vDSO

[PATCH v23 00/12] Landlock LSM
 2020-11-10  8:16 UTC  (15+ messages)
` [PATCH v23 01/12] landlock: Add object management
` [PATCH v23 02/12] landlock: Add ruleset and domain management
` [PATCH v23 03/12] landlock: Set up the security framework and manage credentials
` [PATCH v23 04/12] landlock: Add ptrace restrictions
` [PATCH v23 05/12] LSM: Infrastructure management of the superblock
` [PATCH v23 06/12] fs,security: Add sb_delete hook
` [PATCH v23 07/12] landlock: Support filesystem access-control
` [PATCH v23 08/12] landlock: Add syscall implementations
` [PATCH v23 09/12] arch: Wire up Landlock syscalls
` [PATCH v23 10/12] selftests/landlock: Add user space tests
` [PATCH v23 11/12] samples/landlock: Add a sandbox manager example
` [PATCH v23 12/12] landlock: Add user and kernel documentation

[PATCH v22 12/23] LSM: Specify which LSM to display
 2020-11-09 22:47 UTC  (7+ messages)

[PATCH v6 0/6] mm: introduce memfd_secret system call to create "secret" memory areas
 2020-11-09 10:41 UTC  (13+ messages)

[PATCH v14 00/26] Control-flow Enforcement: Shadow Stack
 2020-11-06 20:14 UTC  (11+ messages)
` [PATCH v14 01/26] Documentation/x86: Add CET description
` [PATCH v14 02/26] x86/cpufeatures: Add CET CPU feature flags for Control-flow Enforcement Technology (CET)

UBSAN: array-index-out-of-bounds in alg_bind
 2020-11-06  7:01 UTC  (3+ messages)
` [PATCH] crypto: af_alg - avoid undefined behavior accessing salg_name

[RFC]: userspace memory reaping
 2020-11-05 18:02 UTC  (22+ messages)

[PATCH v22 12/23] LSM: Specify which LSM to display
 2020-11-05  0:49 UTC  (2+ messages)
` [PATCH v22 22/23] LSM: Add /proc attr entry for full LSM context

[PATCH v13 0/8] arm64: expose FAR_EL1 tag bits in siginfo
 2020-11-04 20:48 UTC  (26+ messages)
` [PATCH v13 1/8] parisc: Drop parisc special case for __sighandler_t
` [PATCH v13 2/8] parisc: start using signal-defs.h
` [PATCH v13 3/8] arch: move SA_* definitions to generic headers
` [PATCH v13 4/8] signal: clear non-uapi flag bits when passing/returning sa_flags
` [PATCH v13 5/8] signal: define the SA_UNSUPPORTED bit in sa_flags
` [PATCH v13 6/8] signal: deduplicate code dealing with common _sigfault fields
` [PATCH v13 7/8] signal: define the field siginfo.si_faultflags
` [PATCH v13 8/8] arm64: expose FAR_EL1 tag bits in siginfo

[PATCH v22 00/12] Landlock LSM
 2020-11-03 16:03 UTC  (4+ messages)
` [PATCH v22 07/12] landlock: Support filesystem access-control

[PATCH 00/34] fs: idmapped mounts
 2020-11-03 14:10 UTC  (5+ messages)

[PATCH v12 0/8] arm64: expose FAR_EL1 tag bits in siginfo
 2020-11-03 11:49 UTC  (9+ messages)
` [PATCH v12 7/8] signal: define the field siginfo.si_xflags
` [PATCH v12 8/8] arm64: expose FAR_EL1 tag bits in siginfo


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