Ross Burton [Mon, 10 Jan 2022 12:19:32 +0000 (12:19 +0000)]
xserver-xorg: whitelist two CVEs
CVE-2011-4613 is specific to Debian/Ubuntu.
CVE-2020-25697 is a non-trivial attack that may not actually be feasible
considering the default behaviour for clients is to exit if the
connection is lost.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Chen Qi [Fri, 7 Jan 2022 02:16:24 +0000 (18:16 -0800)]
populate_sdk_base: remove unneeded dirs such as /dev
We met a problem that core-image-tiny-initramfs's SDK cannot be
installed. The error message is like below.
tar: ./sysroots/core2-64-poky-linux/dev/console: Cannot mknod: Operation not permitted
In fact, the '/dev' direcotry is not needed by SDK. So remove it.
This patches uses a variable, SDK_PRUNE_SYSROOT_DIRS, to hold useless dir entries
so that it could be extended. For example, '/usr/bin' could be added if wanted.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Khem Raj [Fri, 7 Jan 2022 19:22:55 +0000 (11:22 -0800)]
libsdl2: Fix build when libunwind is not used
clang provides libunwind.h and cmake adds a check to
find libunwind when this header is detected, which was
not the case with automake. The check however is expecting
specific unwinder implementation which provides libunwind-generic
solib, this is not a standard library that all implementations
will provide, therefore make this check optional.
Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Fri, 7 Jan 2022 13:45:22 +0000 (13:45 +0000)]
allarch: Fix interaction with qemu class
The qemu class declares functions which are architecture specific. If a user such
as meson is used in an allarch recipe, this leads to sstate which is machine
specific. To fix this, remove the architecture specific part, since there are no
binaries in allarch classes, this change shouldn't break anything.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Fri, 7 Jan 2022 11:16:57 +0000 (11:16 +0000)]
Revert "qemu.bbclass: drop OLDEST_KERNEL reference"
This patch was merged on the basis that it wasn't needed with recent versions
of qemu. That isn't true and has been showen to cause failures for aarch64 on
centos7 hosts. Revert the patch as we'll need a different solution.
Richard Purdie [Fri, 7 Jan 2022 14:32:19 +0000 (14:32 +0000)]
libsdl2: Fix X11 configure options
We're seeing various failures where the X11 headers are found on the native
system but not all libraries are present and hence autoconfiguration of the
X11 subcomponents fails.
We don't list any of these X11 subcomponents as a dependency so disable
them by default. Configuration and dependencies can be added if people need
them.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Saul Wold [Thu, 6 Jan 2022 20:12:34 +0000 (12:12 -0800)]
perl: Enable threading
When the tranisiton to perl-cross occured, the threading define
seems to have been missed. The perl tests for threading where
simply skipped, so there was no direct failures. This was verified
by running perl ptest before and after the change to see PASS vs SKIP
results of threaded related tests.
NOTE: Perl officially discourges the use of threads, so this
functionality maybe depercated in the future [0][1]
v2: adds the usethreads to native and nativesdk. This was tested by
builing postresql and rrdtool which use perl and automake.
Joshua Watt [Thu, 6 Jan 2022 16:42:36 +0000 (10:42 -0600)]
selftest: reproducible: Set maximum report size
Diffoscope can end up running for a very long time if there are a lot of
changes. To put a limit on how long it can run, cap the maximum report
size at 250 MB by default.
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Andrei Gherzan [Thu, 6 Jan 2022 14:19:31 +0000 (15:19 +0100)]
gcc: Fix compile of gcc plugins
Without this, compiling gcc plugins will fail with an error similar to:
[...]
fatal error: ./config/i386/linux64.h: No such file or directory
[...]
In Yocto, we set up compiling gcc-cross out of tree. Which in turn makes
the generated headers end up in B. The tm.h header will include
generated headers that are expected in plugin/include/config/*.
For example, the linux64.h header, when generating gcc-cross for x86-64,
will end up in tm.h header as:
include "./config/i386/linux64.h"
On the other hand, the make rule `install-plugin` in gcc/Makefile.in
will install the linux64.h assuming that it is generated in the sources
directory and because this is not the case in our setup, the Makefile
ends up installing it in plugin_includedir/`basename $$path` which ends
up installing the header in [..]plugin/include as opposed to
[..]plugin/include/config/i386 (as expected by the generator of tm.h).
The included patch modifies the Makefile rule to match the assumption of
gcc-cross being compiled out of tree.
Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Wed, 5 Jan 2022 11:27:37 +0000 (11:27 +0000)]
linux-yocto: add libmpc-native to DEPENDS
5.10.85 changed how the GCC plugins are built, which means they now
depend on both GMP and MPC to be built. We already depend on gmp-native,
so add libmpc-native aswell.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Otavio Salvador [Fri, 31 Dec 2021 19:38:42 +0000 (16:38 -0300)]
mesa: 21.3.1 -> 21.3.3
Upgrade to 21.3.3 stable release. It includes bugfixes and minor
improvements, for more detailed information about the included changes
refer to the specific release notes:
go: correctly set debug-prefix-map and build directory
Go has its own system for creating temporary build
sub-directories with randomized names, and setting
up debug-prefix-map on the fly to prevent those
directories leaking into target binaries. OE's own
settings were clashing with it, so this change
carefully avoids the two stepping on each other.
Additionally, the top level build directory cannot
be named 'go-something'.
Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
go writes build-specific ids into binaries it produces
and has a custom system for calculating them from
file hashes, environment variables and other inputs
(not that dissimilar to sstate cache, actually). This can
go wrong :) in various ways (for purposes of reproducibility
in particular), so this enables useful logs to see what
happens and why.
Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
wangmy [Mon, 27 Dec 2021 13:20:19 +0000 (21:20 +0800)]
gnupg: upgrade 2.3.3 -> 2.3.4
refresh relocate.patch
Chanlog:
========
Bugs fixed for this release <https://dev.gnupg.org/#####>
gpg: New option --min-rsa-length. [rG5f39db70c0]
gpg: New option --forbid-gen-key. [rGc397ba3ac0]
gpg: New option --override-compliance-check. [T5655]
gpgconf: New command --show-configs. [rGa0fb78ee0f]
agent,dirmngr,keyboxd: New option --steal-socket. [rGb0079ab39d,rGdd708f60d5]
gpg: Fix printing of binary notations. [T5667]
gpg: Remove stale ultimately trusted keys from the trustdb. [T5685,T5742]
gpg: Fix indentation of --print-mds and --print-md sha512. [T5679]
gpg: Emit gpg 2.2 compatible Ed25519 signature. [T5331]
gpgsm: Detect circular chains in --list-chain. [rG74c5b35062]
dirmngr: Make reading resolv.conf more robust. [T5657]
dirmngr: Ask keyservers to provide the key fingerprints. [T5741]
gpgconf: Allow changing gpg's deprecated keyserver option. [T5462]
gpg-wks-server: Fix created file permissions. [rG60be00b033]
scd: Support longer data for ssh-agent authentication with openpgp cards. [T5682]
scd: Modify DEVINFO behavior to support looping forever. [T5359]
Support gpgconf.ctl for NetBSD and Solaris. [T5656,T5671]
Silence "Garbled console data" warning under Windows in most cases. [rGe293da3b21]
Silence warning about the rootdir under Unices w/o a mounted /proc file system. [T5656]
Fix possible build problems about missing include files. [T5592]
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
wangmy [Mon, 27 Dec 2021 13:20:18 +0000 (21:20 +0800)]
expat: upgrade 2.4.1 -> 2.4.2
Changelog:
=========
#509 #510 Link againgst libm for function "isnan"
#513 #514 Include expat_config.h as early as possible
#498 Autotools: Include files with release archives:
- buildconf.sh
- fuzz/*.c
#507 #519 Autotools: Sync CMake templates
#495 #524 CMake: MinGW: Fix pkg-config section "Libs" for
- non-release build types (e.g. -DCMAKE_BUILD_TYPE=Debug)
- multi-config CMake generators (e.g. Ninja Multi-Config)
#502 #503 docs: Document that function XML_GetBuffer may return NULL
when asking for a buffer of 0 (zero) bytes size
#522 #523 docs: Fix return value docs for both
XML_SetBillionLaughsAttackProtection* functions
#525 #526 Version info bumped from 9:1:8 to 9:2:8;
see https://verbump.de/ for what these numbers do
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
wangmy [Mon, 27 Dec 2021 09:08:48 +0000 (17:08 +0800)]
python3-numpy: upgrade 1.21.4 -> 1.21.5
Changelog:
==========
Bugs fixed for this release <https://github.com/numpy/numpy/pull/#####>
#20357: MAINT: Do not forward __(deep)copy__ calls of _GenericAlias...
#20462: BUG: Fix float16 einsum fastpaths using wrong tempvar
#20463: BUG, DIST: Print os error message when the executable not exist
#20464: BLD: Verify the ability to compile C++ sources before initiating...
#20465: BUG: Force npymath to respect npy_longdouble
#20466: BUG: Fix failure to create aligned, empty structured dtype
#20467: ENH: provide a convenience function to replace npy_load_module
#20495: MAINT: update wheel to version that supports python3.10
#20497: BUG: Clear errors correctly in F2PY conversions
#20613: DEV: add a warningfilter to fix pytest workflow.
#20618: MAINT: Help boost::python libraries at least not crash
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
zhengruoqin [Mon, 27 Dec 2021 23:18:44 +0000 (07:18 +0800)]
libmicrohttpd: upgrade 0.9.73 -> 0.9.75
Changelog:
=========
Fixed Makefile warning on MinGW.
Fixed compiler warning on MinGW.
Fixed "configure" portability (for NetBSD).
MSVC project cosmetics.
MSVC fixed project to fix linker warning.
Fixed compiler warning on some platforms.
Further improved test_client_put_stop to get stable results on all
platforms.
Added workaround for platforms (like OpenBSD) where system monotonic clocks
may jump forward and back.
Added more checks in test_large_put, increased timeout (was too small for
this test). -EG
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
zhengruoqin [Mon, 27 Dec 2021 23:17:49 +0000 (07:17 +0800)]
shadow: upgrade 4.9 -> 4.10
0001-Fix-out-of-tree-builds-with-respect-to-libsubid-incl.patch
0001-libmisc-fix-default-value-in-SHA_get_salt_rounds.patch
0001-libsubid-link-to-PAM-libraries.patch
removed since they're included in 4.10
License-Update: Delete the space at the end of the sentence.
Changelog:
==========
* libsubid fixes
* Rename the test program list_subid_ranges to getsubids, write
a manpage, so distros can ship it. (Iker Pedrosa)
* Add libeconf dep for new*idmap
* Allow all group types with usermod -G
* Avoid useradd generating empty subid range
* Handle NULL pw_passwd
* Fix default value SHA_get_salt_rounds
* Use https where possible in README
* Update content and format of README
* Translation updates
* Switch from xml2po to itstool in 'make dist'
* Fix double frees
* Add LOG_INIT configurable to useradd
* Add CREATE_MAIL_SPOOL documentation
* Create a security.md
* Fix su never being SIGKILLd when trapping TERM
* Fix wrong SELinux labels in several possible cases
* Fix missing chmod in chadowtb_move
* Handle malformed hushlogins entries
* Fix groupdel segv when passwd does not exist
* Fix covscan-found newgrp segfault
* Remove trailing slash on hoedir
* Fix passwd -l message - it does not change expirey
* Fix SIGCHLD handling bugs in su and vipw
* Remove special case for "" in usermod
* Implement usermod -rG to remove a specific group
* call pam_end() after fork in child path for su and login
* useradd: In absence of /etc/passwd, assume 0 == root
* lib: check NULL before freeing data
* Fix pwck segfault
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This release contains the following major changes:
- FreeBSD support has been entirely upstreamed and has been added to
our continuous integration system.
- The autotools build system has been dropped. Meson has replaced it.
- A few protocol additions: wl_surface.offset allows clients to update
a surface's buffer offset independently from the buffer,
wl_output.name and description allow clients to identify outputs
without depending on xdg-output-unstable-v1.
- In protocol definitions, events have a new "type" attribute and can
now be marked as destructors.
- A number of bug fixes, including a race condition when destroying
proxies in multi-threaded clients.
Also backport libsdl2 patch to fix building against wayland-1.20.0
Signed-off-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Mon, 3 Jan 2022 14:18:34 +0000 (14:18 +0000)]
webkitgtk: Add reproducibility fix
When the date rolled from one year to another this highlighted a reproducibility
issue. This could be better fixed by using SOURCE_DATE_EPOCH from the environment
but I'm not sure how you do that in ruby. Help from someone with that knowledge
to submit that upstream very welcome.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Mon, 3 Jan 2022 14:20:12 +0000 (14:20 +0000)]
openssl: Add reproducibility fix
When the date rolled from one year to another, it highlighted a reproducibility
issue in openssl. Patch a workaround for this to avoid autobuilder failures. Help
submitting upstream welcome.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Mon, 3 Jan 2022 17:34:05 +0000 (17:34 +0000)]
meson: Handle qemu riscv issues
In qemu, they merged the 32 and 64 bit riscv variants into one target for meson
purposes but this isn't officially supported by upstream meson. In normal builds
this would just be a warning but in OE, this is fatal.
Avoid the fatal errors for now and build as qemu intended whilst this is resolved
by the upstreams.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Tue, 4 Jan 2022 11:16:51 +0000 (11:16 +0000)]
package_deb/ipk/rpm: Add more minimal do_build dependencies back
The dependencies for do_build became a little too minimal after the
removal of recrdeptask since "bitbake go" would not package go-runtime
despite it being in DEPENDS and the resulting package having a dependency
on it.
A reasonable compromise is probably rdeptask instead of recrdeptask
which is a lot lower overhead but makes the build target more useful
and importantly, lets world builds do what you'd expect them to.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Tim Orling [Sat, 30 Oct 2021 15:35:15 +0000 (08:35 -0700)]
scripts/buildhistory-diff: drop use of distutils
The use of distutils.version.LooseVersion to check for GitPython > 0.3.1
is not really needed anymore since any supported distribution has at least
1.0.0 (centos-7 via epel7, debian-9, ubuntu-16.04)
If we want to reinstate this check, alternatives would be to require
python3-packaging on all hosts and use packaging.version.Version or
use an imported LooseVersion in bb.version.
[YOCTO #14610]
Signed-off-by: Tim Orling <timothy.t.orling@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Samuli Piippo [Mon, 3 Jan 2022 08:10:50 +0000 (10:10 +0200)]
rpm: remove tmp folder created during install
nativesdk-rpm build is also affected by the stray /var/tmp
created during the rpm install. Remove it to fix QA Issue:
nativesdk-rpm installs files in /usr/local/oe-sdk-hardcoded-buildpath/sysroots/x86_64-pokysdk-linux/var/volatile, but it is expected to be empty [empty-dirs]
Signed-off-by: Samuli Piippo <samuli.piippo@qt.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Randy MacLeod [Thu, 30 Dec 2021 01:37:30 +0000 (17:37 -0800)]
valgrind: make run-ptest better
There were warnings about non-existent files when there was
a duplicate in the remove-for-aarch list and the non-deterministic lists
so check if the files still exists before trying to deal with it.
Also restore the tests in the opposite order that they were hidden.
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Randy MacLeod [Thu, 30 Dec 2021 01:37:29 +0000 (17:37 -0800)]
valgrind: skip boost_thread for aarch64 ptests
The drd/tests/boost_thread test passes when run interactively on qemuarm64
but fails for most runs when run in qemu on an arm worker such as ubuntu1804-arm-1
from the Yocto autobuilder cluster. Skip the test until we fix the problem.
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Randy MacLeod [Thu, 30 Dec 2021 01:37:28 +0000 (17:37 -0800)]
valgrind: remove duplicate and skipped tests from remove-for-aarch64
The valgrind ptest script warns about tests such as:
mv: cannot stat 'drd/tests/bar_bad_xml.vgtest': No such file or directory
Since these tests were either in both remove-for-* lists or
were not installed since they fail everywhere as noted in: 85a0d61025 valgrind: fix the remaining ptest failures 984ffe3ab4 valgrind: Disable leak_cpp_interior test
remove them from the remove-for-aarch64 list
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Randy MacLeod [Thu, 30 Dec 2021 01:37:27 +0000 (17:37 -0800)]
valgrind: backport rseq work-around
Using glibc-2.35-alpha, valgrind ptests mostly all fail with the error:
WARNING: unhandled amd64-linux syscall: 334
You may be able to write your own handler.
With this patch applied qemux86-64 ptest results were:
TOTAL: 728
PASSED: 709
FAILED: 0
SKIPPED: 19
This patch implements the Linux rseq syscall as ENOSYS while
a proper fix is being worked on as desribed in the patch
commit log.
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Randy MacLeod [Thu, 30 Dec 2021 01:37:26 +0000 (17:37 -0800)]
valgrind: Add util-linux-taskset ptest dependency
We are using taskset to improve the reproducability of tests listed in:
meta/recipes-devtools/valgrind/valgrind/taskset_nondeterministic_tests
so we need to have the ptests depend on util-linux-taskset.
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Paul Eggleton [Mon, 20 Dec 2021 21:58:23 +0000 (13:58 -0800)]
classes/kernel*: add variables to allow changing artifact extension
Allow .bin suffix to be removed (or changed) in the various artifact
filenames. Removing this extension is useful when trying to remove
symlinks and present only unversioned image files (especially for the
FIT image).
Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Paul Eggleton [Mon, 20 Dec 2021 21:58:22 +0000 (13:58 -0800)]
classes/kernel*: allow disabling symlink creation
Allow setting any of the *_LINK_NAME variables to empty string in order
to disable creating symlinks for kernel artifacts, as you can already
for filesystem images with IMAGE_LINK_NAME. Additionally, for the image
type named symlinks, add a KERNEL_IMAGETYPE_SYMLINK boolean variable
which you can set to 0 to disable those symlinks as well.
Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Wed, 22 Dec 2021 19:00:15 +0000 (19:00 +0000)]
qemu: Add selinux PACKAGECONFIG
We're seeing failures on systems with old selinux headers. Add a PACKAGECONFIG
entry so that we don't try and build this unless enabled. I'll leave
dependencies to someone who wants it and can test, I just need to fix
build failures right now as this shouldn't be enabled.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Mon, 20 Dec 2021 18:26:33 +0000 (18:26 +0000)]
kmod: remove obsolete ac_pwd manipulation
Remove the change of ac_pwd from config.status as the build is
successful without it (it was added with no explanation in 152c973 when
ptest was enabled).
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Mon, 20 Dec 2021 18:05:59 +0000 (18:05 +0000)]
openssl: upgrade to 3.0.1
Major changes in 3.0.1:
* Fixed invalid handling of X509_verify_cert() internal errors in libssl
([CVE-2021-4044])
* Allow fetching an operation from the provider that owns an unexportable key
as a fallback if that is still allowed by the property query.
Drop patches which were backported.
Add sed to openssl-ptest as the tests use 'sed -u', which isn't supported
by busybox.
Ensure that we package the dummy async engine, needed by the test suite.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
wangmy [Mon, 20 Dec 2021 15:03:39 +0000 (23:03 +0800)]
sysvinit: upgrade 3.00 -> 3.01
refresh pidof-add-m-option.patch
Changelog:
==========
* Default to showing processes in the uninterruptable state (D).
The -z flag no longer affects whether processes in D state are shown.
The -z flag does still toggle whether zombie (Z) processes are shown.
* Removed unnecessary check which is always true from init tab parsing.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Mon, 20 Dec 2021 15:17:46 +0000 (10:17 -0500)]
linux-yocto/5.10: update to v5.10.87
Updating linux-yocto/5.10 to the latest korg -stable release that comprises
the following commits:
272aedd4a305 Linux 5.10.87 8dd559d53b3b arm: ioremap: don't abuse pfn_valid() to check if pfn is in RAM 65c578935bcc arm: extend pfn_valid to take into account freed memory map alignment 6e634c0e7155 memblock: ensure there is no overflow in memblock_overlaps_region() 74551f13c62f memblock: align freed memory map on pageblock boundaries with SPARSEMEM b4b54c7ba149 memblock: free_unused_memmap: use pageblock units instead of MAX_ORDER b6a1cbd187fc perf intel-pt: Fix error timestamp setting on the decoder error path 0612aa02c2c8 perf intel-pt: Fix missing 'instruction' events with 'q' option 71c795028b31 perf intel-pt: Fix next 'err' value, walking trace 02681dd1780a perf intel-pt: Fix state setting when receiving overflow (OVF) packet cbed09b44ce0 perf intel-pt: Fix intel_pt_fup_event() assumptions about setting state type 3bb7fd4be8c4 perf intel-pt: Fix sync state when a PSB (synchronization) packet is found 731ff7884138 perf intel-pt: Fix some PGE (packet generation enable/control flow packets) usage b23f9252a41d perf inject: Fix itrace space allowed for new attributes 7c26da3be1e9 ethtool: do not perform operations on net devices being unregistered 6992d8c215c8 hwmon: (dell-smm) Fix warning on /proc/i8k creation error c31470a30c0d fuse: make sure reclaim doesn't write the inode 613725436e69 bpf: Fix integer overflow in argument calculation for bpf_map_area_alloc 9099f3512678 staging: most: dim2: use device release method ac76adc87a78 KVM: x86: Ignore sparse banks size for an "all CPUs", non-sparse IPI req 6f0d9d3e74dc tracing: Fix a kmemleak false positive in tracing_map f35f7f04aa80 drm/amd/display: add connector type check for CRC source set dd3cea342522 drm/amd/display: Fix for the no Audio bug with Tiled Displays dadce61247c6 net: netlink: af_netlink: Prevent empty skb by adding a check on len. bca6af4325d6 i2c: rk3x: Handle a spurious start completion interrupt flag d6edec8a7b55 parisc/agp: Annotate parisc agp init functions with __init cf520ccffd9a ALSA: hda/hdmi: fix HDA codec entry table order for ADL-P 701a07fd0274 ALSA: hda: Add Intel DG2 PCI ID and HDMI codec vid 6d22a96d12d7 net/mlx4_en: Update reported link modes for 1/10G 999069d8b040 Revert "tty: serial: fsl_lpuart: drop earlycon entry for i.MX8QXP" 27f4ce02b31a s390/test_unwind: use raw opcode instead of invalid instruction 9eab949e2b90 KVM: arm64: Save PSTATE early on exit 990fd815ec88 drm/msm/dsi: set default num_data_lanes c602863ad28e nfc: fix segfault in nfc_genl_dump_devices_done 37050f17f2d2 Linux 5.10.86 32414491834c netfilter: selftest: conntrack_vrf.sh: fix file permission
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Mon, 20 Dec 2021 15:17:45 +0000 (10:17 -0500)]
linux-yocto/5.15: update to v5.15.10
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
57dcae4a8b93 Linux 5.15.10 dbcda209899a perf inject: Fix itrace space allowed for new attributes 5b4a8fbe4b0b fuse: make sure reclaim doesn't write the inode 18fc0ba9b10e staging: most: dim2: use device release method 9985d29c4755 tracing: Fix a kmemleak false positive in tracing_map 43b145f3a20a drm/amdkfd: process_info lock not needed for svm c21cff0ea6b2 drm/amd/display: add connector type check for CRC source set d9e63f180fc8 drm/amdkfd: fix double free mem structure 00a3f7fb7ae3 drm/amd/display: Fix for the no Audio bug with Tiled Displays 62477b3a86d6 drm/amdgpu: check atomic flag to differeniate with legacy path 796ddc81437b drm/amdgpu: cancel the correct hrtimer on exit 4c986072a8c9 net: netlink: af_netlink: Prevent empty skb by adding a check on len. 2d5ba2f40e73 i2c: rk3x: Handle a spurious start completion interrupt flag a5a0cc7c7b84 parisc/agp: Annotate parisc agp init functions with __init f66f84309623 ALSA: hda/hdmi: fix HDA codec entry table order for ADL-P 5eceb6a60a53 ALSA: hda: Add Intel DG2 PCI ID and HDMI codec vid ced9b762f2d6 loop: Use pr_warn_once() for loop_control_remove() warning 095a04e0b320 net/mlx4_en: Update reported link modes for 1/10G 8605743472c5 Revert "tty: serial: fsl_lpuart: drop earlycon entry for i.MX8QXP" 0700eab4df5b s390/test_unwind: use raw opcode instead of invalid instruction 2b12c89527ae KVM: arm64: Save PSTATE early on exit 906f7797a38f drm/msm/dp: Avoid unpowered AUX xfers that caused crashes dc6c1eddfc74 drm/msm/dsi: set default num_data_lanes d2db21103d84 drm/msm/a6xx: Fix uinitialized use of gpu_scid f6db3d98f876 drm/msm: Fix null ptr access msm_ioctl_gem_submit() 9cbb957441ed i2c: virtio: fix completion handling 304aa6a73189 vmxnet3: fix minimum vectors alloc issue 569670a02e21 ice: fix FDIR init missing when reset VF 76db15314582 RDMA/irdma: Don't arm the CQ more than two times if no CE for this CQ 918e62519834 RDMA/irdma: Report correct WC errors b260dfed222b RDMA/irdma: Fix a potential memory allocation issue in 'irdma_prm_add_pble_mem()' 11eebcf63e98 RDMA/irdma: Fix a user-after-free in add_pble_prm 1ac287b7b615 netfs: Fix lockdep warning from taking sb_writers whilst holding mmap_lock cff728217a2b perf bpf_skel: Do not use typedef to avoid error on old clang 134151c3b11d clk: qcom: sm6125-gcc: Swap ops of ice and apps on sdcc1 439250c09785 dt-bindings: media: nxp,imx7-mipi-csi2: Drop bad if/then schema d17a8d12a6da inet: use #ifdef CONFIG_SOCK_RX_QUEUE_MAPPING consistently c6aa8873468c mtd: rawnand: Fix nand_choose_best_timings() on unsupported interface 0c7b48887c34 mtd: rawnand: Fix nand_erase_op delay e3bc4d4b50ca RDMA/mlx5: Fix releasing unallocated memory in dereg MR flow acb53e47db1f RDMA: Fix use-after-free in rxe_queue_cleanup c0d44c58afdd hwmon: (corsair-psu) fix plain integer used as NULL pointer d89e4211b517 nfc: fix segfault in nfc_genl_dump_devices_done 14655b6d4204 Linux 5.15.9 3be0c72f5153 netfilter: selftest: conntrack_vrf.sh: fix file permission
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Mon, 20 Dec 2021 15:17:44 +0000 (10:17 -0500)]
linux-yocto/5.10: update to v5.10.85
Updating linux-yocto/5.10 to the latest korg -stable release that comprises
the following commits:
e4f2aee6612e Linux 5.10.85 47301c06f602 Documentation/Kbuild: Remove references to gcc-plugin.sh af5ba49cf705 MAINTAINERS: adjust GCC PLUGINS after gcc-plugin.sh removal ad13421fd2cd doc: gcc-plugins: update gcc-plugins.rst 9fc17c3af56c kbuild: simplify GCC_PLUGINS enablement in dummy-tools/gcc d428e5477493 bpf: Add selftests to cover packet access corner cases 0ec0eda3f3c3 misc: fastrpc: fix improper packet size calculation 261d45a4c254 irqchip: nvic: Fix offset for Interrupt Priority Offsets cd946f0ebe78 irqchip/irq-gic-v3-its.c: Force synchronisation when issuing INVALL e1c6611f822e irqchip/armada-370-xp: Fix support for Multi-MSI interrupts 8f3ed9deaaac irqchip/armada-370-xp: Fix return value of armada_370_xp_msi_alloc() d530e9943d64 irqchip/aspeed-scu: Replace update_bits with write_bits. 014c2fa5dc49 csky: fix typo of fpu config macro ee86d0bad80b iio: accel: kxcjk-1013: Fix possible memory leak in probe and remove c10c53419d8d iio: ad7768-1: Call iio_trigger_notify_done() on error 0f86c9e818e7 iio: adc: axp20x_adc: fix charging current reporting on AXP22x af7fbb8c0b54 iio: adc: stm32: fix a current leak by resetting pcsel before disabling vdda fff92f3712d7 iio: at91-sama5d2: Fix incorrect sign extension a2545b147d23 iio: dln2: Check return value of devm_iio_trigger_register() 69ae78c1abe7 iio: dln2-adc: Fix lockdep complaint 416383999c66 iio: itg3200: Call iio_trigger_notify_done() on error bc4d8367ed0d iio: kxsd9: Don't return error code in trigger handler 28ea539a311e iio: ltr501: Don't return error code in trigger handler db12d9508536 iio: mma8452: Fix trigger reference couting 4e7852911084 iio: stk3310: Don't return error code in interrupt handler 5c4a0f307f2b iio: trigger: stm32-timer: fix MODULE_ALIAS 5de9c5b13062 iio: trigger: Fix reference counting cbc04c0c9a67 iio: gyro: adxrs290: fix data signedness fee8be5bde56 xhci: avoid race between disable slot command and host runtime suspend 1b43c9b65f6b usb: core: config: using bit mask instead of individual bits 74b6a6a239aa xhci: Remove CONFIG_USB_DEFAULT_PERSIST to prevent xHCI from runtime suspending ef284f086dd0 usb: core: config: fix validation of wMaxPacketValue entries e4de8ca013f0 USB: gadget: zero allocate endpoint 0 buffers 7193ad3e50e5 USB: gadget: detect too-big endpoint 0 requests 63fc70bffa16 selftests/fib_tests: Rework fib_rp_filter_test() 126d1897cbff net/qla3xxx: fix an error code in ql_adapter_up() 5e663bcd9a37 net, neigh: clear whole pneigh_entry at alloc time ae673832086e net: fec: only clear interrupt of handling queue in fec_enet_rx_queue() 83b16b9c441b net: altera: set a couple error code in probe() 385ffd31ebdb net: cdc_ncm: Allow for dwNtbOutMaxSize to be unset or zero 47322fddb41e tools build: Remove needless libpython-version feature check that breaks test-all fast path 42bea3a1b7f2 dt-bindings: net: Reintroduce PHY no lane swap binding 3f57215f748b Documentation/locking/locktypes: Update migrate_disable() bits. 77d255d28b34 perf tools: Fix SMT detection fast read path 391ca20ea16e Revert "PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge" e5b7fb2198ab i40e: Fix NULL pointer dereference in i40e_dbg_dump_desc 347cc9b4d966 mtd: rawnand: fsmc: Fix timing computation 0b2e1fccdf48 mtd: rawnand: fsmc: Take instruction delay into account 57f290572f45 i40e: Fix pre-set max number of queues for VF eb87117c27e7 i40e: Fix failed opcode appearing if handling messages from VF 82ed3829c937 clk: imx: use module_platform_driver 4d12546cf9e7 RDMA/hns: Do not destroy QP resources in the hw resetting phase 33f320c35d69 RDMA/hns: Do not halt commands during reset until later 4458938b297e ASoC: codecs: wcd934x: return correct value from mixer put 1089dac26c6b ASoC: codecs: wcd934x: handle channel mappping list correctly 83dae68fc00a ASoC: codecs: wsa881x: fix return values from kcontrol put 62e4dc5e130e ASoC: qdsp6: q6routing: Fix return value from msm_routing_put_audio_mixer 2f4764fe3692 ASoC: rt5682: Fix crash due to out of scope stack vars bdd8129c6605 PM: runtime: Fix pm_runtime_active() kerneldoc comment 661c4412c563 qede: validate non LSO skb length c4d2d7c935a4 scsi: scsi_debug: Fix buffer size of REPORT ZONES command 1e434d2687e8 scsi: pm80xx: Do not call scsi_remove_host() in pm8001_alloc() 5dfe61147442 block: fix ioprio_get(IOPRIO_WHO_PGRP) vs setuid(2) 5f1f94c26b0d tracefs: Set all files to the same group ownership as the mount option 2ba0738f7117 net: mvpp2: fix XDP rx queues registering 47ffefd88abf aio: fix use-after-free due to missing POLLFREE handling e4d19740bcca aio: keep poll requests on waitqueue until completed fc2f636ffc44 signalfd: use wake_up_pollfree() 9f3acee7eac8 binder: use wake_up_pollfree() 8e04c8397bf9 wait: add wake_up_pollfree() 2f8eb4c4c8f6 libata: add horkage for ASMedia 1092 f76580d82c62 can: m_can: Disable and ignore ELO interrupt 703dde112021 can: pch_can: pch_can_rx_normal: fix use after free 2737d0bc21b6 drm/syncobj: Deal with signalled fences in drm_syncobj_find_fence. 17edb38e76d6 clk: qcom: regmap-mux: fix parent clock lookup 172a98224418 mmc: renesas_sdhi: initialize variable properly when tuning 33204825cc2b tracefs: Have new files inherit the ownership of their parent c520943a00ad nfsd: Fix nsfd startup race (again) eeb0711801f5 nfsd: fix use-after-free due to delegation race 8b4264c27b82 md: fix update super 1.0 on rdev size change caf9b352dc58 btrfs: replace the BUG_ON in btrfs_del_root_ref with proper error handling 41b3cc57d626 btrfs: clear extent buffer uptodate when we fail to write it 75490bcbd076 scsi: qla2xxx: Format log strings only if needed 07977a3f3d55 ALSA: pcm: oss: Handle missing errors in snd_pcm_oss_change_params*() ad45babf7886 ALSA: pcm: oss: Limit the period size to 16MB 02b2b691b77c ALSA: pcm: oss: Fix negative period/buffer sizes 6760e6ddeb48 ALSA: hda/realtek: Fix quirk for TongFang PHxTxX1 7fe903d35492 ALSA: hda/realtek - Add headset Mic support for Lenovo ALC897 platform 3063ee5164e4 ALSA: ctl: Fix copy of updated id with element read/write c581090228e3 mm: bdi: initialize bdi_min_ratio when bdi is unregistered 06368922f38f KVM: x86: Wait for IPIs to be delivered when handling Hyper-V TLB flush hypercall 2a51edaf5cc5 net/sched: fq_pie: prevent dismantle issue 4b7e90672af8 devlink: fix netns refcount leak in devlink_nl_cmd_reload() 9d683d14f600 IB/hfi1: Correct guard on eager buffer deallocation 2e2edebb5dd6 iavf: Fix reporting when setting descriptor count aada0b3f3392 iavf: restore MSI state on reset 32a329b731a3 netfilter: conntrack: annotate data-races around ct->timeout 5e39de85b76e udp: using datalen to cap max gso segments 666521b3852d seg6: fix the iif in the IPv6 socket control block 484069b5de9d nfp: Fix memory leak in nfp_cpp_area_cache_add() b1830ede16f8 bonding: make tx_rebalance_counter an atomic a59df4ea7155 ice: ignore dropped packets during init 349e83c0cf67 bpf: Fix the off-by-two error in range markings f26951db84a4 bpf, x86: Fix "no previous prototype" warning 74685aaecef0 vrf: don't run conntrack on vrf with !dflt qdisc d5cf399a6dc3 selftests: netfilter: add a vrf+conntrack testcase 83ea620a1be8 nfc: fix potential NULL pointer deref in nfc_genl_dump_ses_done f3d9114ac99f drm/amdkfd: fix boot failure when iommu is disabled in Picasso. 7508a9aa65b9 drm/amdgpu: init iommu after amdkfd device init ac9db04ee32f drm/amdgpu: move iommu_resume before ip init/resume fe9dca7dda61 drm/amdgpu: add amdgpu_amdkfd_resume_iommu 5d191b0976b7 drm/amdkfd: separate kfd_iommu_resume from kfd_resume 46dcf66d6e7a drm/amd/amdkfd: adjust dummy functions' placement dded8d76a7dc x86/sme: Explicitly map new EFI memmap table as encrypted 923f4dc5df67 can: sja1000: fix use after free in ems_pcmcia_add_card() 819251da7178 can: kvaser_pciefd: kvaser_pciefd_rx_error_frame(): increase correct stats->{rx,tx}_errors counter 854a2bede1f0 can: kvaser_usb: get CAN clock frequency from device 2c08271f4ed0 IB/hfi1: Fix leak of rcvhdrtail_dummy_kvaddr d87c10607b5b IB/hfi1: Fix early init panic d60dd3685dc9 IB/hfi1: Insure use of smp_processor_id() is preempt disabled 05eb0e4a12b2 nft_set_pipapo: Fix bucket load in AVX2 lookup routine for six 8-bit groups 89f3edc98ffe HID: check for valid USB device for many HID drivers 889c39113f7e HID: wacom: fix problems when device is not a valid USB device 6272b17001e6 HID: bigbenff: prevent null pointer dereference d877651afd60 HID: add USB_HID dependancy on some USB HID drivers a7e9c5ddf562 HID: add USB_HID dependancy to hid-chicony 28989ed4d79e HID: add USB_HID dependancy to hid-prodikeys 61144329606c HID: add hid_is_usb() function to make it simpler for USB detection 2298d5edd837 HID: google: add eel USB id 12362cd3a409 HID: quirks: Add quirk for the Microsoft Surface 3 type-cover cc97d7321595 gcc-plugins: fix gcc 11 indigestion with plugins... 1eee36a5520b gcc-plugins: simplify GCC plugin-dev capability test 518c3f98e57a usb: gadget: uvc: fix multiple opens
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Mon, 20 Dec 2021 15:17:43 +0000 (10:17 -0500)]
linux-yocto/5.15: update to v5.15.8
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
43e577d7a2cb Linux 5.15.8 c2bd1add2c3e bpf: Add selftests to cover packet access corner cases 5475fcf0a1c4 clocksource/drivers/dw_apb_timer_of: Fix probe failure ee6104661b46 misc: fastrpc: fix improper packet size calculation 62a8ee0502d8 irqchip: nvic: Fix offset for Interrupt Priority Offsets 2d34992ebe9c irqchip/irq-gic-v3-its.c: Force synchronisation when issuing INVALL 4a7c65506473 aio: Fix incorrect usage of eventfd_signal_allowed() d99d861ce3ef irqchip/armada-370-xp: Fix support for Multi-MSI interrupts 97912b97fd83 irqchip/armada-370-xp: Fix return value of armada_370_xp_msi_alloc() f2675399eb2a irqchip/aspeed-scu: Replace update_bits with write_bits. e18f3e046ccd csky: fix typo of fpu config macro 47b355f25b55 bus: mhi: core: Add support for forced PM resume 7f4b37c7a692 bus: mhi: pci_generic: Fix device recovery failed issue 5bff8dff8e21 nvmem: eeprom: at25: fix FRAM byte_len 990bbe357841 misc: rtsx: Avoid mangling IRQ during runtime PM 14508fe13b1c iio: accel: kxcjk-1013: Fix possible memory leak in probe and remove 2906867da4ca iio: ad7768-1: Call iio_trigger_notify_done() on error b3a4c57a9613 iio: adc: axp20x_adc: fix charging current reporting on AXP22x 41d241ad3e55 iio: adc: stm32: fix a current leak by resetting pcsel before disabling vdda 4071943a533c iio: at91-sama5d2: Fix incorrect sign extension a862c731f7bc iio: dln2: Check return value of devm_iio_trigger_register() 9b4e3b804c41 iio: dln2-adc: Fix lockdep complaint 363e1286cf81 iio: itg3200: Call iio_trigger_notify_done() on error e4b600ac98ca iio: kxsd9: Don't return error code in trigger handler 5df9c2c0e4b4 iio: ltr501: Don't return error code in trigger handler c43517071dfc iio: mma8452: Fix trigger reference couting 00d3c14338b5 iio: stk3310: Don't return error code in interrupt handler 111d5b61fbd7 iio: trigger: stm32-timer: fix MODULE_ALIAS 2db8ad169cc8 iio: trigger: Fix reference counting 7d2a35d99700 iio: gyro: adxrs290: fix data signedness 02d5a2a48bb4 xhci: avoid race between disable slot command and host runtime suspend d861bc26fe68 usb: core: config: using bit mask instead of individual bits 47c14aceb290 xhci: Remove CONFIG_USB_DEFAULT_PERSIST to prevent xHCI from runtime suspending 0141f85b78a5 usb: core: config: fix validation of wMaxPacketValue entries f5230fb9bf8e Revert "usb: dwc3: dwc3-qcom: Enable tx-fifo-resize property by default" 6eea4ace62fa USB: gadget: zero allocate endpoint 0 buffers 36dfdf11af49 USB: gadget: detect too-big endpoint 0 requests ef472b023b85 selftests/fib_tests: Rework fib_rp_filter_test() a72723e89f4d net/qla3xxx: fix an error code in ql_adapter_up() 0c9f1ab29e7f net, neigh: clear whole pneigh_entry at alloc time 48135149c089 net: fec: only clear interrupt of handling queue in fec_enet_rx_queue() 089bd0b0bf1e net: altera: set a couple error code in probe() 37493d4eb2e5 net: cdc_ncm: Allow for dwNtbOutMaxSize to be unset or zero 8ca1ca40977b tools build: Remove needless libpython-version feature check that breaks test-all fast path 9c2407afbcd0 dt-bindings: net: Reintroduce PHY no lane swap binding 2e837d90ec09 Documentation/locking/locktypes: Update migrate_disable() bits. 395022a71b6c perf tools: Fix SMT detection fast read path f1131d3f1b50 drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset 99bc19898375 Revert "PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge" 16431e442db2 i40e: Fix NULL pointer dereference in i40e_dbg_dump_desc f8358589b31b bpf, sockmap: Re-evaluate proto ops when psock is removed from sockmap a4953e7b6f6a mtd: rawnand: fsmc: Fix timing computation ebc8909feecd mtd: rawnand: fsmc: Take instruction delay into account fabfb7c18c8e i40e: Fix pre-set max number of queues for VF 2132643b956f i40e: Fix failed opcode appearing if handling messages from VF 06ece58874c3 clk: qcom: clk-alpha-pll: Don't reconfigure running Trion d259ae526fd9 clk: imx: use module_platform_driver 1d044701bdbe hwmon: (dell-smm) Fix warning on /proc/i8k creation error be7c5d58108b RDMA/hns: Do not destroy QP resources in the hw resetting phase 207f5ea62a9f RDMA/hns: Do not halt commands during reset until later 9b6bf6fca018 ASoC: codecs: wcd934x: return correct value from mixer put 339ffb5b5600 ASoC: codecs: wcd934x: handle channel mappping list correctly 71272640d459 ASoC: codecs: wsa881x: fix return values from kcontrol put e1e22179376f ASoC: qdsp6: q6routing: Fix return value from msm_routing_put_audio_mixer cdb5a0d0e007 ASoC: rt5682: Fix crash due to out of scope stack vars e9362a21147a PM: runtime: Fix pm_runtime_active() kerneldoc comment a3f0e9b1d6cd qede: validate non LSO skb length 069a849819b3 ALSA: usb-audio: Reorder snd_djm_devices[] entries ebacb44cb204 scsi: scsi_debug: Fix buffer size of REPORT ZONES command f8dccc1bdea7 scsi: pm80xx: Do not call scsi_remove_host() in pm8001_alloc() d429b302c184 block: fix ioprio_get(IOPRIO_WHO_PGRP) vs setuid(2) e3098ce15fec i2c: mpc: Use atomic read and fix break condition 23a5f9797d6c tracefs: Set all files to the same group ownership as the mount option 60d311f9e638 aio: fix use-after-free due to missing POLLFREE handling 924f51534d42 aio: keep poll requests on waitqueue until completed 8d6760fd5d16 signalfd: use wake_up_pollfree() f12d997683a7 binder: use wake_up_pollfree() 1ebb6cd8c754 wait: add wake_up_pollfree() 8e12976c0c19 io_uring: ensure task_work gets run as part of cancelations eb313c47b276 libata: add horkage for ASMedia 1092 b0034d4b71f1 drm/syncobj: Deal with signalled fences in drm_syncobj_find_fence. 021ae1e11dfc thermal: int340x: Fix VCoRefLow MMIO bit offset for TGL 0138d396ffce clk: qcom: regmap-mux: fix parent clock lookup dfb7285a82fa mmc: renesas_sdhi: initialize variable properly when tuning 62c613419543 hwmon: (pwm-fan) Ensure the fan going on in .probe() a85d27b2eff4 selftests: KVM: avoid failures due to reserved HyperTransport region 041aae47b000 tracefs: Have new files inherit the ownership of their parent 8bf902fee589 nfsd: Fix nsfd startup race (again) 148c816f10fd nfsd: fix use-after-free due to delegation race 50dacb2289e5 md: fix update super 1.0 on rdev size change 00cd8a99885c perf intel-pt: Fix error timestamp setting on the decoder error path 4fbb83c1bf25 perf intel-pt: Fix missing 'instruction' events with 'q' option 22e5fb70f725 perf intel-pt: Fix next 'err' value, walking trace f747cc563afd perf intel-pt: Fix state setting when receiving overflow (OVF) packet e39dd2e60039 perf intel-pt: Fix intel_pt_fup_event() assumptions about setting state type d9c838b927cd perf intel-pt: Fix sync state when a PSB (synchronization) packet is found c816dcf69ae4 perf intel-pt: Fix some PGE (packet generation enable/control flow packets) usage ca06c5cb1b6d btrfs: free exchange changeset on failures 32d4054cb3e8 btrfs: replace the BUG_ON in btrfs_del_root_ref with proper error handling 477675049ca8 btrfs: fix re-dirty process of tree-log nodes 0338e448b905 btrfs: clear extent buffer uptodate when we fail to write it 48fc373d9d54 scsi: qla2xxx: Format log strings only if needed d14bad8c11cc cifs: Fix crash on unload of cifs_arc4.ko 1fd702980994 ALSA: pcm: oss: Handle missing errors in snd_pcm_oss_change_params*() 35a3e5110321 ALSA: pcm: oss: Limit the period size to 16MB 00a860678098 ALSA: pcm: oss: Fix negative period/buffer sizes c94a0d734c7b ALSA: hda/realtek: Fix quirk for TongFang PHxTxX1 220aaee85f0e ALSA: hda/realtek - Add headset Mic support for Lenovo ALC897 platform da171216ac2d ALSA: ctl: Fix copy of updated id with element read/write f987b61daa98 mm: bdi: initialize bdi_min_ratio when bdi is unregistered dd902bcec34f mm/slub: fix endianness bug for alloc/free_traces attributes 7d7e02563bcd mm/damon/core: fix fake load reports due to uninterruptible sleeps 5a960e533c2a timers: implement usleep_idle_range() 64d320dcf1f1 KVM: x86: Wait for IPIs to be delivered when handling Hyper-V TLB flush hypercall 21cc93f6df63 KVM: x86: Ignore sparse banks size for an "all CPUs", non-sparse IPI req eea80da3472b KVM: x86: Don't WARN if userspace mucks with RCX during string I/O exit d6c37e679631 net: mvpp2: fix XDP rx queues registering d86216dfda7c net/sched: fq_pie: prevent dismantle issue 973a0373e88c net: dsa: felix: Fix memory leak in felix_setup_mmio_filtering bfc017140aa7 net: dsa: mv88e6xxx: error handling for serdes_power functions 76e414aa2a24 net: bcm4908: Handle dma_set_coherent_mask error codes fe30b70ca84d devlink: fix netns refcount leak in devlink_nl_cmd_reload() f9a22d3ed855 IB/hfi1: Correct guard on eager buffer deallocation 20791287eda1 iavf: Fix reporting when setting descriptor count d0ed80e3ca88 iavf: restore MSI state on reset be2b5a78a0c1 netfilter: conntrack: annotate data-races around ct->timeout d2cd7c7f8f83 netfilter: nft_exthdr: break evaluation if setting TCP option fails e6182c63d827 udp: using datalen to cap max gso segments 98adb2bbfa40 seg6: fix the iif in the IPv6 socket control block f707820c0923 nfp: Fix memory leak in nfp_cpp_area_cache_add() 6dada2646a0a bonding: make tx_rebalance_counter an atomic cfd719f04267 ethtool: do not perform operations on net devices being unregistered 9a7e323edb86 ice: ignore dropped packets during init b4fb67fd1adf bpf: Fix the off-by-two error in range markings e76da2e8a09a bpf: Make sure bpf_disable_instrumentation() is safe vs preemption. 9c983fd7cf97 bpf, sockmap: Attach map progs to psock early for feature probes c817dcb2a65b bpf, x86: Fix "no previous prototype" warning e8193cebf753 vrf: don't run conntrack on vrf with !dflt qdisc cffab968e94e selftests: netfilter: add a vrf+conntrack testcase fae9705d2810 nfc: fix potential NULL pointer deref in nfc_genl_dump_ses_done 0159c7b26683 platform/x86: amd-pmc: Fix s2idle failures on certain AMD laptops b964ecdb71d9 x86/sme: Explicitly map new EFI memmap table as encrypted bbf22d47bb3e net: dsa: mv88e6xxx: allow use of PHYs on CPU and DSA ports f4b8f987a748 net: dsa: mv88e6xxx: fix "don't use PHY_DETECT on internal PHY's" 5c960ae2c22a can: m_can: Disable and ignore ELO interrupt 081816acad36 can: m_can: pci: fix iomap_read_fifo() and iomap_write_fifo() f4848384c17e can: m_can: pci: fix incorrect reference clock rate 75a422165477 can: m_can: m_can_read_fifo: fix memory leak in error branch 6c73fc931658 can: pch_can: pch_can_rx_normal: fix use after free 474f9a8534f5 can: sja1000: fix use after free in ems_pcmcia_add_card() c9b5472da3a8 can: kvaser_pciefd: kvaser_pciefd_rx_error_frame(): increase correct stats->{rx,tx}_errors counter a8b513b824e4 can: kvaser_usb: get CAN clock frequency from device 834d0fb97864 IB/hfi1: Fix leak of rcvhdrtail_dummy_kvaddr 27bbf30f928a IB/hfi1: Fix early init panic b9e1cc3b95e8 IB/hfi1: Insure use of smp_processor_id() is preempt disabled 33bee1ebfc83 nft_set_pipapo: Fix bucket load in AVX2 lookup routine for six 8-bit groups 20d1064ac956 platform/x86/intel: hid: add quirk to support Surface Go 3 6281306bdc99 HID: Ignore battery for Elan touchscreen on Asus UX550VE 719d5fb2789a HID: sony: fix error path in probe e537e7ef5e8c mmc: spi: Add device-tree SPI IDs 59146a86b4aa mtd: dataflash: Add device-tree SPI IDs a579510a64ed HID: check for valid USB device for many HID drivers 05ca95256aba HID: wacom: fix problems when device is not a valid USB device 58f15f5ae778 HID: bigbenff: prevent null pointer dereference 30d3150d9094 HID: add USB_HID dependancy on some USB HID drivers 8c765cf5f1bc HID: add USB_HID dependancy to hid-chicony 10b05037d7a8 HID: add USB_HID dependancy to hid-prodikeys e1e21632a4c4 HID: add hid_is_usb() function to make it simpler for USB detection 6892f8e27d6e HID: intel-ish-hid: ipc: only enable IRQ wakeup when requested d38f90239254 HID: google: add eel USB id c7b9eca23ea2 HID: quirks: Add quirk for the Microsoft Surface 3 type-cover 5131cc731c67 usb: gadget: uvc: fix multiple opens
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>