<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/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 2025</copyright>
    <generator>Java</generator><item>
        <title>5d6919055dec134de3c40167a490f33c74c12581 - Linux 7.1-rc3</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#5d6919055dec134de3c40167a490f33c74c12581</link>
        <description>Linux 7.1-rc3

            List of files:
            /linux/Makefile</description>
        <pubDate>Sun, 10 May 2026 21:08:09 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>e92b2872d0b198a77c0a438c5cdb1c5510762c1b - Merge tag &apos;rust-fixes-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/ojeda/linux</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#e92b2872d0b198a77c0a438c5cdb1c5510762c1b</link>
        <description>Merge tag &apos;rust-fixes-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/ojeda/linuxPull Rust fixes from Miguel Ojeda: &quot;Toolchain and infrastructure:    - Add &apos;bindgen&apos; target to make UML 32-bit builds work with GCC    - Disable two Clippy warnings (&apos;collapsible_{if,match}&apos;)  &apos;pin-init&apos; crate:    - Fix unsoundness issue that created &amp;&apos;static references&quot;* tag &apos;rust-fixes-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/ojeda/linux:  rust: allow `clippy::collapsible_if` globally  rust: allow `clippy::collapsible_match` globally  rust: pin-init: fix incorrect accessor reference lifetime  rust: pin-init: internal: move alignment check to `make_field_check`  rust: arch: um: Fix building 32-bit UML with GCC

            List of files:
            /linux/Makefile</description>
        <pubDate>Sat, 09 May 2026 18:24:02 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>06bc7ff0a1e0f2b0102e1314e3527a7ec0997851 - Merge tag &apos;asoc-fix-v7.1-rc2&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#06bc7ff0a1e0f2b0102e1314e3527a7ec0997851</link>
        <description>Merge tag &apos;asoc-fix-v7.1-rc2&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v7.1Another batch of fixes, plus a couple of quirks (mostly AMD ones, as hasbeen the case recently).  All driver changes, including fixes for theKUnit tests for the Cirrus drivers that could cause memory corruption.

            List of files:
            /linux/Makefile</description>
        <pubDate>Wed, 06 May 2026 14:10:00 +0000</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>7fd2df204f342fc17d1a0bfcd474b24232fb0f32 - Linux 7.1-rc2</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#7fd2df204f342fc17d1a0bfcd474b24232fb0f32</link>
        <description>Linux 7.1-rc2

            List of files:
            /linux/Makefile</description>
        <pubDate>Sun, 03 May 2026 21:21:25 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>2adc8664018c1cc595c7c0c98474a33c7fe32a85 - rust: allow `clippy::collapsible_if` globally</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#2adc8664018c1cc595c7c0c98474a33c7fe32a85</link>
        <description>rust: allow `clippy::collapsible_if` globallySimilar to `clippy::collapsible_match` (globally allowed in the previouscommit), the `clippy::collapsible_if` lint [1] can make code harder toread in certain cases.Thus just let developers decide on their own.In addition, remove the existing `expect` we had.Cc: stable@vger.kernel.org # Needed in 6.12.y and later (Rust is pinned in older LTSs).Suggested-by: Gary Guo &lt;gary@garyguo.net&gt;Link: https://lore.kernel.org/rust-for-linux/DGROP5CHU1QZ.1OKJRAUZXE9WC@garyguo.net/Link: https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if [1]Reviewed-by: Gary Guo &lt;gary@garyguo.net&gt;Link: https://patch.msgid.link/20260426144201.227108-2-ojeda@kernel.orgSigned-off-by: Miguel Ojeda &lt;ojeda@kernel.org&gt;

            List of files:
            /linux/Makefile</description>
        <pubDate>Sun, 26 Apr 2026 14:42:01 +0000</pubDate>
        <dc:creator>Miguel Ojeda &lt;ojeda@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>838d852da8503372f3a1779bfbd1ccb93153ab4e - rust: allow `clippy::collapsible_match` globally</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#838d852da8503372f3a1779bfbd1ccb93153ab4e</link>
        <description>rust: allow `clippy::collapsible_match` globallyThe `clippy::collapsible_match` lint [1] can make code harder to readin certain cases [2], e.g.      CLIPPY P rust/libmacros.so - due to command line change    warning: this `if` can be collapsed into the outer `match`      --&gt; rust/pin-init/internal/src/helpers.rs:91:17       |    91 | /                 if nesting == 1 {    92 | |                     impl_generics.push(tt.clone());    93 | |                     impl_generics.push(tt);    94 | |                     skip_until_comma = false;    95 | |                 }       | |_________________^       |       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_match       = note: `-W clippy::collapsible-match` implied by `-W clippy::all`       = help: to override `-W clippy::all` add `#[allow(clippy::collapsible_match)]`    help: collapse nested if block       |    90 ~             TokenTree::Punct(p) if skip_until_comma &amp;&amp; p.as_char() == &apos;,&apos;    91 ~                 &amp;&amp; nesting == 1 =&gt; {    92 |                     impl_generics.push(tt.clone());    93 |                     impl_generics.push(tt);    94 |                     skip_until_comma = false;    95 ~                 }       |The lint does not have much upside -- when the suggestion may be a goodone, it would still read fine when nested anyway. And it is the kind oflint that may easily bias people to just apply the suggestion insteadof allowing it.[ In addition, as Gary points out [3], the suggestion is also wrong [4] and  in the process of being fixed [5], possibly for Rust 1.97.0:  Link: https://lore.kernel.org/rust-for-linux/DI3YV94TH9I3.1SOHW51552497@garyguo.net/ [3]  Link: https://github.com/rust-lang/rust-clippy/issues/16875 [4]  Link: https://github.com/rust-lang/rust-clippy/pull/16878 [5]    - Miguel ]Thus just let developers decide on their own.Cc: stable@vger.kernel.org # Needed in 6.12.y and later (Rust is pinned in older LTSs).Link: https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_match [1]Link: https://lore.kernel.org/rust-for-linux/CANiq72nWYJna_hdFxjQCQZK6yJBrr1Mb86iKavivV0U0BgufeA@mail.gmail.com/ [2]Reviewed-by: Gary Guo &lt;gary@garyguo.net&gt;Link: https://patch.msgid.link/20260426144201.227108-1-ojeda@kernel.orgSigned-off-by: Miguel Ojeda &lt;ojeda@kernel.org&gt;

            List of files:
            /linux/Makefile</description>
        <pubDate>Sun, 26 Apr 2026 14:42:00 +0000</pubDate>
        <dc:creator>Miguel Ojeda &lt;ojeda@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/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/Makefile</description>
        <pubDate>Mon, 27 Apr 2026 08:26:49 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>254f49634ee16a731174d2ae34bc50bd5f45e731 - Linux 7.1-rc1</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#254f49634ee16a731174d2ae34bc50bd5f45e731</link>
        <description>Linux 7.1-rc1

            List of files:
            /linux/Makefile</description>
        <pubDate>Sun, 26 Apr 2026 21:19:00 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>b935117fe6d1af576e39b1f18c9e875f44bd146f - Merge tag &apos;kbuild-fixes-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#b935117fe6d1af576e39b1f18c9e875f44bd146f</link>
        <description>Merge tag &apos;kbuild-fixes-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linuxPull Kbuild fixes from Nicolas Schier: - builddeb - avoid recompiles for non-cross-compiles   Avoid triggering complete rebuilds for non-cross-compile Debian   package builds by only triggering the rebuild of host tools for   actual cross-compile builds - Never respect CONFIG_WERROR / W=e to fixdep   Avoid spurious rebuilds of fixdep w/ and w/o -Werror during a single   kbuild invocation by never respecting CONFIG_WERROR for fixdep* tag &apos;kbuild-fixes-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux:  kbuild: Never respect CONFIG_WERROR / W=e to fixdep  kbuild: builddeb - avoid recompiles for non-cross-compiles

            List of files:
            /linux/Makefile</description>
        <pubDate>Sun, 26 Apr 2026 00:04:15 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>75f7c47ccd78c947cf1b6ddb18ea453ff0555716 - kbuild: Never respect CONFIG_WERROR / W=e to fixdep</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#75f7c47ccd78c947cf1b6ddb18ea453ff0555716</link>
        <description>kbuild: Never respect CONFIG_WERROR / W=e to fixdepThe fixdep hostprog may be built multiple times during a single build.Once during the configuration phase and later during the regular phase.As only the regular build phase respects CONFIG_WERROR / W=e, thecompiler flags might change between the phases, leading to rebuilds.Example, the rebuilds will happen twice on each invocation of the build:  $ make allyesconfig prepare  make[1]: Entering directory &apos;/tmp/deleteme&apos;    HOSTCC  scripts/basic/fixdep  #  # No change to .config  #    HOSTCC  scripts/basic/fixdep    DESCEND objtool    INSTALL libsubcmd_headers  make[1]: Leaving directory &apos;/tmp/deleteme&apos;Fix the compilation flags used for scripts/basic/ beforescripts/Makefile.warn is evaluated to stop CONFIG_WERROR / W=einfluencing the fixdep build to avoid the spurious rebuilds.Fixes: 7ded7d37e5f5 (&quot;scripts/Makefile.extrawarn: Respect CONFIG_WERROR / W=e for hostprogs&quot;)Signed-off-by: Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;Reviewed-by: Nathan Chancellor &lt;nathan@kernel.org&gt;Link: https://patch.msgid.link/20260422-kbuild-scripts-basic-werror-v1-1-8c6912ff22e0@weissschuh.netSigned-off-by: Nicolas Schier &lt;nsc@kernel.org&gt;

            List of files:
            /linux/Makefile</description>
        <pubDate>Wed, 22 Apr 2026 15:10:27 +0000</pubDate>
        <dc:creator>Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;</dc:creator>
    </item>
<item>
        <title>d13e855ee923c2ae78307bf6c354305f1406b9e2 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#d13e855ee923c2ae78307bf6c354305f1406b9e2</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesTomi needs 7.0 to apply a patch from drm-misc-fixes.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/Makefile</description>
        <pubDate>Thu, 23 Apr 2026 12:43:06 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>2699bc6d062735f9fc430fe6dcf05b82ae8b2ab9 - Merge tag &apos;asoc-fix-v7.1-merge-window&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#2699bc6d062735f9fc430fe6dcf05b82ae8b2ab9</link>
        <description>Merge tag &apos;asoc-fix-v7.1-merge-window&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v7.1A fairly small collection of fixes, device IDs and quirks that came induring the merge window, the most remarkable of which is one for SDCAboolean firmware flags which is remarkable mainly because it ispartially in regmap.

            List of files:
            /linux/Makefile</description>
        <pubDate>Thu, 23 Apr 2026 07:34:28 +0000</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>3e9e952bb3139ad1e08f3e1960239c2988ab90c9 - Merge branch &apos;for-7.1-printf-kunit-build&apos; into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#3e9e952bb3139ad1e08f3e1960239c2988ab90c9</link>
        <description>Merge branch &apos;for-7.1-printf-kunit-build&apos; into for-linus

            List of files:
            /linux/Makefile</description>
        <pubDate>Mon, 20 Apr 2026 11:41:28 +0000</pubDate>
        <dc:creator>Petr Mladek &lt;pmladek@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>ce76a36223b853dcb6e76da6f1c4f745c3f3f7ba - spi: fix explicit controller deregistration</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#ce76a36223b853dcb6e76da6f1c4f745c3f3f7ba</link>
        <description>spi: fix explicit controller deregistrationJohan Hovold &lt;johan@kernel.org&gt; says:Turns out we have a few drivers that get the tear down ordering wrongalso when not using device managed registration (cf. [1] and [2]).Fix this to avoid issues like system errors due to unclocked accesses,NULL-pointer dereferences, hangs or failed I/O during duringderegistration (e.g. when powering down devices).Johan[1] https://lore.kernel.org/lkml/20260409120419.388546-2-johan@kernel.org/[2] https://lore.kernel.org/lkml/20260410081757.503099-1-johan@kernel.org/

            List of files:
            /linux/Makefile</description>
        <pubDate>Mon, 20 Apr 2026 11:39:35 +0000</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f4b369c6fe0ceaba2da2daff8c9eb415f85926dd - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/Makefile</description>
        <pubDate>Mon, 20 Apr 2026 01:28:57 +0000</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>500af712f9cb61e9e3d32760df0cc5dd4f3046aa - Merge branch &apos;for-7.1/winwing&apos; into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#500af712f9cb61e9e3d32760df0cc5dd4f3046aa</link>
        <description>Merge branch &apos;for-7.1/winwing&apos; into for-linus- support for rubmle effects in winwing driver (Ivan Gorinov)

            List of files:
            /linux/Makefile</description>
        <pubDate>Thu, 16 Apr 2026 19:03:22 +0000</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>d4eb7b2da66c848709e31585b9c371fa234abc39 - Merge branch &apos;for-7.1/core-v2&apos; into for-linus</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#d4eb7b2da66c848709e31585b9c371fa234abc39</link>
        <description>Merge branch &apos;for-7.1/core-v2&apos; into for-linus- fixed handling of 0-sized reports (Dmitry Torokhov)- convert core code to __free() (Dmitry Torokhov)- support for multiple batteries per HID device (Lucas Zampieri)

            List of files:
            /linux/Makefile</description>
        <pubDate>Thu, 16 Apr 2026 19:01:18 +0000</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>9a683fe0a00d2684ae874fd9eb58e6c1864fdf36 - Merge tag &apos;v7.0-rc6&apos; into perf-tools</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#9a683fe0a00d2684ae874fd9eb58e6c1864fdf36</link>
        <description>Merge tag &apos;v7.0-rc6&apos; into perf-toolsTo get the latest updates and fixes.Signed-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux/Makefile</description>
        <pubDate>Thu, 16 Apr 2026 05:40:47 +0000</pubDate>
        <dc:creator>Namhyung Kim &lt;namhyung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5d0d3623303775d750e122a2542d1a26c8573d38 - Merge tag &apos;kbuild-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#5d0d3623303775d750e122a2542d1a26c8573d38</link>
        <description>Merge tag &apos;kbuild-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linuxPull Kbuild/Kconfig updates from Nicolas Schier: &quot;Kbuild:   - reject unexpected values for LLVM=   - uapi: remove usage of toolchain headers   - switch from &apos;-fms-extensions&apos; to &apos;-fms-anonymous-structs&apos; when     available (currently: clang &gt;= 23.0.0)   - reduce the number of compiler-generated suffixes for clang thin-lto     build   - reduce output spam (&quot;GEN Makefile&quot;) when building out of tree   - improve portability for testing headers   - also test UAPI headers against C++ compilers   - drop build ID architecture allow-list in vdso_install   - only run checksyscalls when necessary   - update the debug information notes in reproducible-builds.rst   - expand inlining hints with -fdiagnostics-show-inlining-chain  Kconfig:   - forbid multiple entries with the same symbol in a choice   - error out on duplicated kconfig inclusion&quot;* tag &apos;kbuild-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux: (35 commits)  kbuild: expand inlining hints with -fdiagnostics-show-inlining-chain  kconfig: forbid multiple entries with the same symbol in a choice  Documentation: kbuild: Update the debug information notes in reproducible-builds.rst  checksyscalls: move instance functionality into generic code  checksyscalls: only run when necessary  checksyscalls: fail on all intermediate errors  checksyscalls: move path to reference table to a variable  kbuild: vdso_install: drop build ID architecture allow-list  kbuild: vdso_install: gracefully handle images without build ID  kbuild: vdso_install: hide readelf warnings  kbuild: vdso_install: split out the readelf invocation  kbuild: uapi: also test UAPI headers against C++ compilers  kbuild: uapi: provide a C++ compatible dummy definition of NULL  kbuild: uapi: handle UML in architecture-specific exclusion lists  kbuild: uapi: move all include path flags together  kbuild: uapi: move some compiler arguments out of the command definition  check-uapi: use dummy libc includes  check-uapi: honor ${CROSS_COMPILE} setting  check-uapi: link into shared objects  kbuild: reduce output spam when building out of tree  ...

            List of files:
            /linux/Makefile</description>
        <pubDate>Tue, 14 Apr 2026 16:18:40 +0000</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>6e5b0fac1063ba0b3c0e3fe1c605f95a3f45d440 - ASoC: SOF: Intel: NVL/NVL-S: add platform name</title>
        <link>http://opengrok.kc2vjw.com:8080/history/linux/Makefile#6e5b0fac1063ba0b3c0e3fe1c605f95a3f45d440</link>
        <description>ASoC: SOF: Intel: NVL/NVL-S: add platform nameBard Liao &lt;yung-chuan.liao@linux.intel.com&gt; says:The platform name will be used in the topology name.Link: https://patch.msgid.link/20260413060800.3156425-1-yung-chuan.liao@linux.intel.com

            List of files:
            /linux/Makefile</description>
        <pubDate>Tue, 14 Apr 2026 11:47:16 +0000</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
