Kexec Archive on lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2026-07-25 14:15:16 to 2026-08-01 12:32:25 UTC [more...]

[Hypervisor Live Update] Notes from July 27, 2026
 2026-08-01 12:32 UTC 

[PATCH v6 00/22] kho: make boot time huge page allocation work nicely with KHO
 2026-08-01  8:48 UTC  (23+ messages)
` [PATCH v6 01/22] kho: generalize radix tree APIs
` [PATCH v6 02/22] kho: make radix max key width more obvious
` [PATCH v6 03/22] kho: disallow wide keys in radix tree
` [PATCH v6 04/22] kho: return virtual address of mem_map from kho_get_mem_map()
` [PATCH v6 05/22] kho: store incoming radix tree in kho_in
` [PATCH v6 06/22] kho: move all memory retrieval logic to kho_mem_retrieve()
` [PATCH v6 07/22] kho: add a struct for radix callbacks
` [PATCH v6 08/22] kho: add callback for table pages
` [PATCH v6 09/22] kho: add data argument to radix walk callback
` [PATCH v6 10/22] kho: allow early-boot usage of the KHO radix tree
` [PATCH v6 11/22] kho: allow destroying "
` [PATCH v6 12/22] kho: add kho_radix_init_tree()
` [PATCH v6 13/22] kho: expose kho_scratch_overlap() to kexec_handover.h
` [PATCH v6 14/22] kho: initialize kho_scratch pointer earlier in boot
` [PATCH v6 15/22] kho: initialize preserved memory map radix tree earlier
` [PATCH v6 16/22] mm/mm_init: simplify deferred_free_pages() migratetype init
` [PATCH v6 17/22] mm/mm_init: don't rely on memblock to get KHO scratch migratetype
` [PATCH v6 18/22] kho: extend scratch
` [PATCH v6 19/22] memblock: always include KHO headers
` [PATCH v6 20/22] memblock: make HugeTLB bootmem allocation work with KHO
` [PATCH v6 21/22] memblock: add memblock_reserved_hugetlb_size()
` [PATCH v6 22/22] kho: exclude hugetlb memory from scratch size calculation

[PATCH RFC 14/14] mm/page-flags: remove PG_private
 2026-08-01  2:13 UTC 

[RFC PATCH 0/2] Add support for multiple versions to KHO
 2026-07-31 21:52 UTC  (5+ messages)
` [RFC PATCH 1/4] kho: Move subtree blob logic to separate function
` [RFC PATCH 2/4] kho: Add support for multiple versions in subtrees
` [RFC PATCH 3/4] kho: Add support for multiple versions to debugfs
` [RFC PATCH 4/4] kho: Add test cases for versioned subtrees

[PATCH v2] kexec: keep the next kernel off hardware-poisoned pages
 2026-07-31 18:11 UTC  (4+ messages)

[PATCH 0/4] CRASH_ZEROIZE: Wipe secrets before kdump
 2026-07-31 16:27 UTC  (5+ messages)
` [PATCH 1/4] of/kexec: fix typo in comment (usable-memory-range)
` [PATCH 2/4] kexec: add CRASH_ZEROIZE to wipe secrets before kdump
` [PATCH 3/4] mm/secretmem: zeroize secret pages "
` [PATCH 4/4] security/keys: zeroize key payloads "

[PATCH kexec-tools] util_lib/elf_info: stream lockless printk ring records
 2026-07-31 13:15 UTC  (3+ messages)

[RFC] proposal: KVM: Orphaned VMs: The Caretaker approach for Live Update
 2026-07-30 22:46 UTC  (2+ messages)

[PATCH v4 00/11] liveupdate: kvm: Guest_memfd preservation
 2026-07-30 18:18 UTC  (18+ messages)
` [PATCH v4 01/11] liveupdate: Add LIVEUPDATE_GUEST_MEMFD config option
` [PATCH v4 02/11] KVM: Introduce kvm_create_vm_file() helper
` [PATCH v4 03/11] KVM: Export kvm_uevent_notify_vm_create()
` [PATCH v4 04/11] KVM: Track weak reference to vm_file in struct kvm
` [PATCH v4 05/11] KVM: LUO: Support VM preservation across live updates
` [PATCH v4 06/11] KVM: guest_memfd: Move internal definitions to internal header
` [PATCH v4 07/11] KVM: guest_memfd: Add support for freezing mappings
` [PATCH v4 08/11] KVM: guest_memfd: Add support for preservation via LUO
` [PATCH v4 09/11] docs: liveupdate: Add documentation for VM and guest_memfd preservation
` [PATCH v4 10/11] KVM: selftests: Split ____vm_create() and add vm_create_from_fd()
` [PATCH v4 11/11] KVM: selftests: Add guest_memfd_preservation_test

[PATCH v2 0/3] mm,kernfs,proc: Unmap mmaps of removed files via file->f_mapping
 2026-07-30 17:37 UTC  (10+ messages)
` [PATCH v2 1/3] mm: Add unmap_mapping_file() helper
` [PATCH v2 2/3] kernfs: Unmap mmaps of removed files via file->f_mapping
` [PATCH v2 3/3] proc: "

[PATCH v5 0/4] arm64: cross-CPU NMI via SDEI
 2026-07-30 15:50 UTC  (8+ messages)

[PATCH v3 0/2] kho: support preserving high-order non-compound pages
 2026-07-30 12:05 UTC  (4+ messages)
` [PATCH v3 2/2] kho: Introduce preserve/restore APIs for high-order pages

[PATCH v5 00/22] kho: make boot time huge page allocation work nicely with KHO
 2026-07-30 11:53 UTC  (29+ messages)
` [PATCH v5 01/22] kho: generalize radix tree APIs
` [PATCH v5 02/22] kho: make radix max key width more obvious
` [PATCH v5 03/22] kho: disallow wide keys in radix tree
` [PATCH v5 04/22] kho: return virtual address of mem_map from kho_get_mem_map()
` [PATCH v5 05/22] kho: store incoming radix tree in kho_in
` [PATCH v5 06/22] kho: move all memory retrieval logic to kho_mem_retrieve()
` [PATCH v5 07/22] kho: add a struct for radix callbacks
` [PATCH v5 08/22] kho: add callback for table pages
` [PATCH v5 09/22] kho: add data argument to radix walk callback
` [PATCH v5 10/22] kho: allow early-boot usage of the KHO radix tree
` [PATCH v5 11/22] kho: allow destroying "
` [PATCH v5 12/22] kho: add kho_radix_init_tree()
` [PATCH v5 13/22] kho: expose kho_scratch_overlap() to kexec_handover.h
` [PATCH v5 14/22] kho: initialize kho_scratch pointer earlier in boot
` [PATCH v5 15/22] kho: initialize preserved memory map radix tree earlier
` [PATCH v5 16/22] mm/mm_init: simplify deferred_free_pages() migratetype init
` [PATCH v5 17/22] mm/mm_init: don't rely on memblock to get KHO scratch migratetype
` [PATCH v5 18/22] kho: extend scratch
` [PATCH v5 19/22] memblock: always include KHO headers
` [PATCH v5 20/22] memblock: make HugeTLB bootmem allocation work with KHO
` [PATCH v5 21/22] memblock: add memblock_reserved_hugetlb_size()
` [PATCH v5 22/22] kho: exclude hugetlb memory from scratch size calculation

[liveupdate:fixes] BUILD SUCCESS 3a0b8fa2eb36afc88b62a95f33f0c77c71fa5ded
 2026-07-30  0:12 UTC 

[liveupdate:next] BUILD SUCCESS 5d2f217b8c3cd1edb89b75f835ed41ae3bf8cb37
 2026-07-29 23:42 UTC 

[PATCH] kexec: keep the next kernel off hardware-poisoned pages
 2026-07-29 16:47 UTC  (5+ messages)

[PATCH v4 00/21] kho: make boot time huge page allocation work nicely with KHO
 2026-07-29 14:20 UTC  (32+ messages)
` [PATCH v4 01/21] kho: generalize radix tree APIs
` [PATCH v4 02/21] kho: make radix max key width more obvious
` [PATCH v4 03/21] kho: disallow wide keys in radix tree
` [PATCH v4 04/21] kho: return virtual address of mem_map from kho_get_mem_map()
` [PATCH v4 05/21] kho: store incoming radix tree in kho_in
` [PATCH v4 06/21] kho: move all memory retrieval logic to kho_mem_retrieve()
` [PATCH v4 07/21] kho: add a struct for radix callbacks
` [PATCH v4 08/21] kho: add callback for table pages
` [PATCH v4 09/21] kho: add data argument to radix walk callback
` [PATCH v4 10/21] kho: allow early-boot usage of the KHO radix tree
` [PATCH v4 11/21] kho: allow destroying "
` [PATCH v4 12/21] kho: add kho_radix_init_tree()
` [PATCH v4 13/21] kho: expose kho_scratch_overlap() to kexec_handover.h
` [PATCH v4 14/21] kho: initialize kho_scratch pointer earlier in boot
` [PATCH v4 15/21] kho: initialize preserved memory map radix tree earlier
` [PATCH v4 16/21] mm/mm_init: simplify deferred_free_pages() migratetype init
` [PATCH v4 17/21] mm/mm_init: don't rely on memblock to get KHO scratch migratetype
` [PATCH v4 18/21] kho: extend scratch
` [PATCH v4 19/21] memblock: make HugeTLB bootmem allocation work with KHO
` [PATCH v4 20/21] memblock: add memblock_reserved_hugetlb_size()
` [PATCH v4 21/21] kho: exclude hugetlb memory from scratch size calculation

[PATCH] kho: fix size calculation in kho_preserved_memory_reserve()
 2026-07-29  6:43 UTC  (2+ messages)

[PATCH v3 00/10] Bug fixes and enhancements for kdump LUKS support
 2026-07-29  3:36 UTC  (11+ messages)
` [PATCH v3 01/10] crash_dump: release keyring reference at the correct time
` [PATCH v3 02/10] crash_dump: Fix potential double free and UAF of keys_header
` [PATCH v3 03/10] crash_dump: Disallow writing to dm-crypt configfs during kexec_file_load syscall
` [PATCH v3 04/10] crash_dump: Read the number of dm-crypt keys from reserved memory
` [PATCH v3 05/10] crash_dump: Free temporary dm-crypt keys_header buffer in kdump kernel
` [PATCH v3 06/10] crash_dump: Only use kexec_dprintk during the kexec_file_load syscall
` [PATCH v3 07/10] crash_dump: Improve readability of config_keys_restore_store
` [PATCH v3 08/10] crash_dump: Check the function return codes in restore_dm_crypt_keys_to_thread_keyring
` [PATCH v3 09/10] crash_dump: Disallow configfs/crash_dm_crypt_key/reuse if crash hotplug supported
` [PATCH v3 10/10] Documentation: kdump: Add arm64 and ppc64le to encrypted dump target support list

[PATCH v2 0/5] arm64: crash: Add crash hotplug support
 2026-07-29  3:12 UTC  (6+ messages)
` [PATCH v2 1/5] kexec: Extract kexec_free_segment_cma() from kimage_free_cma()
` [PATCH v2 2/5] arm64: kexec_file: Fix CMA page leaks in segment placement retry loops
` [PATCH v2 3/5] arm64: kexec_file: Fix image->elf_headers memory leak in retry loop
` [PATCH v2 4/5] arm64: kexec_file: Simplify load_other_segments()
` [PATCH v2 5/5] arm64: crash: Add crash hotplug support

[PATCH v8 00/12] PCI: liveupdate: PCI core support for Live Update
 2026-07-28 22:10 UTC  (13+ messages)
` [PATCH v8 01/12] PCI: liveupdate: Set up FLB handler for the PCI core
` [PATCH v8 02/12] PCI: liveupdate: Track outgoing preserved PCI devices
` [PATCH v8 03/12] PCI: liveupdate: Track incoming "
` [PATCH v8 04/12] PCI: liveupdate: Document driver binding responsibilities
` [PATCH v8 05/12] PCI: liveupdate: Preserve bus numbers during Live Update
` [PATCH v8 06/12] PCI: liveupdate: Auto-preserve upstream bridges across "
` [PATCH v8 07/12] PCI: Refactor matching logic for pci_dev_acs_ops
` [PATCH v8 08/12] PCI: liveupdate: Adopt ACS controls in incoming preserved devices
` [PATCH v8 09/12] PCI: liveupdate: Adopt ARI Forwarding Enable on preserved bridges
` [PATCH v8 10/12] PCI: liveupdate: Freeze preservation status during shutdown
` [PATCH v8 11/12] PCI: liveupdate: Do not disable bus mastering on preserved devices during kexec
` [PATCH v8 12/12] Documentation: PCI: Add documentation for Live Update

[liveupdate:fixes] BUILD SUCCESS 5c4a03afcb21783987ffc64562b76ddd5a21b12b
 2026-07-28 10:25 UTC 

[PATCH v4 00/10] kdump: reduce vmcore size and capture time
 2026-07-28  6:45 UTC  (3+ messages)

[PATCH v5 00/20] vfio/pci: Base Live Update support for VFIO
 2026-07-28  5:34 UTC  (4+ messages)
` [PATCH v5 17/20] vfio: selftests: Add vfio_pci_liveupdate_kexec_test

[liveupdate:kho-scratch] BUILD SUCCESS eb7145b5cb2a5e981860eaf80ae4417a9666c301
 2026-07-28  5:09 UTC 

[liveupdate:next] BUILD SUCCESS 27b5546ec548d8f1bd50e8c9737ec77aba100ace
 2026-07-28  4:38 UTC 

[PATCH v7 09/12] PCI: liveupdate: Inherit ARI Forwarding Enable on preserved bridges
 2026-07-27 23:22 UTC  (3+ messages)

[PATCH v7 08/12] PCI: liveupdate: Inherit ACS flags in incoming preserved devices
 2026-07-27 23:11 UTC  (3+ messages)

[PATCH v7 01/12] PCI: liveupdate: Set up FLB handler for the PCI core
 2026-07-27 20:06 UTC  (5+ messages)

[PATCH v7 00/12] PCI: liveupdate: PCI core support for Live Update
 2026-07-27 17:52 UTC  (2+ messages)

[liveupdate:selftests-lib] BUILD SUCCESS ccf287a39bd1288f534cf531f6bd4e57dbc716b7
 2026-07-27 16:41 UTC 

[PATCH RFC 0/3] efi: mm/memory-failure: keep hardware-poisoned pages out of the next kexec
 2026-07-27 13:22 UTC  (3+ messages)

[PATCH 0/8] arm64: crash: Add crash hotplug support
 2026-07-27  1:32 UTC  (3+ messages)

[PATCH v2 0/1] liveupdate: Add internal APIs for file preservation
 2026-07-26  8:38 UTC  (2+ messages)

[PATCH v3 00/21] kho: make boot time huge page allocation work nicely with KHO
 2026-07-25 15:56 UTC  (4+ messages)
` [PATCH v3 17/21] mm/mm_init: don't rely on memblock to get KHO scratch migratetype

[liveupdate:fixes] BUILD SUCCESS b44889cbaada8acedf68c75e5eb2d095b30e508c
 2026-07-25 14:14 UTC 


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