linux-api.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-06-14 12:55:10 to 2019-06-21 09:37:50 UTC [more...]

[PATCH v3 1/2] fork: add clone3
 2019-06-21  9:37 UTC  (5+ messages)
` [PATCH v3 2/2] arch: wire-up clone3() syscall

[PATCH V31 00/25] Add support for kernel lockdown
 2019-06-21  6:43 UTC  (5+ messages)
` [PATCH V31 06/25] kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and KEXEC_SIG_FORCE
` [PATCH V31 07/25] kexec_file: Restrict at runtime if the kernel is locked down

[PATCH V33 00/30] Lockdown as an LSM
 2019-06-21  5:23 UTC  (38+ messages)
` [PATCH V33 01/30] security: Support early LSMs
` [PATCH V33 02/30] security: Add a "locked down" LSM hook
` [PATCH V33 03/30] security: Add a static lockdown policy LSM
` [PATCH V33 04/30] Enforce module signatures if the kernel is locked down
` [PATCH V33 05/30] Restrict /dev/{mem,kmem,port} when "
` [PATCH V33 06/30] kexec_load: Disable at runtime if "
` [PATCH V33 07/30] Copy secure_boot flag in boot params across kexec reboot
  ` [PATCH V33 08/30] kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and KEXEC_SIG_FORCE
  ` [PATCH V33 09/30] kexec_file: Restrict at runtime if the kernel is locked down
` [PATCH V33 10/30] hibernate: Disable when "
` [PATCH V33 11/30] uswsusp: "
` [PATCH V33 12/30] PCI: Lock down BAR access "
` [PATCH V33 13/30] x86: Lock down IO port "
` [PATCH V33 14/30] x86/msr: Restrict MSR "
` [PATCH V33 15/30] ACPI: Limit access to custom_method "
` [PATCH V33 16/30] acpi: Ignore acpi_rsdp kernel param when the kernel has been "
` [PATCH V33 17/30] acpi: Disable ACPI table override if the kernel is "
` [PATCH V33 18/30] Prohibit PCMCIA CIS storage when "
` [PATCH V33 19/30] Lock down TIOCSSERIAL
` [PATCH V33 20/30] Lock down module params that specify hardware parameters (eg. ioport)
` [PATCH V33 21/30] x86/mmiotrace: Lock down the testmmiotrace module
` [PATCH V33 22/30] Lock down /proc/kcore
` [PATCH V33 23/30] Lock down tracing and perf kprobes when in confidentiality mode
` [PATCH V33 24/30] bpf: Restrict bpf when kernel lockdown is "
` [PATCH V33 25/30] Lock down perf when "
` [PATCH V33 26/30] kexec: Allow kexec_file() with appropriate IMA policy when locked down
` [PATCH V33 27/30] lockdown: Print current->comm in restriction messages
` [PATCH V33 28/30] debugfs: Restrict debugfs when the kernel is locked down
` [PATCH V33 29/30] tracefs: Restrict tracefs "
` [PATCH V33 30/30] efi: Restrict efivar_ssdt_load "

[PATCH v5 00/16] fs-verity: read-only file-based authenticity protection
 2019-06-21  3:17 UTC  (19+ messages)
` [PATCH v5 01/16] fs-verity: add a documentation file
` [PATCH v5 02/16] fs-verity: add MAINTAINERS file entry
` [PATCH v5 03/16] fs-verity: add UAPI header
` [PATCH v5 04/16] fs: uapi: define verity bit for FS_IOC_GETFLAGS
` [PATCH v5 05/16] fs-verity: add Kconfig and the helper functions for hashing
` [PATCH v5 06/16] fs-verity: add inode and superblock fields
` [PATCH v5 07/16] fs-verity: add the hook for file ->open()
` [PATCH v5 08/16] fs-verity: add the hook for file ->setattr()
` [PATCH v5 09/16] fs-verity: add data verification hooks for ->readpages()
` [PATCH v5 10/16] fs-verity: implement FS_IOC_ENABLE_VERITY ioctl
` [PATCH v5 11/16] fs-verity: implement FS_IOC_MEASURE_VERITY ioctl
` [PATCH v5 12/16] fs-verity: add SHA-512 support
` [PATCH v5 13/16] fs-verity: support builtin file signatures
` [PATCH v5 14/16] ext4: add basic fs-verity support
` [PATCH v5 15/16] ext4: add fs-verity read support
` [PATCH v5 16/16] f2fs: add fs-verity support

[PATCH v1 0/4] Introduce MADV_COLD and MADV_PAGEOUT
 2019-06-20 15:57 UTC  (9+ messages)
` [PATCH v1 1/4] mm: introduce MADV_COLD

[PATCH] samples: make pidfd-metadata fail gracefully on older kernels
 2019-06-20 11:10 UTC  (2+ messages)

[PATCH v2 0/5] Introduce MADV_COLD and MADV_PAGEOUT
 2019-06-20 10:55 UTC  (18+ messages)
` [PATCH v2 1/5] mm: introduce MADV_COLD
` [PATCH v2 2/5] mm: change PAGEREF_RECLAIM_CLEAN with PAGE_REFRECLAIM
` [PATCH v2 4/5] mm: introduce MADV_PAGEOUT

[PATCH 01/13] vfs: verify param type in vfs_parse_sb_flag()
 2019-06-20  4:40 UTC  (14+ messages)
` [PATCH 02/13] vfs: move vfs_parse_sb_flag() calls into filesystems
` [PATCH 03/13] vfs: don't parse forbidden flags
` [PATCH 04/13] vfs: don't parse "posixacl" option
` [PATCH 05/13] vfs: don't parse "silent" option
` [PATCH 06/13] vfs: new helper: vfs_parse_ro_rw()
` [PATCH 07/13] proc: don't ignore options
` [PATCH 08/13] sysfs: "
` [PATCH 09/13] mqueue: "
` [PATCH 10/13] cpuset: "
` [PATCH 11/13] cgroup: "
` [PATCH 12/13] fusectl: "
` [PATCH 13/13] resctrl: "

[PATCH v4 00/16] fs-verity: read-only file-based authenticity protection
 2019-06-19 19:13 UTC  (37+ messages)
` [PATCH v4 01/16] fs-verity: add a documentation file
` [PATCH v4 02/16] fs-verity: add MAINTAINERS file entry
` [PATCH v4 04/16] fs: uapi: define verity bit for FS_IOC_GETFLAGS
` [PATCH v4 05/16] fs-verity: add Kconfig and the helper functions for hashing
` [PATCH v4 06/16] fs-verity: add inode and superblock fields
` [PATCH v4 07/16] fs-verity: add the hook for file ->open()
` [PATCH v4 08/16] fs-verity: add the hook for file ->setattr()
` [PATCH v4 09/16] fs-verity: add data verification hooks for ->readpages()
` [PATCH v4 10/16] fs-verity: implement FS_IOC_ENABLE_VERITY ioctl
` [PATCH v4 11/16] fs-verity: implement FS_IOC_MEASURE_VERITY ioctl
` [PATCH v4 12/16] fs-verity: add SHA-512 support
` [PATCH v4 13/16] fs-verity: support builtin file signatures
` [PATCH v4 14/16] ext4: add basic fs-verity support

[PATCH v2 05/13] vfs: don't parse "silent" option
 2019-06-19 12:54 UTC 

[PATCH 09/25] vfs: Allow mount information to be queried by fsinfo() [ver #13]
 2019-06-19  6:33 UTC  (12+ messages)
` [PATCH 00/25] VFS: Introduce filesystem information query syscall "
  ` [PATCH 01/25] vfs: syscall: Add fsinfo() to query filesystem information "
  ` [PATCH 04/25] vfs: Implement parameter value retrieval with fsinfo() "
  ` [PATCH 25/25] fsinfo: Add API documentation "

[PATCH ghak90 V6 02/10] audit: add container id
 2019-06-18 22:46 UTC  (6+ messages)

[PATCH] mm, memcg: Report number of memcg caches in slabinfo
 2019-06-18 19:27 UTC  (6+ messages)

[PATCH v7 00/27] Control-flow Enforcement: Shadow Stack
 2019-06-18 16:50 UTC  (23+ messages)
` [PATCH v7 22/27] binfmt_elf: Extract .note.gnu.property from an ELF file

[PATCH] uapi: avoid namespace conflict in linux/posix_types.h
 2019-06-18  7:44 UTC  (14+ messages)

[PATCH 1/7] General notification queue with user mmap()'able ring buffer
 2019-06-17 16:24 UTC  (11+ messages)
` [RFC][PATCH 0/7] Mount, FS, Block and Keyrings notifications

[RFC PATCH 1/1] Revert "rseq/selftests: arm: use udf instruction for RSEQ_SIG"
 2019-06-17 15:23 UTC 

[PATCHv4 00/28] kernel: Introduce Time Namespace
 2019-06-16 17:51 UTC  (26+ messages)
` [PATCHv4 02/28] timens: Add timens_offsets
` [PATCHv4 03/28] posix-clocks: add another call back to return clock time in ktime_t
` [PATCHv4 06/28] timerfd/timens: Take into account ns clock offsets
` [PATCHv4 07/28] posix-timers/timens: Take into account "
` [PATCHv4 08/28] timens/kernel: Take into account timens clock offsets in clock_nanosleep
` [PATCHv4 09/28] timens: Shift /proc/uptime
` [PATCHv4 15/28] x86/vdso: Add offsets page in vvar
` [PATCHv4 17/28] x86/vdso: Switch image on setns()/unshare()/clone()
` [PATCHv4 26/28] x86/vdso: Align VDSO functions by CPU L1 cache line

[PATCH NOTFORMERGE 0/5] Extend remote madvise API to KSM hints
 2019-06-16  8:58 UTC  (6+ messages)
` [PATCH NOTFORMERGE 1/5] mm: rename madvise_core to madvise_common
` [PATCH NOTFORMERGE 2/5] mm: revert madvise_inject_error line split
` [PATCH NOTFORMERGE 3/5] mm: include uio.h to madvise.c
` [PATCH NOTFORMERGE 4/5] mm/madvise: employ mmget_still_valid for write lock
` [PATCH NOTFORMERGE 5/5] mm/madvise: allow KSM hints for remote API

[PATCH v7 00/14] Control-flow Enforcement: Branch Tracking, PTRACE
 2019-06-15 15:30 UTC  (26+ messages)
` [PATCH v7 03/14] x86/cet/ibt: Add IBT legacy code bitmap setup function

[PATCH glibc 1/5] glibc: Perform rseq(2) registration at C startup and thread creation (v11)
 2019-06-14 15:23 UTC  (2+ messages)
` [PATCH glibc 2/5] glibc: sched_getcpu(): use rseq cpu_id TLS on Linux (v5)

[PATCH 1/5] glibc: Perform rseq(2) registration at C startup and thread creation (v10)
 2019-06-14 13:59 UTC  (19+ messages)

[PATCH 25/25] fsinfo: Add API documentation [ver #13]
 2019-06-05 12:21 UTC 

[PATCH 01/25] vfs: syscall: Add fsinfo() to query filesystem information [ver #13]
 2019-05-29  7:42 UTC 


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