<?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 Kbuild</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>2c142b63c8ee982cdfdba49a616027c266294838 - Merge tag &apos;asoc-fix-v7.1-rc5&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#2c142b63c8ee982cdfdba49a616027c266294838</link>
        <description>Merge tag &apos;asoc-fix-v7.1-rc5&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v7.1This round of fixes is mostly Sirini&apos;s Qualcomm cleanups that have beenin review for a while, we also have a couple of small fixes from C&#225;ssio.

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Thu, 28 May 2026 13:48:04 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>37f32d5ab83968d63cfba6092ecaae3e582db964 - Merge tag &apos;kvm-s390-master-7.1-2&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#37f32d5ab83968d63cfba6092ecaae3e582db964</link>
        <description>Merge tag &apos;kvm-s390-master-7.1-2&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEADKVM: s390: some vSIE and UCONTROL fixesFix some memory issues and some hangs in vSIE.

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Sat, 23 May 2026 10:03:58 +0200</pubDate>
        <dc:creator>Paolo Bonzini &lt;pbonzini@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>7acfa2c5f4366d63653380646ffa7dbd1bfaccc0 - Merge tag &apos;trace-ringbuffer-v7.1-rc4&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#7acfa2c5f4366d63653380646ffa7dbd1bfaccc0</link>
        <description>Merge tag &apos;trace-ringbuffer-v7.1-rc4&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-tracePull ring-buffer fixes from Steven Rostedt: - Fix reporting MISSED EVENTS in trace iterator   When the &quot;trace&quot; file is read with tracing enabled, if the writer   were to pass the iterator reader, it resets, sets a &quot;missed_events&quot;   flag and continues. The tracing output checks for missed events and   if there are some, it prints out &quot;[LOST EVENTS]&quot; to let the user know   events were dropped.   But the clearing of the missed_events happened when the tracing   system queried the ring buffer iterator about missed events. This was   premature as the ring buffer is per CPU, and the tracing code reads   all the CPU buffers and checks for missed events when it is read. If   the CPU iterator that had missed events isn&apos;t printed next, the   output for the LOST EVENTS is lost.   Clear the missed_events flag when the iterator moves to the next   event and not when the missed_events flag is queried. Also clear it   on reset. - Flush and stop the persistent ring buffer on panic   On panic the persistent ring buffer is used to debug what caused the   panic. But on some architectures, it requires flushing the memory   from cache, otherwise, the ring buffer persistent memory may not have   the last events and this could also cause the ring buffer to be   corrupted on the next boot. - Fix nr_subbufs initialization in simple_ring_buffer_init_mm   The remote simple ring buffer meta data nr_subbufs is initialized too   early and gets cleared later on, making it zero and not reflect the   actual number of sub-buffers. - Fix unload_page for simple_ring_buffer init rollback   On error, the pages loaded need to be unloaded. To unload a page it   is expected that: page = load_page(va); -&gt; unload_page(page). But the   code was doing: unload_page(va) and not unload_page(page). - Create output file from cmd_check_undefined   The check for undefined symbols checks if the file *.o.checked exists   and if so it skips doing the work. But the *.o.checked file never was   created making every build do the work even when it was already done   previously.* tag &apos;trace-ringbuffer-v7.1-rc4&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:  tracing: Create output file from cmd_check_undefined  tracing: Fix unload_page for simple_ring_buffer init rollback  tracing: Fix nr_subbufs initialization in simple_ring_buffer_init_mm()  ring-buffer: Flush and stop persistent ring buffer on panic  ring-buffer: Fix reporting of missed events in iterator

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Thu, 21 May 2026 23:05:09 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>a494d3c8d5392bcdff83c2a593df0c160ff9f322 - ring-buffer: Flush and stop persistent ring buffer on panic</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#a494d3c8d5392bcdff83c2a593df0c160ff9f322</link>
        <description>ring-buffer: Flush and stop persistent ring buffer on panicOn real hardware, panic and machine reboot may not flush hardware cacheto memory. This means the persistent ring buffer, which relies on acoherent state of memory, may not have its events written to the bufferand they may be lost. Moreover, there may be inconsistency with thecounters which are used for validation of the integrity of thepersistent ring buffer which may cause all data to be discarded.To avoid this issue, stop recording of the ring buffer on panic andflush the cache of the ring buffer&apos;s memory.Fixes: e645535a954a (&quot;tracing: Add option to use memmapped memory for trace boot instance&quot;)Cc: stable@vger.kernel.orgCc: Will Deacon &lt;will@kernel.org&gt;Cc: Mathieu Desnoyers &lt;mathieu.desnoyers@efficios.com&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Link: https://patch.msgid.link/177751969602.2136606.12031934362587643488.stgit@mhiramat.tok.corp.google.comSigned-off-by: Masami Hiramatsu (Google) &lt;mhiramat@kernel.org&gt;Acked-by: Catalin Marinas &lt;catalin.marinas@arm.com&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Signed-off-by: Steven Rostedt &lt;rostedt@goodmis.org&gt;

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Thu, 30 Apr 2026 05:28:16 +0200</pubDate>
        <dc:creator>Masami Hiramatsu (Google) &lt;mhiramat@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a4a508df2aa34f8650afde54ea804321c618f45f - Merge tag &apos;v6.18&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#a4a508df2aa34f8650afde54ea804321c618f45f</link>
        <description>Merge tag &apos;v6.18&apos; into nextSync up with the mainline to bring in the latest APIs.

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Sat, 13 Dec 2025 10:18:20 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>7362b5b493102c6b71827c2da22117b475528f6d - Merge branch &apos;for-6.19/nintendo&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#7362b5b493102c6b71827c2da22117b475528f6d</link>
        <description>Merge branch &apos;for-6.19/nintendo&apos; into for-linus- switch to WQ_PERCPU workaueues (Marco Crivellari)- reduce potential initialization blocking time of hid-nintendo (Willy Huang)

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Tue, 02 Dec 2025 14:46:11 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>cb9f145f638d7afa633632a9290d6ad06caeb8ee - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclark</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#cb9f145f638d7afa633632a9290d6ad06caeb8ee</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclarkBack-merge drm-next to get caught up.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Sat, 01 Nov 2025 13:47:30 +0100</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>82ee50252dc891e3f3b32d923bb4f656d300b772 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#82ee50252dc891e3f3b32d923bb4f656d300b772</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.18-rc1.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Tue, 14 Oct 2025 11:31:49 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2acee98fcc61052d63fab4539fcb6ee677555645 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#2acee98fcc61052d63fab4539fcb6ee677555645</link>
        <description>Merge drm/drm-next into drm-intel-nextSync to v6.18-rc1.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Tue, 14 Oct 2025 09:37:11 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>9b966ae42235a88eaea714be09ff3d698535bdfe - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#9b966ae42235a88eaea714be09ff3d698535bdfe</link>
        <description>Merge drm/drm-next into drm-misc-nextUpdating drm-misc-next to the state of v6.18-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Mon, 13 Oct 2025 09:19:19 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>39e9d5f63075f4d54e3b59b8238478c32af92755 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf before 6.18-rc1</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#39e9d5f63075f4d54e3b59b8238478c32af92755</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf before 6.18-rc1Cross-merge BPF and other fixes after downstream PR.No conflicts.Signed-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Sun, 12 Oct 2025 03:27:47 +0200</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>2ace52718376fdb56aca863da2eebe70d7e2ddb1 - Merge branch &apos;objtool/core&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#2ace52718376fdb56aca863da2eebe70d7e2ddb1</link>
        <description>Merge branch &apos;objtool/core&apos;Bring in the UDB and objtool data annotations to avoid conflicts while further extending the bug exceptions.Signed-off-by: Peter Zijlstra &lt;peterz@infradead.org&gt;

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Fri, 21 Nov 2025 11:21:20 +0100</pubDate>
        <dc:creator>Peter Zijlstra &lt;peterz@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>f39b6c468c52745dbca9a842d91c8373fda208ab - Merge tag &apos;v6.18-rc6&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#f39b6c468c52745dbca9a842d91c8373fda208ab</link>
        <description>Merge tag &apos;v6.18-rc6&apos; into for-linusSync up with the mainline to bring in definition ofINPUT_PROP_HAPTIC_TOUCHPAD.

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Tue, 18 Nov 2025 08:16:55 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4f38da1f027ea2c9f01bb71daa7a299c191b6940 - spi: Merge up v6.18-rc1</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#4f38da1f027ea2c9f01bb71daa7a299c191b6940</link>
        <description>spi: Merge up v6.18-rc1Ensure my CI has a sensible baseline.

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Mon, 13 Oct 2025 14:32:13 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ec2e0fb07d789976c601bec19ecced7a501c3705 - Merge tag &apos;asoc-fix-v6.18-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#ec2e0fb07d789976c601bec19ecced7a501c3705</link>
        <description>Merge tag &apos;asoc-fix-v6.18-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v6.18A moderately large collection of driver specific fixes, plus a few newquirks and device IDs.  The NAU8821 changes are a little large but morein mechanical ways than in ways that are complex.

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Thu, 16 Oct 2025 20:14:24 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>48a710760e10a4f36e11233a21860796ba204b1e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#48a710760e10a4f36e11233a21860796ba204b1e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesUpdating drm-misc-fixes to the state of v6.18-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Tue, 14 Oct 2025 10:59:58 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>256e3417065b2721f77bcd37331796b59483ef3b - Merge tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/virt/kvm/kvm</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#256e3417065b2721f77bcd37331796b59483ef3b</link>
        <description>Merge tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/virt/kvm/kvmPull x86 kvm updates from Paolo Bonzini: &quot;Generic:   - Rework almost all of KVM&apos;s exports to expose symbols only to KVM&apos;s     x86 vendor modules (kvm-{amd,intel}.ko and PPC&apos;s kvm-{pr,hv}.ko  x86:   - Rework almost all of KVM x86&apos;s exports to expose symbols only to     KVM&apos;s vendor modules, i.e. to kvm-{amd,intel}.ko   - Add support for virtualizing Control-flow Enforcement Technology     (CET) on Intel (Shadow Stacks and Indirect Branch Tracking) and AMD     (Shadow Stacks).     It is worth noting that while SHSTK and IBT can be enabled     separately in CPUID, it is not really possible to virtualize them     separately. Therefore, Intel processors will really allow both     SHSTK and IBT under the hood if either is made visible in the     guest&apos;s CPUID. The alternative would be to intercept     XSAVES/XRSTORS, which is not feasible for performance reasons   - Fix a variety of fuzzing WARNs all caused by checking L1 intercepts     when completing userspace I/O. KVM has already committed to     allowing L2 to to perform I/O at that point   - Emulate PERF_CNTR_GLOBAL_STATUS_SET for PerfMonV2 guests, as the     MSR is supposed to exist for v2 PMUs   - Allow Centaur CPU leaves (base 0xC000_0000) for Zhaoxin CPUs   - Add support for the immediate forms of RDMSR and WRMSRNS, sans full     emulator support (KVM should never need to emulate the MSRs outside     of forced emulation and other contrived testing scenarios)   - Clean up the MSR APIs in preparation for CET and FRED     virtualization, as well as mediated vPMU support   - Clean up a pile of PMU code in anticipation of adding support for     mediated vPMUs   - Reject in-kernel IOAPIC/PIT for TDX VMs, as KVM can&apos;t obtain EOI     vmexits needed to faithfully emulate an I/O APIC for such guests   - Many cleanups and minor fixes   - Recover possible NX huge pages within the TDP MMU under read lock     to reduce guest jitter when restoring NX huge pages   - Return -EAGAIN during prefault if userspace concurrently     deletes/moves the relevant memslot, to fix an issue where     prefaulting could deadlock with the memslot update  x86 (AMD):   - Enable AVIC by default for Zen4+ if x2AVIC (and other prereqs) is     supported   - Require a minimum GHCB version of 2 when starting SEV-SNP guests     via KVM_SEV_INIT2 so that invalid GHCB versions result in immediate     errors instead of latent guest failures   - Add support for SEV-SNP&apos;s CipherText Hiding, an opt-in feature that     prevents unauthorized CPU accesses from reading the ciphertext of     SNP guest private memory, e.g. to attempt an offline attack. This     feature splits the shared SEV-ES/SEV-SNP ASID space into separate     ranges for SEV-ES and SEV-SNP guests, therefore a new module     parameter is needed to control the number of ASIDs that can be used     for VMs with CipherText Hiding vs. how many can be used to run     SEV-ES guests   - Add support for Secure TSC for SEV-SNP guests, which prevents the     untrusted host from tampering with the guest&apos;s TSC frequency, while     still allowing the the VMM to configure the guest&apos;s TSC frequency     prior to launch   - Validate the XCR0 provided by the guest (via the GHCB) to avoid     bugs resulting from bogus XCR0 values   - Save an SEV guest&apos;s policy if and only if LAUNCH_START fully     succeeds to avoid leaving behind stale state (thankfully not     consumed in KVM)   - Explicitly reject non-positive effective lengths during SNP&apos;s     LAUNCH_UPDATE instead of subtly relying on guest_memfd to deal with     them   - Reload the pre-VMRUN TSC_AUX on #VMEXIT for SEV-ES guests, not the     host&apos;s desired TSC_AUX, to fix a bug where KVM was keeping a     different vCPU&apos;s TSC_AUX in the host MSR until return to userspace  KVM (Intel):   - Preparation for FRED support   - Don&apos;t retry in TDX&apos;s anti-zero-step mitigation if the target     memslot is invalid, i.e. is being deleted or moved, to fix a     deadlock scenario similar to the aforementioned prefaulting case   - Misc bugfixes and minor cleanups&quot;* tag &apos;for-linus&apos; of git://git.kernel.org/pub/scm/virt/kvm/kvm: (142 commits)  KVM: x86: Export KVM-internal symbols for sub-modules only  KVM: x86: Drop pointless exports of kvm_arch_xxx() hooks  KVM: x86: Move kvm_intr_is_single_vcpu() to lapic.c  KVM: Export KVM-internal symbols for sub-modules only  KVM: s390/vfio-ap: Use kvm_is_gpa_in_memslot() instead of open coded equivalent  KVM: VMX: Make CR4.CET a guest owned bit  KVM: selftests: Verify MSRs are (not) in save/restore list when (un)supported  KVM: selftests: Add coverage for KVM-defined registers in MSRs test  KVM: selftests: Add KVM_{G,S}ET_ONE_REG coverage to MSRs test  KVM: selftests: Extend MSRs test to validate vCPUs without supported features  KVM: selftests: Add support for MSR_IA32_{S,U}_CET to MSRs test  KVM: selftests: Add an MSR test to exercise guest/host and read/write  KVM: x86: Define AMD&apos;s #HV, #VC, and #SX exception vectors  KVM: x86: Define Control Protection Exception (#CP) vector  KVM: x86: Add human friendly formatting for #XM, and #VE  KVM: SVM: Enable shadow stack virtualization for SVM  KVM: SEV: Synchronize MSR_IA32_XSS from the GHCB when it&apos;s valid  KVM: SVM: Pass through shadow stack MSRs as appropriate  KVM: SVM: Update dump_vmcb with shadow stack save area additions  KVM: nSVM: Save/load CET Shadow Stack state to/from vmcb12/vmcb02  ...

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Mon, 06 Oct 2025 21:37:34 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>20c48920583675e67b3824f147726e0fbda735ce - KVM: Export KVM-internal symbols for sub-modules only</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#20c48920583675e67b3824f147726e0fbda735ce</link>
        <description>KVM: Export KVM-internal symbols for sub-modules onlyRework the vast majority of KVM&apos;s exports to expose symbols only to KVMsubmodules, i.e. to x86&apos;s kvm-{amd,intel}.ko and PPC&apos;s kvm-{pr,hv}.ko.With few exceptions, KVM&apos;s exported APIs are intended (and safe) for KVM-internal usage only.Keep kvm_get_kvm(), kvm_get_kvm_safe(), and kvm_put_kvm() as normalexports, as they are needed by VFIO, and are generally safe for externalusage (though ideally even the get/put APIs would be KVM-internal, andVFIO would pin a VM by grabbing a reference to its associated file).Implement a framework in kvm_types.h in anticipation of providing a macroto restrict KVM-specific kernel exports, i.e. to provide symbol exportsfor KVM if and only if KVM is built as one or more modules.Link: https://lore.kernel.org/r/20250919003303.1355064-3-seanjc@google.comCc: Nathan Chancellor &lt;nathan@kernel.org&gt;Signed-off-by: Sean Christopherson &lt;seanjc@google.com&gt;Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Fri, 19 Sep 2025 02:33:00 +0200</pubDate>
        <dc:creator>Sean Christopherson &lt;seanjc@google.com&gt;</dc:creator>
    </item>
<item>
        <title>c771600c6af14749609b49565ffb4cac2959710d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#c771600c6af14749609b49565ffb4cac2959710d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextWe need4ba4f1afb6a9 (&quot;perf: Generic hotplug support for a PMU with a scope&quot;)in order to land a i915 PMU simplification and a fix. That landed in 6.12and we are stuck at 6.9 so lets bump things forward.Signed-off-by: Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Wed, 05 Feb 2025 10:29:14 +0100</pubDate>
        <dc:creator>Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;</dc:creator>
    </item>
<item>
        <title>36ec807b627b4c0a0a382f0ae48eac7187d14b2b - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/include/asm/Kbuild#36ec807b627b4c0a0a382f0ae48eac7187d14b2b</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.12 merge window.

            List of files:
            /linux/arch/powerpc/include/asm/Kbuild</description>
        <pubDate>Fri, 20 Sep 2024 10:24:24 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
