<?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>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>3203a08c1266689c204fb8f10d6bb5186921fce2 - Merge tag &apos;powerpc-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#3203a08c1266689c204fb8f10d6bb5186921fce2</link>
        <description>Merge tag &apos;powerpc-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linuxPull powerpc updates from Madhavan Srinivasan: - powerpc support for huge pfnmaps - Cleanups to use masked user access - Rework pnv_ioda_pick_m64_pe() to use better bitmap API - Convert powerpc to AUDIT_ARCH_COMPAT_GENERIC - Backup region offset update to eflcorehdr - Fixes for wii/ps3 platform - Implement JIT support for private stack in powerpc - Implement JIT support for fsession in powerpc64 trampoline - Add support for instruction array and indirect jump in powerpc - Misc selftest fixes and cleanupsThanks to Abhishek Dubey, Aditya Gupta, Alex Williamson, Amit Machhiwal,Andrew Donnellan, Bartosz Golaszewski, C&#233;dric Le Goater, Chen Ni,Christophe Leroy (CS GROUP), Hari Bathini, J. Neusch&#228;fer, Mukesh KumarChaurasiya (IBM), Nam Cao, Nilay Shroff, Pavithra Prakash, Randy Dunlap,Ritesh Harjani (IBM), Shrikanth Hegde, Sourabh Jain, Vaibhav Jain,Venkat Rao Bagalkote, and Yury Norov (NVIDIA)* tag &apos;powerpc-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux: (47 commits)  mailmap: Add entry for Andrew Donnellan  powerpc32/bpf: fix loading fsession func metadata using PPC_LI32  selftest/bpf: Enable gotox tests for powerpc64  powerpc64/bpf: Add support for indirect jump  selftest/bpf: Enable instruction array test for powerpc  powerpc/bpf: Add support for instruction array  powerpc32/bpf: Add fsession support  powerpc64/bpf: Implement fsession support  selftests/bpf: Enable private stack tests for powerpc64  powerpc64/bpf: Implement JIT support for private stack  powerpc: pci-ioda: Optimize pnv_ioda_pick_m64_pe()  powerpc: pci-ioda: use bitmap_alloc() in pnv_ioda_pick_m64_pe()  powerpc/net: Inline checksum wrappers and convert to scoped user access  powerpc/sstep: Convert to scoped user access  powerpc/align: Convert emulate_spe() to scoped user access  powerpc/ptrace: Convert gpr32_set_common_user() to scoped user access  powerpc/futex: Use masked user access  powerpc/audit: Convert powerpc to AUDIT_ARCH_COMPAT_GENERIC  cpuidle: powerpc: avoid double clear when breaking snooze  powerpc/ps3: spu.c: fix enum and Return kernel-doc warnings  ...

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Wed, 15 Apr 2026 02:10:15 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>6e65886fceb23605eff952d6b1975737b4c4b154 - selftests/powerpc: Suppress -Wmaybe-uninitialized with GCC 15</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#6e65886fceb23605eff952d6b1975737b4c4b154</link>
        <description>selftests/powerpc: Suppress -Wmaybe-uninitialized with GCC 15GCC 15 reports the below false positive &apos;-Wmaybe-uninitialized&apos; warningin vphn_unpack_associativity() when building the powerpc selftests.  # make -C tools/testing/selftests TARGETS=&quot;powerpc&quot;  [...]    CC       test-vphn  In file included from test-vphn.c:3:  In function &#8216;vphn_unpack_associativity&#8217;,      inlined from &#8216;test_one&#8217; at test-vphn.c:371:2,      inlined from &#8216;test_vphn&#8217; at test-vphn.c:399:9:  test-vphn.c:10:33: error: &#8216;be_packed&#8217; may be used uninitialized [-Werror=maybe-uninitialized]     10 | #define be16_to_cpup(x)         bswap_16(*x)        |                                 ^~~~~~~~  vphn.c:42:27: note: in expansion of macro &#8216;be16_to_cpup&#8217;     42 |                 u16 new = be16_to_cpup(field++);        |                           ^~~~~~~~~~~~  In file included from test-vphn.c:19:  vphn.c: In function &#8216;test_vphn&#8217;:  vphn.c:27:16: note: &#8216;be_packed&#8217; declared here     27 |         __be64 be_packed[VPHN_REGISTER_COUNT];        |                ^~~~~~~~~  cc1: all warnings being treated as errorsWhen vphn_unpack_associativity() is called from hcall_vphn() in kernelthe error is not seen while building vphn.c during kernel compilation.This is because the top level Makefile includes &apos;-fno-strict-aliasing&apos;flag always.The issue here is that GCC 15 emits &apos;-Wmaybe-uninitialized&apos; due to typepunning between __be64[] and __b16* when accessing the buffer viabe16_to_cpup(). The underlying object is fully initialized but GCC 15fails to track the aliasing due to the strict aliasing violation here.Please refer [1] and [2]. This results in a false positive warning whichis promoted to an error under &apos;-Werror&apos;. This problem is not seen whenthe compilation is performed with GCC 13 and 14. An issue [1] has alsobeen created on GCC bugzilla.The selftest compiles fine with &apos;-fno-strict-aliasing&apos;. Since this GCCflag is used to compile vphn.c in kernel too, the same flag should beused to build vphn tests when compiling vphn.c in the selftest as well.Fix this by including &apos;-fno-strict-aliasing&apos; during vphn.c compilationin the selftest. This keeps the build working while limiting the scopeof the suppression to building vphn tests.[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=124427[2] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99768Fixes: 58dae82843f5 (&quot;selftests/powerpc: Add test for VPHN&quot;)Reviewed-by: Vaibhav Jain &lt;vaibhav@linux.ibm.com&gt;Signed-off-by: Amit Machhiwal &lt;amachhiw@linux.ibm.com&gt;Tested-by: Venkat Rao Bagalkote &lt;venkat88@linux.ibm.com&gt;Signed-off-by: Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;Link: https://patch.msgid.link/20260313165426.43259-1-amachhiw@linux.ibm.com

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Fri, 13 Mar 2026 17:54:26 +0100</pubDate>
        <dc:creator>Amit Machhiwal &lt;amachhiw@linux.ibm.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/tools/testing/selftests/powerpc/vphn/Makefile#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/tools/testing/selftests/powerpc/vphn/Makefile</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/tools/testing/selftests/powerpc/vphn/Makefile#36ec807b627b4c0a0a382f0ae48eac7187d14b2b</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.12 merge window.

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Fri, 20 Sep 2024 10:24:24 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>3daee2e4b3568f0ed88b0598df96547fcf21cb9b - Merge tag &apos;v6.10&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#3daee2e4b3568f0ed88b0598df96547fcf21cb9b</link>
        <description>Merge tag &apos;v6.10&apos; into nextSync up with mainline to bring in device_for_each_child_node_scoped()and other newer APIs.

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Tue, 16 Jul 2024 00:50:05 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>afeea2758b4f1210361ce2a91d8fa3e7df606ad2 - Merge drm-misc-next-2024-07-04 into drm-misc-next-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#afeea2758b4f1210361ce2a91d8fa3e7df606ad2</link>
        <description>Merge drm-misc-next-2024-07-04 into drm-misc-next-fixesLet&apos;s start the drm-misc-next-fixes cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Thu, 04 Jul 2024 15:19:33 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>d754ed2821fd9675d203cb73c4afcd593e28b7d0 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#d754ed2821fd9675d203cb73c4afcd593e28b7d0</link>
        <description>Merge drm/drm-next into drm-intel-nextSync to v6.10-rc3.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Wed, 19 Jun 2024 10:38:31 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>89aa02edaa30e4327ebc8fca9b80795bbfd4ce9b - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#89aa02edaa30e4327ebc8fca9b80795bbfd4ce9b</link>
        <description>Merge drm/drm-next into drm-xe-nextNeeded to get tracing cleanup and add mmio tracing series.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Wed, 12 Jun 2024 17:31:42 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>92815da4576a495cb6362cdfb132152fccc2222d - Merge remote-tracking branch &apos;drm-misc/drm-misc-next&apos; into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#92815da4576a495cb6362cdfb132152fccc2222d</link>
        <description>Merge remote-tracking branch &apos;drm-misc/drm-misc-next&apos; into HEADMerge drm-misc-next tree into the msm-next tree in order to be able touse HDMI connector framework for the MSM HDMI driver.

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Wed, 12 Jun 2024 15:51:59 +0200</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>375c4d1583948cf2439833e4a85d5a0aee853895 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#375c4d1583948cf2439833e4a85d5a0aee853895</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s start the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Mon, 27 May 2024 11:08:31 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99 - Merge branch &apos;tip/x86/cpu&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99</link>
        <description>Merge branch &apos;tip/x86/cpu&apos;The Lunarlake patches rely on the new VFM stuff.Signed-off-by: Peter Zijlstra &lt;peterz@infradead.org&gt;

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Thu, 04 Jul 2024 16:00:24 +0200</pubDate>
        <dc:creator>Peter Zijlstra &lt;peterz@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>594ce0b8a998aa4d05827cd7c0d0dcec9a1e3ae2 - Merge topic branches &apos;clkdev&apos; and &apos;fixes&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#594ce0b8a998aa4d05827cd7c0d0dcec9a1e3ae2</link>
        <description>Merge topic branches &apos;clkdev&apos; and &apos;fixes&apos; into for-linus

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Mon, 10 Jun 2024 13:03:21 +0200</pubDate>
        <dc:creator>Russell King (Oracle) &lt;rmk+kernel@armlinux.org.uk&gt;</dc:creator>
    </item>
<item>
        <title>f73a058be5d70dd81a43f16b2bbff4b1576a7af8 - Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#f73a058be5d70dd81a43f16b2bbff4b1576a7af8</link>
        <description>Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixesv6.10-rc1 is released, forward from v6.9Signed-off-by: Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Tue, 28 May 2024 22:21:34 +0200</pubDate>
        <dc:creator>Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ff2632d7d08edc11e8bd0629e9fcfebab25c78b4 - Merge tag &apos;powerpc-6.10-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#ff2632d7d08edc11e8bd0629e9fcfebab25c78b4</link>
        <description>Merge tag &apos;powerpc-6.10-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linuxPull powerpc updates from Michael Ellerman: - Enable BPF Kernel Functions (kfuncs) in the powerpc BPF JIT. - Allow per-process DEXCR (Dynamic Execution Control Register) settings   via prctl, notably NPHIE which controls hashst/hashchk for ROP   protection. - Install powerpc selftests in sub-directories. Note this changes the   way run_kselftest.sh needs to be invoked for powerpc selftests. - Change fadump (Firmware Assisted Dump) to better handle memory   add/remove. - Add support for passing additional parameters to the fadump kernel. - Add support for updating the kdump image on CPU/memory add/remove   events. - Other small features, cleanups and fixes.Thanks to Andrew Donnellan, Andy Shevchenko, Aneesh Kumar K.V, ArndBergmann, Benjamin Gray, Bjorn Helgaas, Christian Zigotzky, ChristopheJaillet, Christophe Leroy, Colin Ian King, C&#233;dric Le Goater, Dr. DavidAlan Gilbert, Erhard Furtner, Frank Li, GUO Zihua, Ganesh Goudar, GeoffLevand, Ghanshyam Agrawal, Greg Kurz, Hari Bathini, Joel Stanley, JustinStitt, Kunwu Chan, Li Yang, Lidong Zhong, Madhavan Srinivasan, MaheshSalgaonkar, Masahiro Yamada, Matthias Schiffer, Naresh Kamboju, NathanChancellor, Nathan Lynch, Naveen N Rao, Nicholas Miehlbradt, Ran Wang,Randy Dunlap, Ritesh Harjani, Sachin Sant, Shirisha Ganta, ShrikanthHegde, Sourabh Jain, Stephen Rothwell, sundar, Thorsten Blum, VaibhavJain, Xiaowei Bao, Yang Li, and Zhao Chenhui.* tag &apos;powerpc-6.10-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux: (85 commits)  powerpc/fadump: Fix section mismatch warning  powerpc/85xx: fix compile error without CONFIG_CRASH_DUMP  powerpc/fadump: update documentation about bootargs_append  powerpc/fadump: pass additional parameters when fadump is active  powerpc/fadump: setup additional parameters for dump capture kernel  powerpc/pseries/fadump: add support for multiple boot memory regions  selftests/powerpc/dexcr: Fix spelling mistake &quot;predicition&quot; -&gt; &quot;prediction&quot;  KVM: PPC: Book3S HV nestedv2: Fix an error handling path in gs_msg_ops_kvmhv_nestedv2_config_fill_info()  KVM: PPC: Fix documentation for ppc mmu caps  KVM: PPC: code cleanup for kvmppc_book3s_irqprio_deliver  KVM: PPC: Book3S HV nestedv2: Cancel pending DEC exception  powerpc/xmon: Check cpu id in commands &quot;c#&quot;, &quot;dp#&quot; and &quot;dx#&quot;  powerpc/code-patching: Use dedicated memory routines for patching  powerpc/code-patching: Test patch_instructions() during boot  powerpc64/kasan: Pass virtual addresses to kasan_init_phys_region()  powerpc: rename SPRN_HID2 define to SPRN_HID2_750FX  powerpc: Fix typos  powerpc/eeh: Fix spelling of the word &quot;auxillary&quot; and update comment  macintosh/ams: Fix unused variable warning  powerpc/Makefile: Remove bits related to the previous use of -mcmodel=large  ...

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Fri, 17 May 2024 18:05:46 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>108e5e683333615023265a9a73a29d4c2fa16c70 - selftests/powerpc: make sub-folders buildable on their own</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#108e5e683333615023265a9a73a29d4c2fa16c70</link>
        <description>selftests/powerpc: make sub-folders buildable on their ownBuild breaks when executing make with run_tests for sub-foldersunder powerpc. This is because, CFLAGS and GIT_VERSION macros aredefined in Makefile of toplevel powerpc folder.  make: Entering directory &apos;/home/maddy/linux/tools/testing/selftests/powerpc/mm&apos;  gcc     hugetlb_vs_thp_test.c ../harness.c ../utils.c  -o /home/maddy/selftest_output//hugetlb_vs_thp_test  hugetlb_vs_thp_test.c:6:10: fatal error: utils.h: No such file or directory      6 | #include &quot;utils.h&quot;        |          ^~~~~~~~~  compilation terminated.Fix this by adding the flags.mk in each sub-folder Makefile. Also removethe CFLAGS and GIT_VERSION macros from powerpc/ folder Makefile sincethe same is definied in flags.mkSigned-off-by: Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20240229093711.581230-3-maddy@linux.ibm.com

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Thu, 29 Feb 2024 10:37:11 +0100</pubDate>
        <dc:creator>Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>37496845c812db2a470d51088a59ee38156e8058 - selftests/powerpc: Re-order *FLAGS to follow lib.mk</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#37496845c812db2a470d51088a59ee38156e8058</link>
        <description>selftests/powerpc: Re-order *FLAGS to follow lib.mkIn some powerpc/ sub-folder Makefiles, CFLAGS are defined before lib.mkinclude. Clean it up by re-ordering the flags to follow after the mkinclude. This is needed to support sub-folders in powerpc/ buildable onits own.Signed-off-by: Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20240229093711.581230-1-maddy@linux.ibm.com

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Thu, 29 Feb 2024 10:37:09 +0100</pubDate>
        <dc:creator>Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>0898782247ae533d1f4e47a06bc5d4870931b284 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#0898782247ae533d1f4e47a06bc5d4870931b284</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 5.4 merge window.

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Mon, 16 Sep 2019 18:56:27 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d3f9990f1b48514b33342612b51fad238592d774 - Merge branch &apos;for-next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#d3f9990f1b48514b33342612b51fad238592d774</link>
        <description>Merge branch &apos;for-next&apos; into for-linusSigned-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Sat, 14 Sep 2019 17:24:57 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>6f50fa2a6f1395ad5f59ce7b87730f1f3ea19d76 - Merge branch &apos;master&apos; into for-5.4/logitech</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/powerpc/vphn/Makefile#6f50fa2a6f1395ad5f59ce7b87730f1f3ea19d76</link>
        <description>Merge branch &apos;master&apos; into for-5.4/logitechSigned-off-by: Benjamin Tissoires &lt;benjamin.tissoires@redhat.com&gt;

            List of files:
            /linux/tools/testing/selftests/powerpc/vphn/Makefile</description>
        <pubDate>Fri, 23 Aug 2019 11:35:39 +0200</pubDate>
        <dc:creator>Benjamin Tissoires &lt;benjamin.tissoires@redhat.com&gt;</dc:creator>
    </item>
</channel>
</rss>
