linux-api.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-07-23 14:47:05 to 2025-08-08 14:01:51 UTC [more...]

[PATCH v3 00/30] Live Update Orchestrator
 2025-08-08 14:01 UTC  (41+ messages)
` [PATCH v3 01/30] kho: init new_physxa->phys_bits to fix lockdep
` [PATCH v3 02/30] kho: mm: Don't allow deferred struct page with KHO
` [PATCH v3 03/30] kho: warn if KHO is disabled due to an error
` [PATCH v3 04/30] kho: allow to drive kho from within kernel
` [PATCH v3 05/30] kho: make debugfs interface optional
` [PATCH v3 06/30] kho: drop notifiers
` [PATCH v3 07/30] kho: add interfaces to unpreserve folios and physical memory ranges
` [PATCH v3 08/30] kho: don't unpreserve memory during abort
` [PATCH v3 09/30] liveupdate: kho: move to kernel/liveupdate
` [PATCH v3 10/30] liveupdate: luo_core: luo_ioctl: Live Update Orchestrator
` [PATCH v3 11/30] liveupdate: luo_core: integrate with KHO
` [PATCH v3 12/30] liveupdate: luo_subsystems: add subsystem registration
` [PATCH v3 13/30] liveupdate: luo_subsystems: implement subsystem callbacks
` [PATCH v3 14/30] liveupdate: luo_files: add infrastructure for FDs
` [PATCH v3 15/30] liveupdate: luo_files: implement file systems callbacks
` [PATCH v3 16/30] liveupdate: luo_ioctl: add userpsace interface
` [PATCH v3 17/30] liveupdate: luo_files: luo_ioctl: Unregister all FDs on device close
` [PATCH v3 18/30] liveupdate: luo_files: luo_ioctl: Add ioctls for per-file state management
` [PATCH v3 19/30] liveupdate: luo_sysfs: add sysfs state monitoring
` [PATCH v3 20/30] reboot: call liveupdate_reboot() before kexec
` [PATCH v3 21/30] kho: move kho debugfs directory to liveupdate
` [PATCH v3 22/30] liveupdate: add selftests for subsystems un/registration
` [PATCH v3 23/30] selftests/liveupdate: add subsystem/state tests
` [PATCH v3 24/30] docs: add luo documentation
` [PATCH v3 25/30] MAINTAINERS: add liveupdate entry
` [PATCH v3 26/30] mm: shmem: use SHMEM_F_* flags instead of VM_* flags
` [PATCH v3 27/30] mm: shmem: allow freezing inode mapping
` [PATCH v3 28/30] mm: shmem: export some functions to internal.h
` [PATCH v3 29/30] luo: allow preserving memfd
` [PATCH v3 30/30] docs: add documentation for memfd preservation via LUO

[PATCH v2 00/11] man2: add man pages for 'new' mount API
 2025-08-08 14:00 UTC  (32+ messages)
` [PATCH v2 01/11] mount_setattr.2: document glibc >= 2.36 syscall wrappers
` [PATCH v2 02/11] mount_setattr.2: move mount_attr struct to mount_attr.2type
` [PATCH v2 03/11] fsopen.2: document 'new' mount api
` [PATCH v2 04/11] fspick.2: "
` [PATCH v2 05/11] fsconfig.2: "
` [PATCH v2 06/11] fsmount.2: "
` [PATCH v2 07/11] move_mount.2: "
` [PATCH v2 08/11] open_tree.2: "
` [PATCH v2 09/11] mount_setattr.2: mirror opening sentence from fsopen(2)
` [PATCH v2 10/11] open_tree_attr.2, open_tree.2: document new open_tree_attr() api
` [PATCH v2 11/11] fsconfig.2, mount_setattr.2: add note about attribute-parameter distinction

[PATCH v2 0/2] vfs: output mount_too_revealing() errors to fscontext
 2025-08-08 13:27 UTC  (7+ messages)
` [PATCH v2 1/2] fscontext: add custom-prefix log helpers
` [PATCH v2 2/2] vfs: output mount_too_revealing() errors to fscontext

[PATCH v4 0/2] man/man2/mremap.2: describe multiple mapping move, shrink
 2025-08-08 13:15 UTC  (4+ messages)
` [PATCH v4 1/2] man/man2/mremap.2: describe multiple mapping move
` [PATCH v4 2/2] man/man2/mremap.2: describe previously undocumented shrink behaviour

[PATCH v4 0/4] procfs: make reference pidns more user-visible
 2025-08-07  7:17 UTC  (13+ messages)
` [PATCH v4 1/4] pidns: move is-ancestor logic to helper
` [PATCH v4 2/4] procfs: add "pidns" mount option
` [PATCH v4 3/4] procfs: add PROCFS_GET_PID_NAMESPACE ioctl
` [PATCH v4 4/4] selftests/proc: add tests for new pidns APIs

[PATCH v2 00/32] Live Update Orchestrator
 2025-08-06 22:28 UTC  (57+ messages)
` [PATCH v2 01/32] kho: init new_physxa->phys_bits to fix lockdep
` [PATCH v2 02/32] kho: mm: Don't allow deferred struct page with KHO
` [PATCH v2 03/32] kho: warn if KHO is disabled due to an error
` [PATCH v2 04/32] kho: allow to drive kho from within kernel
` [PATCH v2 05/32] kho: make debugfs interface optional
` [PATCH v2 06/32] kho: drop notifiers
` [PATCH v2 07/32] kho: add interfaces to unpreserve folios and physical memory ranges
` [PATCH v2 08/32] kho: don't unpreserve memory during abort
` [PATCH v2 09/32] liveupdate: kho: move to kernel/liveupdate
` [PATCH v2 10/32] liveupdate: luo_core: Live Update Orchestrator
` [PATCH v2 11/32] liveupdate: luo_core: integrate with KHO
` [PATCH v2 12/32] liveupdate: luo_subsystems: add subsystem registration
` [PATCH v2 13/32] liveupdate: luo_subsystems: implement subsystem callbacks
` [PATCH v2 14/32] liveupdate: luo_files: add infrastructure for FDs
` [PATCH v2 15/32] liveupdate: luo_files: implement file systems callbacks
` [PATCH v2 16/32] liveupdate: luo_ioctl: add ioctl interface
` [PATCH v2 17/32] liveupdate: luo_sysfs: add sysfs state monitoring
` [PATCH v2 18/32] reboot: call liveupdate_reboot() before kexec
` [PATCH v2 19/32] liveupdate: luo_files: luo_ioctl: session-based file descriptor tracking
` [PATCH v2 20/32] kho: move kho debugfs directory to liveupdate
` [PATCH v2 21/32] liveupdate: add selftests for subsystems un/registration
` [PATCH v2 22/32] selftests/liveupdate: add subsystem/state tests
` [PATCH v2 23/32] docs: add luo documentation
` [PATCH v2 24/32] MAINTAINERS: add liveupdate entry
` [PATCH v2 25/32] mm: shmem: use SHMEM_F_* flags instead of VM_* flags
` [PATCH v2 26/32] mm: shmem: allow freezing inode mapping
` [PATCH v2 27/32] mm: shmem: export some functions to internal.h
` [PATCH v2 28/32] luo: allow preserving memfd
` [PATCH v2 29/32] docs: add documentation for memfd preservation via LUO
` [PATCH v2 30/32] tools: introduce libluo
` [PATCH v2 31/32] libluo: introduce luoctl
` [PATCH v2 32/32] libluo: add tests

[PATCH 0/2] vfs: output mount_too_revealing() errors to fscontext
 2025-08-06  6:06 UTC  (5+ messages)
` [PATCH 1/2] fscontext: add custom-prefix log helpers
` [PATCH 2/2] vfs: output mount_too_revealing() errors to fscontext

[PATCH 1/5] Add manpage for open_tree(2)
 2025-08-05 16:45 UTC  (3+ messages)

copy_file_range return value on FUSE
 2025-08-04 14:30 UTC  (3+ messages)
` [fuse-devel] "

[PATCH v3 0/2] man/man2/mremap.2: describe multiple mapping move, shrink
 2025-08-04 13:31 UTC  (8+ messages)
` [PATCH v3 1/2] man/man2/mremap.2: describe multiple mapping move
` [PATCH v3 2/2] man/man2/mremap.2: describe previously undocumented shrink behaviour

[RFC v3 1/4] kernel/api: introduce kernel API specification framework
 2025-08-01 13:53 UTC  (3+ messages)

[PATCH] sched/deadline: sched_getattr(...flags=1) returns the runtime left and abs deadline for DEADLINE tasks
 2025-08-01 12:53 UTC  (2+ messages)

[PATCH RFC v2 0/4] procfs: make reference pidns more user-visible
 2025-07-31 14:21 UTC  (12+ messages)
` [PATCH RFC v2 1/4] pidns: move is-ancestor logic to helper
` [PATCH RFC v2 2/4] procfs: add "pidns" mount option
` [PATCH RFC v2 3/4] procfs: add PROCFS_GET_PID_NAMESPACE ioctl

do_change_type(): refuse to operate on unmounted/not ours mounts
 2025-07-31  8:11 UTC  (6+ messages)

[PATCH v2 0/2] man/man2/mremap.2: describe multiple mapping move, shrink
 2025-07-29 12:09 UTC  (5+ messages)
` [PATCH v2 1/2] man/man2/mremap.2: describe multiple mapping move
` [PATCH v2 2/2] man/man2/mremap.2: describe previous undocumented shrink behaviour

[PATCH] man/man2/mremap.2: describe multiple mapping move, shrink
 2025-07-28  4:34 UTC  (3+ messages)

[PATCH v3 09/10] mm/mremap: permit mremap() move of multiple VMAs
 2025-07-25 19:59 UTC  (4+ messages)

[PATCH v3 0/4] procfs: make reference pidns more user-visible
 2025-07-24  8:32 UTC  (5+ messages)
` [PATCH v3 1/4] pidns: move is-ancestor logic to helper
` [PATCH v3 2/4] procfs: add "pidns" mount option
` [PATCH v3 3/4] procfs: add PROCFS_GET_PID_NAMESPACE ioctl
` [PATCH v3 4/4] selftests/proc: add tests for new pidns APIs

[PATCH RFC 0/4] procfs: make reference pidns more user-visible
 2025-07-23 23:55 UTC  (4+ messages)


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