<?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>2519003dd5fb6f89f10f031e3a97ecb7c9d1b816 - Merge tag &apos;asoc-fix-v7.1-rc4&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/kernel/vdso/Makefile#2519003dd5fb6f89f10f031e3a97ecb7c9d1b816</link>
        <description>Merge tag &apos;asoc-fix-v7.1-rc4&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v7.1A bigger batch of fixes than usual due to -next not happeing last week,this is mostly stuff for laptops - a lot of quirks and small fixes,mainly for x86 and SoundWire.  Nothing too big or exciting individually,just two week&apos;s worth.

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Fri, 22 May 2026 08:25:18 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>bf0e022821fa516cd6eb0292fcb4ccdd4e201c9f - Merge tag &apos;powerpc-7.1-2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#bf0e022821fa516cd6eb0292fcb4ccdd4e201c9f</link>
        <description>Merge tag &apos;powerpc-7.1-2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linuxPull powerpc fixes from Madhavan Srinivasan: - Fix KASAN sanitization flag for core_$(BITS).o - Fixes for handling offset values in pseries htmdump - Fix interrupt mask in cpm1_gpiochip_add16() - ps3/pasemi fixes to drop redundant result assignment - Fixes in papr-hvpipe code path - powerpc/perf: Update check for PERF_SAMPLE_DATA_SRC marked eventsThanks to Aboorva Devarajan, Athira Rajeev, Christophe Leroy (CS GROUP),Geert Uytterhoeven, Haren Myneni, Krzysztof Kozlowski, Mukesh KumarChaurasiya (IBM), Nathan Chancellor, Ritesh Harjani (IBM), ShivaniNittor, Sourabh Jain, Thomas Zimmermann, and Venkat Rao Bagalkote.* tag &apos;powerpc-7.1-2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux: (21 commits)  powerpc/pasemi: Drop redundant res assignment  powerpc/ps3: Drop redundant result assignment  powerpc/vdso: Drop -DCC_USING_PATCHABLE_FUNCTION_ENTRY from 32-bit flags with clang  arch/powerpc: Drop CONFIG_FIRMWARE_EDID from defconfig files  powerpc/perf: Update check for PERF_SAMPLE_DATA_SRC marked events  powerpc/8xx: Fix interrupt mask in cpm1_gpiochip_add16()  powerpc/vmx: avoid KASAN instrumentation in enter_vmx_ops() for kexec  powerpc/kdump: fix KASAN sanitization flag for core_$(BITS).o  pseries/papr-hvpipe: Fix style and checkpatch issues in enable_hvpipe_IRQ()  pseries/papr-hvpipe: Refactor and simplify hvpipe_rtas_recv_msg()  pseries/papr-hvpipe: Kill task_struct pointer from struct hvpipe_source_info  pseries/papr-hvpipe: Simplify spin unlock usage in papr_hvpipe_handle_release()  pseries/papr-hvpipe: Fix the usage of copy_to_user()  pseries/papr-hvpipe: Fix &amp; simplify error handling in papr_hvpipe_init()  pseries/papr-hvpipe: Fix null ptr deref in papr_hvpipe_dev_create_handle()  pseries/papr-hvpipe: Prevent kernel stack memory leak to userspace  pseries/papr-hvpipe: Fix race with interrupt handler  powerpc/pseries/htmdump: Add memory configuration dump support to htmdump module  powerpc/pseries/htmdump: Fix the offset value used in htm status dump  powerpc/pseries/htmdump: Fix the offset value used in processor configuration dump  ...

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Sat, 09 May 2026 17:03:21 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>60c71369ee356d11ad845ddeb28ceb70ec6cd70e - powerpc/vdso: Drop -DCC_USING_PATCHABLE_FUNCTION_ENTRY from 32-bit flags with clang</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#60c71369ee356d11ad845ddeb28ceb70ec6cd70e</link>
        <description>powerpc/vdso: Drop -DCC_USING_PATCHABLE_FUNCTION_ENTRY from 32-bit flags with clangAfter commit 73cdf24e81e4 (&quot;powerpc64: make clang cross-buildfriendly&quot;), building 64-bit little endian + CONFIG_COMPAT=y with clangresults in many warnings along the lines of:  $ cat arch/powerpc/configs/compat.config  CONFIG_COMPAT=y  $ make -skj&quot;$(nproc)&quot; ARCH=powerpc LLVM=1 ppc64le_defconfig compat.config arch/powerpc/kernel/vdso/  ...  In file included from &lt;built-in&gt;:4:  In file included from lib/vdso/gettimeofday.c:6:  In file included from include/vdso/datapage.h:15:  In file included from include/vdso/cache.h:5:  arch/powerpc/include/asm/cache.h:77:8: warning: unknown attribute &apos;patchable_function_entry&apos; ignored [-Wunknown-attributes]     77 | static inline u32 l1_icache_bytes(void)        |        ^~~~~~  include/linux/compiler_types.h:235:58: note: expanded from macro &apos;inline&apos;    235 | #define inline inline __gnu_inline __inline_maybe_unused notrace        |                                                          ^~~~~~~  include/linux/compiler_types.h:215:34: note: expanded from macro &apos;notrace&apos;    215 | #define notrace                 __attribute__((patchable_function_entry(0, 0)))        |                                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  ...arch/powerpc/Makefile adds -DCC_USING_PATCHABLE_FUNCTION_ENTRY toKBUILD_CPPFLAGS, which is inherited by the 32-bit vDSO. However, the32-bit little endian target does not support&apos;-fpatchable-function-entry&apos;, resulting in the warnings above.Remove -DCC_USING_PATCHABLE_FUNCTION_ENTRY from the 32-bit vDSO flagswhen building with clang to avoid the warnings.Fixes: 73cdf24e81e4 (&quot;powerpc64: make clang cross-build friendly&quot;)Signed-off-by: Nathan Chancellor &lt;nathan@kernel.org&gt;Signed-off-by: Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;Link: https://patch.msgid.link/20260311-ppc-vdso-drop-cc-using-pfe-define-clang-v1-1-66c790e22650@kernel.org

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Thu, 12 Mar 2026 01:39:56 +0100</pubDate>
        <dc:creator>Nathan Chancellor &lt;nathan@kernel.org&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/kernel/vdso/Makefile#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/kernel/vdso/Makefile</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>f088104d837a991c65e51fa30bb4196169b3244d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#f088104d837a991c65e51fa30bb4196169b3244d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextBackmerge in order to get the commit:  048832a3f400 (&quot;drm/i915: Refactor shmem_pwrite() to use kiocb and write_iter&quot;)To drm-intel-gt-next as there are followup fixes to be applied.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Tue, 16 Sep 2025 12:53:20 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a53d0cf7f1cb3182ad533ff5cacfa5fd29c419ad - Merge commit &apos;linus&apos; into core/bugs, to resolve conflicts</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#a53d0cf7f1cb3182ad533ff5cacfa5fd29c419ad</link>
        <description>Merge commit &apos;linus&apos; into core/bugs, to resolve conflictsResolve conflicts with this commit that was developed in parallelduring the merge window: 8c8efa93db68 (&quot;x86/bug: Add ARCH_WARN_ASM macro for BUG/WARN asm code sharing with Rust&quot;) Conflicts:	arch/riscv/include/asm/bug.h	arch/x86/include/asm/bug.hSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Tue, 05 Aug 2025 11:15:34 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8b87f67b4c87452e21721887fa8dec1f4c6b2b7c - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#8b87f67b4c87452e21721887fa8dec1f4c6b2b7c</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.18 merge window.

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Wed, 08 Oct 2025 06:53:13 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4b051897df2375414587a245ecb9bb1a4d26b3b8 - Merge tag &apos;v6.17-rc2&apos; into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#4b051897df2375414587a245ecb9bb1a4d26b3b8</link>
        <description>Merge tag &apos;v6.17-rc2&apos; into HEADSync up with mainline to bring in changes to include/linux/sprintf.h

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Thu, 21 Aug 2025 20:46:49 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b4d90dbc4c1bc4bd3eb2d2989330af0eb95c98e8 - Merge drm/drm-next into drm-misc-next-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#b4d90dbc4c1bc4bd3eb2d2989330af0eb95c98e8</link>
        <description>Merge drm/drm-next into drm-misc-next-fixesBackmerging to drm-misc-next-fixes to get features and fixes fromv6.17-rc6.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Mon, 15 Sep 2025 10:23:28 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>702fdf3513b045f596f836d9a4b8672c76f11834 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#702fdf3513b045f596f836d9a4b8672c76f11834</link>
        <description>Merge drm/drm-next into drm-intel-nextCatching up with some display dependencies.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Wed, 10 Sep 2025 14:01:42 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ca994e8922f25f7fed2075098f185cf198109eaa - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#ca994e8922f25f7fed2075098f185cf198109eaa</link>
        <description>Merge drm/drm-next into drm-xe-nextBring v6.17-rc1 to propagate commits from other subsystems, particularlyPCI, which has some new functions needed for SR-IOV integration.Signed-off-by: Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Tue, 12 Aug 2025 14:58:37 +0200</pubDate>
        <dc:creator>Lucas De Marchi &lt;lucas.demarchi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>08c51f5bddc81c8c97c1eb11861b0dc009e5ccd8 - Merge drm/drm-next into drm-misc-n</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#08c51f5bddc81c8c97c1eb11861b0dc009e5ccd8</link>
        <description>Merge drm/drm-next into drm-misc-nUpdating drm-misc-next to the state of v6.17-rc1. Begins a new releasecycle.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Mon, 11 Aug 2025 14:37:45 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>e9ef810dfee7a2227da9d423aecb0ced35faddbe - Merge branch &apos;for-6.17/amd-sfh&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#e9ef810dfee7a2227da9d423aecb0ced35faddbe</link>
        <description>Merge branch &apos;for-6.17/amd-sfh&apos; into for-linus- add support for operating modes (Basavaraj Natikar)

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Thu, 31 Jul 2025 22:36:25 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>c833e8cc4dca7e3c0a9d0b9047a1b4822b229262 - Merge tag &apos;v6.16-rc3&apos; into perf-tools-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#c833e8cc4dca7e3c0a9d0b9047a1b4822b229262</link>
        <description>Merge tag &apos;v6.16-rc3&apos; into perf-tools-nextTo get the fixes in libbpf and perf tools.Signed-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Mon, 23 Jun 2025 06:54:03 +0200</pubDate>
        <dc:creator>Namhyung Kim &lt;namhyung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>9cf9db888f387844e063efc6296e9fa5c042995e - Merge tag &apos;nand/for-6.17&apos; into mtd/next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#9cf9db888f387844e063efc6296e9fa5c042995e</link>
        <description>Merge tag &apos;nand/for-6.17&apos; into mtd/next* Raw NAND changes:Various controller drivers received minor fixes like DMA mapping checks,better timing derivations or bitflip statistics.It has also been discovered that some Hynix NAND flashes were notsupporting read-retries, which is not properly supported.* SPI NAND changes:In order to support high-speed modes, certain chips need extraconfiguration like adding more dummy cycles. This is now possible,especially on Winbond chips.Aside from that, Gigadevice gets support for a new chip (GD5F1GM9).Signed-off-by: Miquel Raynal &lt;miquel.raynal@bootlin.com&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Thu, 31 Jul 2025 18:52:16 +0200</pubDate>
        <dc:creator>Miquel Raynal &lt;miquel.raynal@bootlin.com&gt;</dc:creator>
    </item>
<item>
        <title>bbfd5594756011167b8f8de9a00e0c946afda1e6 - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#bbfd5594756011167b8f8de9a00e0c946afda1e6</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextNeed to pull in a67221b5eb8d (&quot;drm/i915/dp: Return min bpc supported by source instead of 0&quot;)in order to fix build breakage on GCC 9.4.0 (from Ubuntu 20.04).Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Wed, 28 May 2025 09:20:17 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>db5302ae571beec635c1a96e7f72926a4e65195e - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#db5302ae571beec635c1a96e7f72926a4e65195e</link>
        <description>Merge drm/drm-next into drm-intel-nextBackmerge to sync with v6.15-rc, xe, and specifically async flip changesin drm-misc.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Fri, 16 May 2025 09:22:36 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>886178a33a30fe685e926d84f531243982fb3c70 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after rc3</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#886178a33a30fe685e926d84f531243982fb3c70</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after rc3Cross-merge BPF, perf and other fixes after downstream PRs.It restores BPF CI to green after critical fixcommit bc4394e5e79c (&quot;perf: Fix the throttle error of some clock events&quot;)No conflicts.Signed-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Thu, 26 Jun 2025 18:48:06 +0200</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>62deb67fc519ee3b394f094982851d1ff3992731 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#62deb67fc519ee3b394f094982851d1ff3992731</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netCross-merge networking fixes after downstream PR (net-6.16-rc3).No conflicts or adjacent changes.Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Thu, 12 Jun 2025 19:08:24 +0200</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5bf2f5119b9e957f773a22f226974166b58cff32 - Merge tag &apos;v6.16&apos; into x86/cpu, to resolve conflict</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/powerpc/kernel/vdso/Makefile#5bf2f5119b9e957f773a22f226974166b58cff32</link>
        <description>Merge tag &apos;v6.16&apos; into x86/cpu, to resolve conflictResolve overlapping context conflict between this upstream fix:  d8010d4ba43e (&quot;x86/bugs: Add a Transient Scheduler Attacks mitigation&quot;)And this pending commit in tip:x86/cpu:  65f55a301766 (&quot;x86/CPU/AMD: Add CPUID faulting support&quot;)  Conflicts:	arch/x86/kernel/cpu/amd.cSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/arch/powerpc/kernel/vdso/Makefile</description>
        <pubDate>Mon, 28 Jul 2025 07:12:53 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
