Ninette Adhikari [Mon, 27 Jan 2025 13:20:08 +0000 (14:20 +0100)]
scripts/buildperf: Add chart tabs for commit count/time
We triggered a test of an older revision to narrow down when performance
changed. The issue is that git's timestamps are granular to 1s. We'll
usually merge a set of commits at the same time so they will all have
the same timestamp for a block of them. This means that even if we use
the commit date, all the points can't be distinguished on the graph.
The author date doesn't work either as the commits are not merged in
author date order.
To solve this this patch adds the commit_count chart as a separate tab
next to the start_time chart
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Sun, 9 Feb 2025 10:49:31 +0000 (10:49 +0000)]
lib/oeqa/metadata: Add commit_time to branch metadata being saved
As well as commit counts, it is helpful to know when metadata dates from. Store
the unix timestamp for commits in a commit_time field alongside the commit count.
This is useful for performance graph analysis and saves having to recompute the
data.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Quentin Schulz [Wed, 5 Feb 2025 16:16:01 +0000 (17:16 +0100)]
scripts: add b4-wrapper for poky
poky is a combo-layer containing BitBake, OpenEmbedded-Core and Yocto
Documentation source code into one big repo. It is not uncommon to have
people develop patches for either of those projects from a poky git
repo.
However, it is unlikely those patches are to be sent to the poky mailing
list as very few files contained in the poky git repo actually are
poky-specific. So we need a way to identify to which mailing list a
patch is destined to be sent.
Additionally, because the source code in openembedded-core is
merged/imported at the root of the git repo of poky, its .b4-config
introduced in the previous commit will be used if not overridden (which
will be done in a separate commit specific to the poky git repo). We
need to provide a different .b4-config in poky.
Therefore, this wrapper is used to identify automatically which mailing
list a patch series needs to be sent to (via b4 prep --auto-to-cc) and
does some additional checks (via b4 prep --check) such as making sure a
patch doesn't modify two different projects at the same time or that
multiple projects are modified by different patches in the same patch
series.
This wrapper script is meant to be used by poky's .b4-config. Ideally
the b4 prep --check part could be offloaded to `patchtest` once it
supports running on source different from OE-Core.
Note that b4 makes sure that an address doesn't appear twice in the
recipient list. There's also no priority in the type of recipient list,
so if the address appears first in Cc and then in To, only the Cc will
be added. The opposite is true as well.
Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Quentin Schulz [Wed, 5 Feb 2025 16:16:00 +0000 (17:16 +0100)]
b4-config: Add basic b4 config file
b4[1] is a very nice tool for mail-based contribution. A config[2] file
exists to set up a few defaults. We can use it to set the Cc recipients
to always add, in our case the mailing list.
Because we do not have anything to check for now, disable needs-checking
so patches can be sent without running b4 prep --check. The
mid-term/long-term plan is to use patchtest locally.
Because we do not have any auto-to-cc support (and the implicit one
using scripts/get_maintainer.pl cannot work for us), also disable
needs-auto-to-cc so patches can be sent without running b4 prep
--auto-to-cc.
hongxu [Tue, 21 Jan 2025 08:55:18 +0000 (16:55 +0800)]
perl: fix do_install failed for nativesdk-perl
While set 'baselib = "lib64"' for nativesdk, perl do_install failed:
| rm: cannot remove 'tmp/work/x86_64-nativesdk-pokysdk-linux/nativesdk-perl/
5.40.0/image//usr/local/oe-sdk-hardcoded-buildpath/sysroots/x86_64-pokysdk-linux/
usr/lib64/perl5/5.40.0/*/CORE/libperl.so': No such file or directory
Moritz Haase [Tue, 4 Feb 2025 13:30:24 +0000 (14:30 +0100)]
meta: Enable '-o pipefail' for the SDK installer
When testing a Yocto SDK installer on Alpine 3.21, we recently ended up with a
broken SDK. One of the commands the relocation script calls in a piped
multi-command chain failed (see [0]), but the installer did not realize that -
since it doesn't use 'set -o pipefail'. Thus, the error was never reported to
the user and the installer claimed to have set up the SDK correctly - which
wasn't the case.
Given that the SDK installer is a POSIX-compliant shell script and that the
'pipefail' option used to be missing from the standard, it's not surprising that
it isn't used. Thankfully however, in June of 2024, a new version of POSIX
(POSIX.1-2024) was released - and that one finally includes the 'pipefail'
option (see [1]). A number of shells already support it, so let's enable it if
available to make the SDK installer more robust.
The change has been tested locally using SDK installers for internal projects,
based on both Kirkstone and Scarthgap.
Simone Weiß [Mon, 3 Feb 2025 18:26:43 +0000 (18:26 +0000)]
libseccomp: Upgrade 2.5.5 -> 2.6
Changelog:
- Update the syscall table for Linux v6.13
- Add support for new arches: SuperH little and big endian, LoongArch, and
32-bit Motorola 68000
- Add multiplexed syscall support for more arches: MIPS, SuperH, and PPC
- Consolidate and simplify handling of multiplexed syscalls
- Add support for the SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV flag
- Add support for transactions with the seccomp_transaction_start(),
seccomp_transaction_commit(), and seccomp_transaction_reject() APIs
- Add a seccomp_precompute() API to generate the seccomp BPF filter prior to
seccomp_load() or seccomp_export_bpf_mem()
- Add support for binary tree filters without syscalls
- Add support for the kernel’s implementation change of
SECCOMP_IOCTL_NOTIF_ID_VALID
- Add Python binding support for retrieving the notification file descriptor
- Improved tooling to help track syscall table updates in the Linux kernel
- Handle EINVAL error from the kernel when the WAIT_KILLABLE_RECV flag is
erroneously provided to the kernel
- Fix a seccomp userspace notification issue where the file descriptor was
being requested more than once
- Fix a bug where the internal filter state could be corrupted when a filter
rule addition fails
- Fix potential memory leak in the internal management of filter snapshots
- Utilize Cython rather than distutils in the Python bindings, due to
distutils’ deprecation
- Many test and CI improvements and fixes
- Many documentation improvements and updates
rust: restore parallel builds, disable lto only for rustdoc
The original reproducibility fix was problematic for a couple reasons:
- disabling both lto and parallel builds had an unfortunate effect of nearly
doubling rust-native and rust build times (which are slow to begin with).
Disabling lto hurts runtime performance too.
- both of these things were done for the *entire build*, while the only
problematic item is the librustdoc crate.
- lto=off option in config.toml has an effect only on building rustc
(the compiler itself), and doesn't help with rustdoc reproducibility.
Actual fix is the codegen-units setting, which indirectly disables
lto via giving llvm only one unit to work with at a time.
After some digging, here's a more targeted fix for the problem.
Why librustdoc is non-reproducible, but not anything else
remains a mystery, hidden deep in rust-llvm's lto optimization code.
Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Igor Opaniuk [Tue, 4 Feb 2025 10:01:14 +0000 (11:01 +0100)]
rust/README-rust.md: fix markdown style issues
Fix markdown style issues using markdownlint tool [1]:
$ cat ./meta/recipes-devtools/rust/README-rust.md | mdl
(stdin):1: MD002 First header should be a top level header
(stdin):25: MD006 Consider starting bulleted lists at the beginning of the line
(stdin):3: MD009 Trailing spaces
(stdin):11: MD009 Trailing spaces
(stdin):26: MD009 Trailing spaces
(stdin):39: MD012 Multiple consecutive blank lines
(stdin):32: MD032 Lists should be surrounded by blank lines
(stdin):36: MD032 Lists should be surrounded by blank lines
[1] https://github.com/markdownlint/markdownlint Signed-off-by: Igor Opaniuk <igor.opaniuk@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Igor Opaniuk [Tue, 4 Feb 2025 10:01:13 +0000 (11:01 +0100)]
patchtest/README.md: fix markdown style issues
Fix markdown style issues using markdownlint tool [1]:
$ cat ./meta/lib/patchtest/README.md | mdl
(stdin):4: MD034 Bare URL used
(stdin):8: MD034 Bare URL used
(stdin):9: MD034 Bare URL used
(stdin):20: MD034 Bare URL used
[1] https://github.com/markdownlint/markdownlint Signed-off-by: Igor Opaniuk <igor.opaniuk@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Igor Opaniuk [Tue, 4 Feb 2025 10:01:12 +0000 (11:01 +0100)]
SECURITY.md: fix markdown style issues
Fix markdown style issues using markdownlint tool [1]:
$ cat SECURITY.md | mdl
(stdin):16: MD013 Line length
(stdin):19: MD013 Line length
(stdin):20: MD013 Line length
(stdin):1: MD026 Trailing punctuation in header
(stdin):6: MD034 Bare URL used
(stdin):16: MD034 Bare URL used
(stdin):19: MD034 Bare URL used
[1] https://github.com/markdownlint/markdownlint Signed-off-by: Igor Opaniuk <igor.opaniuk@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Igor Opaniuk [Tue, 4 Feb 2025 10:01:11 +0000 (11:01 +0100)]
README.qemu.md: fix markdown style issues
Fix markdown style issues using markdownlint tool [1]:
$ cat README.qemu.md | mdl
(stdin):8: MD006 Consider starting bulleted lists at the beginning of the line
[1] https://github.com/markdownlint/markdownlint Signed-off-by: Igor Opaniuk <igor.opaniuk@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
[1] https://github.com/markdownlint/markdownlint Signed-off-by: Igor Opaniuk <igor.opaniuk@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Igor Opaniuk [Tue, 4 Feb 2025 10:01:09 +0000 (11:01 +0100)]
README.OE-Core.md: fix markdown style issues
Fix markdown style issues using markdownlint tool [1]:
$ cat README.OE-Core.md | mdl
(stdin):15: MD012 Multiple consecutive blank lines
(stdin):9: MD034 Bare URL used
(stdin):13: MD034 Bare URL used
(stdin):19: MD034 Bare URL used
(stdin):25: MD046 Code block style
(stdin):29: MD046 Code block style
(stdin):33: MD046 Code block style
[1] https://github.com/markdownlint/markdownlint Signed-off-by: Igor Opaniuk <igor.opaniuk@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Yoann Congal [Mon, 3 Feb 2025 23:48:36 +0000 (00:48 +0100)]
selftest/reproducible: Add a method to test a single recipe
Introduce a new variable "OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS".
It can be used like OEQA_REPRODUCIBLE_TEST_TARGET but will try to use
sstate for the dependencies.
This can be used to "quickly" test the reproducibility of a single recipe.
[YOCTO #15701]
Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Khem Raj [Fri, 31 Jan 2025 08:29:50 +0000 (08:29 +0000)]
glibc: Upgrade to 2.41 release
License-Update: Added license for e_gammaf_r.c [1]
added url of CORE-MATH project [2]
* Testing support with different compilers (series)
* Remove XXX math functions from installed math.h (patch)
* Remove "%n" from assert (commit)
* Improve executable stack handling
* Compile glibc tests with Clang (series 1, series 2)
* asprintf should write NULL on failure
* Revert TCB layout changes
* Fix ld.so crashes with golang test suite
* Fixes after GET_ADDR_ARGS removal
* Extend Rseq Support, plus x32 fixup
* sh4: ensure FPSCR.PR==0 when executing FRCHG [BZ #27543]
* affinity-inheritance test: overallocate CPU sets
* rseq-related aarch64 test failures
* arc4random test failure under load
* benchtests: Add dummy in put files cospi, cospif, sinpi, sinpif, tanpi, tanpif
* pthread condvar missing signal, bug 25847
* aarch64: Add support for Guarded Control Stack extension
* testsuite: Make stdio-common/tst-printf-format-*-mem UNSUPPORTED if the mtrace output does not exist
Randy MacLeod [Tue, 4 Feb 2025 01:39:24 +0000 (20:39 -0500)]
valgrind: disable ptests
The valgrind test runner, vg_regtest, changed in the 3.24 update and
there are some additional valgrind ptest regressions happening with glibc-2.41.
Disable the ptests for now. Some of the remaining patches can likely
be dropped but I'd rather carry them so that re-enabling the ptests
is simpler. Also the patch series have some dependencies and unwinding
that would block the glibc-2.41 unnecessarily.
This builds for glibc, musl for qemux86-64, runs:
-> valgrind [--leak-check=full] /bin/ls /tmp
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Yash Shinde [Mon, 3 Feb 2025 09:15:19 +0000 (01:15 -0800)]
qemuriscv: Enable Sv39 memory address scheme by default
Currently, GCC Asan supports only Sv39 on RISC-V 64 due to custom allocator configurations optimized for large allocations.
These configurations are incompatible with larger address spaces like Sv48/Sv57.
This fix enables RISC-V 64 configuration for RVA22S64 profile(which has sv39 mode and other extensions) by default when running `runqemu nographic`,
eliminating the need for manual configuration via command line flags (`qemuparams="-cpu rv64, sv39=true"`).
Khem Raj [Sun, 2 Feb 2025 21:09:41 +0000 (13:09 -0800)]
binutils: Upgrade to 2.44 release
* Drop the CVE-2024-53589 patch, its included in 2.44
* Package newly rename gp-* to gprofng-* binaries and remove old gp-*
symlinks
* Gold linker is now deprecated and will be removed in future release
its already deleted in tarball releases
* Support for the Nios II target has been removed.
* Assembler:
- Support for new architecture extensions for AArch64, Risc-V and
x86.
* Linker:
The default maximum page size was changed from 16KiB to 64KiB for
LoongArch.
This now supports mixed LTO and non-LTO object files in
relocatable output.
The ELF forms of the linker support a --image-base=<ADDR> option
for compatibility with LLD.
The --build-id= option now accepts an argument of "xx" which
enables the use of the xxhash library. This produces a 128-bit
hash and is 2-4x faster than md5 or sha1.
The ELF linker option --package-metadata supports percent-encoded
and %[string] encoded JSON payloads.
* Disassembler:
The RISC-V disassembler now supports -M,max option like QEMU to
dump instruction without checking architecture support as usual.
* GprofNG:
Support added for hardware event counters for Neoverse-N1,
Ampere-1, and Appliedmicro processors.
Mikko Rapeli [Mon, 3 Feb 2025 12:28:51 +0000 (14:28 +0200)]
testimage.bbclass: fix logDetails() call on error path
This happens when testimage task runs and bitbake is interupted
twice with ctrl-c/SIGINT:
QMP Available for connection at /home/builder/src/base/repo/meta-arm/build/tmp/.xjik9srq
QMP connected to QEMU at 01/31/25 10:36:19 and took 0.55 seconds
QMP released QEMU at 01/31/25 10:36:19 and took 0.07 seconds from connect
Keyboard Interrupt, closing down...
Second Keyboard Interrupt, stopping...
WARNING: Exiting due to interrupt.
NOTE: Sending SIGTERM to remaining 1 tasks
ERROR: core-image-base-1.0-r0 do_testimage: testimage interrupted, shutting down...
Output from runqemu:
runqemu - INFO - Received signal: 15
runqemu - INFO - Cleaning up
runqemu - INFO - Host uptime: 6230788.40
tput: No value for $TERM and no -T specified
ERROR: core-image-base-1.0-r0 do_testimage: Error executing a python function in exec_func_python() autogenerated:
The stack trace of python calls that resulted in this exception/failure was:
File: 'exec_func_python() autogenerated', lineno: 2, function: <module>
0001:
*** 0002:do_testimage(d)
0003:
File: '/home/builder/src/base/repo/meta-arm/build/../poky/meta/classes-recipe/testimage.bbclass', lineno: 122, function: do_testimage
0118: dump-guest-memory {"paging":false,"protocol":"file:%s.img"}
0119:}
0120:
0121:python do_testimage() {
*** 0122: testimage_main(d)
0123:}
0124:
0125:addtask testimage
0126:do_testimage[nostamp] = "1"
File: '/home/builder/src/base/repo/meta-arm/build/../poky/meta/classes-recipe/testimage.bbclass', lineno: 389, function: testimage_main
0385:
0386: # Show results (if we have them)
0387: if results:
0388: configuration = get_testimage_configuration(d, 'runtime', machine)
*** 0389: results.logDetails(get_json_result_dir(d),
0390: configuration,
0391: get_testimage_result_id(configuration),
0392: dump_streams=d.getVar('TESTREPORT_FULLLOGS'))
0393: results.logSummary(pn)
Exception: AttributeError: 'TestResult' object has no attribute 'logDetails'
ERROR: Logfile of failure stored in: /home/builder/src/base/repo/meta-arm/build/tmp/work/qemuarm64_secureboot-poky-linux/core-image-base/1.0/temp/log.do_testimage.2771735
Joshua Watt [Thu, 30 Jan 2025 13:37:27 +0000 (06:37 -0700)]
spdx30: Include files in rootfs
Adds a "contains" relationship that relates the root file system package
to the files contained in it. If a package provides a file with a
matching hash and path, it will be linked, otherwise a new File element
will be created
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Alex Kiernan [Sat, 1 Feb 2025 17:28:45 +0000 (17:28 +0000)]
avahi: Switch RRECOMMENDS to avahi-libnss-mdns
Rather than using the RPROVIDES on libnss-mdns which comes from
avahi-libnss-mdns, RRECOMMENDS avahi-libnss-mdns directly to avoid
picking any other version.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Alex Kiernan [Sat, 1 Feb 2025 17:28:43 +0000 (17:28 +0000)]
nss-mdns: Rename recipe to avahi-libnss-mdns
meta-networking has Apple's mDNSResponder which also delivers libnss-mdns
nsswitch plugin. Rename this recipe to avahi-libss-mdns and add an RPROVIDE so
that either than be chosen.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The HCI firmware for the QCA6390 BT/WiFi chips doesn't logically belong
to the USB-only linux-firmware-qca-qca61x4 package. Split it to the
separate package in order to simplify firmware management. This follows
the pending WHENCE change in the linux-firmware upstream, where the
QCA6390 firmware is split to a separate section.
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Artur Kowalski [Fri, 31 Jan 2025 20:15:59 +0000 (21:15 +0100)]
systemd-systemctl: fix handling of instance unit files
This fixes handling of units with instance name in theirs filenames such
as `gnome-shell@wayland.service` or `gnome-shell@x11.service`. Such
files cause template file to be ignored (for the specific instance).
Thanks to Markus Volk <f_l_k@t-online.de> for noticing the breakage when
building images with gnome-shell:
| Error: Systemctl preset_all issue in org.gnome.Shell@wayland.service
| WARNING: /home/flk/poky/build/tmp/work/intel_corei7_64-poky-linux/gnome-image/1.0/temp/run.systemd_preset_all.2011511:158 exit 1 from 'systemctl --root="/home/flk/poky/build/tmp/work/intel_corei7_64-poky-linux/gnome-image/1.0/rootfs" --global --preset-mode=enable-only preset-all'
The problem manifested after cdc3b3028f6d71788b5fdd99436f69fbf18f613e
because we enabled preset-all for user units -
org.gnome.Shell@wayland.service is a user service, so prior to that
change the file wasn't processed at all.
The error was triggered because there is no org.gnome.Shell@.service
file. With this patch applied systemctl script looks for instance unit
file and falls back to template unit in case of lack thereof, keeping
the same behavior upstream systemctl does.
Signed-off-by: Artur Kowalski <arturkow2000@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bastian Germann [Fri, 31 Jan 2025 19:25:22 +0000 (20:25 +0100)]
unfs3: Use SPDX identifier
The unfs3 license matches the SPDX template for BSD-3-Clause.
There is no reason why this should be referenced as unfs3,
which is not a registered SPDX identifier.
License-Update: use SPDX identifier
Signed-off-by: Bastian Germann <bage@debian.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bastian Germann [Fri, 31 Jan 2025 19:25:21 +0000 (20:25 +0100)]
tcf-agent: Use SPDX identifier
The EDL-1.0 license matches the SPDX template for BSD-3-Clause.
There is no reason why this should be referenced as EDL-1.0, which is
not a registered SPDX identifier for exactly this reason.
License-Update: use SPDX identifier
Signed-off-by: Bastian Germann <bage@debian.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Recipes are much more readable with whitespace around the assignment operators.
Fix various assignments in OE-Core to show this is definitely the preferred
formatting.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Thu, 30 Jan 2025 16:01:53 +0000 (11:01 -0500)]
linux-yocto/6.12: update to v6.12.11
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
62b2447ec6cf Linux 6.12.11 4c3f731b253b apparmor: allocate xmatch for nullpdb inside aa_alloc_null 35c2f2a46ae5 drm/amd/display: Validate mdoe under MST LCT=1 case as well ec744819bdd4 Revert "drm/amd/display: Enable urgent latency adjustments for DCN35" f6be6248d649 drm/amd/display: Do not wait for PSR disable on vbl enable 0f0c5ca1863e drm/amd/display: Disable replay and psr while VRR is enabled 583d3a42b2bf drm/amd/display: Fix PSR-SU not support but still call the amdgpu_dm_psr_enable 1366b0e9dd57 drm/amdgpu: always sync the GFX pipe on ctx switch ffb0308bd6ec drm/amdgpu: disable gfxoff with the compute workload on gfx12 0c2196bb020d drm/amdgpu: fix fw attestation for MP0_14_0_{2/3} 6f8e1a35cc12 drm/amdgpu/smu13: update powersave optimizations b7da3df91042 drm/xe/oa: Add missing VISACTL mux registers 95af4bfd6702 drm/xe: Mark ComputeCS read mode as UC on iGPU def3ddf10be4 drm/i915/fb: Relax clear color alignment to 64 bytes a737a81d5255 x86/fred: Fix the FRED RSP0 MSR out of sync with its per-CPU cache 6e641d499bb1 timers/migration: Enforce group initialization visibility to tree walkers 12ead225b799 timers/migration: Fix another race between hotplug and idle entry/exit 38492f6ee883 hrtimers: Handle CPU state correctly on hotplug 93955a778812 irqchip/gic-v3-its: Don't enable interrupts in its_irq_set_vcpu_affinity() 44feb7612989 irqchip/gic-v3: Handle CPU_PM_ENTER_FAILED correctly 115719a95385 irqchip: Plug a OF node reference leak in platform_irqchip_probe() e96a2838d8b1 tracing: gfp: Fix the GFP enum values shown for user space tracing tools c78b04977d19 mm: vmscan : pgdemote vmstat is not getting updated when MGLRU is enabled. 310ac886d68d mm: clear uffd-wp PTE/PMD state on mremap() 4e4ab0748cd8 drm/amd/display: Do not elevate mem_type change to full update 6f8a91d9aeb5 selftests/mm: set allocated memory to non-zero content in cow test 391da9c6a69d mm/kmemleak: fix percpu memory leak detection failure 488a68c948bc pmdomain: imx8mp-blk-ctrl: add missing loop break condition 2e3194dc1197 tools: fix atomic_set() definition to set the value correctly 9c035105c553 gpio: xilinx: Convert gpio_lock to raw spinlock 80828540dad0 fs/proc: fix softlockup in __read_vmcore (part 2) 280f1fb89afc filemap: avoid truncating 64-bit offset to 32 bits 20a1b9a4ef55 net/ncsi: fix locking in Get MAC Address handling ce67e0e54ab8 drm/nouveau/disp: Fix missing backlight control on Macbook 5,1 de440945811d nouveau/fence: handle cross device fences properly c23d1d4f8efe vsock: prevent null-ptr-deref in vsock_*[has_data|has_space] 01c178d6902c vsock: reset socket state when de-assigning the transport 450aa12993a1 vsock/virtio: cancel close work in the destructor 677579b641af vsock/virtio: discard packets if the transport changes 6771e1279dad vsock/bpf: return early if transport is not assigned 97564250d43c net: ethernet: xgbe: re-add aneg to supported features in PHY quirks 84a2db01f500 selftests: mptcp: avoid spurious errors on disconnect 470f313603df mptcp: fix spurious wake-up on under memory pressure 34e8ad3f2326 mptcp: be sure to send ack when mptcp-level window re-opens 4143ae9faf75 i2c: atr: Fix client detach 902ef8f16d5c zram: fix potential UAF of zram table 07c956f7904b ALSA: hda/realtek: fixup ASUS H7606W 843a1ab9ceee ALSA: hda/realtek: fixup ASUS GA605W 4711481c8032 ALSA: hda/realtek: Add support for Ayaneo System using CS35L41 HDA 85f1e093b831 x86/asm: Make serialize() always_inline e98394f7bc91 sched/fair: Fix update_cfs_group() vs DELAY_DEQUEUE d01a7e05ea38 nvmet: propagate npwg topology 6ffdf037dd7a sched_ext: Fix dsq_local_on selftest d94bb9a6f936 RDMA/bnxt_re: Fix to export port num to ib_query_qp 21900bfd332a scx: Fix maximal BPF selftest prog fc20e87419e5 selftests/sched_ext: fix build after renames in sched_ext API 621f95fa0b93 poll_wait: add mb() to fix theoretical race between waitqueue_active() and .poll() 22be1d90a621 afs: Fix merge preference rule failure condition 402ce1642147 iomap: avoid avoid truncating 64-bit offset to 32 bits fdb13258ad86 sched_ext: keep running prev when prev->scx.slice != 0 d9157d15ded5 ACPI: resource: acpi_dev_irq_override(): Check DMI match last 0af195b20c9f platform/x86: ISST: Add Clearwater Forest to support list b9497f168256 platform/x86/intel: power-domains: Add Clearwater Forest support 634e989f58d6 selftests: tc-testing: reduce rshift value e559ee6bb587 gpio: sim: lock up configfs that an instantiated device depends on 61cc1df086d4 gpio: virtuser: lock up configfs that an instantiated device depends on ac216ffa697c scsi: ufs: core: Honor runtime/system PM levels if set by host controller drivers 04c3c7acb5ec cachefiles: Parse the "secctx" immediately 3d460376254e netfs: Fix non-contiguous donation between completed reads 3aabe0106475 kheaders: Ignore silly-rename files 7c37879b76c8 fs: fix missing declaration of init_files 465fb8680c88 fs/qnx6: Fix building with GCC 15 709dfdd7e5ca hfs: Sanity check the root record b856d2c1384b mac802154: check local interfaces before deleting sdata list a2be5f2ba34d smb: client: fix double free of TCP_Server_Info::hostname eed792d9894c hwmon: (ltc2991) Fix mixed signed/unsigned in DIV_ROUND_CLOSEST 9e2d61c4dcd8 i2c: testunit: on errors, repeat NACK until STOP d1e4aff10c6b i2c: rcar: fix NACK handling when being a target 894076b78a7e i2c: mux: demux-pinctrl: check initial mux selection, too ec7329647fbf Revert "mtd: spi-nor: core: replace dummy buswidth from addr to data" e208535991f1 hwmon: (tmp513) Fix division of negative numbers 3f67e07873df platform/x86: lenovo-yoga-tab2-pro-1380-fastcharger: fix serdev race d3a24d923333 platform/x86: dell-uart-backlight: fix serdev race e19f31169f85 i2c: core: fix reference leak in i2c_register_adapter() 999fe486cb5d soc: ti: pruss: Fix pruss APIs 40c28d1a0ac4 reset: rzg2l-usbphy-ctrl: Assign proper of node to the allocated device b22467b1ae10 drm/v3d: Ensure job pointer is set to NULL after job completion bf5105dd6d6c drm/vmwgfx: Add new keep_resv BO param 5ee247046e13 drm/vmwgfx: Unreserve BO on error 17f0e22bcba0 drm/tests: helpers: Fix compiler warning 2b78cab481a6 netdev: avoid CFI problems with sock priv helpers d823355f9238 net/mlx5e: Always start IPsec sequence number from 1 9e9c667ffd15 net/mlx5e: Rely on reqid in IPsec tunnel mode 6d3d69c070d9 net/mlx5e: Fix inversion dependency warning while enabling IPsec tunnel 1f6e619ef2a4 net/mlx5: Clear port select structure when fail to create df0e2cddc169 net/mlx5: SF, Fix add port error handling 6210f069dcb9 net/mlx5: Fix a lockdep warning as part of the write combining test 6a3085458d2e net/mlx5: Fix RDMA TX steering prio 7a4fd3df85b3 net: make page_pool_ref_netmem work with net iovs 1425cb829556 net: fec: handle page_pool_dev_alloc_pages error 17b678858959 net: xilinx: axienet: Fix IRQ coalescing packet count overflow 4fc02808ebd7 nfp: bpf: prevent integer overflow in nfp_bpf_event_output() 5a3096ba2b46 cpufreq: Move endif to the end of Kconfig file 1c35a66e2bfe pfcp: Destroy device along with udp socket's netns dismantle. 86f73d4ab2f2 gtp: Destroy device along with udp socket's netns dismantle. e6225173b502 gtp: Use for_each_netdev_rcu() in gtp_genl_dump_pdp(). d0fb5741932b btrfs: add the missing error handling inside get_canonical_dev_path 1654578a3b1d cpuidle: teo: Update documentation after previous changes 11a642ad58a2 ice: Add correct PHY lane assignment 2f59743be4d9 ice: Use ice_adapter for PTP shared data instead of auxdev 499db66f690b ice: Add ice_get_ctrl_ptp() wrapper to simplify the code 922af90ffb77 ice: Introduce ice_get_phy_model() wrapper 2e166786d088 ice: Fix ETH56G FC-FEC Rx offset value 0e5a802fcf5f ice: Fix quad registers read on E825 605c7381b5d8 ice: Fix E825 initialization 1a9b65c672ca pktgen: Avoid out-of-bounds access in get_imix_entries 82f433e8dd06 openvswitch: fix lockup on tx to unregistering netdev with carrier 8c1a1fda1726 net: ravb: Fix max TX frame size for RZ/V2M 08831a894d18 eth: bnxt: always recalculate features after XDP clearing, fix null-deref cccd51dd2257 bpf: Fix bpf_sk_select_reuseport() memory leak 9e08229256e5 net: ethernet: ti: cpsw_ale: Fix cpsw_ale_get_field() a8edd5e1f8e6 efi/zboot: Limit compression options to GZIP and ZSTD e97df805b938 drm/tilcdc: Set preferred depth 7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650 6d8ac5ebe6e8 aufs6: core 587abc1b64c4 aufs6: standalone 1af41d30ef42 aufs6: mmap 6ee2464d2e9d aufs6: base 103b676505f7 aufs6: kbuild 67281562943f qemux86: add configuration symbol to select values 73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs 1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter 918e7a825e8b clear_warn_once: bind a timer to written reset value f533f87c3758 clear_warn_once: expand debugfs to include read support f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS e633abe9c44e libbpf: Fix build warning on ref_ctr_off ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. 03721ceb5626 perf: x86-32: explicitly include <errno.h> 4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long b0200449610d perf: fix bench numa compilation aff0940b2212 perf: add SLANG_INC for slang.h ef912018d28c perf: add sgidefs.h to for mips builds d8860f858b87 perf: change --root to --prefix for python install dc38a0eee6e5 perf: add 'libperl not found' warning 6ed51f8786da perf: force include of <stdbool.h> c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32() 63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat 7816667451ef FAT: Added FAT_NO_83NAME f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option a24784fd8f88 yaffs2: update to v6.12 folio changes d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes d097e4d4115a yaffs: fix mtime/itime field access 4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+ 1b6619086e8b yaffs2: v6.5 fixups 25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length 5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap 55986a1284b3 yaffs2: replace bdevname call with sprintf 6f5508f8db8f yaffs2: convert read_page -> readfolio fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested) 8d2dddba272c yaffs: include blkdev.h 8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API 27005cbac2ed yaffs2: v5.6 build fixups 668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read 285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super ffc2ed489ccf yaffs: repair yaffs_get_mtd_device 6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API 19f283abc5d1 yaffs2: fix memory leak in mount/umount 04e84672b571 yaffs: Avoid setting any ACL releated xattr 4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1 81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis 26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020) feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation 874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility 1d42508faee8 tools: use basename to identify file in gen-mach-types 4b055eca593d iwlwifi: select MAC80211_LEDS conditionally 97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 6dec58319165 defconfigs: drop obselete options a416ccb5b6c9 linux-yocto: Handle /bin/awk issues 7efe8a1e5158 uvesafb: provide option to specify timeout for task completion 78d10ae07eca uvesafb: print error message when task timeout occurs 80473b7eb8ca compiler.h: Undef before redefining __attribute_const__ ddeff2f1a9a7 vmware: include jiffies.h 3dcdda8912b4 Resolve jiffies wrapping about arp 3b1507db6735 nfs: Allow default io size to be configured. c2fedad05f77 check console device file on fs when booting 208d6fbada3f mount_root: clarify error messages for when no rootfs found dbe9454c8ea0 mconf: fix output of cflags and libraries 7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location b6c189c81397 modpost: mask trivial warnings a5cc21325ba9 kbuild: exclude meta directory from distclean processing 361ec143c23f powerpc: serialize image targets 605e6ccb304c arm: serialize build targets e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition 44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86 a08cb65331e6 x86_64_defconfig: Fix warnings 8ad332ef777b mips: make current_cpu_data preempt safe 754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code 325ff78ff44d mips: Kconfig: add QEMUMIPS64 option 99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c 8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 6b60c874cbb0 arm64: defconfig: cleanup config options 8e44673ecd89 vexpress: Pass LOADADDR to Makefile f34e6805aad5 arm: ARM EABI socketcall 94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Thu, 30 Jan 2025 16:01:52 +0000 (11:01 -0500)]
linux-yocto/6.6: update to v6.6.72
Updating linux-yocto/6.6 to the latest korg -stable release that comprises
the following commits:
c2e420511612 Linux 6.6.72 ac7f5641e988 drm/mediatek: Only touch DISP_REG_OVL_PITCH_MSB if AFBC is supported 08a2117e83e5 riscv: Fix text patching when IPI are used 56b274473d6e mm: hugetlb: independent PMD page table shared count ec500230d39a mm/hugetlb: enforce that PMD PT sharing has split PMD PT locks 5cfaddaa4bdb fs/Kconfig: make hugetlbfs a menuconfig 1abe0a34aea6 pgtable: fix s390 ptdesc field comments 1fd2a57dcb4d workqueue: Do not warn when cancelling WQ_MEM_RECLAIM work from !WQ_MEM_RECLAIM worker 6dc676743a7a workqueue: Update lock debugging code 2717b5e55a9f workqueue: Add rcu lock check at the end of work item execution 66e533f0b250 pmdomain: imx: gpcv2: fix an OF node reference leak in imx_gpcv2_probe() b1e6351c16b4 pmdomain: imx: gpcv2: Simplify with scoped for each OF child loop b613a038fdd7 arm64: dts: rockchip: add hevc power domain clock to rk3328 be3eed59ac01 block, bfq: fix waker_bfqq UAF after bfq_split_bfqq() 53e25b10a28e hwmon: (drivetemp) Fix driver producing garbage data when SCSI errors occur a4b01371512e ARM: dts: imxrt1050: Fix clocks for mmc 8efff2aa2d95 io_uring/eventfd: ensure io_eventfd_signal() defers another RCU period 03753bfacbc6 riscv: kprobes: Fix incorrect address calculation 6a96af5f309d iio: adc: ad7124: Disable all channels at probe time 91dd568e3ff9 iio: inkern: call iio_device_put() only on mapped devices 09e067e3c83e iio: adc: at91: call input_free_device() on allocated iio_dev f110a6d71bd8 iio: adc: ti-ads124s08: Use gpiod_set_value_cansleep() 2df664d7b4f2 iio: gyro: fxas21002c: Fix missing data update in trigger handler 455df95eb8f2 iio: adc: ti-ads8688: fix information leak in triggered buffer 5a95fbbecec7 iio: adc: rockchip_saradc: fix information leak in triggered buffer cde312e257b5 iio: imu: kmx61: fix information leak in triggered buffer a15ea87d4337 iio: light: vcnl4035: fix information leak in triggered buffer 74058395b2c6 iio: dummy: iio_simply_dummy_buffer: fix information leak in triggered buffer fefb88a4da96 iio: pressure: zpa2326: fix information leak in triggered buffer ea57f0bbe225 usb: gadget: configfs: Ignore trailing LF for user strings to cdev ea6a14987424 usb: gadget: f_fs: Remove WARN_ON in functionfs_bind 88cdfe9f15d5 usb: typec: tcpm/tcpci_maxim: fix error code in max_contaminant_read_resistance_kohm() c1e7ced99da9 usb: gadget: f_uac2: Fix incorrect setting of bNumEndpoints dcd4de31bd01 usb: chipidea: ci_hdrc_imx: decrement device's refcount in .remove() and in the error path of .probe() 43c204b22dd8 usb: gadget: midi2: Reverse-select at the right place 953dea074bc5 usb: fix reference leak in usb_new_device() 730016e0b963 USB: core: Disable LPM only for non-suspended ports 77af0434807b USB: usblp: return error when setting unsupported protocol 7c3f7c3caa35 usb: dwc3-am62: Disable autosuspend during remove 0a3a87221418 x86/fpu: Ensure shadow stack is active before "getting" registers 0c50f00cc299 usb: gadget: u_serial: Disable ep before setting port to null to fix the crash caused by port being null 0231ecfb1f7a tty: serial: 8250: Fix another runtime PM usage counter underflow 12f950a6a1c1 misc: microchip: pci1xxxx: Resolve return code mismatch during GPIO set config 25692750c025 misc: microchip: pci1xxxx: Resolve kernel panic during GPIO IRQ handling b02cf1d27e46 topology: Keep the cpumask unchanged when printing cpumap c995c81b2a30 usb: dwc3: gadget: fix writing NYET threshold 05da04bbf3b9 USB: serial: cp210x: add Phoenix Contact UPS Device 138655dd9ebe usb-storage: Add max sectors quirk for Nokia 208 e5c87f33b514 staging: iio: ad9832: Correct phase range check 4c04529c77d5 staging: iio: ad9834: Correct phase range check 8166f38c8099 USB: serial: option: add Neoway N723-EA support 2dcb6368adf5 USB: serial: option: add MeiG Smart SRM815 12caa73a28f0 dm-verity FEC: Fix RS FEC repair for roots unaligned to block size (take 2) 8dddc12d0324 f2fs: fix null-ptr-deref in f2fs_submit_page_bio() e3ed5a14aac7 io_uring/timeout: fix multishot updates 3ce08bab0105 drm/amd/display: increase MAX_SURFACES to the value supported by hw fa6bc7263061 drm/amdkfd: fixed page fault when enable MES shader debugger 55ee64816bd5 ACPI: resource: Add Asus Vivobook X1504VAP to irq1_level_low_skip_override[] b239a3867d58 ACPI: resource: Add TongFang GM5HG0A to irq1_edge_low_force_override[] f48f060a4b36 riscv: Fix sleeping in invalid context in die() 5fe671caedc2 smb: client: sync the root session and superblock context passwords before automounting d2512434f4cf thermal: of: fix OF node leak in of_thermal_zone_find() ae9ab63a268b drm/amd/display: Add check for granularity in dml ceil/floor helpers 59d28c133e71 ksmbd: Implement new SMB3 POSIX type 284a221f8fa5 sctp: sysctl: plpmtud_probe_interval: avoid using current->nsproxy 55627918febd sctp: sysctl: udp_port: avoid using current->nsproxy 7ec30c54f339 sctp: sysctl: auth_enable: avoid using current->nsproxy dc9d0e3cfd16 sctp: sysctl: rto_min/max: avoid using current->nsproxy ad673e514b27 sctp: sysctl: cookie_hmac_alg: avoid using current->nsproxy c0e394fd6b88 mptcp: sysctl: sched: avoid using current->nsproxy a57ce97c1978 dm-ebs: don't set the flag DM_TARGET_PASSES_INTEGRITY 086136ad70c5 scsi: ufs: qcom: Power off the PHY if it was already powered on in ufs_qcom_power_up_sequence() 6b305e98de0d dm thin: make get_first_thin use rcu-safe list first function a4a7ac3d2660 riscv: mm: Fix the out of bound issue of vmemmap address 387f5b8ad3ff cpuidle: riscv-sbi: fix device node release in early exit of for_each_possible_cpu 65b31b9d992c ksmbd: fix unexpectedly changed path in ksmbd_vfs_kern_path_locked 5cc621085e2b platform/x86/amd/pmc: Only disable IRQ1 wakeup where i8042 actually enabled it 7673030efe0f afs: Fix the maximum cell name length 271ae0edbfc9 ksmbd: fix a missing return value check bug 5b195e6f8bde drm/mediatek: Add return value check when reading DPCD 5352901f0bf1 drm/mediatek: Fix mode valid issue for dp 9db527726634 drm/mediatek: Fix YCbCr422 color format issue for DP acefaa6993eb drm/mediatek: stop selecting foreign drivers 7083b93e9755 drm/mediatek: Set private->all_drm_private[i]->drm to NULL if mtk_drm_bind returns err 229cc1028437 net/mlx5: Fix variable not being completed when function returns 235419f0956e net: stmmac: dwmac-tegra: Read iommu stream id from device tree 27202e2e8721 sched: sch_cake: add bounds checks to host bulk flow fairness counts d5807dd1328b netfilter: conntrack: clamp maximum hashtable size to INT_MAX 1e3f5638c96b netfilter: nf_tables: imbalance in flowtable binding 281855205a7c iio: imu: inv_icm42600: fix timestamps after suspend if sensor is on e026530e20e7 x86/mm/numa: Use NUMA_NO_NODE when calling memblock_set_node() 85e4923bcbcd memblock tests: fix implicit declaration of function 'numa_valid_node' b0b415f1a29d riscv: Fix early ftrace nop patching 52a6d4f16e5b tcp: Annotate data-race around sk->sk_mark in tcp_v4_send_reset b455f050709a Bluetooth: btnxpuart: Fix driver sending truncated data 327bd191bb44 Bluetooth: MGMT: Fix Add Device to responding before completing 9ba06f078f33 Bluetooth: hci_sync: Fix not setting Random Address when required eff2cd6f53a5 eth: gve: use appropriate helper to set xdp_features ba9f7c16ec87 ipvlan: Fix use-after-free in ipvlan_get_iflink(). 7397fa36d676 tls: Fix tls_sw_sendmsg error handling a78e04e0236b igc: return early when failing to read EECD register 30254c85b814 igc: field get conversion 0677b13dd9b0 ice: fix incorrect PHY settings for 100 GB/s 9d3884f303b0 cxgb4: Avoid removal of uninserted tid 70163207b57b bnxt_en: Fix possible memory leak when hwrm_req_replace fails b7e540c52137 pds_core: limit loop over fw name list 24b85a8b0310 btrfs: avoid NULL pointer dereference if no valid extent tree a8fbf80c4ff5 net: libwx: fix firmware mailbox abnormal return e54beb9aed2a net_sched: cls_flow: validate TCA_FLOW_RSHIFT attribute 91f89fe177a4 tcp/dccp: allow a connection when sk_max_ack_backlog is zero b2c9204e21b5 tcp/dccp: complete lockless accesses to sk->sk_max_ack_backlog 41d2e3be0f28 net: 802: LLC+SNAP OID:PID lookup on start of skb data 45ae076dac49 ieee802154: ca8210: Add missing check for kfifo_alloc() in ca8210_probe() 6c37547a6eeb selftests/alsa: Fix circular dependency involving global-timer 3d736856e245 ASoC: mediatek: disable buffer pre-allocation 6754f5473dab ASoC: rt722: add delay time to wait for the calibration procedure 14f030a807dd erofs: fix PSI memstall accounting 1bf7e414cac3 erofs: handle overlapped pclusters out of crafted images properly a1a541fbfa7e ovl: support encoding fid from inode with no alias a3f8a2b13a27 ovl: pass realinode to ovl_encode_real_fh() instead of realdentry 26423e18cd6f ovl: do not encode lower fh with upper sb_writers held 1e92afe80197 exfat: fix the infinite loop in __exfat_free_cluster() dc1d7afceb98 exfat: fix the infinite loop in exfat_readdir() 71f4123cf2c7 dm array: fix cursor index when skipping across block boundaries 14f0e64c2f11 dm array: fix unreleased btree blocks on closing a faulty array cursor 6002bec5354f dm array: fix releasing a faulty array block twice in dm_array_cursor_end a71e465f69be jbd2: flush filesystem device before updating tail sequence 6b32ff20d16a jbd2: increase IO priority for writing revoke records fdebee5c5c2b memblock: use numa_valid_node() helper to check for invalid node ID 4ddb7f966f3d memblock: make memblock_set_node() also warn about use of MAX_NUMNODES 18abb2787b53 x86/syscall: Mark exit[_group] syscall handlers __noreturn 2879d995e569 pnmtologo: sync with 6.6 43ea1c5e6eb3 lib/build_OID_registry: take -stable reproducibility changes 35046aea43c8 bpftool: Fix undefined bpf macro for unix socket 9a558d4b8621 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e503 bpftool: Query only cgroup-related attach types f71bb11887ba cpu/amd: inhibit SMP check for qemux86 c31365597a17 powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d kselftest: Add a ksft_perror() helper 06644f0d7193 drm/tilcdc: Set preferred depth ff7ae7b32324 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701 x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c79 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6 qemux86: add configuration symbol to select values 630c33229e6d sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6 clear_warn_once: add a clear_warn_once= boot parameter 46934791b902 clear_warn_once: bind a timer to written reset value cdee9e38ff32 clear_warn_once: expand debugfs to include read support 82b562b81841 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b libbpf: Fix build warning on ref_ctr_off 9e3e1fe20982 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65 perf: x86-32: explicitly include <errno.h> 7b57ddd89565 perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7 perf: fix bench numa compilation 98bc2815fade perf: add SLANG_INC for slang.h 17209a70b9b3 perf: add sgidefs.h to for mips builds 9cd4258d910a perf: change --root to --prefix for python install 8110a4f26628 perf: add 'libperl not found' warning bc89d5e08f77 perf: force include of <stdbool.h> 4f6c760cc876 fat: Replace prandom_u32() with get_random_u32() bc53117b12b2 fat: don't use obsolete random32 call in namei_vfat 30b2236ab378 FAT: Added FAT_NO_83NAME cef98d22b4ed FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084 aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf2 aufs6: fix magic.mk include path 35266bc2dc81 aufs6: adapt to v6.6 8edede4e98be aufs6: core 712248233ebe aufs6: standalone 3b71a8a848d8 aufs6: mmap 3e2924871f37 aufs6: base 7f4907a93101 aufs6: kbuild d2f7b03e4aa7 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa0 yaffs2: v6.5 fixups cc615704b5f5 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf91 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d3 yaffs2: replace bdevname call with sprintf 395b01cdc39d yaffs2: convert read_page -> readfolio d98b07e43ba6 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090 yaffs: include blkdev.h dbd44252cd59 yaffs: fix misplaced variable declaration c223a10b1ac0 yaffs2: v5.6 build fixups 90f6007cfbf4 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea1 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6 yaffs: repair yaffs_get_mtd_device fb98f65a466a yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea2 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0 yaffs: Avoid setting any ACL releated xattr ff4130a9c376 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67c fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba9056 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4 yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8 initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4 pnmtologo: use relocatable file name 664a6a0a484b tools: use basename to identify file in gen-mach-types 9de64bc0c185 lib/build_OID_registry: fix reproducibility issues ae9b80797295 vt/conmakehash: improve reproducibility a972323151bd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc0198 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b19 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffc defconfigs: drop obselete options 00fe4152df31 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf linux-yocto: Handle /bin/awk issues 3d55d299f23a uvesafb: provide option to specify timeout for task completion 23c068c080be uvesafb: print error message when task timeout occurs edbfc939266e compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19a vmware: include jiffies.h 572d84d928c8 Resolve jiffies wrapping about arp fdcd47cac843 nfs: Allow default io size to be configured. 927d48801098 check console device file on fs when booting 57cc27f821dd mount_root: clarify error messages for when no rootfs found 1b53d82a8152 mconf: fix output of cflags and libraries 1811da09f42c menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f modpost: mask trivial warnings 6de673039484 kbuild: exclude meta directory from distclean processing 6decd32815f5 powerpc: serialize image targets f6b683b38318 arm: serialize build targets e798b09ebf57 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f8 x86_64_defconfig: Fix warnings 68491e5f72b6 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce3004 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b1 powerpc: kexec fix for powerpc64 da6871c62c37 powerpc: Add unwind information for SPE registers of E500 core f161c880c11d mips: make current_cpu_data preempt safe 5e94a8247ce7 mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7 mips: Kconfig: add QEMUMIPS64 option e2e537db3cbd 4kc cache tlb hazard: tlbp cache coherency aee9870611e5 malta uhci quirks: make allowance for slow 4k(e)c 881948cd1517 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7 arm64: defconfig: cleanup config options f1727c537ba8 vexpress: Pass LOADADDR to Makefile 4474c32dc24a arm: ARM EABI socketcall 75e31a2b70fd ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Thu, 30 Jan 2025 16:01:51 +0000 (11:01 -0500)]
linux-yocto/6.12: update to v6.12.10
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
a6ad5510dbb5 Linux 6.12.10 b683ba0df11f netdev: prevent accessing NAPI instances from another namespace c08d7fcce7cc iio: imu: inv_icm42600: fix spi burst write not supported 476e4c4a1a85 io_uring: don't touch sqd->thread off tw add ca80f62f0ab5 drm/mediatek: Only touch DISP_REG_OVL_PITCH_MSB if AFBC is supported 810aad1d7fdd firewall: remove misplaced semicolon from stm32_firewall_get_firewall f838da8f3a96 arm64: dts: rockchip: add hevc power domain clock to rk3328 bc2aeb35ff16 block, bfq: fix waker_bfqq UAF after bfq_split_bfqq() 42268d885e44 hwmon: (drivetemp) Fix driver producing garbage data when SCSI errors occur 0587f10fd294 arm64: dts: qcom: sa8775p: fix the secure device bootup issue 0743189035a8 ARM: dts: imxrt1050: Fix clocks for mmc 3a4b75c29cce arm64: dts: imx95: correct the address length of netcmix_blk_ctrl a7085c3ae43b io_uring/eventfd: ensure io_eventfd_signal() defers another RCU period cbb64f5d757f iio: adc: ad7124: Disable all channels at probe time 24b89b747b1c iio: adc: ad7173: fix using shared static info struct b44c99621ddb iio: inkern: call iio_device_put() only on mapped devices d115b7f3ddc0 iio: adc: at91: call input_free_device() on allocated iio_dev 726218231b84 iio: adc: ti-ads124s08: Use gpiod_set_value_cansleep() 9ccfd0097e76 iio: imu: inv_icm42600: fix timestamps after suspend if sensor is on 69b680bbac9b iio: adc: ti-ads1298: Add NULL check in ads1298_init 07e07fbc7726 iio: gyro: fxas21002c: Fix missing data update in trigger handler 04bbf1227da6 iio: adc: ti-ads1119: fix sample size in scan struct for triggered buffer 2f1687cca911 iio: adc: ti-ads1119: fix information leak in triggered buffer 485570ed82b7 iio: adc: ti-ads8688: fix information leak in triggered buffer 8193941bc4fe iio: adc: rockchip_saradc: fix information leak in triggered buffer 565814cbbaa6 iio: imu: kmx61: fix information leak in triggered buffer 1cca2a666e09 iio: light: bh1745: fix information leak in triggered buffer f6fb1c59776b iio: light: vcnl4035: fix information leak in triggered buffer ea703cda36da iio: dummy: iio_simply_dummy_buffer: fix information leak in triggered buffer 979a0db76ced iio: pressure: zpa2326: fix information leak in triggered buffer 976544bdb40a usb: typec: fix pm usage counter imbalance in ucsi_ccg_sync_control() a25f1e6f60a2 usb: host: xhci-plat: set skip_phy_initialization if software node has XHCI_SKIP_PHY_INIT property 62aa896683b0 usb: gadget: configfs: Ignore trailing LF for user strings to cdev a8b6a18b9b66 usb: gadget: f_fs: Remove WARN_ON in functionfs_bind 7dd07d9cd28f usb: typec: tcpm/tcpci_maxim: fix error code in max_contaminant_read_resistance_kohm() 4bb6450bfdd0 usb: gadget: f_uac2: Fix incorrect setting of bNumEndpoints 8586d6ea623e usb: typec: tcpci: fix NULL pointer issue on shared irq case 57797497a696 usb: chipidea: ci_hdrc_imx: decrement device's refcount in .remove() and in the error path of .probe() 5b41c695a181 usb: gadget: midi2: Reverse-select at the right place 4fb62dea06cd usb: fix reference leak in usb_new_device() e982fcb440bc USB: core: Disable LPM only for non-suspended ports 61e0a97342e7 USB: usblp: return error when setting unsupported protocol eaeaaf04db0c usb: dwc3-am62: Disable autosuspend during remove 6bfe1fc22f46 x86/fpu: Ensure shadow stack is active before "getting" registers 8e122d780a0f usb: gadget: u_serial: Disable ep before setting port to null to fix the crash caused by port being null 5a592b94b542 serial: stm32: use port lock wrappers for break control 07f09383b192 tty: serial: 8250: Fix another runtime PM usage counter underflow 5e8f68a4139e misc: microchip: pci1xxxx: Resolve return code mismatch during GPIO set config 47d3749ec0cb misc: microchip: pci1xxxx: Resolve kernel panic during GPIO IRQ handling 360596e7fe31 topology: Keep the cpumask unchanged when printing cpumap 6d86c1b463f7 usb: dwc3: gadget: fix writing NYET threshold 98f2bd6de318 USB: serial: cp210x: add Phoenix Contact UPS Device c67441c93b33 usb-storage: Add max sectors quirk for Nokia 208 5492dbecbf0e staging: iio: ad9832: Correct phase range check 26cc3a026d3e staging: iio: ad9834: Correct phase range check 2eaf2500e2cd USB: serial: option: add Neoway N723-EA support 2ff1e6b03691 USB: serial: option: add MeiG Smart SRM815 aa7496d668c3 io_uring/sqpoll: zero sqd->thread on tctx errors 2b30bffd9a77 io_uring/timeout: fix multishot updates 5c331df9a5ef drm/amd/display: increase MAX_SURFACES to the value supported by hw 37b8de96ae48 drm/amd/display: fix page fault due to max surface definition mismatch c2eaa73bd542 drm/amd/display: fix divide error in DM plane scale calcs c8243def2997 drm/amdkfd: wq_release signals dma_fence only when available 3e279ecb4233 drm/amdkfd: fixed page fault when enable MES shader debugger cde7a70bbbf9 drm/amd/pm: fix BUG: scheduling while atomic 758e3c3054b6 drm/amdgpu: Add a lock when accessing the buddy trim function df8d1c8e6720 ACPI: resource: Add Asus Vivobook X1504VAP to irq1_level_low_skip_override[] be1e47be9eb4 ACPI: resource: Add TongFang GM5HG0A to irq1_edge_low_force_override[] dbbc17735a67 gpio: loongson: Fix Loongson-2K2000 ACPI GPIO register offset 7f5a0124dc54 riscv: kprobes: Fix incorrect address calculation 76ab0afcdbe8 riscv: Fix sleeping in invalid context in die() 1ca9de8867a9 fs: kill MNT_ONRB 569e203d364a smb: client: sync the root session and superblock context passwords before automounting bc1a711c28c6 arm64: dts: qcom: sa8775p: Fix the size of 'addr_space' regions 6c3ed8bc34b4 arm64: dts: qcom: x1e80100: Fix up BAR space size for PCIe6a cfe32daafd6c sched_ext: idle: Refresh idle masks during idle-to-idle transitions 11cb1d643a74 cgroup/cpuset: remove kernfs active break e7960da6f2f4 sched_ext: switch class when preempted by higher priority scheduler d9e446dd63ce sched_ext: Replace rq_lock() to raw_spin_rq_lock() in scx_ops_bypass() 5b80f2fe8a34 thermal: of: fix OF node leak in of_thermal_zone_find() dc63fd2e473d cgroup/cpuset: Prevent leakage of isolated CPUs into sched domains 4f0dd09ed300 drm/amd/display: Add check for granularity in dml ceil/floor helpers 23af4d2c49d8 drm/amd/display: Remove unnecessary amdgpu_irq_get/put 42ef932bad9b Revert "drm/mediatek: dsi: Correct calculation formula of PHY Timing" 25adbb08aead btrfs: zlib: fix avail_in bytes for s390 zlib HW compression path 38c229455b8b ksmbd: Implement new SMB3 POSIX type de8d6de0ee27 rds: sysctl: rds_tcp_{rcv,snd}buf: avoid using current->nsproxy bcf8c60074e8 sctp: sysctl: plpmtud_probe_interval: avoid using current->nsproxy 5b77d73f3be5 sctp: sysctl: udp_port: avoid using current->nsproxy c184bc621e3c sctp: sysctl: auth_enable: avoid using current->nsproxy c87f1f6ade56 sctp: sysctl: rto_min/max: avoid using current->nsproxy f0bb39354706 sctp: sysctl: cookie_hmac_alg: avoid using current->nsproxy 4c74fbdc5ab9 mptcp: sysctl: blackhole timeout: avoid using current->nsproxy 6035702381c3 mptcp: sysctl: sched: avoid using current->nsproxy 8d242069660a mptcp: sysctl: avail sched: remove write access fc8943886629 dm-verity FEC: Fix RS FEC repair for roots unaligned to block size (take 2) 7ecee316f63e dm-ebs: don't set the flag DM_TARGET_PASSES_INTEGRITY 8790d511d4ac fs: fix is_mnt_ns_file() adcde2872f8f fs: relax assertions on failure to encode file handles f3e8a16c23b2 vfio/pci: Fallback huge faults for unaligned pfn b1a38fe4789c scsi: ufs: qcom: Power off the PHY if it was already powered on in ufs_qcom_power_up_sequence() cbd0d5ecfa39 dm thin: make get_first_thin use rcu-safe list first function 7ce916f4e975 drivers/perf: riscv: Return error for default case 6191b1a474e1 drivers/perf: riscv: Fix Platform firmware event data 3f545392e971 netfs: Fix read-retry for fs with no ->prepare_read() 9f3a26583684 netfs: Fix kernel async DIO 09b94ddc58c6 drm/xe: Fix tlb invalidation when wedging 53a56817755e riscv: use local label names instead of global ones in assembly 607b8740c6d7 riscv: stacktrace: fix backtracing through exceptions d2bd51954ac8 riscv: mm: Fix the out of bound issue of vmemmap address 0ea7a3e44255 cpuidle: riscv-sbi: fix device node release in early exit of for_each_possible_cpu 3825569af306 riscv: module: remove relocation_head rel_entry member allocation 51669f4af5f7 ksmbd: fix unexpectedly changed path in ksmbd_vfs_kern_path_locked a8d99ce66b76 platform/x86: intel/pmc: Fix ioremap() of bad address b25778c87a6b platform/x86/amd/pmc: Only disable IRQ1 wakeup where i8042 actually enabled it 7922b1f058fe afs: Fix the maximum cell name length 2976e91a3e56 ksmbd: fix a missing return value check bug 818bc75973ca drm/mediatek: Add return value check when reading DPCD 10cf9bf247c5 gpio: virtuser: fix handling of multiple conn_ids in lookup table d72d0126b1f6 gpio: virtuser: fix missing lookup table cleanups c63bb54ece43 drm/mediatek: mtk_dsi: Add registers to pdata to fix MT8186/MT8188 4efc06dbd668 drm/mediatek: Fix mode valid issue for dp c06dda11c517 drm/mediatek: Fix YCbCr422 color format issue for DP cc4bd3288832 drm/mediatek: stop selecting foreign drivers 7a0300d3ee74 drm/mediatek: Add support for 180-degree rotation in the display driver 411ba3c2203c drm/mediatek: Move mtk_crtc_finish_page_flip() to ddp_cmdq_cb() 078b2ff7da20 drm/mediatek: Set private->all_drm_private[i]->drm to NULL if mtk_drm_bind returns err 36124081f6ff net/mlx5: Fix variable not being completed when function returns 5c0be5e688a8 rtase: Fix a check for error in rtase_alloc_msix() b04d33cdbc95 net: stmmac: dwmac-tegra: Read iommu stream id from device tree 91bb18950b88 sched: sch_cake: add bounds checks to host bulk flow fairness counts f559357d0358 netfilter: conntrack: clamp maximum hashtable size to INT_MAX 2e87c203b72f netfilter: nf_tables: imbalance in flowtable binding 7475a3e353bc mctp i3c: fix MCTP I3C driver multi-thread issue f19ab3ef96d9 net: hns3: fix kernel crash when 1588 is sent on HIP08 devices 0575baa733fc net: hns3: fixed hclge_fetch_pf_reg accesses bar space out of bounds issue 13c11ca317f5 net: hns3: initialize reset_timer before hclgevf_misc_irq_init() bcf430d3bb55 net: hns3: don't auto enable misc vector 864c1df2e379 net: hns3: Resolved the issue that the debugfs query result is inconsistent. 713b9b0a0fc8 net: hns3: fix missing features due to dev->features configuration too early 8b30ec384623 net: hns3: fixed reset failure issues caused by the incorrect reset type 8b800ea3f380 tcp: Annotate data-race around sk->sk_mark in tcp_v4_send_reset cd4522bd3632 Bluetooth: btmtk: Fix failed to send func ctrl for MediaTek devices. 49cd0ccacc7d Bluetooth: btnxpuart: Fix driver sending truncated data 1f88b5313566 Bluetooth: MGMT: Fix Add Device to responding before completing ccc1ef188455 Bluetooth: hci_sync: Fix not setting Random Address when required e7e21d9c9fc8 eth: gve: use appropriate helper to set xdp_features 52a24538d569 ipvlan: Fix use-after-free in ipvlan_get_iflink(). 9ea32dd90711 tls: Fix tls_sw_sendmsg error handling 4cff50a8222b igc: return early when failing to read EECD register 19dbf59fe190 ice: fix incorrect PHY settings for 100 GB/s 6bda291e21f7 ice: fix max values for dpll pin phase adjust 61b437faf2a7 net: don't dump Tx and uninitialized NAPIs 17516b69d79d cxgb4: Avoid removal of uninserted tid f697217f980f bnxt_en: Fix DIM shutdown 47360e567cc3 bnxt_en: Fix possible memory leak when hwrm_req_replace fails ce1e0f1c331d pds_core: limit loop over fw name list aee5f69f3e6c btrfs: avoid NULL pointer dereference if no valid extent tree db3cd503093e net: libwx: fix firmware mailbox abnormal return 6fde663f7321 net_sched: cls_flow: validate TCA_FLOW_RSHIFT attribute e4a92f0d51c6 tcp/dccp: allow a connection when sk_max_ack_backlog is zero a3a9630d4d29 net: 802: LLC+SNAP OID:PID lookup on start of skb data 1689f48b0a3b ieee802154: ca8210: Add missing check for kfifo_alloc() in ca8210_probe() 0eec6abe74db selftests/alsa: Fix circular dependency involving global-timer 7db7597f7b05 ASoC: mediatek: disable buffer pre-allocation 13f3053c3154 ASoC: rt722: add delay time to wait for the calibration procedure 3c7c90274ae3 ovl: support encoding fid from inode with no alias 668d8dea2cee ovl: pass realinode to ovl_encode_real_fh() instead of realdentry c0f613f2148c fuse: respect FOPEN_KEEP_CACHE on opendir 0bebeb6672cf exfat: fix the infinite loop in __exfat_free_cluster() 942c6f91ab8d exfat: fix the new buffer was not zeroed before writing d9ea94f5cd11 exfat: fix the infinite loop in exfat_readdir() 6f153055ba05 netfs: Fix is-caching check in read-retry ba37bdfe59fb netfs: Fix the (non-)cancellation of copy when cache is temporarily disabled 43b8d3249b0b netfs: Fix ceph copy to cache on write-begin 2c3348864ab7 netfs: Fix missing barriers by using clear_and_wake_up_bit() 13a07cc81e2d nfs: Fix oops in nfs_netfs_init_request() when copying to cache 88ecdfea1b33 netfs: Fix enomem handling in buffered reads 30341be4a6d1 dm array: fix cursor index when skipping across block boundaries 22443df885bf dm array: fix unreleased btree blocks on closing a faulty array cursor 017c4470bff5 dm array: fix releasing a faulty array block twice in dm_array_cursor_end 82c59a86a247 iomap: fix zero padding data issue in concurrent append writes 7adf7df4bbc0 iomap: pass byte granular end position to iomap_add_to_ioend f40881bde8f6 fs/writeback: convert wbc_account_cgroup_owner to take a folio a5bc86861020 jbd2: flush filesystem device before updating tail sequence 56c4353ce4b5 jbd2: increase IO priority for writing revoke records e97df805b938 drm/tilcdc: Set preferred depth 7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650 6d8ac5ebe6e8 aufs6: core 587abc1b64c4 aufs6: standalone 1af41d30ef42 aufs6: mmap 6ee2464d2e9d aufs6: base 103b676505f7 aufs6: kbuild 67281562943f qemux86: add configuration symbol to select values 73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs 1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter 918e7a825e8b clear_warn_once: bind a timer to written reset value f533f87c3758 clear_warn_once: expand debugfs to include read support f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS e633abe9c44e libbpf: Fix build warning on ref_ctr_off ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. 03721ceb5626 perf: x86-32: explicitly include <errno.h> 4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long b0200449610d perf: fix bench numa compilation aff0940b2212 perf: add SLANG_INC for slang.h ef912018d28c perf: add sgidefs.h to for mips builds d8860f858b87 perf: change --root to --prefix for python install dc38a0eee6e5 perf: add 'libperl not found' warning 6ed51f8786da perf: force include of <stdbool.h> c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32() 63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat 7816667451ef FAT: Added FAT_NO_83NAME f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option a24784fd8f88 yaffs2: update to v6.12 folio changes d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes d097e4d4115a yaffs: fix mtime/itime field access 4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+ 1b6619086e8b yaffs2: v6.5 fixups 25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length 5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap 55986a1284b3 yaffs2: replace bdevname call with sprintf 6f5508f8db8f yaffs2: convert read_page -> readfolio fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested) 8d2dddba272c yaffs: include blkdev.h 8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API 27005cbac2ed yaffs2: v5.6 build fixups 668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read 285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super ffc2ed489ccf yaffs: repair yaffs_get_mtd_device 6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API 19f283abc5d1 yaffs2: fix memory leak in mount/umount 04e84672b571 yaffs: Avoid setting any ACL releated xattr 4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1 81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis 26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020) feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation 874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility 1d42508faee8 tools: use basename to identify file in gen-mach-types 4b055eca593d iwlwifi: select MAC80211_LEDS conditionally 97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 6dec58319165 defconfigs: drop obselete options a416ccb5b6c9 linux-yocto: Handle /bin/awk issues 7efe8a1e5158 uvesafb: provide option to specify timeout for task completion 78d10ae07eca uvesafb: print error message when task timeout occurs 80473b7eb8ca compiler.h: Undef before redefining __attribute_const__ ddeff2f1a9a7 vmware: include jiffies.h 3dcdda8912b4 Resolve jiffies wrapping about arp 3b1507db6735 nfs: Allow default io size to be configured. c2fedad05f77 check console device file on fs when booting 208d6fbada3f mount_root: clarify error messages for when no rootfs found dbe9454c8ea0 mconf: fix output of cflags and libraries 7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location b6c189c81397 modpost: mask trivial warnings a5cc21325ba9 kbuild: exclude meta directory from distclean processing 361ec143c23f powerpc: serialize image targets 605e6ccb304c arm: serialize build targets e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition 44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86 a08cb65331e6 x86_64_defconfig: Fix warnings 8ad332ef777b mips: make current_cpu_data preempt safe 754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code 325ff78ff44d mips: Kconfig: add QEMUMIPS64 option 99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c 8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 6b60c874cbb0 arm64: defconfig: cleanup config options 8e44673ecd89 vexpress: Pass LOADADDR to Makefile f34e6805aad5 arm: ARM EABI socketcall 94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>