Miguel Ojeda
19a44efe43
rust: kbuild: allow unused_features
...
commit 592c61f3bf upstream.
Starting with the upcoming Rust 1.96.0 (to be released 2026-05-28),
`rustc` introduces the new lint `unused_features` [1], which warns [2]:
warning: feature `used_with_arg` is declared but not used
--> <crate attribute>:1:93
|
1 | #![feature(asm_const,asm_goto,arbitrary_self_types,lint_reasons,offset_of_nested,raw_ref_op,used_with_arg)]
| ^^^^^^^^^^^^^
|
= note: `#[warn(unused_features)]` (part of `#[warn(unused)]`) on by default
The original goal of using `-Zcrate-attr` automatically was that there
is a consistent set of features enabled and managed globally for all
Rust kernel code (modulo exceptions like the `rust/` crated).
While we could require crates to enable features manually (even if we
still keep the `-Zallow-features=` list, i.e. removing the `-Zcrate-attr`
list), it is not really worth making all developers worry about it just
for a new lint.
The features are expected to eventually become stable anyway (most already
did), and thus having to remove features in every file that may use them
is not worth it either.
Thus just allow the new lint globally.
The lint actually existed for a long time, which is why `rustc` does
not complain about an unknown lint in the stable versions we support,
but it was "disabled" years ago [3], and now it was made to work again.
For extra context, the new implementation of the lint has already been
improved to avoid linting about features that became stable thanks to
Benno's report and the ensuing discussion [4] [5], but while that helps,
it is still the case that we may have features enabled that are not used
for one reason or another in a particular crate.
Cc: stable@vger.kernel.org # Needed in 6.12.y and later (Rust is pinned in older LTSs).
Link: https://github.com/rust-lang/rust/pull/152164 [1]
Link: https://github.com/Rust-for-Linux/pin-init/pull/114 [2]
Link: https://github.com/rust-lang/rust/issues/44232 [3]
Link: https://github.com/rust-lang/rust/issues/153523 [4]
Link: https://github.com/rust-lang/rust/pull/153610 [5]
Reviewed-by: Benno Lossin <lossin@kernel.org >
Reviewed-by: Gary Guo <gary@garyguo.net >
Link: https://patch.msgid.link/20260312111014.74198-1-ojeda@kernel.org
Signed-off-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-03-25 11:08:32 +01:00
Greg Kroah-Hartman
6f232446a6
Linux 6.12.77
...
Link: https://lore.kernel.org/r/20260312201018.128816016@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Mark Brown <broonie@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-03-13 17:20:49 +01:00
Sasha Levin
39b686f8d5
Linux 6.12.76
...
Signed-off-by: Sasha Levin <sashal@kernel.org >
2026-03-05 10:04:32 -05:00
Sasha Levin
c1924e059c
Linux 6.12.75
...
Signed-off-by: Sasha Levin <sashal@kernel.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Shung-Hsi Yu <shung-hsi.yu@suse.com >
Tested-by: Francesco Dolcini <francesco.dolcini@toradex.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Dominique Martinet <dominique.martinet@atmark-techno.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
2026-03-04 07:28:10 -05:00
Josh Poimboeuf
42c7b5d002
kbuild: Add objtool to top-level clean target
...
[ Upstream commit 68b4fe32d7 ]
Objtool is an integral part of the build, make sure it gets cleaned by
"make clean" and "make mrproper".
Fixes: 442f04c34a ("objtool: Add tool to perform compile-time stack metadata validation")
Reported-by: Jens Remus <jremus@linux.ibm.com >
Closes: https://lore.kernel.org/15f2af3b-be33-46fc-b972-6b8e7e0aa52e@linux.ibm.com
Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org >
Tested-by: Jens Remus <jremus@linux.ibm.com >
Link: https://patch.msgid.link/968faf2ed30fa8b3519f79f01a1ecfe7929553e5.1770759919.git.jpoimboe@kernel.org
[nathan: use Closes: instead of Link: per checkpatch.pl]
Signed-off-by: Nathan Chancellor <nathan@kernel.org >
Signed-off-by: Sasha Levin <sashal@kernel.org >
2026-03-04 07:20:35 -05:00
Greg Kroah-Hartman
444b39ef61
Linux 6.12.74
...
Link: https://lore.kernel.org/r/20260217200005.998240758@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Pavel Machek (CIP) <pavel@nabladev.com >
Tested-by: Francesco Dolcini <francesco.dolcini@toradex.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-02-19 16:29:56 +01:00
Greg Kroah-Hartman
5fb0303f6c
Linux 6.12.73
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-02-16 17:09:13 +01:00
Greg Kroah-Hartman
19b3cac2b5
Linux 6.12.72
...
Link: https://lore.kernel.org/r/20260213134704.728003077@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Barry K. Nathan <barryn@pobox.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-02-16 10:18:46 +01:00
Greg Kroah-Hartman
ae591174b1
Linux 6.12.71
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-02-12 13:14:57 +01:00
Greg Kroah-Hartman
88969c9516
Linux 6.12.70
...
Link: https://lore.kernel.org/r/20260209142310.204833231@linuxfoundation.org
Tested-by: Francesco Dolcini <francesco.dolcini@toradex.com >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Souleymane Conte <conte.souleymane@gmail.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Mark Brown <broonie@kernel.org
Tested-by: Jeffrin Jose T <jeffrin@rajagiritech.edu.in >
Tested-by: Shung-Hsi Yu <shung-hsi.yu@suse.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-02-11 13:40:29 +01:00
Greg Kroah-Hartman
ff21773827
Linux 6.12.69
...
Link: https://lore.kernel.org/r/20260204143846.906385641@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Francesco Dolcini <francesco.dolcini@toradex.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Shung-Hsi Yu <shung-hsi.yu@suse.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-02-06 16:55:51 +01:00
Greg Kroah-Hartman
90ecf7d9da
Linux 6.12.68
...
Link: https://lore.kernel.org/r/20260128145334.006287341@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Shung-Hsi Yu <shung-hsi.yu@suse.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Slade Watkins <sr@sladewatkins.com >
Tested-by: Francesco Dolcini <francesco.dolcini@toradex.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-01-30 10:28:49 +01:00
Greg Kroah-Hartman
abf529abd6
Linux 6.12.67
...
Link: https://lore.kernel.org/r/20260121181411.452263583@linuxfoundation.org
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Shung-Hsi Yu <shung-hsi.yu@suse.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Francesco Dolcini <francesco.dolcini@toradex.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-01-23 11:18:52 +01:00
Greg Kroah-Hartman
f6044d1fd8
Linux 6.12.66
...
Link: https://lore.kernel.org/r/20260115164151.948839306@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Slade Watkins <sr@sladewatkins.com >
Tested-by: Francesco Dolcini <francesco.dolcini@toradex.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-01-17 16:31:30 +01:00
Greg Kroah-Hartman
39cb076c7d
Linux 6.12.65
...
Link: https://lore.kernel.org/r/20260109112133.973195406@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Slade Watkins <sr@sladewatkins.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Francesco Dolcini <francesco.dolcini@toradex.com >
Tested-by: Jeffrin Jose T <jeffrin@rajagiritech.edu.in >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-01-11 15:25:22 +01:00
Greg Kroah-Hartman
1a4a7249e7
Linux 6.12.64
...
Link: https://lore.kernel.org/r/20260106170451.332875001@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Pavel Machek (CIP) <pavel@nabladev.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Francesco Dolcini <francesco.dolcini@toradex.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Jeffrin Jose T <jeffrin@rajagiritech.edu.in >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2026-01-08 10:15:06 +01:00
Greg Kroah-Hartman
567bd8cbc2
Linux 6.12.63
...
Link: https://lore.kernel.org/r/20251216111320.896758933@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Jeffrin Jose T <jeffrin@rajagiritech.edu.in >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-12-18 13:55:23 +01:00
Greg Kroah-Hartman
53d3c6ddbb
Linux 6.12.62
...
Link: https://lore.kernel.org/r/20251210072948.125620687@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Jeffrin Jose T <jeffrin@rajagiritech.edu.in >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Dileep Malepu <dileep.debian@gmail.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-12-12 18:37:22 +01:00
Greg Kroah-Hartman
dcbeffaf66
Linux 6.12.61
...
Link: https://lore.kernel.org/r/20251203152343.285859633@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Jeffrin Jose T <jeffrin@rajagiritech.edu.in >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Dileep Malepu <dileep.debian@gmail.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-12-07 06:25:03 +09:00
Greg Kroah-Hartman
318a47068f
Linux 6.12.60
...
Link: https://lore.kernel.org/r/20251127144032.705323598@linuxfoundation.org
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Link: https://lore.kernel.org/r/20251127150346.125775439@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Dileep Malepu <dileep.debian@gmail.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-12-01 11:43:41 +01:00
Greg Kroah-Hartman
d5dc97879a
Linux 6.12.59
...
Link: https://lore.kernel.org/r/20251121130143.857798067@linuxfoundation.org
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Jeffrin Jose T <jeffrin@rajagiritech.edu.in >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-11-24 10:36:08 +01:00
Greg Kroah-Hartman
7475d78416
Linux 6.12.58
...
Link: https://lore.kernel.org/r/20251111004526.816196597@linuxfoundation.org
Link: https://lore.kernel.org/r/20251111012348.571643096@linuxfoundation.org
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Slade Watkins <sr@sladewatkins.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Dileep Malepu <dileep.debian@gmail.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
2025-11-13 15:34:41 -05:00
Greg Kroah-Hartman
8a243ecde1
Linux 6.12.57
...
Link: https://lore.kernel.org/r/20251031140043.939381518@linuxfoundation.org
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Dileep Malepu <dileep.debian@gmail.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-11-02 22:15:23 +09:00
Greg Kroah-Hartman
4408a3d67e
Linux 6.12.56
...
Link: https://lore.kernel.org/r/20251027183453.919157109@linuxfoundation.org
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Dileep Malepu <dileep.debian@gmail.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Slade Watkins <sr@sladewatkins.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-10-29 14:09:02 +01:00
Linus Torvalds
73a722a4f1
Unbreak 'make tools/*' for user-space targets
...
[ Upstream commit ee916dccd4 ]
This pattern isn't very documented, and apparently not used much outside
of 'make tools/help', but it has existed for over a decade (since commit
ea01fa9f63 : "tools: Connect to the kernel build system").
However, it doesn't work very well for most cases, particularly the
useful "tools/all" target, because it overrides the LDFLAGS value with
an empty one.
And once overridden, 'make' will then not honor the tooling makefiles
trying to change it - which then makes any LDFLAGS use in the tooling
directory break, typically causing odd link errors.
Remove that LDFLAGS override, since it seems to be entirely historical.
The core kernel makefiles no longer modify LDFLAGS as part of the build,
and use kernel-specific link flags instead (eg 'KBUILD_LDFLAGS' and
friends).
This allows more of the 'make tools/*' cases to work. I say 'more',
because some of the tooling build rules make various other assumptions
or have other issues, so it's still a bit hit-or-miss. But those issues
tend to show up with the 'make -C tools xyz' pattern too, so now it's no
longer an issue of this particular 'tools/*' build rule being special.
Acked-by: Nathan Chancellor <nathan@kernel.org >
Cc: Nicolas Schier <nicolas@fjasle.eu >
Cc: Borislav Petkov <bp@alien8.de >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
Signed-off-by: Sasha Levin <sashal@kernel.org >
2025-10-29 14:08:53 +01:00
Greg Kroah-Hartman
4fc43debf5
Linux 6.12.55
...
Link: https://lore.kernel.org/r/20251021195035.953989698@linuxfoundation.org
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Link: https://lore.kernel.org/r/20251022060141.370358070@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Dileep Malepu <dileep.debian@gmail.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-10-23 16:20:48 +02:00
Greg Kroah-Hartman
c1859a8cfe
Linux 6.12.54
...
Link: https://lore.kernel.org/r/20251017145147.138822285@linuxfoundation.org
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Dileep Malepu <dileep.debian@gmail.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Pascal Ernster <git@hardfalcon.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-10-19 16:34:07 +02:00
Greg Kroah-Hartman
fcd03f7736
Linux 6.12.53
...
Link: https://lore.kernel.org/r/20251013144326.116493600@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-10-15 12:00:25 +02:00
Greg Kroah-Hartman
2b2cbdcede
Linux 6.12.52
...
Link: https://lore.kernel.org/r/20251010131331.785281312@linuxfoundation.org
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-10-12 12:57:19 +02:00
Greg Kroah-Hartman
a9152eb181
Linux 6.12.51
...
Link: https://lore.kernel.org/r/20251003160338.463688162@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Mark Brown <broonie@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-10-06 11:17:53 +02:00
Greg Kroah-Hartman
72b82d56b8
Linux 6.12.50
...
Link: https://lore.kernel.org/r/20250930143821.852512002@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Pascal Ernster <git@hardfalcon.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-10-02 13:44:15 +02:00
Greg Kroah-Hartman
da274362a7
Linux 6.12.49
...
Link: https://lore.kernel.org/r/20250922192408.913556629@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-09-25 11:13:51 +02:00
Greg Kroah-Hartman
f1e375d5eb
Linux 6.12.48
...
Link: https://lore.kernel.org/r/20250917123344.315037637@linuxfoundation.org
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-09-19 16:35:52 +02:00
Greg Kroah-Hartman
f6cf124428
Linux 6.12.47
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-09-11 17:21:47 +02:00
Greg Kroah-Hartman
d497f0738d
Linux 6.12.46
...
Link: https://lore.kernel.org/r/20250907195614.892725141@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-09-09 18:58:27 +02:00
Greg Kroah-Hartman
b0c51e95f5
Linux 6.12.45
...
Link: https://lore.kernel.org/r/20250902131939.601201881@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-09-04 15:31:56 +02:00
Greg Kroah-Hartman
11a24528d0
Linux 6.12.44
...
Link: https://lore.kernel.org/r/20250826110915.169062587@linuxfoundation.org
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-08-28 16:31:16 +02:00
Thomas Weißschuh
033b3d0e41
kbuild: userprogs: use correct linker when mixing clang and GNU ld
...
commit 936599ca51 upstream.
The userprogs infrastructure does not expect clang being used with GNU ld
and in that case uses /usr/bin/ld for linking, not the configured $(LD).
This fallback is problematic as it will break when cross-compiling.
Mixing clang and GNU ld is used for example when building for SPARC64,
as ld.lld is not sufficient; see Documentation/kbuild/llvm.rst.
Relax the check around --ld-path so it gets used for all linkers.
Fixes: dfc1b168a8 ("kbuild: userprogs: use correct lld when linking through clang")
Cc: stable@vger.kernel.org
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de >
Reviewed-by: Nathan Chancellor <nathan@kernel.org >
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-08-28 16:30:59 +02:00
Greg Kroah-Hartman
9becd7c25c
Linux 6.12.43
...
Link: https://lore.kernel.org/r/20250818124448.879659024@linuxfoundation.org
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Ron Economos <re@w6rz.net >
Link: https://lore.kernel.org/r/20250819122820.553053307@linuxfoundation.org
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Florian Fainelli <floria.fainelli@broadcom.com >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Mark Brown <broonie@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-08-20 18:30:58 +02:00
Greg Kroah-Hartman
880e4ff5d6
Linux 6.12.42
...
Link: https://lore.kernel.org/r/20250812173014.736537091@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-08-15 12:14:14 +02:00
Greg Kroah-Hartman
8f5ff9784f
Linux 6.12.41
...
Link: https://lore.kernel.org/r/20250730093233.592541778@linuxfoundation.org
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-08-01 09:48:47 +01:00
Greg Kroah-Hartman
d90ecb2b13
Linux 6.12.40
...
Link: https://lore.kernel.org/r/20250722134340.596340262@linuxfoundation.org
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-07-24 08:56:38 +02:00
Greg Kroah-Hartman
cdf264c0a5
Linux 6.12.39
...
Link: https://lore.kernel.org/r/20250715130808.777350091@linuxfoundation.org
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Link: https://lore.kernel.org/r/20250715163544.327647627@linuxfoundation.org
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Brett A C Sheffield <bacs@librecast.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-07-17 18:37:24 +02:00
Greg Kroah-Hartman
259f497740
Linux 6.12.38
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-07-14 16:02:59 +02:00
Greg Kroah-Hartman
fbad404f04
Linux 6.12.37
...
Link: https://lore.kernel.org/r/20250708162241.426806072@linuxfoundation.org
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-07-10 16:05:15 +02:00
Greg Kroah-Hartman
df64e51d4a
Linux 6.12.36
...
Link: https://lore.kernel.org/r/20250703143955.956569535@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Pascal Ernster <git@hardfalcon.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-07-06 11:01:50 +02:00
Greg Kroah-Hartman
783cd2c3dc
Linux 6.12.35
...
Link: https://lore.kernel.org/r/20250623130642.015559452@linuxfoundation.org
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Link: https://lore.kernel.org/r/20250624121426.466976226@linuxfoundation.org
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-06-27 11:11:46 +01:00
Greg Kroah-Hartman
23fdf46589
Linux 6.12.34
...
Link: https://lore.kernel.org/r/20250617152419.512865572@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Markus Reichelt <lkt+2023@mareichelt.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Mark Brown <broonie@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-06-19 15:32:38 +02:00
Greg Kroah-Hartman
e03ced99c4
Linux 6.12.33
...
Link: https://lore.kernel.org/r/20250607100717.910797456@linuxfoundation.org
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Markus Reichelt <lkt+2023@mareichelt.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-06-10 07:13:00 -04:00
Greg Kroah-Hartman
ba9210b8c9
Linux 6.12.32
...
Link: https://lore.kernel.org/r/20250602134238.271281478@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Brett Mastbergen <bmastbergen@ciq.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Salvatore Bonaccorso <carnil@debian.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-06-04 14:43:54 +02:00