summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-01-04bitbake/lib/bb/utils.py: refactor deprecated load_moduletimo/load_module_14629Tim Orling
importlib load_module is deprecated in 3.10 and will be removed in 3.12 The recommended replacements are use of exec_module() and create_module() [1][2] [1] https://docs.python.org/3/library/importlib.html#importlib.abc.Loader.load_module [2] https://bugs.python.org/issue43540 Fixes [YOCTO #14629] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2022-01-04scripts/lib/wic/pluginbase.py: refactor load_moduleTim Orling
importlib load_module is deprecated in 3.10 and will be removed in 3.12 The recommended replacements are use of exec_module() and create_module() [1][2] importlib.machinery.SourceFileLoader.load_module doesn't have a replacement and likely that class will not have exec_create implemented. Instead, we can load the file source as a spec and exec_module from there. Borrow inspiration from [3]. [1] https://docs.python.org/3/library/importlib.html#importlib.abc.Loader.load_module [2] https://bugs.python.org/issue43540 [3] https://github.com/conan-io/conan/issues/3441#issuecomment-419810150 Fixes [YOCTO #14629] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2022-01-04scripts/lib/scriptutils.py: refactor load_moduleTim Orling
importlib load_module is deprecated in 3.10 and will be removed in 3.12 The recommended replacements are use of exec_module() and create_module() [1][2] [1] https://docs.python.org/3/library/importlib.html#importlib.abc.Loader.load_module [2] https://bugs.python.org/issue43540 Fixes [YOCTO #14629] Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
2022-01-04linux-yocto/5.14: update genericx86* machines to v5.14.21Teoh Jay Shen
(From meta-yocto rev: 937ecc5586d3d9067835223d32a0673b19698ed4) Signed-off-by: Teoh Jay Shen <jay.shen.teoh@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04linux-yocto/5.10: update genericx86* machines to v5.10.87Teoh Jay Shen
(From meta-yocto rev: 5f448324755c98306cce24305f25921454476ed0) Signed-off-by: Teoh Jay Shen <jay.shen.teoh@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04meta-yocto-bsp: Introduce the v5.15 bbappendKevin Hao
(From meta-yocto rev: af974282c6c5cfdfd487f1298d716d9b36abbc04) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04webkitgtk: Add reproducibility fixRichard Purdie
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. (From OE-Core rev: 4d561c98f4d2e68d595aae4b03df1420cb01c3f7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04openssl: Add reproducibility fixRichard Purdie
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. (From OE-Core rev: f8281e290737dba16a46d7ae937c66b3266e0fe8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04meson: Handle qemu riscv issuesRichard Purdie
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. (From OE-Core rev: 7c1356e762d357dad95decf7b1d6147a2efae174) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04package_deb/ipk/rpm: Add more minimal do_build dependencies backRichard Purdie
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. (From OE-Core rev: f3d02c328f3f182340528d11c7b10454e3f6a54b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04scripts/buildhistory-diff: drop use of distutilsTim Orling
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] (From OE-Core rev: bc90dcae9f53ddc246942f4d9b8ae8943e3b9754) Signed-off-by: Tim Orling <timothy.t.orling@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04rpm: remove tmp folder created during installSamuli Piippo
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] (From OE-Core rev: 28dd1e1a0965646c5736e3de91aad830311a797b) Signed-off-by: Samuli Piippo <samuli.piippo@qt.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04grub2: fix CVE-2021-3981Yongxin Liu
(From OE-Core rev: bb554d14142f93c39fd1516a31757006531c348f) Signed-off-by: Yongxin Liu <yongxin.liu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04package_manager: ipk: Fix host manifest generationOleksiy Obitotskyy
Since honister host manifest stopped to generate, i.e. manifest file is empty but all ipks/files into sdk is ok. (From OE-Core rev: 79a2392f5d2a4cb6509a83afb40bca01bac59914) Signed-off-by: Oleksiy Obitotskyy <oobitots@cisco.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04rpm: fix CVE-2021-3521Changqing Li
(From OE-Core rev: 938dd031bc2577417266f032e53490909654220c) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04xserver-xorg: update CVE_PRODUCTAnuj Mittal
Some of the CVEs have x_server as the product name. (From OE-Core rev: 4d5d63cf8605515bb659b6b732683d7fe6540728) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04valgrind: make run-ptest betterRandy MacLeod
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. (From OE-Core rev: 2e1dc5782dcb879410d535f937c633edea484d11) Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04valgrind: skip boost_thread for aarch64 ptestsRandy MacLeod
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. (From OE-Core rev: 9a36983f9681f215aa2f59bfcb16343fe0a819cd) Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04valgrind: remove duplicate and skipped tests from remove-for-aarch64Randy MacLeod
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 (From OE-Core rev: 9492cdc43b830ebf0d02ccaae342f33c826d8a01) Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04valgrind: backport rseq work-aroundRandy MacLeod
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. (From OE-Core rev: 6ca008072df0371b6b1cfdd7030da6494ff012bd) Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-04valgrind: Add util-linux-taskset ptest dependencyRandy MacLeod
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. (From OE-Core rev: aa06250cc4e258ad807eef9940939fd68c0bda8b) Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-03releases: update to include 3.1.13Michael Halstead
Adding 3.1.13 to documentation switcher and release list. (From yocto-docs rev: 24fe6a752cdec66a3d34d390fa645726ed3725b8) Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-22tzdata: Remove no longer relevant RCONFLICTS:${PN}Peter Kjellerstedt
Remove RCONFLICTS:${PN} for the packages from the timezones recipe, which was replaced by tzdata in OE-Classic in 2007... Also remove a commented timezone (pacificnew), which has actually never been added to TZONES. (From OE-Core rev: 24c1b8346a2ab8bdea2e140282e33814166d9113) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-22kernel: add -dbg packageSaul Wold
Adding the dbg package allows the package bbclass to parse the debug information which can then be used by the create_spdx bbclass (From OE-Core rev: b35b68e4ec4a82ada20ab861d29f96cdcb21dec2) Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-22gawk: remove load-sensitive testsRoss Burton
The time and timeout tests are sensitive to system load, and as we run these on build machines they fail randomly. [ YOCTO #14371 ] (From OE-Core rev: d2b62913a5771169265171129fe972c8e252fe04) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-22classes/kernel*: add variables to allow changing artifact extensionPaul Eggleton
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). (From OE-Core rev: cbecc3cf06eb7359fedf3c6af281cc72178cad18) Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-22classes/qemuboot: allow IMAGE_LINK_NAME to be emptyPaul Eggleton
If IMAGE_LINK_NAME is empty (supported everywhere else) then do not create the symlink for the .qemuboot file. (From OE-Core rev: 9b19845c0506949ca61965fb92fb3f337062f377) Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-22classes/kernel*: allow disabling symlink creationPaul Eggleton
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. (From OE-Core rev: d7341f1f22c32ff6cc95d7127f26f87d7fc9c6bd) Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-22binutils: CVE-2021-42574pgowda
Upstream-Status: Backport [https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=b3aa80b45c4f46029efeb204bb9f2d2c4278a0e5] [RP: Merge uint -> unsigned int change] (From OE-Core rev: fa242a41f3436f1d73eabee335573c1801bf7888) Signed-off-by: pgowda <pgowda.cve@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-22qemu: Add selinux PACKAGECONFIGRichard Purdie
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. (From OE-Core rev: d26c86e67b1154b243d093ff80dafce54da47424) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21kmod: expand compression PACKAGECONFIGsRoss Burton
Turn the explicitly enabled zlib support into an enabled by default PACKAGECONFIG, and add Zstd support (disabled by default). (From OE-Core rev: 6dd6184f01d79ebd26347a6006f92a5b5906ee3e) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21kmod: merge target/native recipesRoss Burton
There's no good reason to keep separate target and native recipes for kmod, so merge them into a single kmod_29.bb which uses class extension. The symlinks are not created differently for target vs native builds, as the native sbindir is in PATH. (From OE-Core rev: 9abbf481438fba10a7512fb1ad1bff5d48e6fbdc) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21kmod: remove obsolete ac_pwd manipulationRoss Burton
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). (From OE-Core rev: af0f4c6f7769e9be64adddc29a3bc3fdb8cce389) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21openssl: upgrade to 3.0.1Ross Burton
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. (From OE-Core rev: 5cd40648b0ba88cd9905800e748ae98f08c10ac7) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21gcc: Update status of musl stddef.h patchKhem Raj
This patch has been accepted upstream (From OE-Core rev: 4c644708798f258d45dbcfa01909626de32710d4) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21python3: backport a fix so the test suite passes with OpenSSL 3.0.1Ross Burton
The test suite makes incorrect assumptions about OpenSSL versions post- 3.0, so backport the fix for the test suite. (From OE-Core rev: 2b5e9cfd2c1914d606725029c59cd50cca3d5511) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21sysvinit: upgrade 3.00 -> 3.01wangmy
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. (From OE-Core rev: 5b5c1cd43923e552ae6bcfc50f1766981c44ae7b) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21python3-importlib-metadata: upgrade 4.8.2 -> 4.9.0wangmy
(From OE-Core rev: 80d1a6b968b9dc50da4941e1747c77a9323a09a5) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21linux-firmware: upgrade 20211027 -> 20211216wangmy
License-Update: version of license file updated. (From OE-Core rev: 07dc668ddc50de14821aff1b6850d8b4999702bd) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21linux-yocto/5.10: update to v5.10.87Bruce Ashfield
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 (From OE-Core rev: 41e6433af247105b9430d5fe2ef3e32624d6ed76) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21linux-yocto/5.15: update to v5.15.10Bruce Ashfield
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 (From OE-Core rev: 1fb12d42dd4112e8fa2ec7eeb562c115c3b49ada) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21linux-yocto/5.10: update to v5.10.85Bruce Ashfield
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 (From OE-Core rev: c6503f8a57197826c4a939ca9212f075c156f14f) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21linux-yocto/5.15: update to v5.15.8Bruce Ashfield
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 (From OE-Core rev: 0b19990a516aed8147b0a4474c413f8a44c7b35e) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21linux-yocto/5.15: update to v5.15.7Bruce Ashfield
Updating linux-yocto/5.15 to the latest korg -stable release that comprises the following commits: 4e8c680af6d5 Linux 5.15.7 3ded93ae46ce ipmi: msghandler: Make symbol 'remove_work_wq' static 888fc81107ca serial: liteuart: fix minor-number leak on probe errors 602824cf9aa9 serial: liteuart: fix use-after-free and memleak on unbind 189c99c629bb serial: liteuart: Fix NULL pointer dereference in ->remove() 54b4cfe4c999 serial: 8250: Fix RTS modem control while in rs485 mode b6e196d931d0 serial: 8250_pci: rewrite pericom_do_set_divisor() 1718ff2e3dad serial: 8250_pci: Fix ACCES entries in pci_serial_quirks array 64e491c1634b serial: core: fix transmit-buffer reset and memleak d2341178187a serial: tegra: Change lower tolerance baud rate limit for tegra20 and tegra30 ea3628ce85ff serial: pl011: Add ACPI SBSA UART match id 87eb31a7d1e7 tty: serial: msm_serial: Deactivate RX DMA for polling support 498ddcffe2ff x86/64/mm: Map all kernel memory into trampoline_pgd 6e0dd9cceac7 x86/tsc: Disable clocksource watchdog for TSC on qualified platorms 53df08733bc4 x86/tsc: Add a timer to make sure TSC_adjust is always checked 7d94bc8e335c usb: cdnsp: Fix a NULL pointer dereference in cdnsp_endpoint_init() f4f77594cc30 usb: cdns3: gadget: fix new urb never complete if ep cancel previous requests cfdb7032a488 usb: typec: tcpm: Wait in SNK_DEBOUNCED until disconnect 43cdf7b5645d USB: NO_LPM quirk Lenovo Powered USB-C Travel Hub fa75f593c867 xhci: Fix commad ring abort, write all 64 bits to CRCR register. 81dbda4c70f3 vgacon: Propagate console boot parameters before calling `vc_resize' dbeb9153ded9 parisc: Mark cr16 CPU clocksource unstable on all SMP machines 98736f21f673 parisc: Fix "make install" on newer debian releases 34680557cf3a parisc: Fix KBUILD_IMAGE for self-extracting kernel 8e044b80e6ba serial: 8250_bcm7271: UART errors after resuming from S2 cb0fb54ff6ee net/mlx5e: Sync TIR params updates against concurrent create/modify a950a93be05f net/mlx5e: Rename TIR lro functions to TIR packet merge functions 3cd81837f46f net/mlx5e: Rename lro_timeout to packet_merge_timeout 66e507d96869 KVM: x86/mmu: Remove spurious TLB flushes in TDP MMU zap collapsible path e0609b252c8c KVM: x86/mmu: Rename slot_handle_leaf to slot_handle_level_4k 7012eb0e5220 KVM: SEV: Return appropriate error codes if SEV-ES scratch setup fails a246d92dda9f sched/uclamp: Fix rq->uclamp_max not set on first enqueue fcf714776066 preempt/dynamic: Fix setup_preempt_mode() return value e19a07833960 x86/xen: Add xenpv_restore_regs_and_return_to_usermode() 308cc9668d7c x86/entry: Use the correct fence macro after swapgs in kernel CR3 efc5d7be3eb0 x86/entry: Add a fence for kernel entry SWAPGS in paranoid_entry() ce364f143caa x86/sev: Fix SEV-ES INS/OUTS instructions for word, dword, and qword 690637ec0442 io-wq: don't retry task_work creation failure on fatal conditions 894b21da042f Revert "drm/i915: Implement Wa_1508744258" 812ed9b71246 mctp: Don't let RTM_DELROUTE delete local routes f1bcddbc7b60 KVM: VMX: Set failure code in prepare_vmcs02() 5333bef073f8 KVM: x86/pmu: Fix reserved bits for AMD PerfEvtSeln register 7a22778cc73b net/mlx5: E-Switch, Check group pointer before reading bw_share value 4cc946fae4c5 net/mlx5: E-Switch, fix single FDB creation on BlueField 301c7519106d net/mlx5: E-switch, Respect BW share of the new group 3f8887350191 net/mlx5: Move MODIFY_RQT command to ignore list in internal error state 1adc4914a0da net/mlx5e: Fix missing IPsec statistics on uplink representor c4db545992ad KVM: SEV: initialize regions_list of a mirror VM b5a8918d0865 KVM: X86: Fix when shadow_root_level=5 && guest root_level<4 4768935c2540 iwlwifi: Fix memory leaks in error handling path 8b9bed7c63f0 ASoC: rk817: Add module alias for rk817-codec 805c90e0e919 drm/msm: Restore error return on invalid fence 4c3cdbf25403 drm/msm: Fix wait_fence submitqueue leak 8e2b7fe5e8a4 drm/msm: Fix mmap to include VM_IO and VM_DONTDUMP a4eb55901df1 drm/msm/devfreq: Fix OPP refcnt leak 8e256b45e058 KVM: x86/mmu: Pass parameter flush as false in kvm_tdp_mmu_zap_collapsible_sptes() d618539224ea KVM: x86/mmu: Skip tlb flush if it has been done in zap_gfn_range() be9163800ba7 atlantic: Remove warn trace message. 35b75e2b72c5 atlantic: Fix statistics logic for production hardware 469d2288e059 Remove Half duplex mode speed capabilities. 4b72830f1e30 atlantic: Add missing DIDs and fix 115c. 6816e0fa49f3 atlantic: Fix to display FW bundle version instead of FW mac version. e9df163300ae atlatnic: enable Nbase-t speeds with base-t da0027b4178d atlantic: Increase delay for fw transactions e216e02befc3 drm/vc4: kms: Fix previous HVS commit wait aeadbd778d66 drm/vc4: kms: Don't duplicate pending commit 2931db9a5ed2 drm/vc4: kms: Clear the HVS FIFO commit pointer once done 53f9601e908d drm/vc4: kms: Add missing drm_crtc_commit_put b044180fcb38 drm/vc4: kms: Fix return code check fd7bfba0112d drm/vc4: kms: Wait for the commit before increasing our clock rate 3cae481575f5 drm/msm: Do hw_init() before capturing GPU state 83e54fcf0b14 drm/msm/a6xx: Allocate enough space for GMU registers 3a3db121f999 net/smc: Keep smc_close_final rc during active close b44a55ee25ef net/rds: correct socket tunable error in rds_tcp_tune() 95518fe354d7 net/smc: fix wrong list_del in smc_lgr_cleanup_early 170739c45e37 ipv4: convert fib_num_tclassid_users to atomic_t 94782c8ffd07 net: annotate data-races on txq->xmit_lock_owner 1c0ddef45b7e octeontx2-af: Fix a memleak bug in rvu_mbox_init() e83fb96f915a dpaa2-eth: destroy workqueue at the end of remove function 686578a1bac1 net: marvell: mvpp2: Fix the computation of shared CPUs 231117a52713 net: usb: lan78xx: lan78xx_phy_init(): use PHY_POLL instead of "0" if no IRQ is available 823ae758c0f3 net: stmmac: Avoid DMA_CHAN_CONTROL write if no Split Header support a927f9dfd0d9 ALSA: intel-dsp-config: add quirk for CML devices based on ES8336 codec 9469273e616c rxrpc: Fix rxrpc_local leak in rxrpc_lookup_peer() bc97458620e3 rxrpc: Fix rxrpc_peer leak in rxrpc_look_up_bundle() f50dcc9d14f5 ASoC: tegra: Fix kcontrol put callback in AHUB e13772cfb25d ASoC: tegra: Fix kcontrol put callback in DSPK 1686d2e9edb2 ASoC: tegra: Fix kcontrol put callback in DMIC e6186c773572 ASoC: tegra: Fix kcontrol put callback in I2S 7b77bdff45ff ASoC: tegra: Fix kcontrol put callback in ADMAIF a0730b605153 ASoC: tegra: Fix wrong value type in DSPK 7e83ca5d78bb ASoC: tegra: Fix wrong value type in DMIC 36358b208cdb ASoC: tegra: Fix wrong value type in I2S f3f65b768880 ASoC: tegra: Fix wrong value type in ADMAIF 14b03b8cebdf mt76: mt7915: fix NULL pointer dereference in mt7915_get_phy_mode f8aceb91a5dd net: dsa: b53: Add SPI ID table ad7f90bb8846 selftests: net: Correct case name 75917372eef0 net/mlx4_en: Fix an use-after-free bug in mlx4_en_try_alloc_resources() b762b3e28c92 net/mlx5e: IPsec: Fix Software parser inner l3 type setting in case of encapsulation 3f837fefa59d iwlwifi: fix warnings produced by kernel debug options b9dffaf94908 arm64: ftrace: add missing BTIs 49d17d1a4ba5 siphash: use _unaligned version by default 519ed0ab5f8b net: mpls: Fix notifications when deleting a device c5ef33c1489b net: qlogic: qlcnic: Fix a NULL pointer dereference in qlcnic_83xx_add_rings() 5a9afcd827ca tcp: fix page frag corruption on page fault 22a18dd48866 natsemi: xtensa: fix section mismatch warnings f744230dfbf2 i2c: cbus-gpio: set atomic transfer callback e2d234f96d8b i2c: stm32f7: stop dma transfer in case of NACK 3dd6c5899695 i2c: stm32f7: recover the bus on access timeout a153d4253530 i2c: stm32f7: flush TX FIFO upon transfer errors d5f50794a49f wireguard: ratelimiter: use kvcalloc() instead of kvzalloc() 2745192cb798 wireguard: receive: drop handshakes if queue lock is contended af794a64d6ca wireguard: receive: use ring buffer for incoming handshakes 4db0d88a9048 wireguard: device: reset peer src endpoint when netns exits 7c0d08d85139 wireguard: selftests: rename DEBUG_PI_LIST to DEBUG_PLIST 631a480320f1 wireguard: selftests: actually test for routing loops d33493e9654a wireguard: allowedips: add missing __rcu annotation to satisfy sparse b050a8d576b1 wireguard: selftests: increase default dmesg log size 326fb8a1c267 net: dsa: mv88e6xxx: Link in pcs_get_state() if AN is bypassed 19f7ad89bcb7 net: dsa: mv88e6xxx: Fix inband AN for 2500base-x on 88E6393X family 6f273a649608 net: dsa: mv88e6xxx: Add fix for erratum 5.2 of 88E6393X family f2be2d4c8e8f net: dsa: mv88e6xxx: Save power by disabling SerDes trasmitter and receiver 865185f74509 net: dsa: mv88e6xxx: Drop unnecessary check in mv88e6393x_serdes_erratum_4_6() 0671c8f7332f net: dsa: mv88e6xxx: Fix application of erratum 4.8 for 88E6393X f7b4f571d580 tracing/histograms: String compares should not care about signed values 4e06bb02ad6a KVM: x86: check PIR even for vCPUs with disabled APICv 2846d550f8f5 KVM: X86: Use vcpu->arch.walk_mmu for kvm_mmu_invlpg() 6aebd2da8d49 KVM: arm64: Avoid setting the upper 32 bits of TCR_EL2 and CPTR_EL2 to 1 87d9c628be26 KVM: MMU: shadow nested paging does not have PKU 9325b1dbdbf9 KVM: x86: Use a stable condition around all VT-d PI paths 70a37e04c08a KVM: VMX: prepare sync_pir_to_irr for running with APICv disabled 8ed61a2a6a28 KVM: nVMX: Abide to KVM_REQ_TLB_FLUSH_GUEST request on nested vmentry/vmexit 361e68805ace KVM: nVMX: Flush current VPID (L1 vs. L2) for KVM_REQ_TLB_FLUSH_GUEST 85f2cf6419dd KVM: nVMX: Emulate guest TLB flush on nested VM-Enter with new vpid12 3a929e1d7e5e KVM: x86: ignore APICv if LAPIC is not enabled cbe4fcf37150 KVM: Ensure local memslot copies operate on up-to-date arch-specific data 2bdc79ac9a4f KVM: x86/mmu: Fix TLB flush range when handling disconnected pt 0827b8db5c7f KVM: Disallow user memslot with size that exceeds "unsigned long" f1a1693ea4e2 KVM: fix avic_set_running for preemptable kernels 245241821ecf drm/i915/dp: Perform 30ms delay after source OUI write 7418356362ce drm/amd/display: Allow DSC on supported MST branch devices 8ef8a76a340e ipv6: fix memory leak in fib6_rule_suppress 3ce84ab279ef scsi: ufs: ufs-pci: Add support for Intel ADL a8392866c522 scsi: lpfc: Fix non-recovery of remote ports following an unsolicited LOGO dd267e59a181 sata_fsl: fix warning in remove_proc_entry when rmmod sata_fsl adf098e2a8a1 sata_fsl: fix UAF in sata_fsl_port_stop when rmmod sata_fsl 6fe4eadd54da fget: check that the fd still exists after getting a ref to it 31aa63f69a3c s390/pci: move pseudo-MMIO to prevent MIO overlap c1079ff6f9a0 dma-buf: system_heap: Use 'for_each_sgtable_sg' in pages free flow 075d9c1497f2 iwlwifi: mvm: retry init flow if failed c649d47801df cpufreq: Fix get_cpu_device() failure in add_cpu_dev_symlink() c4618188b15a ipmi: Move remove_work to dedicated workqueue 2a715e15588c rt2x00: do not mark device gone on EPROTO errors during start edbdf9da8015 ALSA: hda/cs8409: Set PMSG_ON earlier inside cs8409 driver 16ccd481e3d8 kprobes: Limit max data_size of the kretprobe instances 75fc0eba15df vrf: Reset IPCB/IP6CB when processing outbound pkts in vrf dev xmit 275827a7dcaf net/tls: Fix authentication failure in CCM mode f06c3b728ae7 ACPI: Add stubs for wakeup handler functions b589021871cf net/smc: Avoid warning of possible recursive locking 859ea5a20ee7 tracing: Don't use out-of-sync va_list in event printing 71e284dcebec perf report: Fix memory leaks around perf_tip() 5b5c6f57a1f8 perf hist: Fix memory leak of a perf_hpp_fmt 27802de133dc perf inject: Fix ARM SPE handling cf49756c3d68 perf sort: Fix the 'p_stage_cyc' sort key behavior 199e20f4fdfa perf sort: Fix the 'ins_lat' sort key behavior 57482dc5ac7d perf sort: Fix the 'weight' sort key behavior 40e35c77448e net: ethernet: dec: tulip: de4x5: fix possible array overflows in type3_infoblock() 12f907cb1157 net: tulip: de4x5: fix the problem that the array 'lp->phy[8]' may be out of bound 634ef8cf4e51 ipv6: check return value of ipv6_skip_exthdr fc7ffa7f10b9 ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in hns_dsaf_ge_srst_by_port() b56c75d4d3c3 ata: libahci: Adjust behavior when StorageD3Enable _DSD is set ab8efdbda76c ata: ahci: Add Green Sardine vendor ID as board_ahci_mobile 75752ada77e0 drm/amd/amdgpu: fix potential memleak 06c6f8f86ec2 drm/amd/amdkfd: Fix kernel panic when reset failed and been triggered again c786a7d5b88b drm/amd/pm: Remove artificial freq level on Navi1x 9774ec30cf7b net: usb: r8152: Add MAC passthrough support for more Lenovo Docks 592195692021 scsi: iscsi: Unblock session then wake up error handler 80050db986a1 thermal: core: Reset previous low and high trip during thermal zone init 7440613439a3 btrfs: check-integrity: fix a warning on write caching disabled disk e26605497f4e btrfs: silence lockdep when reading chunk tree during mount efc562ea9d8a s390/setup: avoid using memblock_enforce_memory_limit b6d5c4e3fce7 platform/x86: thinkpad_acpi: Fix WWAN device disabled issue after S3 deep d17d9e935f72 platform/x86: thinkpad_acpi: Add support for dual fan control 8df09ab9d374 platform/x86: dell-wmi-descriptor: disable by default aca091aadef4 pinctrl: qcom: fix unmet dependencies on GPIOLIB for GPIOLIB_IRQCHIP 00fdcc2b4474 net: return correct error code cec49b6dfdb0 atlantic: Fix OOB read and write in hw_atl_utils_fw_rpc_wait fb92e025baa7 net/smc: Transfer remaining wait queue entries during fallback cc447c1e1482 x86/hyperv: Move required MSRs check to initial platform probing 60af14bf37ec mac80211: fix throughput LED trigger 9d3eb89e6ca3 mac80211: do not access the IV when it was stripped 8e7c364d1c07 drm/sun4i: fix unmet dependency on RESET_CONTROLLER for PHY_SUN6I_MIPI_DPHY 05d27cd9bc70 powerpc/pseries/ddw: Do not try direct mapping with persistent memory and one window b67ff10e43d3 powerpc/pseries/ddw: Revert "Extend upper limit for huge DMA window for persistent memory" f8b76df0055c gfs2: Fix length of holes reported at end-of-file 4b11e583193c gfs2: release iopen glock early in evict 1236351c29c7 ALSA: usb-audio: Don't start stream for capture at prepare 321cd173b8cc ALSA: usb-audio: Switch back to non-latency mode at a later point 2cea047b74da ALSA: usb-audio: Less restriction for low-latency playback mode c7ac29edfb6a ALSA: usb-audio: Fix packet size calculation regression 458871f21e69 ALSA: usb-audio: Avoid killing in-flight URBs during draining ff39117fac65 ALSA: usb-audio: Improved lowlatency playback support 7303160785e5 ALSA: usb-audio: Add spinlock to stop_urbs() 31056232ad3c ALSA: usb-audio: Check available frames for the next packet size 8d7c6f515b15 ALSA: usb-audio: Disable low-latency mode for implicit feedback sync 5ca1fa52d351 ALSA: usb-audio: Disable low-latency playback for free-wheel mode 2d9ea74b3751 ALSA: usb-audio: Rename early_playback_start flag with lowlatency_playback 8f0a376b2eaa ALSA: usb-audio: Restrict rates for the shared clocks (From OE-Core rev: 4be04264e5ddb8eb9bb83b453f8ea8c46add2794) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-21linux-yocto/5.10: update to v5.10.84Bruce Ashfield
Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: a0582e24d371 Linux 5.10.84 e6edaf267793 ipmi: msghandler: Make symbol 'remove_work_wq' static a8d18fb4d11b net/tls: Fix authentication failure in CCM mode dbe73dace94c parisc: Mark cr16 CPU clocksource unstable on all SMP machines 01300d21505d iwlwifi: mvm: retry init flow if failed a5d0a72b805e serial: 8250: Fix RTS modem control while in rs485 mode f9802d7049f5 serial: 8250_pci: rewrite pericom_do_set_divisor() 50b06889c86f serial: 8250_pci: Fix ACCES entries in pci_serial_quirks array e1722acf4f0d serial: core: fix transmit-buffer reset and memleak bda142bbeb31 serial: tegra: Change lower tolerance baud rate limit for tegra20 and tegra30 901f7e0aa4a6 serial: pl011: Add ACPI SBSA UART match id 946ded2287a0 tty: serial: msm_serial: Deactivate RX DMA for polling support 67d08450a08d x86/64/mm: Map all kernel memory into trampoline_pgd b3a519b5a580 x86/tsc: Disable clocksource watchdog for TSC on qualified platorms 1ed4a8fd363c x86/tsc: Add a timer to make sure TSC_adjust is always checked a92f044a9fcb usb: typec: tcpm: Wait in SNK_DEBOUNCED until disconnect 6d8c191bf464 USB: NO_LPM quirk Lenovo Powered USB-C Travel Hub 90c915051c3d xhci: Fix commad ring abort, write all 64 bits to CRCR register. 1235485c633e vgacon: Propagate console boot parameters before calling `vc_resize' 92b9113c6df0 parisc: Fix "make install" on newer debian releases c27a548d3f29 parisc: Fix KBUILD_IMAGE for self-extracting kernel 92f309c838fc x86/entry: Add a fence for kernel entry SWAPGS in paranoid_entry() 4bbbc9c4f313 x86/pv: Switch SWAPGS to ALTERNATIVE 4d42b7bcf09d sched/uclamp: Fix rq->uclamp_max not set on first enqueue 2015ffa3a4c2 x86/xen: Add xenpv_restore_regs_and_return_to_usermode() 8b9279cad291 x86/entry: Use the correct fence macro after swapgs in kernel CR3 c8e341191849 x86/sev: Fix SEV-ES INS/OUTS instructions for word, dword, and qword 64ca109bf875 KVM: VMX: Set failure code in prepare_vmcs02() 60ce9a754060 KVM: x86/pmu: Fix reserved bits for AMD PerfEvtSeln register cfebd5a277ad atlantic: Remove warn trace message. 95f6fae9a0db atlantic: Fix statistics logic for production hardware 695d9c6bc671 Remove Half duplex mode speed capabilities. 0c67e7b98fab atlantic: Add missing DIDs and fix 115c. ca350298bccb atlantic: Fix to display FW bundle version instead of FW mac version. 93a4f3f4fdb5 atlatnic: enable Nbase-t speeds with base-t 44812111a3b1 atlantic: Increase delay for fw transactions 13f290d5aa4a drm/msm: Do hw_init() before capturing GPU state d646856a600e drm/msm/a6xx: Allocate enough space for GMU registers a792b3d56438 net/smc: Keep smc_close_final rc during active close e226180acc49 net/rds: correct socket tunable error in rds_tcp_tune() 77731fede297 net/smc: fix wrong list_del in smc_lgr_cleanup_early 9a40a1e0eb50 ipv4: convert fib_num_tclassid_users to atomic_t fa973bf5fd0f net: annotate data-races on txq->xmit_lock_owner e26dab79e16b dpaa2-eth: destroy workqueue at the end of remove function dde240695d97 net: marvell: mvpp2: Fix the computation of shared CPUs 3260b8d12057 net: usb: lan78xx: lan78xx_phy_init(): use PHY_POLL instead of "0" if no IRQ is available acef1c2b1596 ALSA: intel-dsp-config: add quirk for CML devices based on ES8336 codec 60f0b9c42cb8 rxrpc: Fix rxrpc_local leak in rxrpc_lookup_peer() 35b40f724c4e rxrpc: Fix rxrpc_peer leak in rxrpc_look_up_bundle() 4afb32090a15 ASoC: tegra: Fix kcontrol put callback in AHUB fe4eb5297ac3 ASoC: tegra: Fix kcontrol put callback in DSPK 256aa15aac6d ASoC: tegra: Fix kcontrol put callback in DMIC 1cf1f9a1f3ed ASoC: tegra: Fix kcontrol put callback in I2S 0ee53a1d8889 ASoC: tegra: Fix kcontrol put callback in ADMAIF e6fb4c3fd35b ASoC: tegra: Fix wrong value type in DSPK 0265ef0dff5e ASoC: tegra: Fix wrong value type in DMIC e66e75fb2278 ASoC: tegra: Fix wrong value type in I2S 6b54c0d845e5 ASoC: tegra: Fix wrong value type in ADMAIF 932b338f4e5c mt76: mt7915: fix NULL pointer dereference in mt7915_get_phy_mode a0335cda6d92 selftests: net: Correct case name f1d43efa59f1 net/mlx4_en: Fix an use-after-free bug in mlx4_en_try_alloc_resources() 59d2dc771006 arm64: ftrace: add missing BTIs ef55f0f8af2b siphash: use _unaligned version by default fd52e1f8c093 net: mpls: Fix notifications when deleting a device 15fa12c119f8 net: qlogic: qlcnic: Fix a NULL pointer dereference in qlcnic_83xx_add_rings() c6f340a331fb tcp: fix page frag corruption on page fault aa6c393a3c3f natsemi: xtensa: fix section mismatch warnings 289ee320b5ed i2c: cbus-gpio: set atomic transfer callback 58d5c53f2589 i2c: stm32f7: stop dma transfer in case of NACK c22124491752 i2c: stm32f7: recover the bus on access timeout 8de6ea757c88 i2c: stm32f7: flush TX FIFO upon transfer errors 1c75779dd90c wireguard: ratelimiter: use kvcalloc() instead of kvzalloc() cb2d7c1992cb wireguard: receive: drop handshakes if queue lock is contended 8a29a50dbdb1 wireguard: receive: use ring buffer for incoming handshakes e3be118327a1 wireguard: device: reset peer src endpoint when netns exits f7b6672fab70 wireguard: selftests: rename DEBUG_PI_LIST to DEBUG_PLIST 0584bf51c315 wireguard: selftests: actually test for routing loops 3d1dc3c67773 wireguard: allowedips: add missing __rcu annotation to satisfy sparse 4caf965f6cbe wireguard: selftests: increase default dmesg log size 3d73021f8d74 tracing/histograms: String compares should not care about signed values d4af6d974951 KVM: X86: Use vcpu->arch.walk_mmu for kvm_mmu_invlpg() c71b5f37b5ff KVM: arm64: Avoid setting the upper 32 bits of TCR_EL2 and CPTR_EL2 to 1 5f33887a3682 KVM: x86: Use a stable condition around all VT-d PI paths 7722e8850522 KVM: nVMX: Flush current VPID (L1 vs. L2) for KVM_REQ_TLB_FLUSH_GUEST 6a44f200f1f1 KVM: Disallow user memslot with size that exceeds "unsigned long" 775191dd4c1b drm/amd/display: Allow DSC on supported MST branch devices 209d35ee34e2 ipv6: fix memory leak in fib6_rule_suppress 16c242b09106 sata_fsl: fix warning in remove_proc_entry when rmmod sata_fsl 4a46b2f5dce0 sata_fsl: fix UAF in sata_fsl_port_stop when rmmod sata_fsl 4baba6ba56eb fget: check that the fd still exists after getting a ref to it 80bfed369be9 s390/pci: move pseudo-MMIO to prevent MIO overlap 92283c2728a9 cpufreq: Fix get_cpu_device() failure in add_cpu_dev_symlink() f717f29e8468 ipmi: Move remove_work to dedicated workqueue de4f5eb02cfe rt2x00: do not mark device gone on EPROTO errors during start c200721f8eda kprobes: Limit max data_size of the kretprobe instances 2a74c13dfe83 vrf: Reset IPCB/IP6CB when processing outbound pkts in vrf dev xmit 136cabf15779 ACPI: Add stubs for wakeup handler functions cc443ac5bb31 net/smc: Avoid warning of possible recursive locking ff061b5bda73 perf report: Fix memory leaks around perf_tip() a4c17ebdd624 perf hist: Fix memory leak of a perf_hpp_fmt d9b72274f32a perf inject: Fix ARM SPE handling 2c15d2a6ba27 net: ethernet: dec: tulip: de4x5: fix possible array overflows in type3_infoblock() f059fa40f0fc net: tulip: de4x5: fix the problem that the array 'lp->phy[8]' may be out of bound 4d5968ea06fb ipv6: check return value of ipv6_skip_exthdr 22519eff7df2 ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in hns_dsaf_ge_srst_by_port() 9a32d3c08d8e ata: ahci: Add Green Sardine vendor ID as board_ahci_mobile c746945fb6bc drm/amd/amdgpu: fix potential memleak 74aafe99efb6 drm/amd/amdkfd: Fix kernel panic when reset failed and been triggered again f0c9f49b0caf scsi: iscsi: Unblock session then wake up error handler bc8c423a286a thermal: core: Reset previous low and high trip during thermal zone init 8e4d2ac4348a btrfs: check-integrity: fix a warning on write caching disabled disk 039572290531 s390/setup: avoid using memblock_enforce_memory_limit fd1e70ef65ee platform/x86: thinkpad_acpi: Fix WWAN device disabled issue after S3 deep 226b21ad01ae platform/x86: thinkpad_acpi: Add support for dual fan control 3fc88660ede6 net: return correct error code 2c514d25003a atlantic: Fix OOB read and write in hw_atl_utils_fw_rpc_wait ff6eeb627898 net/smc: Transfer remaining wait queue entries during fallback e1a165599aad mac80211: do not access the IV when it was stripped c386d7aa59f5 drm/sun4i: fix unmet dependency on RESET_CONTROLLER for PHY_SUN6I_MIPI_DPHY 57e36973fadb powerpc/pseries/ddw: Revert "Extend upper limit for huge DMA window for persistent memory" 7b2b7e03e8ea gfs2: Fix length of holes reported at end-of-file 664cceab6f70 gfs2: release iopen glock early in evict bcce010f9230 ovl: fix deadlock in splice write dca4f9a58196 ovl: simplify file splice 7774dd934a65 can: j1939: j1939_tp_cmd_recv(): check the dst address of TP.CM_BAM 60ae63ef194a NFSv42: Fix pagecache invalidation after COPY/CLONE a324ad794566 Linux 5.10.83 45b42cd05391 drm/amdgpu/gfx9: switch to golden tsc registers for renoir+ 98b02755d544 net: stmmac: platform: fix build warning when with !CONFIG_PM_SLEEP a15261d2a121 shm: extend forced shm destroy to support objects from several IPC nses aa20e966d8a1 s390/mm: validate VMA in PGSTE manipulation functions a94e4a7b77ed tty: hvc: replace BUG_ON() with negative return value 1c5f722a8fdf xen/netfront: don't trust the backend response data blindly 334b0f278761 xen/netfront: disentangle tx_skb_freelist e17ee047eea7 xen/netfront: don't read data from request on the ring page f5e493709800 xen/netfront: read response from backend only once 1ffb20f0527d xen/blkfront: don't trust the backend response data blindly 8e147855fcf2 xen/blkfront: don't take local copy of a request from the ring page 273f04d5d135 xen/blkfront: read response from backend only once b98284aa3fc5 xen: sync include/xen/interface/io/ring.h with Xen's newest version 406f2d5fe368 tracing: Check pid filtering when creating events 4fd0ad08ee33 vhost/vsock: fix incorrect used length reported to the guest fbc0514e1a34 iommu/amd: Clarify AMD IOMMUv2 initialization messages 5655b8bccb8a smb3: do not error on fsync when readonly c380062d0850 ceph: properly handle statfs on multifs setups 22423c966e02 f2fs: set SBI_NEED_FSCK flag when inconsistent node block found e6ee7abd6bfe sched/scs: Reset task stack state in bringup_cpu() 71e38a0c7cf8 tcp: correctly handle increased zerocopy args struct size 72f2117e450b net: mscc: ocelot: correctly report the timestamping RX filters in ethtool 73115a2b38dd net: mscc: ocelot: don't downgrade timestamping RX filters in SIOCSHWTSTAMP 62343dadbb96 net: hns3: fix VF RSS failed problem after PF enable multi-TCs 215167df4512 net/smc: Don't call clcsock shutdown twice when smc shutdown 6e800ee43218 net: vlan: fix underflow for the real_dev refcnt ae2659d2c670 net/sched: sch_ets: don't peek at classes beyond 'nbands' e3509feb46fa tls: fix replacing proto_ops 22156242b104 tls: splice_read: fix record type check 3b6c71c097da MIPS: use 3-level pgtable for 64KB page size on MIPS_VA_BITS_48 a6a5d853f1e6 MIPS: loongson64: fix FTLB configuration 5e823dbee23c igb: fix netpoll exit with traffic f2a58ff3e3ad nvmet: use IOCB_NOWAIT only if the filesystem supports it 12ceb52f2cc4 net/smc: Fix loop in smc_listen c94cbd262b6a net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk() 3d4937c6a328 net: phylink: Force retrigger in case of latched link-fail indicator 50162ff3c80f net: phylink: Force link down and retrigger resolve on interface change 95ba8f0d57ce lan743x: fix deadlock in lan743x_phy_link_status_change() c5e4316d9c02 tcp_cubic: fix spurious Hystart ACK train detections for not-cwnd-limited flows 318762309609 drm/amd/display: Set plane update flags for all planes in reset f634c755a0ee PM: hibernate: use correct mode for swsusp_close() 440bd9faad29 net/ncsi : Add payload to be 32-bit aligned to fix dropped packets ac88cb3c44b6 nvmet-tcp: fix incomplete data digest send 8889ff80fde3 net: marvell: mvpp2: increase MTU limit when XDP enabled 90d0736876c5 mlxsw: spectrum: Protect driver from buggy firmware 33d89128a960 mlxsw: Verify the accessed index doesn't exceed the array length 29e1b5734795 net/smc: Ensure the active closing peer first closes clcsock 77d9c2efa870 erofs: fix deadlock when shrink erofs slab 9f540c7ffb1e scsi: scsi_debug: Zero clear zones at reset write pointer 725ba1289508 scsi: core: sysfs: Fix setting device state to SDEV_RUNNING e65a8707b4cd ice: avoid bpf_prog refcount underflow 1eb5395add78 ice: fix vsi->txq_map sizing 26ed13d06422 net: nexthop: release IPv6 per-cpu dsts when replacing a nexthop group 3c40584595f8 net: ipv6: add fib6_nh_release_dsts stub dc2f7e9d8d20 net: stmmac: retain PTP clock time during SIOCSHWTSTAMP ioctls 79068e6b1cfb net: stmmac: fix system hang caused by eee_ctrl_timer during suspend/resume cc301ad31207 nfp: checking parameter process for rx-usecs/tx-usecs is invalid 9b44cb67d387 ipv6: fix typos in __ip6_finish_output() 6d9e8dabd46f firmware: smccc: Fix check for ARCH_SOC_ID not implemented bbd1683e795c mptcp: fix delack timer 061542815af1 ALSA: intel-dsp-config: add quirk for JSL devices based on ES8336 codec f5af2def7e05 iavf: Prevent changing static ITR values if adaptive moderation is on 5dca8eff4627 net: marvell: prestera: fix double free issue on err path b33c5c828144 drm/vc4: fix error code in vc4_create_object() 2bf9c5a5039c scsi: mpt3sas: Fix kernel panic during drive powercycle test 29ecb4c0f0d7 drm/nouveau/acr: fix a couple NULL vs IS_ERR() checks 0effb7f51b65 ARM: socfpga: Fix crash with CONFIG_FORTIRY_SOURCE 86c5adc78083 NFSv42: Don't fail clone() unless the OP_CLONE operation failed c9ba7864d3a2 firmware: arm_scmi: pm: Propagate return value to caller 8730a679c3cb net: ieee802154: handle iftypes as u32 2925aadd1f32 ASoC: codecs: wcd934x: return error code correctly from hw_params 3a25def06de8 ASoC: topology: Add missing rwsem around snd_ctl_remove() calls 4a4f900e0415 ASoC: qdsp6: q6asm: fix q6asm_dai_prepare error handling 9196a6858150 ASoC: qdsp6: q6routing: Conditionally reset FrontEnd Mixer 2be17eca48ae ARM: dts: bcm2711: Fix PCIe interrupts 9db1d4a3c270 ARM: dts: BCM5301X: Add interrupt properties to GPIO node b2cd6fdcbe0a ARM: dts: BCM5301X: Fix I2C controller interrupt b7ef25e8c271 netfilter: flowtable: fix IPv6 tunnel addr match d689176e0e18 netfilter: ipvs: Fix reuse connection if RS weight is 0 994065f6efdc netfilter: ctnetlink: do not erase error code with EINVAL a3d829e5f375 netfilter: ctnetlink: fix filtering with CTA_TUPLE_REPLY a8a917058faf proc/vmcore: fix clearing user buffer by properly using clear_user() 1f520a0d78fc PCI: aardvark: Fix link training aec0751f61f5 PCI: aardvark: Simplify initialization of rootcap on virtual bridge df5748098878 PCI: aardvark: Implement re-issuing config requests on CRS response e7f2e2c758ea PCI: aardvark: Update comment about disabling link training 2b7bc1c4b2c8 PCI: aardvark: Deduplicate code in advk_pcie_rd_conf() dfe906da9a1a powerpc/32: Fix hardlockup on vmap stack overflow bf00edd9e6c9 mdio: aspeed: Fix "Link is Down" issue 14c3ce30ddbd mmc: sdhci: Fix ADMA for PAGE_SIZE >= 64KiB 63195705b334 mmc: sdhci-esdhc-imx: disable CMDQ support 092a58f0d9ef tracing: Fix pid filtering when triggers are attached 68fa6bf7f179 tracing/uprobe: Fix uprobe_perf_open probes iteration b777c866aafc KVM: PPC: Book3S HV: Prevent POWER7/8 TLB flush flushing SLB bfed9c2f2f2e xen: detect uninitialized xenbus in xenbus_init e1d492c27519 xen: don't continue xenstore initialization in case of errors 8f4d0719f323 fuse: release pipe buf after last use 8d0163cec7de staging: rtl8192e: Fix use after free in _rtl92e_pci_disconnect() 0bfed81b2ccd staging: greybus: Add missing rwsem around snd_ctl_remove() calls 146283f16b7e staging/fbtft: Fix backlight 8fc5e3c7cacc HID: wacom: Use "Confidence" flag to prevent reporting invalid contacts 6ca32e2e776e Revert "parisc: Fix backtrace to always include init funtion names" 3a4aeb37a7a6 media: cec: copy sequence field for the reply 3798218a1af4 ALSA: hda/realtek: Fix LED on HP ProBook 435 G7 60274e248e3d ALSA: hda/realtek: Add quirk for ASRock NUC Box 1100 172167bc8dac ALSA: ctxfi: Fix out-of-range access 4402cf040252 binder: fix test regression due to sender_euid change aea184ae6408 usb: hub: Fix locking issues with address0_mutex 5bf3a0c7789e usb: hub: Fix usb enumeration issue due to address0 race 00f1038c72f8 usb: typec: fusb302: Fix masking of comparator and bc_lvl interrupts 56fbab4937e0 usb: chipidea: ci_hdrc_imx: fix potential error pointer dereference in probe b70ff391deee net: nexthop: fix null pointer dereference when IPv6 is not enabled 0755f3f32277 usb: dwc3: gadget: Fix null pointer exception 140e2df472ba usb: dwc3: gadget: Check for L1/L2/U3 for Start Transfer 3abf746e800b usb: dwc3: gadget: Ignore NoStream after End Transfer 2b7ab82f5173 usb: dwc2: hcd_queue: Fix use of floating point literal 4b18ccad9671 usb: dwc2: gadget: Fix ISOC flow for elapsed frames 16f1cac8f702 USB: serial: option: add Fibocom FM101-GL variants ff721286369e USB: serial: option: add Telit LE910S1 0x9200 composition 854c14b2a15c ACPI: Get acpi_device's parent from the parent field 33fe044f6a9e bpf: Fix toctou on read-only map's constant scalar tracking (From OE-Core rev: e8adc08ef64a894a638ed07454bcbe5ead881149) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-20oeqa/selftest/bbtests: Use YP sources mirror instead of GNURichard Purdie
The gnu sources server has been known to disappear. Use the YP sources mirror instead. If that breaks, the autobuilder is broken anyway. This should reduce test failures from upstream network issues. (From OE-Core rev: a5459e42f1a6be9c08f303653cc1f73514eca9ef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-20lttng-tools: Upgrade 2.13.1 -> 2.13.2Richard Purdie
Drop backported patches. (From OE-Core rev: 313279ffa9054718696ded085d3b88e2ab2972ea) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-20qemu: Upgrade 6.1.0 -> 6.2.0Richard Purdie
Add config option for pulseaudio Change audio to default mode since quoting of list of devices is broken in meson Drop patch where code changed completed upstream Refresh other patches (From OE-Core rev: c1685b06e5f3684b1b5631b99b412e3ec2b10800) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-20tzdata: Clean upPeter Kjellerstedt
* Whitespace and indentation clean up. * Change shell variables from "${foo}" to "$foo". * Remove "/*" from directories specified in FILES. * Move RCONFLICTS:${PN} to the end of the recipe. (From OE-Core rev: a698cc12ac2d5b26b2415e3d14739d3f51b89dd1) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-12-20tzdata: Remove unnecessary RPROVIDESPeter Kjellerstedt
The name of the package is provided automatically. (From OE-Core rev: 1416070079960e7ad82183d8cd1b8da5748e6646) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>