<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>0349ff2887059112ce06831ab29aec47a2a7285a - kho: add support for linked-block serialization</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/liveupdate/Makefile#0349ff2887059112ce06831ab29aec47a2a7285a</link>
        <description>kho: add support for linked-block serializationIntroduce a linked-block serialization mechanism for state handover.Previously, LUO used contiguous memory blocks for serializing sessionsand files, which imposed limits on the total number of items that couldbe preserved across a live update.This commit adds the infrastructure for a more flexible, block-basedapproach where serialized data is stored in a chain of linked blocks.This is a generic KHO serialization block infrastructure that can beused by multiple subsystems.Signed-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Link: https://patch.msgid.link/20260603154402.468928-8-pasha.tatashin@soleen.comSigned-off-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;

            List of files:
            /linux/kernel/liveupdate/Makefile</description>
        <pubDate>Wed, 03 Jun 2026 17:43:56 +0200</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
<item>
        <title>cab056f2aae7250af50e503b81a80dfc567a1acd - liveupdate: luo_flb: introduce File-Lifecycle-Bound global state</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/liveupdate/Makefile#cab056f2aae7250af50e503b81a80dfc567a1acd</link>
        <description>liveupdate: luo_flb: introduce File-Lifecycle-Bound global stateIntroduce a mechanism for managing global kernel state whose lifecycle istied to the preservation of one or more files.  This is necessary forsubsystems where multiple preserved file descriptors depend on a single,shared underlying resource.An example is HugeTLB, where multiple file descriptors such as memfd andguest_memfd may rely on the state of a single HugeTLB subsystem. Preserving this state for each individual file would be redundant andincorrect.  The state should be preserved only once when the first file ispreserved, and restored/finished only once the last file is handled.This patch introduces File-Lifecycle-Bound (FLB) objects to solve thisproblem.  An FLB is a global, reference-counted object with a defined setof operations:- A file handler (struct liveupdate_file_handler) declares a dependency  on one or more FLBs via a new registration function,  liveupdate_register_flb().- When the first file depending on an FLB is preserved, the FLB&apos;s  .preserve() callback is invoked to save the shared global state. The  reference count is then incremented for each subsequent file.- Conversely, when the last file is unpreserved (before reboot) or  finished (after reboot), the FLB&apos;s .unpreserve() or .finish() callback  is invoked to clean up the global resource.The implementation includes:- A new set of ABI definitions (luo_flb_ser, luo_flb_head_ser) and a  corresponding FDT node (luo-flb) to serialize the state of all active  FLBs and pass them via Kexec Handover.- Core logic in luo_flb.c to manage FLB registration, reference  counting, and the invocation of lifecycle callbacks.- An API (liveupdate_flb_get/_incoming/_outgoing) for other kernel  subsystems to safely access the live object managed by an FLB, both  before and after the live update.This framework provides the necessary infrastructure for more complexsubsystems like IOMMU, VFIO, and KVM to integrate with the Live UpdateOrchestrator.Link: https://lkml.kernel.org/r/20251218155752.3045808-5-pasha.tatashin@soleen.comSigned-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Cc: Alexander Graf &lt;graf@amazon.com&gt;Cc: David Gow &lt;davidgow@google.com&gt;Cc: David Matlack &lt;dmatlack@google.com&gt;Cc: David Rientjes &lt;rientjes@google.com&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Kees Cook &lt;kees@kernel.org&gt;Cc: Mike Rapoport &lt;rppt@kernel.org&gt;Cc: Petr Mladek &lt;pmladek@suse.com&gt;Cc: Pratyush Yadav &lt;pratyush@kernel.org&gt;Cc: Samiullah Khawaja &lt;skhawaja@google.com&gt;Cc: Tamir Duberstein &lt;tamird@gmail.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/kernel/liveupdate/Makefile</description>
        <pubDate>Thu, 18 Dec 2025 16:57:51 +0100</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
<item>
        <title>7c722a7f44e0c1f9714084152226bc7bd644b7e3 - liveupdate: luo_file: implement file systems callbacks</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/liveupdate/Makefile#7c722a7f44e0c1f9714084152226bc7bd644b7e3</link>
        <description>liveupdate: luo_file: implement file systems callbacksThis patch implements the core mechanism for managing preserved filesthroughout the live update lifecycle.  It provides the logic to invoke thefile handler callbacks (preserve, unpreserve, freeze, unfreeze, retrieve,and finish) at the appropriate stages.During the reboot phase, luo_file_freeze() serializes the final metadatafor each file (handler compatible string, token, and data handle) into amemory region preserved by KHO.  In the new kernel, luo_file_deserialize()reconstructs the in-memory file list from this data, preparing the sessionfor retrieval.Link: https://lkml.kernel.org/r/20251125165850.3389713-7-pasha.tatashin@soleen.comSigned-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Reviewed-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Reviewed-by: Pratyush Yadav &lt;pratyush@kernel.org&gt;Tested-by: David Matlack &lt;dmatlack@google.com&gt;Cc: Aleksander Lobakin &lt;aleksander.lobakin@intel.com&gt;Cc: Alexander Graf &lt;graf@amazon.com&gt;Cc: Alice Ryhl &lt;aliceryhl@google.com&gt;Cc: Andriy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Cc: anish kumar &lt;yesanishhere@gmail.com&gt;Cc: Anna Schumaker &lt;anna.schumaker@oracle.com&gt;Cc: Bartosz Golaszewski &lt;bartosz.golaszewski@linaro.org&gt;Cc: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Cc: Borislav Betkov &lt;bp@alien8.de&gt;Cc: Chanwoo Choi &lt;cw00.choi@samsung.com&gt;Cc: Chen Ridong &lt;chenridong@huawei.com&gt;Cc: Chris Li &lt;chrisl@kernel.org&gt;Cc: Christian Brauner &lt;brauner@kernel.org&gt;Cc: Daniel Wagner &lt;wagi@kernel.org&gt;Cc: Danilo Krummrich &lt;dakr@kernel.org&gt;Cc: Dan Williams &lt;dan.j.williams@intel.com&gt;Cc: David Hildenbrand &lt;david@redhat.com&gt;Cc: David Jeffery &lt;djeffery@redhat.com&gt;Cc: David Rientjes &lt;rientjes@google.com&gt;Cc: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Cc: Guixin Liu &lt;kanie@linux.alibaba.com&gt;Cc: &quot;H. Peter Anvin&quot; &lt;hpa@zytor.com&gt;Cc: Hugh Dickins &lt;hughd@google.com&gt;Cc: Ilpo J&#228;rvinen &lt;ilpo.jarvinen@linux.intel.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Ira Weiny &lt;ira.weiny@intel.com&gt;Cc: Jann Horn &lt;jannh@google.com&gt;Cc: Jason Gunthorpe &lt;jgg@nvidia.com&gt;Cc: Jens Axboe &lt;axboe@kernel.dk&gt;Cc: Joanthan Cameron &lt;Jonathan.Cameron@huawei.com&gt;Cc: Joel Granados &lt;joel.granados@kernel.org&gt;Cc: Johannes Weiner &lt;hannes@cmpxchg.org&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Lennart Poettering &lt;lennart@poettering.net&gt;Cc: Leon Romanovsky &lt;leon@kernel.org&gt;Cc: Leon Romanovsky &lt;leonro@nvidia.com&gt;Cc: Lukas Wunner &lt;lukas@wunner.de&gt;Cc: Marc Rutland &lt;mark.rutland@arm.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Matthew Maurer &lt;mmaurer@google.com&gt;Cc: Miguel Ojeda &lt;ojeda@kernel.org&gt;Cc: Myugnjoo Ham &lt;myungjoo.ham@samsung.com&gt;Cc: Parav Pandit &lt;parav@nvidia.com&gt;Cc: Pratyush Yadav &lt;ptyadav@amazon.de&gt;Cc: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Roman Gushchin &lt;roman.gushchin@linux.dev&gt;Cc: Saeed Mahameed &lt;saeedm@nvidia.com&gt;Cc: Samiullah Khawaja &lt;skhawaja@google.com&gt;Cc: Song Liu &lt;song@kernel.org&gt;Cc: Steven Rostedt &lt;rostedt@goodmis.org&gt;Cc: Stuart Hayes &lt;stuart.w.hayes@gmail.com&gt;Cc: Tejun Heo &lt;tj@kernel.org&gt;Cc: Thomas Gleinxer &lt;tglx@linutronix.de&gt;Cc: Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;Cc: Vincent Guittot &lt;vincent.guittot@linaro.org&gt;Cc: William Tu &lt;witu@nvidia.com&gt;Cc: Yoann Congal &lt;yoann.congal@smile.fr&gt;Cc: Zhu Yanjun &lt;yanjun.zhu@linux.dev&gt;Cc: Zijun Hu &lt;quic_zijuhu@quicinc.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/kernel/liveupdate/Makefile</description>
        <pubDate>Tue, 25 Nov 2025 17:58:36 +0100</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
<item>
        <title>0153094d03df5a2e834a19c59b255649a258ae46 - liveupdate: luo_session: add sessions support</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/liveupdate/Makefile#0153094d03df5a2e834a19c59b255649a258ae46</link>
        <description>liveupdate: luo_session: add sessions supportIntroduce concept of &quot;Live Update Sessions&quot; within the LUO framework.  LUOsessions provide a mechanism to group and manage `struct file *` instances(representing file descriptors) that need to be preserved across akexec-based live update.Each session is identified by a unique name and acts as a container forfile objects whose state is critical to a userspace workload, such as avirtual machine or a high-performance database, aiming to maintain theirfunctionality across a kernel transition.This groundwork establishes the framework for preserving file-backed stateacross kernel updates, with the actual file data preservation mechanismsto be implemented in subsequent patches.[dan.carpenter@linaro.org: fix use after free in luo_session_deserialize()]  Link: https://lkml.kernel.org/r/c5dd637d7eed3a3be48c5e9fedb881596a3b1f5a.1764163896.git.dan.carpenter@linaro.orgLink: https://lkml.kernel.org/r/20251125165850.3389713-5-pasha.tatashin@soleen.comSigned-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Signed-off-by: Dan Carpenter &lt;dan.carpenter@linaro.org&gt;Reviewed-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Reviewed-by: Pratyush Yadav &lt;pratyush@kernel.org&gt;Tested-by: David Matlack &lt;dmatlack@google.com&gt;Cc: Aleksander Lobakin &lt;aleksander.lobakin@intel.com&gt;Cc: Alexander Graf &lt;graf@amazon.com&gt;Cc: Alice Ryhl &lt;aliceryhl@google.com&gt;Cc: Andriy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Cc: anish kumar &lt;yesanishhere@gmail.com&gt;Cc: Anna Schumaker &lt;anna.schumaker@oracle.com&gt;Cc: Bartosz Golaszewski &lt;bartosz.golaszewski@linaro.org&gt;Cc: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Cc: Borislav Betkov &lt;bp@alien8.de&gt;Cc: Chanwoo Choi &lt;cw00.choi@samsung.com&gt;Cc: Chen Ridong &lt;chenridong@huawei.com&gt;Cc: Chris Li &lt;chrisl@kernel.org&gt;Cc: Christian Brauner &lt;brauner@kernel.org&gt;Cc: Daniel Wagner &lt;wagi@kernel.org&gt;Cc: Danilo Krummrich &lt;dakr@kernel.org&gt;Cc: Dan Williams &lt;dan.j.williams@intel.com&gt;Cc: David Hildenbrand &lt;david@redhat.com&gt;Cc: David Jeffery &lt;djeffery@redhat.com&gt;Cc: David Rientjes &lt;rientjes@google.com&gt;Cc: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Cc: Guixin Liu &lt;kanie@linux.alibaba.com&gt;Cc: &quot;H. Peter Anvin&quot; &lt;hpa@zytor.com&gt;Cc: Hugh Dickins &lt;hughd@google.com&gt;Cc: Ilpo J&#228;rvinen &lt;ilpo.jarvinen@linux.intel.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Ira Weiny &lt;ira.weiny@intel.com&gt;Cc: Jann Horn &lt;jannh@google.com&gt;Cc: Jason Gunthorpe &lt;jgg@nvidia.com&gt;Cc: Jens Axboe &lt;axboe@kernel.dk&gt;Cc: Joanthan Cameron &lt;Jonathan.Cameron@huawei.com&gt;Cc: Joel Granados &lt;joel.granados@kernel.org&gt;Cc: Johannes Weiner &lt;hannes@cmpxchg.org&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Lennart Poettering &lt;lennart@poettering.net&gt;Cc: Leon Romanovsky &lt;leon@kernel.org&gt;Cc: Leon Romanovsky &lt;leonro@nvidia.com&gt;Cc: Lukas Wunner &lt;lukas@wunner.de&gt;Cc: Marc Rutland &lt;mark.rutland@arm.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Matthew Maurer &lt;mmaurer@google.com&gt;Cc: Miguel Ojeda &lt;ojeda@kernel.org&gt;Cc: Myugnjoo Ham &lt;myungjoo.ham@samsung.com&gt;Cc: Parav Pandit &lt;parav@nvidia.com&gt;Cc: Pratyush Yadav &lt;ptyadav@amazon.de&gt;Cc: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Roman Gushchin &lt;roman.gushchin@linux.dev&gt;Cc: Saeed Mahameed &lt;saeedm@nvidia.com&gt;Cc: Samiullah Khawaja &lt;skhawaja@google.com&gt;Cc: Song Liu &lt;song@kernel.org&gt;Cc: Steven Rostedt &lt;rostedt@goodmis.org&gt;Cc: Stuart Hayes &lt;stuart.w.hayes@gmail.com&gt;Cc: Tejun Heo &lt;tj@kernel.org&gt;Cc: Thomas Gleinxer &lt;tglx@linutronix.de&gt;Cc: Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;Cc: Vincent Guittot &lt;vincent.guittot@linaro.org&gt;Cc: William Tu &lt;witu@nvidia.com&gt;Cc: Yoann Congal &lt;yoann.congal@smile.fr&gt;Cc: Zhu Yanjun &lt;yanjun.zhu@linux.dev&gt;Cc: Zijun Hu &lt;quic_zijuhu@quicinc.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/kernel/liveupdate/Makefile</description>
        <pubDate>Tue, 25 Nov 2025 17:58:34 +0100</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
<item>
        <title>9e2fd062fa1713a33380cc97ef324d086dd45ba5 - liveupdate: luo_core: Live Update Orchestrator</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/liveupdate/Makefile#9e2fd062fa1713a33380cc97ef324d086dd45ba5</link>
        <description>liveupdate: luo_core: Live Update OrchestratorPatch series &quot;Live Update Orchestrator&quot;, v8.This series introduces the Live Update Orchestrator, a kernel subsystemdesigned to facilitate live kernel updates using a kexec-based reboot. This capability is critical for cloud environments, allowing hypervisorsto be updated with minimal downtime for running virtual machines.  LUOachieves this by preserving the state of selected resources, such asmemory, devices and their dependencies, across the kernel transition.As a key feature, this series includes support for preserving memfd filedescriptors, which allows critical in-memory data, such as guest RAM orany other large memory region, to be maintained in RAM across the kexecreboot.The other series that use LUO, are VFIO [1], IOMMU [2], and PCI [3]preservations.Github repo of this series [4].The core of LUO is a framework for managing the lifecycle of preservedresources through a userspace-driven interface. Key features include:- Session Management  Userspace agent (i.e. luod [5]) creates named sessions, each  represented by a file descriptor (via centralized agent that controls  /dev/liveupdate). The lifecycle of all preserved resources within a  session is tied to this FD, ensuring automatic kernel cleanup if the  controlling userspace agent crashes or exits unexpectedly.- File Preservation  A handler-based framework allows specific file types (demonstrated  here with memfd) to be preserved. Handlers manage the serialization,  restoration, and lifecycle of their specific file types.- File-Lifecycle-Bound State  A new mechanism for managing shared global state whose lifecycle is  tied to the preservation of one or more files. This is crucial for  subsystems like IOMMU or HugeTLB, where multiple file descriptors may  depend on a single, shared underlying resource that must be preserved  only once.- KHO Integration  LUO drives the Kexec Handover framework programmatically to pass its  serialized metadata to the next kernel. The LUO state is finalized and  added to the kexec image just before the reboot is triggered. In the  future this step will also be removed once stateless KHO is  merged [6].- Userspace Interface  Control is provided via ioctl commands on /dev/liveupdate for creating  and retrieving sessions, as well as on session file descriptors for  managing individual files.- Testing  The series includes a set of selftests, including userspace API  validation, kexec-based lifecycle tests for various session and file  scenarios, and a new in-kernel test module to validate the FLB logic.Introduce LUO, a mechanism intended to facilitate kernel updates whilekeeping designated devices operational across the transition (e.g., viakexec).  The primary use case is updating hypervisors with minimaldisruption to running virtual machines.  For userspace side of hypervisorupdate we have copyless migration.  LUO is for updating the kernel.This initial patch lays the groundwork for the LUO subsystem.Further functionality, including the implementation of state transitionlogic, integration with KHO, and hooks for subsystems and filedescriptors, will be added in subsequent patches.Create a character device at /dev/liveupdate.A new uAPI header, &lt;uapi/linux/liveupdate.h&gt;, will define the necessarystructures.  The magic number for IOCTL is registered inDocumentation/userspace-api/ioctl/ioctl-number.rst.Link: https://lkml.kernel.org/r/20251125165850.3389713-1-pasha.tatashin@soleen.comLink: https://lkml.kernel.org/r/20251125165850.3389713-2-pasha.tatashin@soleen.comLink: https://lore.kernel.org/all/20251018000713.677779-1-vipinsh@google.com/ [1]Link: https://lore.kernel.org/linux-iommu/20250928190624.3735830-1-skhawaja@google.com [2]Link: https://lore.kernel.org/linux-pci/20250916-luo-pci-v2-0-c494053c3c08@kernel.org [3]Link: https://github.com/googleprodkernel/linux-liveupdate/tree/luo/v8 [4]Link: https://tinyurl.com/luoddesign [5]Link: https://lore.kernel.org/all/20251020100306.2709352-1-jasonmiu@google.com [6]Link: https://lore.kernel.org/all/20251115233409.768044-1-pasha.tatashin@soleen.com [7]Link: https://github.com/soleen/linux/blob/luo/v8b03/diff.v7.v8 [8]Signed-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Reviewed-by: Pratyush Yadav &lt;pratyush@kernel.org&gt;Reviewed-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Tested-by: David Matlack &lt;dmatlack@google.com&gt;Cc: Aleksander Lobakin &lt;aleksander.lobakin@intel.com&gt;Cc: Alexander Graf &lt;graf@amazon.com&gt;Cc: Alice Ryhl &lt;aliceryhl@google.com&gt;Cc: Andriy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Cc: anish kumar &lt;yesanishhere@gmail.com&gt;Cc: Anna Schumaker &lt;anna.schumaker@oracle.com&gt;Cc: Bartosz Golaszewski &lt;bartosz.golaszewski@linaro.org&gt;Cc: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Cc: Borislav Betkov &lt;bp@alien8.de&gt;Cc: Chanwoo Choi &lt;cw00.choi@samsung.com&gt;Cc: Chen Ridong &lt;chenridong@huawei.com&gt;Cc: Chris Li &lt;chrisl@kernel.org&gt;Cc: Christian Brauner &lt;brauner@kernel.org&gt;Cc: Daniel Wagner &lt;wagi@kernel.org&gt;Cc: Danilo Krummrich &lt;dakr@kernel.org&gt;Cc: Dan Williams &lt;dan.j.williams@intel.com&gt;Cc: David Hildenbrand &lt;david@redhat.com&gt;Cc: David Jeffery &lt;djeffery@redhat.com&gt;Cc: David Rientjes &lt;rientjes@google.com&gt;Cc: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Cc: Guixin Liu &lt;kanie@linux.alibaba.com&gt;Cc: &quot;H. Peter Anvin&quot; &lt;hpa@zytor.com&gt;Cc: Hugh Dickins &lt;hughd@google.com&gt;Cc: Ilpo J&#228;rvinen &lt;ilpo.jarvinen@linux.intel.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Ira Weiny &lt;ira.weiny@intel.com&gt;Cc: Jann Horn &lt;jannh@google.com&gt;Cc: Jason Gunthorpe &lt;jgg@nvidia.com&gt;Cc: Jens Axboe &lt;axboe@kernel.dk&gt;Cc: Joanthan Cameron &lt;Jonathan.Cameron@huawei.com&gt;Cc: Joel Granados &lt;joel.granados@kernel.org&gt;Cc: Johannes Weiner &lt;hannes@cmpxchg.org&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Lennart Poettering &lt;lennart@poettering.net&gt;Cc: Leon Romanovsky &lt;leon@kernel.org&gt;Cc: Leon Romanovsky &lt;leonro@nvidia.com&gt;Cc: Lukas Wunner &lt;lukas@wunner.de&gt;Cc: Marc Rutland &lt;mark.rutland@arm.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Matthew Maurer &lt;mmaurer@google.com&gt;Cc: Miguel Ojeda &lt;ojeda@kernel.org&gt;Cc: Myugnjoo Ham &lt;myungjoo.ham@samsung.com&gt;Cc: Parav Pandit &lt;parav@nvidia.com&gt;Cc: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Roman Gushchin &lt;roman.gushchin@linux.dev&gt;Cc: Saeed Mahameed &lt;saeedm@nvidia.com&gt;Cc: Samiullah Khawaja &lt;skhawaja@google.com&gt;Cc: Song Liu &lt;song@kernel.org&gt;Cc: Steven Rostedt &lt;rostedt@goodmis.org&gt;Cc: Stuart Hayes &lt;stuart.w.hayes@gmail.com&gt;Cc: Tejun Heo &lt;tj@kernel.org&gt;Cc: Thomas Gleinxer &lt;tglx@linutronix.de&gt;Cc: Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;Cc: Vincent Guittot &lt;vincent.guittot@linaro.org&gt;Cc: William Tu &lt;witu@nvidia.com&gt;Cc: Yoann Congal &lt;yoann.congal@smile.fr&gt;Cc: Zijun Hu &lt;quic_zijuhu@quicinc.com&gt;Cc: Pratyush Yadav &lt;ptyadav@amazon.de&gt;Cc: Zhu Yanjun &lt;yanjun.zhu@linux.dev&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/kernel/liveupdate/Makefile</description>
        <pubDate>Tue, 25 Nov 2025 17:58:31 +0100</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
<item>
        <title>48a1b2321d763b5edeaf20bd4576d8c4b5df772b - liveupdate: kho: move to kernel/liveupdate</title>
        <link>http://kernelsources.org:8080/source/history/linux/kernel/liveupdate/Makefile#48a1b2321d763b5edeaf20bd4576d8c4b5df772b</link>
        <description>liveupdate: kho: move to kernel/liveupdateMove KHO to kernel/liveupdate/ in preparation of placing all Live Updatecore kernel related files to the same place.[pasha.tatashin@soleen.com: disable the menu when DEFERRED_STRUCT_PAGE_INIT]  Link: https://lkml.kernel.org/r/CA+CK2bAvh9Oa2SLfsbJ8zztpEjrgr_hr-uGgF1coy8yoibT39A@mail.gmail.comLink: https://lkml.kernel.org/r/20251101142325.1326536-8-pasha.tatashin@soleen.comSigned-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Reviewed-by: Jason Gunthorpe &lt;jgg@nvidia.com&gt;Reviewed-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Cc: Alexander Graf &lt;graf@amazon.com&gt;Cc: Changyuan Lyu &lt;changyuanl@google.com&gt;Cc: Christian Brauner &lt;brauner@kernel.org&gt;Cc: Jason Gunthorpe &lt;jgg@ziepe.ca&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Miguel Ojeda &lt;ojeda@kernel.org&gt;Cc: Pratyush Yadav &lt;pratyush@kernel.org&gt;Cc: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Simon Horman &lt;horms@kernel.org&gt;Cc: Tejun Heo &lt;tj@kernel.org&gt;Cc: Zhu Yanjun &lt;yanjun.zhu@linux.dev&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/kernel/liveupdate/Makefile</description>
        <pubDate>Sat, 01 Nov 2025 15:23:23 +0100</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
</channel>
</rss>
