<?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>b2128290c29902315e632ea59e0504d6bc9e9b42 - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-backmerge</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#b2128290c29902315e632ea59e0504d6bc9e9b42</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-backmergeBackmerge of drm-next, mainly to pick up dt bindings docs updates toavoid conflicts.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Sat, 18 Jul 2026 17:06:55 +0200</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>637315cb400eed1dbe721954fea437a61a2d65b2 - Merge tag &apos;kvm-riscv-7.3-1&apos; of https://github.com/kvm-riscv/linux into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#637315cb400eed1dbe721954fea437a61a2d65b2</link>
        <description>Merge tag &apos;kvm-riscv-7.3-1&apos; of https://github.com/kvm-riscv/linux into HEADKVM/riscv changes for 7.3- Svadu/Zicfiss/Zicfilp FWFT support for Guest- Use try_cmpxchg for IMSIC MRIF RMW- More arch-specific tracepoints in KVM RISC-V- Eager Page Splitting for KVM RISC-V- Optimize hfence request handling for SMP Guests- Improve dirty log clearing by skipping zero bits in mask- Guard HFENCE range loops against overflow- CPU PM notifiers in KVM RISC-V for non-retentive idle states- Fix kernel-mode vector context save/restore for Guest

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Tue, 18 Aug 2026 13:07:31 +0200</pubDate>
        <dc:creator>Paolo Bonzini &lt;pbonzini@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>efe86f088f48f18c27b648e5724048947f3b7fb4 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#efe86f088f48f18c27b648e5724048947f3b7fb4</link>
        <description>Merge drm/drm-next into drm-xe-nextSync some i915/display changesSigned-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Tue, 14 Jul 2026 15:40:31 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>6d177908bad5992e17669030db41caab88041d5e - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#6d177908bad5992e17669030db41caab88041d5e</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v7.2-rc1.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Tue, 30 Jun 2026 14:55:43 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>827b9aabd3ea3e96d5e48abed9f44dbd1e550d4e - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#827b9aabd3ea3e96d5e48abed9f44dbd1e550d4e</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging to get drm-misc-next to v7.2-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Tue, 30 Jun 2026 10:16:00 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>7dd19adaaac9a161723a24de7c270861063ec6ac - Merge tag &apos;v7.2-rc1&apos; into drm-rust-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#7dd19adaaac9a161723a24de7c270861063ec6ac</link>
        <description>Merge tag &apos;v7.2-rc1&apos; into drm-rust-nextMerge v7.2-rc1 into drm-rust-next to start the next cycle.Devres now requires T: &apos;static, which conflicts with shmem::Object usingDevres&lt;SGTableMap&lt;T, C&gt;&gt; without that bound. Resolve by adding &apos;staticas a supertrait to DriverObject and DeviceContext, which does notrestrict any current use cases since DriverObject is always implementedon owned, refcounted types and DeviceContext is a sealed marker traitwith only unit-type implementors.If DriverObject (or DeviceContext) ever becomes lifetime-parameterized(e.g. via a GAT for TTM backed objects), the &apos;static supertrait can berelaxed at that point.Signed-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Sun, 28 Jun 2026 22:39:43 +0200</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3d5e48944e824bddc20d7b874e784f7b279636fe - Merge branch &apos;for-7.3/steam&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#3d5e48944e824bddc20d7b874e784f7b279636fe</link>
        <description>Merge branch &apos;for-7.3/steam&apos; into for-linus- initial support for 2026 Steam Controller (Vicki Pfau)- support for sensor events on the 2025 Steam Controller (Vicki Pfau)- assorted fixes, improvements and code refactoring (Vicki Pfau)

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Wed, 19 Aug 2026 09:16:28 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>0eaed89c18aeedf0898baf2dbf5ff027c6795152 - Merge tag &apos;timers-v7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/daniel.lezcano/linux into timers/clocksource</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#0eaed89c18aeedf0898baf2dbf5ff027c6795152</link>
        <description>Merge tag &apos;timers-v7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/daniel.lezcano/linux into timers/clocksource  - Use designated initializers for sh_mtu2, sh_cmt, and sh_tmu, and    drop the unused initializer in the platform_device_id table for    sh_mtu2 (Uwe Kleine-K&#246;nig)  - Remove redundant dev_err()/dev_err_probe() messages when    devm_request_*_irq() fails, as the helper already logs an error    message (Pan Chuang)  - Fix a boot hang on Allwinner D1 when a forced minimum delta is used    with the sun4i timer (Felix Yan)  - Fix an IRQ leak in the cpuhp_setup_state() error path by freeing the    IRQ on failure in the NXP PIT driver (WenTao Liang)  - Fix incorrect unmapping of shared MMIO between the clocksource and    clockevent drivers. If one of them fails to initialize, the error    path unmaps the shared MMIO region, leaving the other driver with an    invalid mapping on clps711x (Guangshuo Li)  - Make the samsung_pwm driver compatible with PREEMPT_RT by replacing    regular spinlocks with raw_spinlock_t in atomic contexts (Marek    Szyprowski)  - Use __raw_readl() and __raw_writel() instead of ioread32() and    iowrite32() to support SWAP_IO_SPACE in the rtl-otto driver (Rustam    Adilov)  - Fix a missing clk_disable_unprepare() call in the timer    initialization error path of the Armada driver (Yuho Choi)Link: https://lore.kernel.org/lkml/75feea31-683d-45a1-87f4-ab045e0152ae@oss.qualcomm.com

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Mon, 17 Aug 2026 10:29:52 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b4d85f863e5a6f1fa01b186001af0f68f4f5239e - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#b4d85f863e5a6f1fa01b186001af0f68f4f5239e</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.3 merge window.

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Sat, 15 Aug 2026 06:26:07 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>76904fccf81936c084faebc73ac72c0919a42941 - Merge tag &apos;v7.2-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#76904fccf81936c084faebc73ac72c0919a42941</link>
        <description>Merge tag &apos;v7.2-rc3&apos; into nextSync up with mainline to pull in stable fixes to avoid merge conflicts.

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Tue, 14 Jul 2026 04:06:00 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>7b24dd46a70e94d8db83b50a04d46690fac216d0 - Merge tag &apos;liveupdate-v7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/liveupdate/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#7b24dd46a70e94d8db83b50a04d46690fac216d0</link>
        <description>Merge tag &apos;liveupdate-v7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/liveupdate/linuxPull liveupdate updates from Mike Rapoport: &quot;Kexec Handover:   - Fix size calculation in kho_preserved_memory_reserve() for     preservations larger than 2 GiB  Live Update Orchestrator:   - move liveupdate selftest utilities into a library so that selftests     of subsystems participating in liveupdate, e.g. PCI and VFIO, can     use them and drop direct ioctl calls from the tests   - add end to end liveupdate test infrastructure that allows running     the tests across a kexec in QEMU   - remove redundant INIT_LIST_HEAD in luo_session_alloc()   - remember the error status of an FLB retrieve() and return it on     subsequent attempts rather than retrying retrieve() with an FLB in     an unexpected state   - reference count the outgoing FLB so that it cannot be freed while a     caller is using it, the same way it&apos;s done for the incoming FLB   - reject nonzero reserved field in LIVEUPDATE_SESSION_FINISH so that     it can be reused by a future extension&quot;* tag &apos;liveupdate-v7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/liveupdate/linux:  kho: fix size calculation in kho_preserved_memory_reserve()  selftests/liveupdate: Move luo_test_utils.* into a reusable library  selftests/liveupdate: Use luo_test_utils.c for liveupdate ioctl APIs  liveupdate: Remember FLB retrieve() status  liveupdate: Reference count outgoing FLB data  liveupdate: reject nonzero reserved value for SESSION_FINISH  liveupdate: Remove redundant INIT_LIST_HEAD in luo_session_alloc  selftests/liveupdate: add end to end test infrastructure and scripts

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Tue, 18 Aug 2026 19:43:01 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>bcf2a0b55e322a663c9602c9e773770b87d3e629 - Merge branch &apos;selftests-lib&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#bcf2a0b55e322a663c9602c9e773770b87d3e629</link>
        <description>Merge branch &apos;selftests-lib&apos; into next

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Tue, 04 Aug 2026 09:52:22 +0200</pubDate>
        <dc:creator>Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ccf287a39bd1288f534cf531f6bd4e57dbc716b7 - Merge patch series &quot;Make liveupdate selftests library&quot;</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#ccf287a39bd1288f534cf531f6bd4e57dbc716b7</link>
        <description>Merge patch series &quot;Make liveupdate selftests library&quot;Vipin Sharma &lt;vipinsh@google.com&gt; says:Refactor liveupdate selftests as a library.The library exposes common liveupdate ioctls which can be used forliveupdate testing in other subsystems like VFIO and IOMMU.* patches from: https://patch.msgid.link/20260720203202.1964557-1-vipinsh@google.comselftests/liveupdate: Use luo_test_utils.c for liveupdate ioctl APIsselftests/liveupdate: Move luo_test_utils.* into a reusable libraryLink: https://patch.msgid.link/20260720203202.1964557-1-vipinsh@google.comSigned-off-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Sun, 26 Jul 2026 10:29:04 +0200</pubDate>
        <dc:creator>Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>df1a0d068d481b7d175c5af3970043206409a062 - selftests/liveupdate: Move luo_test_utils.* into a reusable library</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#df1a0d068d481b7d175c5af3970043206409a062</link>
        <description>selftests/liveupdate: Move luo_test_utils.* into a reusable libraryMove luo_test_utils.[ch] into a lib/ directory and make libliveupdatelibrary. Pull the rules to build them out into a separatelibliveupdate.mk script. This will enable these utilities to bealso built by and used within other selftests (such as VFIO).Update path in vmtest.sh as that one uses hardcoded path for util.No functional change intended.Co-developed-by: David Matlack &lt;dmatlack@google.com&gt;Signed-off-by: David Matlack &lt;dmatlack@google.com&gt;Acked-by: Pratyush Yadav (Google) &lt;pratyush@kernel.org&gt;Reviewed-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Signed-off-by: Vipin Sharma &lt;vipinsh@google.com&gt;Link: https://patch.msgid.link/20260720203202.1964557-3-vipinsh@google.comSigned-off-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Mon, 20 Jul 2026 22:32:02 +0200</pubDate>
        <dc:creator>Vipin Sharma &lt;vipinsh@google.com&gt;</dc:creator>
    </item>
<item>
        <title>00599d4841790d05401820a96cf7edb193888b00 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#00599d4841790d05401820a96cf7edb193888b00</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesPull in tag v7.2-rc1 so that drm-misc-fixes becomes useful again,and drm-misc-next-fixes can be closed.Signed-off-by: Maarten Lankhorst &lt;dev@lankhorst.se&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Mon, 29 Jun 2026 17:58:00 +0200</pubDate>
        <dc:creator>Maarten Lankhorst &lt;dev@lankhorst.se&gt;</dc:creator>
    </item>
<item>
        <title>d639d9fa162aadec1ae9980c4dcf6e50bd2f8290 - Merge tag &apos;liveupdate-v7.2-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/liveupdate/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#d639d9fa162aadec1ae9980c4dcf6e50bd2f8290</link>
        <description>Merge tag &apos;liveupdate-v7.2-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/liveupdate/linuxPull liveupdate updates from Mike Rapoport: &quot;Kexec Handover (KHO):   - make memory preservation compatible with deferred initialization     of the memory map  Live Update Orchestrator (LUO):   - add LIVEUPDATE_SESSION_GET_NAME ioctl and parameter verification     for LIVEUPDATE_IOCTL_CREATE_SESSION ioctl   - documentation updates for liveupdate=on command line option,     systemd support and the current compatibility status   - remove the fixed limits on the number of files that can be     preserved within a single session, and the total number of     sessions managed by the LUO  Misc fixes:   - reference count incoming File-Lifecycle-Bound (FLB) data so     it cannot be freed while a subsystem is still using it   - fixes for a TOCTOU race in luo_session_retrieve(), a use-     after-free in the file finish and unpreserve paths, concurrent     session mutations during reboot and serialization on     preserve_context kexec   - make sure ioctls for incoming LUO sessions are blocked for     outgoing sessions and vice versa   - make sure KHO scratch size is always aligned by     CMA_MIN_ALIGNMENT_BYTES   - fix memblock tests build issue introduced by KHO changes&quot;* tag &apos;liveupdate-v7.2-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/liveupdate/linux: (36 commits)  liveupdate: Document that retrieve failure is permanent  docs: memfd_preservation: fix rendering of ABI documentation  selftests/liveupdate: Add stress-files kexec test  selftests/liveupdate: Add stress-sessions kexec test  selftests/liveupdate: Test session and file limit removal  liveupdate: Remove limit on the number of files per session  liveupdate: Remove limit on the number of sessions  liveupdate: defer session block allocation and physical address setting  kho: add support for linked-block serialization  liveupdate: Extract luo_session_deserialize_one helper  liveupdate: Extract luo_file_deserialize_one helper  liveupdate: register luo_ser as KHO subtree  liveupdate: centralize state management into struct luo_ser  liveupdate: avoid mixing cleanup guards with goto in luo_session_retrieve_fd  liveupdate: change file_set-&gt;count type to u64 for type safety  liveupdate: Remove unused ser field from struct luo_session  liveupdate: fix u-a-f in luo_file_unpreserve_files() and luo_file_finish()  liveupdate: block session mutations during reboot  liveupdate: fix TOCTOU race in luo_session_retrieve()  liveupdate: skip serialization for context-preserving kexec  ...

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Sun, 21 Jun 2026 18:46:14 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>5fb813ae0009d97fc414f08ad73286f562e9a123 - Merge patch series &quot;liveupdate: Remove limits on sessions and files&quot;</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#5fb813ae0009d97fc414f08ad73286f562e9a123</link>
        <description>Merge patch series &quot;liveupdate: Remove limits on sessions and files&quot;Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt; says:Remove the fixed limits on the number of files that can be preservedwithin a single session, and the total number of sessions managed by theLive Update Orchestrator (LUO).The core of the change is a transition from single contiguous memoryblocks for metadata serialization to a chain of linked blocks. Thisallows LUO to scale dynamically.1.  ABI Evolution:- Introduced linked-block headers for both file and session  serialization.- Bumped session ABI version to v4.2.  Memory Management &amp; Security:- Implemented a dynamic block allocation and reuse strategy. Blocks  are allocated only when existing ones are exhausted and are reused  during session/file removal cycles.- Introduced KHO_MAX_BLOCKS (10000) as a safeguard against stupid  excessive allocations or corrupted cyclic lists during restore.3.  Expanded Selftests:- Added new kexec-based tests verifying preservation of  2000 sessions and 500 files per session.- Added self-tests for many sessions and many files management.* patches from https://patch.msgid.link/20260603154402.468928-1-pasha.tatashin@soleen.com:liveupdate: change file_set-&gt;count type to u64 for type safetyliveupdate: avoid mixing cleanup guards with goto in luo_session_retrieve_fdliveupdate: centralize state management into struct luo_serliveupdate: register luo_ser as KHO subtreeliveupdate: Extract luo_file_deserialize_one helperliveupdate: Extract luo_session_deserialize_one helperkho: add support for linked-block serializationliveupdate: defer session block allocation and physical address settingliveupdate: Remove limit on the number of sessionsliveupdate: Remove limit on the number of files per sessionselftests/liveupdate: Test session and file limit removalselftests/liveupdate: Add stress-sessions kexec testselftests/liveupdate: Add stress-files kexec testLink: https://patch.msgid.link/20260603154402.468928-1-pasha.tatashin@soleen.comSigned-off-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Wed, 03 Jun 2026 20:15:46 +0200</pubDate>
        <dc:creator>Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>46429a15a6dfe522880d5085f1f6999357758872 - selftests/liveupdate: Add stress-files kexec test</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#46429a15a6dfe522880d5085f1f6999357758872</link>
        <description>selftests/liveupdate: Add stress-files kexec testAdd a new luo_stress_files kexec test that verifies preserving andretrieving 500 files across a kexec reboot.Reviewed-by: Pratyush Yadav (Google) &lt;pratyush@kernel.org&gt;Acked-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Signed-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Link: https://patch.msgid.link/20260603154402.468928-14-pasha.tatashin@soleen.comSigned-off-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Wed, 03 Jun 2026 17:44:02 +0200</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
<item>
        <title>3432292fb9130191dca57953941f7ae3888d52d8 - selftests/liveupdate: Add stress-sessions kexec test</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#3432292fb9130191dca57953941f7ae3888d52d8</link>
        <description>selftests/liveupdate: Add stress-sessions kexec testAdd a new test that creates 2000 LUO sessions before a kexecreboot and verifies their presence after the reboot. This ensuresthat the linked-block serialization mechanism works correctly fora large number of sessions.Acked-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;Reviewed-by: Pratyush Yadav (Google) &lt;pratyush@kernel.org&gt;Signed-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Link: https://patch.msgid.link/20260603154402.468928-13-pasha.tatashin@soleen.comSigned-off-by: Mike Rapoport (Microsoft) &lt;rppt@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Wed, 03 Jun 2026 17:44:01 +0200</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
<item>
        <title>8edf8b09fc44990977b3fbcb708035b1740d0b7e - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/liveupdate/Makefile#8edf8b09fc44990977b3fbcb708035b1740d0b7e</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextBackmerging to pull in commit 5401b9adebc9 (&quot;i915: don&apos;t usea vma that didn&apos;t match the context VM&quot;) to revert it.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/tools/testing/selftests/liveupdate/Makefile</description>
        <pubDate>Tue, 12 May 2026 10:16:35 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
