Greg Kroah-Hartman
1998f703f4
Linux 6.6.82
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-03-09 09:55:04 +01:00
Greg Kroah-Hartman
640fad833d
Linux 6.6.81
...
Link: https://lore.kernel.org/r/20250305174500.327985489@linuxfoundation.org
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Link: https://lore.kernel.org/r/20250306151412.957725234@linuxfoundation.org
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-03-07 16:45:57 +01:00
Greg Kroah-Hartman
568e253c3e
Linux 6.6.80
...
Link: https://lore.kernel.org/r/20250224142602.998423469@linuxfoundation.org
Tested-by: FLorian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
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: Linux Kernel Functional Testing <lkft@linaro.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-02-27 04:10:54 -08:00
Greg Kroah-Hartman
c0249d3a0c
Linux 6.6.79
...
Link: https://lore.kernel.org/r/20250219082550.014812078@linuxfoundation.org
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.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: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Slade Watkins <srw@sladewatkins.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-02-21 13:57:28 +01:00
Thomas Weißschuh
16467ffd3d
kbuild: userprogs: fix bitsize and target detection on clang
...
commit 1b71c2fb04e7a713abc6edde4a412416ff3158f2 upstream.
scripts/Makefile.clang was changed in the linked commit to move --target from
KBUILD_CFLAGS to KBUILD_CPPFLAGS, as that generally has a broader scope.
However that variable is not inspected by the userprogs logic,
breaking cross compilation on clang.
Use both variables to detect bitsize and target arguments for userprogs.
Fixes: feb843a469 ("kbuild: add $(CLANG_FLAGS) to KBUILD_CPPFLAGS")
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-02-21 13:57:17 +01:00
Masahiro Yamada
627218d4ac
tools: fix annoying "mkdir -p ..." logs when building tools in parallel
...
[ Upstream commit d1d0963121769d8d16150b913fe886e48efefa51 ]
When CONFIG_OBJTOOL=y or CONFIG_DEBUG_INFO_BTF=y, parallel builds
show awkward "mkdir -p ..." logs.
$ make -j16
[ snip ]
mkdir -p /home/masahiro/ref/linux/tools/objtool && make O=/home/masahiro/ref/linux subdir=tools/objtool --no-print-directory -C objtool
mkdir -p /home/masahiro/ref/linux/tools/bpf/resolve_btfids && make O=/home/masahiro/ref/linux subdir=tools/bpf/resolve_btfids --no-print-directory -C bpf/resolve_btfids
Defining MAKEFLAGS=<value> on the command line wipes out command line
switches from the resultant MAKEFLAGS definition, even though the command
line switches are active. [1]
MAKEFLAGS puts all single-letter options into the first word, and that
word will be empty if no single-letter options were given. [2]
However, this breaks if MAKEFLAGS=<value> is given on the command line.
The tools/ and tools/% targets set MAKEFLAGS=<value> on the command
line, which breaks the following code in tools/scripts/Makefile.include:
short-opts := $(firstword -$(MAKEFLAGS))
If MAKEFLAGS really needs modification, it should be done through the
environment variable, as follows:
MAKEFLAGS=<value> $(MAKE) ...
That said, I question whether modifying MAKEFLAGS is necessary here.
The only flag we might want to exclude is --no-print-directory, as the
tools build system changes the working directory. However, people might
find the "Entering/Leaving directory" logs annoying.
I simply removed the offending MAKEFLAGS=<value>.
[1]: https://savannah.gnu.org/bugs/?62469
[2]: https://www.gnu.org/software/make/manual/make.html#Testing-Flags
Fixes: ea01fa9f63 ("tools: Connect to the kernel build system")
Fixes: a50e433327 ("perf tools: Honor parallel jobs")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org >
Tested-by: Daniel Xu <dxu@dxuuu.xyz >
Signed-off-by: Sasha Levin <sashal@kernel.org >
2025-02-21 13:57:09 +01:00
Greg Kroah-Hartman
4407146cf3
Linux 6.6.78
...
Link: https://lore.kernel.org/r/20250213142407.354217048@linuxfoundation.org
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-By: Achill Gilgenast <fossdd@pwned.life >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-02-17 09:40:43 +01:00
Greg Kroah-Hartman
c719455843
Linux 6.6.77
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-02-11 09:37:33 +01:00
Greg Kroah-Hartman
ef3ce4bf49
Linux 6.6.76
...
Link: https://lore.kernel.org/r/20250205134420.279368572@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
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 >
Link: https://lore.kernel.org/r/20250206155234.095034647@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-02-08 09:52:39 +01:00
Parth Pancholi
cbfb30ae17
kbuild: switch from lz4c to lz4 for compression
...
commit e397a603e49cc7c7c113fad9f55a09637f290c34 upstream.
Replace lz4c with lz4 for kernel image compression.
Although lz4 and lz4c are functionally similar, lz4c has been deprecated
upstream since 2018. Since as early as Ubuntu 16.04 and Fedora 25, lz4
and lz4c have been packaged together, making it safe to update the
requirement from lz4c to lz4.
Consequently, some distributions and build systems, such as OpenEmbedded,
have fully transitioned to using lz4. OpenEmbedded core adopted this
change in commit fe167e082cbd ("bitbake.conf: require lz4 instead of
lz4c"), causing compatibility issues when building the mainline kernel
in the latest OpenEmbedded environment, as seen in the errors below.
This change also updates the LZ4 compression commands to make it backward
compatible by replacing stdin and stdout with the '-' option, due to some
unclear reason, the stdout keyword does not work for lz4 and '-' works for
both. In addition, this modifies the legacy '-c1' with '-9' which is also
compatible with both. This fixes the mainline kernel build failures with
the latest master OpenEmbedded builds associated with the mentioned
compatibility issues.
LZ4 arch/arm/boot/compressed/piggy_data
/bin/sh: 1: lz4c: not found
...
...
ERROR: oe_runmake failed
Link: https://github.com/lz4/lz4/pull/553
Suggested-by: Francesco Dolcini <francesco.dolcini@toradex.com >
Signed-off-by: Parth Pancholi <parth.pancholi@toradex.com >
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org >
Cc: Salvatore Bonaccorso <carnil@debian.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-02-08 09:52:35 +01:00
Greg Kroah-Hartman
d51b7d37f1
Linux 6.6.75
...
Link: https://lore.kernel.org/r/20250130133458.903274626@linuxfoundation.org
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.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: kernelci.org bot <bot@kernelci.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-02-01 18:37:57 +01:00
Greg Kroah-Hartman
0372f43ab7
Linux 6.6.74
...
Link: https://lore.kernel.org/r/20250121174523.429119852@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: kernelci.org bot <bot@kernelci.org >
Tested-by: Mark Brown <broonie@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-01-23 17:21:19 +01:00
Greg Kroah-Hartman
3b4299ff7a
Linux 6.6.73
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-01-21 09:49:10 +01:00
Greg Kroah-Hartman
c2e4205116
Linux 6.6.72
...
Link: https://lore.kernel.org/r/20250115103554.357917208@linuxfoundation.org
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
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: Hardik Garg <hargar@linux.microsoft.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-01-17 13:36:27 +01:00
Greg Kroah-Hartman
843e64492a
Linux 6.6.71
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-01-10 14:31:36 +01:00
Greg Kroah-Hartman
1acb10106d
Linux 6.6.70
...
Link: https://lore.kernel.org/r/20250106151150.585603565@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: kernelci.org bot <bot@kernelci.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-01-09 13:32:10 +01:00
Greg Kroah-Hartman
a30cd70ab7
Linux 6.6.69
...
Link: https://lore.kernel.org/r/20241230154211.711515682@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: kernelci.org bot <bot@kernelci.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Ron Economos <re@w6rz.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2025-01-02 10:32:11 +01:00
Greg Kroah-Hartman
3ee19fb278
Linux 6.6.68
...
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Link: https://lore.kernel.org/r/20241223155359.534468176@linuxfoundation.org
Tested-by: SeongJae Park <sj@kernel.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: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: kernelci.org bot <bot@kernelci.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-12-27 13:58:58 +01:00
Greg Kroah-Hartman
ab6cc4ef42
Linux 6.6.67
...
Link: https://lore.kernel.org/r/20241217170533.329523616@linuxfoundation.org
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-12-19 18:11:37 +01:00
Greg Kroah-Hartman
a66cdcdc9e
Linux 6.6.66
...
Link: https://lore.kernel.org/r/20241212144244.601729511@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: Mark Brown <broonie@kernel.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: kernelci.org bot <bot@kernelci.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-12-14 20:00:23 +01:00
Greg Kroah-Hartman
943e0aeece
Linux 6.6.65
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-12-11 16:13:43 +01:00
Greg Kroah-Hartman
22a054ea1f
Linux 6.6.64
...
Link: https://lore.kernel.org/r/20241206143653.344873888@linuxfoundation.org
Tested-by: Mark Brown <broonie@kernel.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: kernelci.org bot <bot@kernelci.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 >
2024-12-09 10:33:11 +01:00
Greg Kroah-Hartman
bff3e13adb
Linux 6.6.63
...
Link: https://lore.kernel.org/r/20241120125629.623666563@linuxfoundation.org
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Hardik Garg hargar@linux.microsoft.com =0A=
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: kernelci.org bot <bot@kernelci.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-11-22 15:38:37 +01:00
Greg Kroah-Hartman
c1036e4f14
Linux 6.6.62
...
Link: https://lore.kernel.org/r/20241115063722.962047137@linuxfoundation.org
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.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: SeongJae Park <sj@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-11-17 15:08:59 +01:00
Greg Kroah-Hartman
f1ab3a1bcb
Linux 6.6.61
...
Link: https://lore.kernel.org/r/20241112101848.708153352@linuxfoundation.org
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.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 >
2024-11-14 13:19:41 +01:00
Greg Kroah-Hartman
9b5aad3a74
Linux 6.6.60
...
Link: https://lore.kernel.org/r/20241106120308.841299741@linuxfoundation.org
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.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 >
2024-11-08 16:28:28 +01:00
Greg Kroah-Hartman
bf3af7e92b
Linux 6.6.59
...
Link: https://lore.kernel.org/r/20241028062306.649733554@linuxfoundation.org
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Hardik Garg <hargar@linux.microsoft.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: kernelci.org bot <bot@kernelci.org >
Tested-by: Ron Economos <re@w6rz.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-11-01 01:58:34 +01:00
Greg Kroah-Hartman
18916a684a
Linux 6.6.58
...
Link: https://lore.kernel.org/r/20241021102256.706334758@linuxfoundation.org
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-10-22 15:46:36 +02:00
Greg Kroah-Hartman
e9448e371c
Linux 6.6.57
...
Link: https://lore.kernel.org/r/20241014141042.954319779@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: Shuah Khan <skhan@linuxfoundation.org >
Link: https://lore.kernel.org/r/20241015112327.341300635@linuxfoundation.org
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Kexy Biscuit <kexybiscuit@aosc.io >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-10-17 15:24:38 +02:00
Greg Kroah-Hartman
d4576c5670
Linux 6.6.56
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-10-10 12:50:06 +02:00
Greg Kroah-Hartman
9b15f68c41
Linux 6.6.55
...
Link: https://lore.kernel.org/r/20241008115629.309157387@linuxfoundation.org
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Kexy Biscuit <kexybiscuit@aosc.io >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: kernelci.org bot <bot@kernelci.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-10-10 11:58:10 +02:00
Greg Kroah-Hartman
63a57420cf
Linux 6.6.54
...
Link: https://lore.kernel.org/r/20241002125751.964700919@linuxfoundation.org
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Link: https://lore.kernel.org/r/20241003103209.857606770@linuxfoundation.org
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Pavel Machek (CIP) <pavel@denx.de >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Allen Pais <apais@linux.microsoft.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Kexy Biscuit <kexybiscuit@aosc.io >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-10-04 16:30:05 +02:00
Greg Kroah-Hartman
4ad9fa5c30
Linux 6.6.53
...
Link: https://lore.kernel.org/r/20240927121719.714627278@linuxfoundation.org
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Allen Pais <apais@linux.microsoft.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Kexy Biscuit <kexybiscuit@aosc.io >
Tested-by: kernelci.org bot <bot@kernelci.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-09-30 16:25:15 +02:00
Greg Kroah-Hartman
561bbd55f9
Linux 6.6.52
...
Link: https://lore.kernel.org/r/20240916114224.509743970@linuxfoundation.org
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.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: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Kexy Biscuit <kexybiscuit@aosc.io >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-09-18 19:24:10 +02:00
Greg Kroah-Hartman
6d1dc55b5b
Linux 6.6.51
...
Link: https://lore.kernel.org/r/20240910092608.225137854@linuxfoundation.org
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Kexy Biscuit <kexybiscuit@aosc.io >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-09-12 11:11:45 +02:00
Greg Kroah-Hartman
ad07a29023
Linux 6.6.50
...
Link: https://lore.kernel.org/r/20240905093722.230767298@linuxfoundation.org
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Link: https://lore.kernel.org/r/20240905163540.863769972@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Ron Economos <re@w6rz.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-09-08 07:54:49 +02:00
Greg Kroah-Hartman
df1a7cc5e0
Linux 6.6.49
...
Link: https://lore.kernel.org/r/20240901160807.346406833@linuxfoundation.org
Tested-by: Frank Scheiner <frank.scheiner@web.de >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Mark Brown <broonie@kernel.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-09-04 13:28:31 +02:00
Greg Kroah-Hartman
c77dee530e
Linux 6.6.48
...
Link: https://lore.kernel.org/r/20240827143843.399359062@linuxfoundation.org
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: kernelci.org bot <bot@kernelci.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-08-29 17:33:59 +02:00
Greg Kroah-Hartman
4c1a2d4cd9
Linux 6.6.47
...
Link: https://lore.kernel.org/r/20240815131838.311442229@linuxfoundation.org
Tested-by: ChromeOS CQ Test <chromeos-kernel-stable-merge@google.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Ron Economos <re@w6rz.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-08-19 06:04:32 +02:00
Greg Kroah-Hartman
99fd042016
Linux 6.6.46
...
Link: https://lore.kernel.org/r/20240812160132.135168257@linuxfoundation.org
Tested-by: ChromeOS CQ Test <chromeos-kernel-stable-merge@google.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Ron Economos <re@w6rz.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-08-14 13:59:04 +02:00
Greg Kroah-Hartman
878fbff41d
Linux 6.6.45
...
Link: https://lore.kernel.org/r/20240807150019.412911622@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Miguel Ojeda <ojeda@kernel.org >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Allen Pais <apais@linux.microsoft.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: kernelci.org bot <bot@kernelci.org >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-08-11 12:47:28 +02:00
Greg Kroah-Hartman
7213910600
Linux 6.6.44
...
Link: https://lore.kernel.org/r/20240730151639.792277039@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Allen Pais <apais@linux.microsoft.com >
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: kernelci.org bot <bot@kernelci.org >
Tested-by: Conor Dooley <conor.dooley@microchip.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-08-03 08:54:42 +02:00
Greg Kroah-Hartman
58b0425ff5
Linux 6.6.43
...
Link: https://lore.kernel.org/r/20240725142728.905379352@linuxfoundation.org
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: SeongJae Park <sj@kernel.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: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-07-27 11:34:11 +02:00
Greg Kroah-Hartman
31cf7ebee8
Linux 6.6.42
...
Link: https://lore.kernel.org/r/20240723180404.759900207@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Conor Dooley <conor.dooley@microchip.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: kernelci.org bot <bot@kernelci.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Ron Economos <re@w6rz.net >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-07-25 09:50:58 +02:00
Greg Kroah-Hartman
2eaf5c0d81
Linux 6.6.41
...
Link: https://lore.kernel.org/r/20240716152751.312512071@linuxfoundation.org
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Allen Pais <apais@linux.microsoft.com >
Link: https://lore.kernel.org/r/20240717063802.663310305@linuxfoundation.org
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Kelsey Steele <kelseysteele@linux.microsoft.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-07-18 13:21:27 +02:00
Greg Kroah-Hartman
1a515bd58d
Linux 6.6.40
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-07-15 09:24:53 +02:00
Greg Kroah-Hartman
2ced7518a0
Linux 6.6.39
...
Link: https://lore.kernel.org/r/20240709110658.146853929@linuxfoundation.org
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Kelsey Steele <kelseysteele@linux.microsoft.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: kernelci.org bot <bot@kernelci.org >
Tested-by: Pascal Ernster <git@hardfalcon.net >
Tested-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com >
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-07-11 12:49:22 +02:00
Greg Kroah-Hartman
2928631d53
Linux 6.6.38
...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-07-09 11:44:29 +02:00
Greg Kroah-Hartman
8fa96e44d3
Linux 6.6.37
...
Link: https://lore.kernel.org/r/20240702170233.048122282@linuxfoundation.org
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Mark Brown <broonie@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: Jon Hunter <jonathanh@nvidia.com >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Kelsey Steele <kelseysteele@linux.microsoft.com >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-07-05 09:34:07 +02:00
Greg Kroah-Hartman
61945f2f69
Linux 6.6.36
...
Link: https://lore.kernel.org/r/20240625085537.150087723@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com >
Tested-by: Peter Schneider <pschneider1968@googlemail.com >
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com >
Tested-by: SeongJae Park <sj@kernel.org >
Tested-by: Shuah Khan <skhan@linuxfoundation.org >
Tested-by: kernelci.org bot <bot@kernelci.org >
Tested-by: Ron Economos <re@w6rz.net >
Tested-by: Kelsey Steele <kelseysteele@linux.microsoft.com >
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org >
2024-06-27 13:49:15 +02:00