summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel
Commit message (Collapse)AuthorAgeFilesLines
* perf: sort-pmuevents: allow for additional type qualifiers and storage classMax Krummenacher2021-11-261-14/+16
| | | | | | | | | | | | | | | | With kernel 5.16 some structs in pmu-events do get a const qualifier, some a static const storage class and qualifier. The current sort-pmuevents cannot cope with that and drops all struct arrays with such additional elements. This then leads to compiler errors. Allow '^struct', '^const struct', '^static struct', '^static const struct'. (From OE-Core rev: 8406e83ade1c34d8a7d8063f2e7445aafa471721) Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* perf: sort-pmuevents: don't drop elementsMax Krummenacher2021-11-261-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a struct element neither has an element cpuid or name it gets silenty dropped. Kernel 5.15 for some ARCHs have at least one array of structs matching this. e.g. for arm pmu-events.c: |#include "pmu-events/pmu-events.h" struct pmu_events_map pmu_events_map[] = { { .cpuid = 0, .version = 0, .type = 0, .table = 0, }, }; struct pmu_sys_events pmu_sys_event_tables[] = { { .table = 0 }, }; Before this patch the second struct is translated to an empty array:: struct pmu_sys_events pmu_sys_event_tables[] = { }; (From OE-Core rev: e1382583cd5060be301afaa9998ccf250cc8bca3) Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto-dev: introduce dt-validation PACKAGECONFIGBruce Ashfield2021-11-261-2/+10
| | | | | | | | | | | | | | | | | | | | Add a PACKAGECONFIG to control which type of dt-validation is installed (full, or wrapped). This is currently in linux-yocto-dev, as 5.16 introduces the functionality of required dt schema validation. Other v5.16 providing recipes can use the base functionality as they desire (with or without PACKAGECONFIG). Over time, we can migrate the support the the core kernel classes .. in particular when more providers are at v5.16+ (From OE-Core rev: c12a91827e88230b4ec702a88534d4c51c1aabe3) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel: introduce python3-dtschema-wrapperBruce Ashfield2021-11-264-0/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The 5.16 kernel introduced mandatory schema checking on any dtb file built through the kernel. That funcionality is provided via python3-dt-schema. The dependencies to enable that functionality is not small, and may not always be desired (in particular on architectures that do not support dtbs, or in development cycles). It may also be useful for allowing a non-conformant dts to be compiled. This commit introduces a set of wrapper scripts that when added as a depenency to the kernel, can pass both the validation testing and validation steps of a dts. We use the wrapper by default, while more dts file are brought up to spec and the dt-validation matures upstream. To enable valiation, simply add 'dt-valiation' to the PACKAGECONFIG variable and the full dt-schema package will be selected and validation will occur. (From OE-Core rev: a8525391f8a519426c92f0e28895f426bfcb3f84) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: export pkgconfig variables to devshellBruce Ashfield2021-11-261-0/+9
| | | | | | | | | | | Not all of the kernel host/build Makefiles allow pkg-config to be overriden to pkg-config-native. Exporting these variables allow us to debug host tool issues with the kernel build. (From OE-Core rev: ea71e50be2de5b7fc81f466ea5cd48c2f1e0ef6b) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto-dev: bump to v5.16+Bruce Ashfield2021-11-261-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumping the version of -dev ot 5.16. We also pickup two new dependencies to support kernel dtschema validation. This requirement was introduced by kernel commit: commit 53182e81f47d4ea0c727c49ad23cb782173ab849 Author: Rob Herring <robh@kernel.org> Date: Mon Sep 13 09:51:46 2021 -0500 kbuild: Enable DT schema checks for %.dtb targets It is possible to build a single dtb, but not with DT schema validation enabled. Enable the schema validation to run for %.dtb and %.dtbo targets. Anyone building a dtb for a specific platform *should* pay attention to schema warnings. This could be supported with a separate %.dt.yaml target instead. However, the .dt.yaml format is considered an intermediate format and could possibly go away at some point if schema checking is integrated into dtc. Also, the plan is to enable the schema checks by default once platforms are free of warnings, and this is a move in that direction. Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Cc: Tom Rini <trini@konsulko.com> Cc: Masahiro Yamada <masahiroy@kernel.org> Cc: linux-kbuild@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org> Acked-by: Masahiro Yamada <masahiroy@kernel.org> Link: https://lore.kernel.org/r/20210913145146.766080-1-robh@kernel.org (From OE-Core rev: 37fb1592eb8bcc4a8bbfc3f4b1dc6373733827f0) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel-yocto: conditionally enable stack protection checking on x86-64Bruce Ashfield2021-11-241-0/+4
| | | | | | | | | | | | | | | | | | | | | | | The kernel Makfile uses pkgconfig to check for libelf when enabling CONFIG_STACK_VALIDATION. We already have libelf in our DEPENDS, but the kernel Makefiles hardcode 'pkgconfig', so fail to pick up our pkgconfig-native binary that would report the correct flags and paths for libelf support. Rather than patching the kernel Makefile's to use pkgconfig-native, we can use the KERNEL_EXTRA_ARGS variable to pass the definition of HOST_LIBELF_LIBS via the kernel build commmand line. We conditionally set HOST_LIBELF_LIBS based on "stack" being in a newly introduced variable KERNEL_DEBUG_OPTIONS. The value of HOST_LIBELF_LIBS is the same as pkgconfig-native would set in a kernel build (but we cannot call pkgconfig at the point this variable is set). (From OE-Core rev: 0ad2b69dace6ac851c1f0bdae6a3c41045fc2d1d) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.10: update to v5.10.79Bruce Ashfield2021-11-243-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: bd816c278316 Linux 5.10.79 62424fe4c2cf rsi: fix control-message timeout 8971158af1e0 media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init 1cf43e928954 staging: rtl8192u: fix control-message timeouts 9963ba5b9d49 staging: r8712u: fix control-message timeout 844b02496eac comedi: vmk80xx: fix bulk and interrupt message timeouts b7fd7f3387f0 comedi: vmk80xx: fix bulk-buffer overflow 33d7a470730d comedi: vmk80xx: fix transfer-buffer overflows ef143dc0c3de comedi: ni_usb6501: fix NULL-deref in command paths 786f5b034504 comedi: dt9812: fix DMA buffers on stack 86d4aedcbc69 isofs: Fix out of bound access for corrupted isofs image c430094541a8 staging: rtl8712: fix use-after-free in rtl8712_dl_fw ab4af56ae250 printk/console: Allow to disable console output by using console="" or console=null 07d1db141e47 binder: don't detect sender/target during buffer cleanup 42681b90c4db usb-storage: Add compatibility quirk flags for iODD 2531/2541 1309753b7841 usb: musb: Balance list entry in musb_gadget_queue 27409143122f usb: gadget: Mark USB_FSL_QE broken on 64-bit 94e5305a3816 usb: ehci: handshake CMD_RUN instead of STS_HALT a8db6fd04d58 Revert "x86/kvm: fix vcpu-id indexed array sizes" ecf58653f1e4 KVM: x86: avoid warning with -Wbitwise-instead-of-logical (From OE-Core rev: 3356c5e7acc86be2e1584819a70e984d984b0d9c) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.14: update to v5.14.18Bruce Ashfield2021-11-243-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.14 to the latest korg -stable release that comprises the following commits: a0265dd8262d Linux 5.14.18 1379769b0b46 rsi: fix control-message timeout eda57a310234 media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init 5013f2aaf959 staging: rtl8192u: fix control-message timeouts f3422d1fceba staging: r8712u: fix control-message timeout 373ac8c59414 comedi: vmk80xx: fix bulk and interrupt message timeouts 7b0e35618932 comedi: vmk80xx: fix bulk-buffer overflow 278484ae9329 comedi: vmk80xx: fix transfer-buffer overflows 4a9d43cb5d5f comedi: ni_usb6501: fix NULL-deref in command paths 3ac273d154d6 comedi: dt9812: fix DMA buffers on stack b2fa1f52d22c isofs: Fix out of bound access for corrupted isofs image befd23bd3b17 staging: rtl8712: fix use-after-free in rtl8712_dl_fw bec32c40e438 binder: don't detect sender/target during buffer cleanup 68abe9aefc40 binder: use cred instead of task for getsecid 46088365bab7 binder: use cred instead of task for selinux checks fbb106e79524 binder: use euid from cred instead of using task f9b4ef2504bb Revert "proc/wchan: use printk format instead of lookup_symbol_name()" 4674de4e2734 usb-storage: Add compatibility quirk flags for iODD 2531/2541 6be11f54f5d4 usb: musb: Balance list entry in musb_gadget_queue d7f4ffba71d0 usb: gadget: Mark USB_FSL_QE broken on 64-bit d3c7daab289d usb: ehci: handshake CMD_RUN instead of STS_HALT a4cdb4c9c453 Revert "x86/kvm: fix vcpu-id indexed array sizes" 2f63111ab86f KVM: x86: avoid warning with -Wbitwise-instead-of-logical f468cbedb2a7 ALSA: pci: cs46xx: Fix set up buffer type properly 186155ac272e ALSA: pcm: Check mmap capability of runtime dma buffer at first (From OE-Core rev: 7f09947f9fc12f7b548f18573ffbc452837527bd) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.15: update to v5.15.2Bruce Ashfield2021-11-243-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.15 to the latest korg -stable release that comprises the following commits: 7cc36c3e14ae Linux 5.15.2 5dbe126056fb rsi: fix control-message timeout 7d6f8d3bab72 media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init 4787caef521c staging: r8188eu: fix memleak in rtw_wx_set_enc_ext 8f60f9f6ee24 staging: rtl8192u: fix control-message timeouts 9033490a3fef staging: r8712u: fix control-message timeout 3a66e8a661a4 comedi: vmk80xx: fix bulk and interrupt message timeouts 47b4636ebdbe comedi: vmk80xx: fix bulk-buffer overflow 06ac746d57e6 comedi: vmk80xx: fix transfer-buffer overflows d6a727a681a3 comedi: ni_usb6501: fix NULL-deref in command paths 20cebb8b620d comedi: dt9812: fix DMA buffers on stack e7fb722586a2 isofs: Fix out of bound access for corrupted isofs image a65c9afe9f2f staging: rtl8712: fix use-after-free in rtl8712_dl_fw a0041453ff9e btrfs: fix lzo_decompress_bio() kmap leakage d5dd3b44488b kfence: default to dynamic branch instead of static keys mode 93ce7441001f kfence: always use static branches to guard kfence_alloc() 5e57d171e2e6 binder: don't detect sender/target during buffer cleanup 6e8813eadf8b binder: use cred instead of task for getsecid 3f3c31dd0f8c binder: use cred instead of task for selinux checks ff1bd01f490b binder: use euid from cred instead of using task ec7c20d41714 Revert "proc/wchan: use printk format instead of lookup_symbol_name()" 2e93afda0520 usb-storage: Add compatibility quirk flags for iODD 2531/2541 ad5df979295b usb: musb: Balance list entry in musb_gadget_queue 72a9bf9bb16a usb: gadget: Mark USB_FSL_QE broken on 64-bit adb1902a1246 usb: ehci: handshake CMD_RUN instead of STS_HALT aa8a82d6db0b Revert "x86/kvm: fix vcpu-id indexed array sizes" 26ac7dec7ff0 KVM: x86: avoid warning with -Wbitwise-instead-of-logical (From OE-Core rev: 0fe8d5a28d1161c152bf64cd67053b8f51fc7073) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* systemtap: upgrade 4.5 -> 4.6wangmy2021-11-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | support for 64-bit RISC-V architecture, liveness analysis for guru-mode write operations, bpf syscall_any and abort() tapsets, bpf foreach iteration of multi-key arrays, return of inter-cpu output ordering Changelog is as follows: = SystemTap frontend (stap) changes - stap-prep now tries to download the main kernel debuginfo file from a debuginfod server, if configured. = SystemTap backend changes - SystemTap has added support for the 64-bit RISC-V architecture. - SystemTap now uses DynInst to perform a liveness analysis on target variables and warn when a guru-mode modification to a variable will have no effect. The liveness analysis is currently done on x86_64, PowerPC, and AArch64. - The kernel-user relayfs transport again sorts messages into a total time order across CPUs. High output-volume scripts may need a larger "-s BUF" parameter to reliably transfer. "-b" bulk mode is also available again as an alternative. - The bpf backend now supports foreach iteration in multi-key associative arrays. = SystemTap tapset changes - Updated syscall_any tapset mapping to include newer syscalls. - syscall_any tapset can be used by the bpf backend. - abort() tapset can be used by the bpf backend. = Known issues with this release - There are known issues on kernel 5.10+ after adapting to set_fs() removal, with some memory accesses that previously returned valid data instead returning -EFAULT (see PR26811). - An sdt probe cannot parse a parameter that uses a segment register. (PR13429) - The presence of a line such as *CFLAGS += $(call cc-option, -fno-var-tracking-assignments) in older linux kernel Makefile unnecessarily reduces debuginfo quality, consider removing that line if you build kernels. Linux 5.10+ fixes this. = Bugs fixed for this release <https://sourceware.org/PR#####> 6562 $SYSTEMTAP_DEBUGINFO_PATH does not work 15724 stapdyn looking for libdyninstAPI_RT.a 26839 Systemtap build failures with clang 27820 abort() tapset not implemented in the bpf mode 27829 support for floating point values passed through sdt.h markers 27864 loc2stap.cxx assertion failure on loc_unavailable type location, rawhide 27881 failed to extend vma mapped entry when the address is adjacent 27903 handle f33 glibc $$parms 27932 List Python as a prerequisite in README 27933 Use of unitialized functioncall synthetic field in 27934 failure to attach statement 27940 The /* pc=0x... */ is no longer printed by "stap -v -L 'kernel.function("*")' 27942 testsuite/systemtap.base/perf.sh drop bashism 27984 stap skipping partially-inlined instance, but it is not inline function actually 28070 extend vma end address to the different module 28079 adapt to kernel 5.14 task_struct.__state change 28084 autoconf-x86-uniregs.c compile failled with -Werror cause STAPCONF_X86_UNIREGS missing 28140 kernel panic on tracepoint activation in stap module 28184 task_fd_lookup failed on linux 5.11 28244 linux objtool imposes symbol length limits on generated function names 28384 finish nfs_proc tapset port 4.3 string server_ip 28443 Provide syscall_any tapset for bpf 28449 loss of cross-cpu output ordering 28544 procfs_bpf.exp regression due to string handling error 28557 module kprobe insertion on modern kernels (From OE-Core rev: 99ed4a3d78f8224d414bd49d887333a4509529f3) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* patches: correct whitespace/spelling for Upstream-Status tagsAlexander Kanavin2021-11-212-2/+2
| | | | | | | (From OE-Core rev: c613ca14c35a5d1782c79a25b83875cbfa2b952b) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dtc: fix mingw buildRoss Burton2021-11-132-1/+42
| | | | | | | | | | Backport a patch to fix the build of fdtdump with mingw, which so the tools now build successfully with mingw. (From OE-Core rev: 1bbbd69d9f1600f53737f2c459a08eae0d74a42c) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dtc: add PACKAGECONFIGs for tools and yamlRoss Burton2021-11-131-3/+5
| | | | | | | | | Leave yaml off by default. (From OE-Core rev: f70f9a7f44676f722e2541e1ef1f064c942fffcb) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dtc: use Meson to buildRoss Burton2021-11-133-73/+4
| | | | | | | (From OE-Core rev: f8f25c424079074b9ed4a7801122c2f59f22aacf) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dtc: merge .bb/.incRoss Burton2021-11-132-30/+26
| | | | | | | | | No reason for these to be split, so merge them. (From OE-Core rev: ebfe71da5b27c4f7839837c79fb04acf84cd16e4) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kexec-tools: update 2.0.22 -> 2.0.23Alexander Kanavin2021-11-112-25/+1
| | | | | | | | | Drop patch as problem fixed upstream. (From OE-Core rev: ed0984fe7888e971008d4bb6be0fe62de7aeacdc) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.10: update to v5.10.78Bruce Ashfield2021-11-103-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 5040520482a5 Linux 5.10.78 4c7c0243275b ALSA: usb-audio: Add Audient iD14 to mixer map quirk table f3eb44f496ef ALSA: usb-audio: Add Schiit Hel device to mixer map quirk table 68765fc97762 Revert "wcn36xx: Disable bmps when encryption is disabled" f84b791d4c3b ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" bbc920fb320f Revert "drm/ttm: fix memleak in ttm_transfered_destroy" 6d67b2a73b8e mm: khugepaged: skip huge page collapse for special files 5a7957491e31 Revert "usb: core: hcd: Add support for deferring roothub registration" 50f46bd30949 Revert "xhci: Set HCD flag to defer primary roothub registration" d7fc85f61042 media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() b93a70bf2b57 net: ethernet: microchip: lan743x: Fix skb allocation failure b9c85a71e1b4 vrf: Revert "Reset skb conntrack connection..." 0382fdf9ae78 sfc: Fix reading non-legacy supported link modes 748786564a35 Revert "io_uring: reinforce cancel on flush during exit" 7b57c38d12ae scsi: core: Put LLD module refcnt after SCSI device is released (From OE-Core rev: 7a7d1eed8e3d550ac9bfa301b26095100eeba111) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.15: update to v5.15.1Bruce Ashfield2021-11-103-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.15 to the latest korg -stable release that comprises the following commits: b6abb62daa55 Linux 5.15.1 569fd073a954 ALSA: usb-audio: Add quirk for Audient iD14 fd5f954b690c Revert "drm/i915/gt: Propagate change in error status to children on unhold" 8af3a335b553 drm/amd/display: Revert "Directly retrain link from debugfs" 6ecad8906f05 drm/amdgpu: revert "Add autodump debugfs node for gpu reset v8" a273384cf1af Revert "wcn36xx: Disable bmps when encryption is disabled" 57f31b313231 ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" 110d5f4421ed Revert "soc: imx: gpcv2: move reset assert after requesting domain power up" f17dca0ab3f3 drm/amdkfd: fix boot failure when iommu is disabled in Picasso. f5e3b7f0f0b7 Revert "usb: core: hcd: Add support for deferring roothub registration" 421f91bf0451 Revert "xhci: Set HCD flag to defer primary roothub registration" cb667140875a media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() abc558fd0f89 sfc: Fix reading non-legacy supported link modes (From OE-Core rev: 6a5ab16bbbf92ce99fbbd3ac7cb1d2e4e1690feb) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.14: update to v5.14.17Bruce Ashfield2021-11-103-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.14 to the latest korg -stable release that comprises the following commits: 3dfa869cb79d Linux 5.14.17 b1dbd891bfe5 ALSA: usb-audio: Add Audient iD14 to mixer map quirk table 570b5004f827 ALSA: usb-audio: Add Schiit Hel device to mixer map quirk table db6d7c4acca3 Revert "drm/i915/gt: Propagate change in error status to children on unhold" aac2f6861683 drm/amd/display: Revert "Directly retrain link from debugfs" 77d029e1e218 drm/amdgpu: revert "Add autodump debugfs node for gpu reset v8" 9f9e09a59c58 Revert "wcn36xx: Disable bmps when encryption is disabled" b9722a7369f8 ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" e556fca311ce Revert "soc: imx: gpcv2: move reset assert after requesting domain power up" d6a60e6ada49 drm/i915: Remove memory frequency calculation 7883e13c2494 drm/amdkfd: fix boot failure when iommu is disabled in Picasso. a82fa1213d12 Revert "usb: core: hcd: Add support for deferring roothub registration" 0979b923ff3f Revert "xhci: Set HCD flag to defer primary roothub registration" 02a476ca886d media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() ec0c91e2ebb8 vrf: Revert "Reset skb conntrack connection..." 6467b75cf9d1 sfc: Fix reading non-legacy supported link modes f30822c0b4c3 scsi: core: Put LLD module refcnt after SCSI device is released (From OE-Core rev: a9ac5a388d682bcf0aad59d1b8ae8334846dfcd9) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.10: update to v5.10.77Bruce Ashfield2021-11-103-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 09df347cfd18 Linux 5.10.77 fbb91dadb512 perf script: Check session->header.env.arch before using it 6f416815c505 riscv: Fix asan-stack clang build 7a4cf25d8329 riscv: fix misalgned trap vector base address acb8832f6a1c scsi: ufs: ufs-exynos: Correct timeout value setting registers 8ecddaca7942 KVM: s390: preserve deliverable_mask in __airqs_kick_single_vcpu e11a7355fb98 KVM: s390: clear kicked_mask before sleeping again 727e5deca802 lan743x: fix endianness when accessing descriptors a7112b8eeb14 sctp: add vtag check in sctp_sf_ootb c2442f721972 sctp: add vtag check in sctp_sf_do_8_5_1_E_sa 14c1e02b11c2 sctp: add vtag check in sctp_sf_violation dad2486414b5 sctp: fix the processing for COOKIE_ECHO chunk 8c50693d25e4 sctp: fix the processing for INIT_ACK chunk ad111d4435d8 sctp: use init_tag from inithdr for ABORT chunk 4509000a2515 phy: phy_ethtool_ksettings_set: Lock the PHY while changing settings 5b88bb9377ee phy: phy_start_aneg: Add an unlocked version 81780b624d1c phy: phy_ethtool_ksettings_set: Move after phy_start_aneg 258c5fea44cf phy: phy_ethtool_ksettings_get: Lock the phy for consistency 58722323d4bc net/tls: Fix flipped sign in async_wait.err assignment 44e8c93e1e49 net: nxp: lpc_eth.c: avoid hang when bringing interface down c2af2092c9bb net: ethernet: microchip: lan743x: Fix dma allocation failure by using dma_set_mask_and_coherent bfa6fbdb4e39 net: ethernet: microchip: lan743x: Fix driver crash when lan743x_pm_resume fails e81bed557fe7 mlxsw: pci: Recycle received packet upon allocation failure be98be1a17e9 nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST aead02927af3 gpio: xgs-iproc: fix parsing of ngpios property 863a423ee07b RDMA/sa_query: Use strscpy_pad instead of memcpy to copy a string 2b7c5eed19d3 net: Prevent infinite while loop in skb_tx_hash() 04121b10cdf0 cfg80211: correct bridge/4addr mode check aed897e96b19 net-sysfs: initialize uid and gid before calling net_ns_get_ownership b0a2cd38553c net: batman-adv: fix error handling 36e911a16b37 regmap: Fix possible double-free in regcache_rbtree_exit() e51371bd687e reset: brcmstb-rescal: fix incorrect polarity of status bit 2cf7d935d6ba arm64: dts: allwinner: h5: NanoPI Neo 2: Fix ethernet node 10e40fb2f508 RDMA/mlx5: Set user priority for DCT 24fd8e2f027d octeontx2-af: Display all enabled PF VF rsrc_alloc entries. c63d7f2ca99a nvme-tcp: fix possible req->offset corruption 32f3db20f126 nvme-tcp: fix data digest pointer calculation 4286c72c5321 nvmet-tcp: fix data digest pointer calculation d98883f6c33e IB/hfi1: Fix abba locking issue with sc_disable() c3e17e58f571 IB/qib: Protect from buffer overflow in struct qib_user_sdma_pkt fields ee4908f909b3 bpf: Fix error usage of map_fd and fdget() in generic_map_update_batch() dd2260ec643d bpf: Fix potential race in tail call compatibility check 15dec6d8f864 tcp_bpf: Fix one concurrency problem in the tcp_bpf_send_verdict function cac6b043cea3 riscv, bpf: Fix potential NULL dereference 01599bf7cc2b cgroup: Fix memory leak caused by missing cgroup_bpf_offline eb3b6805e3e9 drm/amdgpu: fix out of bounds write c21b4002214c drm/ttm: fix memleak in ttm_transfered_destroy 69a7fa5cb0de mm, thp: bail out early in collapse_file for writeback page 8fb858b74ac5 net: lan78xx: fix division by zero in send path 4c22227e39c7 cfg80211: fix management registrations locking fa29cec42c2d cfg80211: scan: fix RCU in cfg80211_add_nontrans_list() db1191a529e4 nvme-tcp: fix H2CData PDU send accounting (again) 5043fbd294f5 ocfs2: fix race between searching chunks and release journal_head from buffer_head 01169a43353d mmc: sdhci-esdhc-imx: clear the buffer_read_ready to reset standard tuning circuit ee3213b117ce mmc: sdhci: Map more voltage level to SDHCI_POWER_330 a95a76fc01a0 mmc: dw_mmc: exynos: fix the finding clock sample value 12a46f72f499 mmc: mediatek: Move cqhci init behind ungate clock 44c2bc2a6bbe mmc: cqhci: clear HALT state after CQE enable efe934629fff mmc: vub300: fix control-message timeouts f3dec7e7ace3 net/tls: Fix flipped sign in tls_err_abort() calls c828115a14ea Revert "net: mdiobus: Fix memory leak in __mdiobus_register" 11c0406b4c33 nfc: port100: fix using -ERRNO as command type mask 0b1b3e086b0a tipc: fix size validations for the MSG_CRYPTO type 5aa5bab57957 ata: sata_mv: Fix the error handling of mv_chip_id() 9a52798dce73 pinctrl: amd: disable and mask interrupts on probe 01c2881bb0e0 Revert "pinctrl: bcm: ns: support updated DT binding as syscon subnode" 017718dfbb6f usbnet: fix error return code in usbnet_probe() 693ecbe8f799 usbnet: sanity check for maxpacket b663890d8544 ext4: fix possible UAF when remounting r/o a mmp-protected file system d4d9c065988c arm64: Avoid premature usercopy failure e184a21b5ccc powerpc/bpf: Fix BPF_MOD when imm == 1 3f2c12ec8a3f io_uring: don't take uring_lock during iowq cancel 5a768b4d3e1a ARM: 9141/1: only warn about XIP address when not compile testing 15b278f94bbb ARM: 9139/1: kprobes: fix arch_init_kprobes() prototype c06d7d9bfcf6 ARM: 9138/1: fix link warning with XIP + frame-pointer 8a6af97c31be ARM: 9134/1: remove duplicate memcpy() definition 6ad8bbc9d301 ARM: 9133/1: mm: proc-macros: ensure *_tlb_fns are 4B aligned 3ceaa85c331d ARM: 9132/1: Fix __get_user_check failure with ARM KASAN images (From OE-Core rev: d57bc7281015d09e2ff7a8a028dbf31559ff7331) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.14: update to v5.14.16Bruce Ashfield2021-11-103-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.14 to the latest korg -stable release that comprises the following commits: f63179c1e68c Linux 5.14.16 e874c870dfd8 KVM: x86: Take srcu lock in post_kvm_run_save() 9ab39a3d0cec KVM: SEV-ES: fix another issue with string I/O VMGEXITs eb0461c572e9 KVM: x86: switch pvclock_gtod_sync_lock to a raw spinlock 10242cc2ad79 KVM: x86/xen: Fix kvm_xen_has_interrupt() sleeping in kvm_vcpu_block() 669a7e147ee6 perf script: Check session->header.env.arch before using it e914237feb46 riscv: Fix asan-stack clang build 4606bbb6b19c riscv: Do not re-populate shadow memory with kasan_populate_early_shadow 7567abe63797 riscv: fix misalgned trap vector base address 20bd764387ac scsi: ibmvfc: Fix up duplicate response detection f6782c0ca808 perf script: Fix PERF_SAMPLE_WEIGHT_STRUCT support 04ced3822a66 scsi: ufs: ufs-exynos: Correct timeout value setting registers d748da838b21 KVM: s390: preserve deliverable_mask in __airqs_kick_single_vcpu 4faa35ce98c7 KVM: s390: clear kicked_mask before sleeping again ae566351ca18 octeontx2-af: Check whether ipolicers exists 45d9cd363786 virtio-ring: fix DMA metadata flags 52a936b037b5 net: hns3: expand buffer len for some debugfs command efccb66bc917 net: hns3: add more string spaces for dumping packets number of queue info in debugfs e5c6ad377c07 bpf: Move BPF_MAP_TYPE for INODE_STORAGE and TASK_STORAGE outside of CONFIG_NET b341612b659d watchdog: sbsa: only use 32-bit accessors de709ec74f8b bpf: Use kvmalloc for map values in syscall 0717c71deae6 sctp: add vtag check in sctp_sf_ootb 1c255b5f68f4 sctp: add vtag check in sctp_sf_do_8_5_1_E_sa dd82b3a345ab sctp: add vtag check in sctp_sf_violation 44ef3ecbc24a sctp: fix the processing for COOKIE_ECHO chunk 7975f42f1038 sctp: fix the processing for INIT_ACK chunk 6277d424ead2 sctp: fix the processing for INIT chunk 332933f9ae0a sctp: use init_tag from inithdr for ABORT chunk 44d44bf72591 RDMA/irdma: Do not hold qos mutex twice on QP resume 6392f26fbe92 RDMA/irdma: Set VLAN in UD work completion correctly 7762917173cc RDMA/irdma: Process extended CQ entries correctly 7860484eeb90 phy: phy_ethtool_ksettings_set: Lock the PHY while changing settings 37a1b9befb73 phy: phy_start_aneg: Add an unlocked version 1f9c99e0bb5b phy: phy_ethtool_ksettings_set: Move after phy_start_aneg 2191b1e8eb3d phy: phy_ethtool_ksettings_get: Lock the phy for consistency e2b4dd261720 net/tls: Fix flipped sign in async_wait.err assignment 373f94d73651 net: ethernet: microchip: lan743x: Fix skb allocation failure 228862acb549 net: hns3: fix data endian problem of some functions of debugfs 20d88211706b net: hns3: fix pause config problem after autoneg disabled 7cc73feb57f6 net: nxp: lpc_eth.c: avoid hang when bringing interface down d8774769d198 net: ethernet: microchip: lan743x: Fix dma allocation failure by using dma_set_mask_and_coherent 69d3c7785ec4 net: ethernet: microchip: lan743x: Fix driver crash when lan743x_pm_resume fails 18bd5e285a78 mlxsw: pci: Recycle received packet upon allocation failure 960f4a54b909 nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST 030f05812d81 gpio: xgs-iproc: fix parsing of ngpios property c653c522e521 RDMA/sa_query: Use strscpy_pad instead of memcpy to copy a string 5f6995295f65 RDMA/mlx5: Initialize the ODP xarray when creating an ODP MR ed894f5439ab net: Prevent infinite while loop in skb_tx_hash() f435287d719b cfg80211: correct bridge/4addr mode check da279dac227a net-sysfs: initialize uid and gid before calling net_ns_get_ownership a8f7359259dd net: batman-adv: fix error handling 50cc1462a668 regmap: Fix possible double-free in regcache_rbtree_exit() c9e39214fddf reset: brcmstb-rescal: fix incorrect polarity of status bit 86f9394073d8 arm64: dts: allwinner: h5: NanoPI Neo 2: Fix ethernet node 63a97a9f95f2 ice: check whether PTP is initialized in ice_ptp_release() ebd0edad1cdf RDMA/mlx5: Set user priority for DCT e83b3cce4722 ice: Respond to a NETDEV_UNREGISTER event for LAG f1e3cd1cc802 octeontx2-af: Fix possible null pointer dereference. 98db2a8c14be octeontx2-af: Display all enabled PF VF rsrc_alloc entries. c7752ec9ad39 nvme-tcp: fix possible req->offset corruption 7258a6eef5be nvme-tcp: fix data digest pointer calculation daa12f0c1d1b nvmet-tcp: fix data digest pointer calculation 5d33bd6b4d4d IB/hfi1: Fix abba locking issue with sc_disable() 0d4395477741 IB/qib: Protect from buffer overflow in struct qib_user_sdma_pkt fields 6525bfbd546f bpf: Fix error usage of map_fd and fdget() in generic_map_update_batch() adb17f828177 bpf: Fix potential race in tail call compatibility check 6f226ffe4458 tcp_bpf: Fix one concurrency problem in the tcp_bpf_send_verdict function e1b80a5ebe54 riscv, bpf: Fix potential NULL dereference b529f88d9388 cgroup: Fix memory leak caused by missing cgroup_bpf_offline b7ca59297fa3 Revert "watchdog: iTCO_wdt: Account for rebooting on second timeout" 0a8b7eba95a0 drm/amd/display: Fix deadlock when falling back to v2 from v3 a363d80566cc drm/amd/display: Fallback to clocks which meet requested voltage on DCN31 aeadb0662478 drm/amd/display: Moved dccg init to after bios golden init 5a5f1f070c3e drm/amd/display: Increase watermark latencies for DCN3.1 85cf47160d0e drm/amd/display: increase Z9 latency to workaround underflow in Z9 01f39421d590 drm/amd/display: Fix prefetch bandwidth calculation for DCN3.1 b60efcaf5e8b drm/amd/display: Limit display scaling to up to true 4k for DCN 3.1 c3ae5cf3e3ee drm/amdgpu: support B0&B1 external revision id for yellow carp d3ed72495a59 drm/amdgpu: fix out of bounds write 9eb4bdd554fc drm/amdgpu: Fix even more out of bound writes from debugfs d87ac6054e3d drm/i915/dp: Skip the HW readout of DPCD on disabled encoders 7650327e7174 drm/i915: Catch yet another unconditioal clflush 0ed2dfb5f598 drm/i915: Convert unconditional clflush to drm_clflush_virt_range() 132a3d998d67 drm/ttm: fix memleak in ttm_transfered_destroy 15a4f2bdbdfd mac80211: mesh: fix HE operation element length check ce277959d77c arm64: dts: imx8mm-kontron: Make sure SOC and DRAM supply voltages are correct 8c684aaceaf3 arm64: dts: imx8mm-kontron: Set lower limit of VDD_SNVS to 800 mV f5eaf91dd8af arm64: dts: imx8mm-kontron: Fix connection type for VSC8531 RGMII PHY da32086a0203 arm64: dts: imx8mm-kontron: Fix CAN SPI clock frequency d2bdcd23cba9 arm64: dts: imx8mm-kontron: Fix polarity of reg_rst_eth2 5fcb6fce74ff mm: khugepaged: skip huge page collapse for special files 5e669d8ab30a mm, thp: bail out early in collapse_file for writeback page 6ac017254b59 mm: filemap: check if THP has hwpoisoned subpage for PMD page fault 8821fedc7f83 mm: hwpoison: remove the unnecessary THP check 67979d186c51 drm/amd/display: Require immediate flip support for DCN3.1 planes 75b1b172ae5a net: lan78xx: fix division by zero in send path 3c897f39b71f cfg80211: fix management registrations locking 2a000d137589 cfg80211: scan: fix RCU in cfg80211_add_nontrans_list() e6d02b0da2df ftrace/nds32: Update the proto for ftrace_trace_function to match ftrace_stub ea081b13b00e nvme-tcp: fix H2CData PDU send accounting (again) 2e382600e885 ocfs2: fix race between searching chunks and release journal_head from buffer_head 7335acd51f6b block: Fix partition check for host-aware zoned block devices 10bcaafc5753 mmc: sdhci-esdhc-imx: clear the buffer_read_ready to reset standard tuning circuit 78873d5a2717 mmc: sdhci-pci: Read card detect from ACPI for Intel Merrifield b572d6c18511 mmc: sdhci: Map more voltage level to SDHCI_POWER_330 ac6f66f208a1 mmc: dw_mmc: exynos: fix the finding clock sample value b1ad3ecffaac mmc: tmio: reenable card irqs after the reset callback e1b94f0e744f mmc: mediatek: Move cqhci init behind ungate clock 9106d68c8082 mmc: cqhci: clear HALT state after CQE enable aa2f3e425e22 mmc: vub300: fix control-message timeouts e41473543f75 net/tls: Fix flipped sign in tls_err_abort() calls 8ba94a7f7b9f Revert "net: mdiobus: Fix memory leak in __mdiobus_register" 836f40777d58 nfc: port100: fix using -ERRNO as command type mask e029c9828c5b tipc: fix size validations for the MSG_CRYPTO type 43849df432c9 ata: sata_mv: Fix the error handling of mv_chip_id() 66a1c8748068 pinctrl: amd: disable and mask interrupts on probe 18f31a907c9f Revert "pinctrl: bcm: ns: support updated DT binding as syscon subnode" b5c410a4af7d usbnet: fix error return code in usbnet_probe() 7e8b6a4f18ed usbnet: sanity check for maxpacket a350df591870 ARM: 9148/1: handle CONFIG_CPU_ENDIAN_BE32 in arch/arm/kernel/head.S 351d0f587b4c ARM: 9141/1: only warn about XIP address when not compile testing a51d78193d21 ARM: 9139/1: kprobes: fix arch_init_kprobes() prototype 4108f38c05bd ARM: 9138/1: fix link warning with XIP + frame-pointer 6aa2d9cf81f9 ARM: 9134/1: remove duplicate memcpy() definition 78a7a2694e69 ARM: 9133/1: mm: proc-macros: ensure *_tlb_fns are 4B aligned e108afbd38a5 ARM: 9132/1: Fix __get_user_check failure with ARM KASAN images (From OE-Core rev: ae32a59571abec59cc9f19bf9289ec9472b3923b) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto-rt/5.15: update to -rt17Bruce Ashfield2021-11-103-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Integrating the following commit(s) to linux-yocto-rt/5.15: 6f51b8d2b7dc Add localversion for -RT release 3c8ff0c09156 sysfs: Add /sys/kernel/realtime entry 828d8f9b903f POWERPC: Allow to enable RT 6db76b613e53 powerpc/stackprotector: work around stack-guard init from atomic 44be16e0180a powerpc/kvm: Disable in-kernel MPIC emulation for PREEMPT_RT a5c27dfc178a powerpc/pseries/iommu: Use a locallock instead local_irq_save() dce767609e50 powerpc: traps: Use PREEMPT_RT 9cad1f8c7dd7 ARM64: Allow to enable RT 5bd881944e4f ARM: Allow to enable RT 715792fbbaf7 tty/serial/pl011: Make the locking work on RT 69221f2f5b91 tty/serial/omap: Make the locking RT aware 5fa50218f3e3 arm64: signal: Use ARCH_RT_DELAYS_SIGNAL_SEND. c004c410d380 arm64/sve: Make kernel FPU protection RT friendly 7ffcb4485981 arm64/sve: Delay freeing memory in fpsimd_flush_thread() 322561563b01 KVM: arm/arm64: downgrade preempt_disable()d region to migrate_disable() fe5ed302a1ec ARM: enable irq in translation/section permission fault handlers f17af435c3a3 arch/arm64: Add lazy preempt support 10e096c7a491 powerpc: Add support for lazy preemption 5e15c21804be arm: Add support for lazy preemption abc04080e1b3 entry: Fix the preempt lazy fallout 2fb1741e933b x86: Support for lazy preemption 24b379de7afc x86/entry: Use should_resched() in idtentry_exit_cond_resched() 860dbaa27ad1 sched: Add support for lazy preemption 4d5c9c824eee */softirq: Disable softirq stacks on PREEMPT_RT 2676f33e2cf4 generic/softirq: Disable softirq stacks on PREEMPT_RT 1886700e5658 leds: trigger: Disable CPU trigger on PREEMPT_RT 694e3f263964 drivers/block/zram: Replace bit spinlocks with rtmutex for -rt 97f765c75d6d mm/zsmalloc: Replace bit spinlock and get_cpu_var() usage. 49c7010ff12e tpm_tis: fix stall after iowrite*()s df583a002c38 virt: acrn: Remove unsued acrn_irqfds_mutex. a68737287907 smack: Guard smack_ipv6_lock definition within a SMACK_IPV6_PORT_LABELING block ac9df8459eda ASoC: mediatek: mt8195: Remove unsued irqs_lock. 02bc2e3cbe09 genirq: update irq_set_irqchip_state documentation ac932078b2e6 x86: Enable RT also on 32bit e262f9f76c5b x86: Allow to enable RT fef570ba4596 x86: kvm Require const tsc for RT e5a9202c3535 signal/x86: Delay calling signals in atomic 2c0f317da8b9 drm/i915: Drop the irqs_disabled() check 06b3f43f370b drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() ac58ec9af512 drm/i915/gt: Queue and wait for the irq_work item. aaa6ddcfd053 drm/i915: skip DRM_I915_LOW_LEVEL_TRACEPOINTS with NOTRACE 6db29073f209 drm/i915: Disable tracing points on PREEMPT_RT 5d34e949e11c drm/i915: Don't check for atomic context on PREEMPT_RT 0ca85efbe2e9 drm/i915: Don't disable interrupts on PREEMPT_RT during atomic updates 688ce2658570 drm/i915: Use preempt_disable/enable_rt() where recommended 9a76a256848c drm/i915: Don't disable interrupts and pretend a lock as been acquired in __timeline_mark_lock(). 766248132ccf random: Make it work on rt ba411ba63b8e x86: stackprotector: Avoid random pool on rt 3c158aab9acc panic: skip get_random_bytes for RT_FULL in init_oops_id bf099c9ff70f net: dev: always take qdisc's busylock in __dev_xmit_skb() 783862056952 net: Dequeue in dev_cpu_dead() without the lock 61793a50d51d net: Use skbufhead with raw lock 4e369dc108af net/core: use local_bh_disable() in netif_rx_ni() 8056c6bd6380 rcu: Delay RCU-selftests 1372b981252b fs/dcache: disable preemption on i_dir_seq's write side 8f35827f634d fs/dcache: use swait_queue instead of waitqueue dc26bf05c680 ptrace: fix ptrace vs tasklist_lock race 54332013d985 signal: Revert ptrace preempt magic 65309bca8d9c mm/memcontrol: Disable on PREEMPT_RT 5d193966a444 u64_stats: Disable preemption on 32bit-UP/SMP with RT during updates 9e7c9b1a7d21 softirq: Check preemption after reenabling interrupts 0d4e38f0610e crypto: cryptd - add a lock instead preempt_disable/local_bh_disable 4a01578f1878 sunrpc: Make svc_xprt_do_enqueue() use get_cpu_light() 03f8b0f0eedb net: Remove preemption disabling in netif_rx() ddd725b42e48 mm/vmalloc: Another preempt disable region which sucks 28545272667f scsi/fcoe: Make RT aware. dcb042c59ca4 md: raid5: Make raid5_percpu handling RT aware 393999301a85 block/mq: do not invoke preempt_disable() 8485ff82f922 kernel/sched: add {put|get}_cpu_light() 274408c7b291 sched: Make preempt_enable_no_resched() behave like preempt_enable() on PREEMPT_RT 9708837923a7 locking: Allow to include asm/spinlock_types.h from linux/spinlock_types_raw.h b5f1fc042d2f lockdep/selftests: Adapt ww-tests for PREEMPT_RT 3e6dd28f0231 lockdep/selftests: Skip the softirq related tests on PREEMPT_RT 0da6a4f59354 lockdep/selftests: Unbalanced migrate_disable() & rcu_read_lock() b29dc4a9ef20 lockdep/selftests: Add rtmutex to the last column db92f5fc3fb7 lockdep: Make it RT aware fae24609aafa rtmutex: Add rt_mutex_lock_nest_lock() and rt_mutex_lock_killable(). 9d8c380fa819 rtmutex: Add a special case for ww-mutex handling. d6b24f0f2a8a sched: Trigger warning if ->migration_disabled counter underflows. 6e09a284f2a6 lockdep/selftests: Avoid using local_lock_{acquire|release}(). bd833044483a locking: Remove rt_rwlock_is_contended() 36839db14247 jump-label: disable if stop_machine() is used 5a657ef837de tcp: Remove superfluous BH-disable around listening_hash c11095ec78ef mm: workingset: replace IRQ-off check with a lockdep assert. 168e3d8875c7 cgroup: use irqsave in cgroup_rstat_flush_locked() 639d2eb6493f sched: Move mmdrop to RCU on RT 590419b10863 sched: Delay task stack freeing on RT 37860896be2e sched: Move kprobes cleanup out of finish_task_switch() dc3565cd6bbd sched: Disable TTWU_QUEUE on RT 77db91d4d2b5 sched: Limit the number of task migrations per batch on RT 8ea3ab8bb409 locking/rt: Take RCU nesting into account for __might_resched() b2f56dfeab18 sched: Make cond_resched_lock() variants RT aware 9bac73a04b71 sched: Make RCU nest depth distinct in __might_resched() 4f3dd3cb71e5 sched: Make might_sleep() output less confusing b8c4ad5ceaec sched: Cleanup might_sleep() printks 588c973bd55b sched: Remove preempt_offset argument from __might_sleep() 5b8fbf83bb40 sched: Make cond_resched_*lock() variants consistent vs. might_sleep() 8e4b532478f2 sched: Clean up the might_sleep() underscore zoo 3a5e868f92f0 fscache: Use only one fscache_object_cong_wait. 67ba86618a1e fs/namespace: Boost the mount_lock.lock owner instead of spinning on PREEMPT_RT. cad3bedc2a83 smp: Wake ksoftirqd on PREEMPT_RT instead do_softirq(). 394e3bdd3242 irq_poll: Use raise_softirq_irqoff() in cpu_dead notifier 4de8f9d6a1ad irq_work: Also rcuwait for !IRQ_WORK_HARD_IRQ on PREEMPT_RT 87e75faa338d irq_work: Handle some irq_work in a per-CPU thread on PREEMPT_RT d2100f67254d irq_work: Allow irq_work_sync() to sleep if irq_work() no IRQ support. ada60e0098ea sched/rt: Annotate the RT balancing logic irqwork as IRQ_WORK_HARD_IRQ f657de711e15 net: stats: Read the statistics in ___gnet_stats_copy_basic() instead of adding. 0d3a9c303dd9 net: sched: remove one pair of atomic operations 853f1349041a net: sched: fix logic error in qdisc_run_begin() 68f3b93760b7 net: sched: Allow statistics reads from softirq. 86e29a3d2d68 net: sched: Remove Qdisc::running sequence counter 304640d0b862 net: sched: Merge Qdisc::bstats and Qdisc::cpu_bstats data types 1c7a827367ee net: sched: Use _bstats_update/set() instead of raw writes 22701ce1b59f net: sched: Protect Qdisc::bstats with u64_stats 54538aff544a u64_stats: Introduce u64_stats_set() 69534c384086 gen_stats: Move remaining users to gnet_stats_add_queue(). e1f89d46623c mq, mqprio: Use gnet_stats_add_queue(). d3968711bb65 gen_stats: Add gnet_stats_add_queue(). c2b1af791919 gen_stats: Add instead Set the value in __gnet_stats_copy_basic(). 3d38b89d239a net/sched: sch_ets: properly init all active DRR list handles b59a9b759b1a kcov: Replace local_irq_save() with a local_lock_t. 8e2db8a2201a kcov: Avoid enable+disable interrupts if !in_task(). d244291fb820 kcov: Allocate per-CPU memory on the relevant node. 6eec9f99da0e Documentation/kcov: Define `ip' in the example. e619eb9cb198 Documentation/kcov: Include types.h in the example. f002c820156b x86/softirq: Disable softirq stacks on PREEMPT_RT 12b80085754b mm: Disable NUMA_BALANCING_DEFAULT_ENABLED and TRANSPARENT_HUGEPAGE on PREEMPT_RT a1411120989b mm/scatterlist: Replace the !preemptible warning in sg_miter_stop() 56fb69cc8a0b mm: page_alloc: Use migrate_disable() in drain_local_pages_wq() 39d1d6a46eaa mm: Allow only SLUB on PREEMPT_RT bf1b661248f6 crypto: testmgr - Only disable migration in crypto_disable_simd_for_test() ddd1767afd69 samples/kfifo: Rename read_lock/write_lock a6c921dd2368 net/core: disable NET_RX_BUSY_POLL on PREEMPT_RT 96cc6b82ae54 mm: Disable zsmalloc on PREEMPT_RT f77af3465961 efi: Allow efi=runtime 8b3cde535f8f efi: Disable runtime services on RT 7082e94c5405 lockdep: Let lock_is_held_type() detect recursive read as read ffc314d30f16 genirq: Disable irqfixup/poll on PREEMPT_RT. 1ec49f38b6ae genirq: Move prio assignment into the newly created thread e272fc66d6bc kthread: Move prio/affinite change into the newly created thread 468813504d5a rcutorture: Avoid problematic critical section nesting on PREEMPT_RT e6a408241cee sched: Switch wait_task_inactive to HRTIMER_MODE_REL_HARD cd6bda4839a6 printk: Enhance the condition check of msleep in pr_flush() 2ad1282d77e8 printk: add pr_flush() cd582486f3e8 printk: add console handover 25f13bd1d07b printk: remove deferred printing 2d440f3f2ee5 printk: move console printing to kthreads df0a27dbd128 printk: introduce kernel sync mode 4efb519165f1 printk: use seqcount_latch for console_seq 8653ea7d3c45 printk: call boot_delay_msec() in printk_delay() 892cddfada1f printk: relocate printk_delay() e1ac77117990 serial: 8250: implement write_atomic 967b98b7c528 kdb: only use atomic consoles for output mirroring 36422a33e3b3 console: add write_atomic interface 7b9055c4c17d printk: rename printk cpulock API and always disable interrupts 3791dee37847 arm64: mm: Make arch_faults_on_old_pte() check for migratability e5b82790a28d sched: Introduce migratable() 0cf3b776c423 rcu/tree: Protect rcu_rdp_is_offloaded() invocations on RT (From OE-Core rev: a784cd98bb095e19957bc5aeec3c3303bea64def) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta: use ln -rs instead of lnrRoss Burton2021-11-102-3/+3
| | | | | | | | | | | | | | | | | lnr is a script in oe-core that creates relative symlinks, with the same behaviour as `ln --relative --symlink`. It was added back in 2014[1] as not all of the supported host distributions at the time shipped coreutils 8.16, the first release with --relative. However the oldest coreutils release in the supported distributions is now 8.22 in CentOS 7, so lnr can be deprecated and users switched to ln. [1] 6ae3b85eaffd1b0b6914422e8de7c1230723157d (From OE-Core rev: 1ca455a98de4c713f58df0a537d4c982d256cd68) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.15: introduce recipesBruce Ashfield2021-11-073-0/+145
| | | | | | | | | | | | | The 5.15 kernel will be a LTS release, so we introduce our reference recipes to track the release. We have some configuration tweaks for the final 5.15 release, but this is otherwise the same as the kernel that was tested in linux-yocto-dev. (From OE-Core rev: 9241266d18fc081f570bbb22b45d0875546a2e93) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-libc-headers: update to v5.15Bruce Ashfield2021-11-071-2/+2
| | | | | | | | | | No patches needed refreshing or removal, so we just update the SRC_URI and pick up the latest uapi / kernel headers. (From OE-Core rev: 9cebccedb16919b70198ee26acb8fcb6c4565359) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel-devsrc: Add vdso.lds and other build files for riscv64 as wellKhem Raj2021-11-051-2/+8
| | | | | | | | | | | | | These additional bits are needed on riscv64 as well Fixes make[1]: *** No rule to make target 'arch/riscv/kernel/vdso/vdso.lds', needed by 'arch/riscv/kernel/vdso/vdso.so.dbg'. Stop. make: *** [arch/riscv/Makefile:114: vdso_prepare] Error 2 (From OE-Core rev: 446972600ed51ca75a2a4e579cdc3e6dd2e05195) Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto-rt/5.10: update to -rt54Bruce Ashfield2021-11-051-1/+1
| | | | | | | | | | | | | | | | | | | Integrating the following commit(s) to linux-yocto-rt/5.10: f01089784fd6 Linux 5.10.73-rt54 f34df8f3c666 Linux 5.10.65-rt53 271c5e6e4064 Linux 5.10.59-rt52 1a4bba4bc32c locking/rwsem-rt: Remove might_sleep() in __up_read() ff591a2bdcfb Linux 5.10.59-rt51 8d185ac23c11 Linux 5.10.58-rt50 2c0fd44153f5 Linux 5.10.56-rt49 8b083d3c993c printk: Enhance the condition check of msleep in pr_flush() 448cd29e3bc9 Linux 5.10.56-rt48 (From OE-Core rev: 7c7dc8f38cf1e874a7722389c95d895e10855d9a) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.10: update to v5.10.76Bruce Ashfield2021-11-053-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 378e85d1aeb5 Linux 5.10.76 cfa79faf7e1f pinctrl: stm32: use valid pin identifier in stm32_pinctrl_resume() c56c801391c3 ARM: 9122/1: select HAVE_FUTEX_CMPXCHG d088db8637bb selftests: bpf: fix backported ASSERT_FALSE 3a845fa00fd7 e1000e: Separate TGP board type from SPT 021b6d11e590 tracing: Have all levels of checks prevent recursion 3a0dc2e35a5d net: mdiobus: Fix memory leak in __mdiobus_register cfe9266213c4 bpf, test, cgroup: Use sk_{alloc,free} for test cases 188907c25218 s390/pci: fix zpci_zdev_put() on reserve f18b90e9366f can: isotp: isotp_sendmsg(): fix TX buffer concurrent access in isotp_sendmsg() 2304dfb548a4 scsi: core: Fix shost->cmd_per_lun calculation in scsi_add_host_with_dma() c58654f344dd net: hns3: fix for miscalculation of rx unused desc 96fe5061291d sched/scs: Reset the shadow stack when idle_task_exit 96f0aebf29be scsi: qla2xxx: Fix a memory leak in an error path of qla2x00_process_els() 90c8e8c0829b scsi: iscsi: Fix set_param() handling 0eb254479685 Input: snvs_pwrkey - add clk handling ea9c1f5d8a3a perf/x86/msr: Add Sapphire Rapids CPU support 7a5a1f09c8b4 libperf tests: Fix test_stat_cpu e56a3e7ae353 ALSA: hda: avoid write to STATESTS if controller is in reset 85c8d8c1609d platform/x86: intel_scu_ipc: Update timeout value in comment 9f591cbdbed3 isdn: mISDN: Fix sleeping function called from invalid context ab4f542b515b ARM: dts: spear3xx: Fix gmac node 15d3ad79885b net: stmmac: add support for dwmac 3.40a f9d16a428489 btrfs: deal with errors when checking if a dir entry exists during log replay 369db2a91d5c ALSA: hda: intel: Allow repeatedly probing on codec configuration errors 81d8e70cdce4 gcc-plugins/structleak: add makefile var for disabling structleak 69078a94365a net: hns3: fix the max tx size according to user manual f40c2281d2c0 drm: mxsfb: Fix NULL pointer dereference crash on unload 96835b68d7b3 net: bridge: mcast: use multicast_membership_interval for IGMPv3 0e033cb40761 selftests: netfilter: remove stray bash debug line f8a6541345c2 netfilter: Kconfig: use 'default y' instead of 'm' for bool config option 7f221ccbee4e isdn: cpai: check ctr->cnr to avoid array index out of bound 77c0ef979e32 nfc: nci: fix the UAF of rf_conn_info object 8f042315fcc4 KVM: nVMX: promptly process interrupts delivered while in guest mode b41fd8f5d2ad mm, slub: fix incorrect memcg slab count for bulk free 568f906340b4 mm, slub: fix potential memoryleak in kmem_cache_open() 48843dd23c7b mm, slub: fix mismatch between reconstructed freelist depth and cnt c5c2a80368e9 powerpc/idle: Don't corrupt back chain when going idle 197ec50b2df1 KVM: PPC: Book3S HV: Make idle_kvm_start_guest() return 0 if it went to guest fbd724c49bea KVM: PPC: Book3S HV: Fix stack handling in idle_kvm_start_guest() 9258f58432c5 powerpc64/idle: Fix SP offsets when saving GPRs 3e16d9d525a7 net: dsa: mt7530: correct ds->num_ports 16802fa4c33e audit: fix possible null-pointer dereference in audit_filter_rules 0d867a359979 ASoC: DAPM: Fix missing kctl change notifications a2606acf418e ALSA: hda/realtek: Add quirk for Clevo PC50HS 6411397b6d7a ALSA: usb-audio: Provide quirk for Sennheiser GSP670 Headset b721500c979b vfs: check fd has read access in kernel_read_file_from_fd() 895ceeff31b1 elfcore: correct reference to CONFIG_UML 3cda4bfffd4f userfaultfd: fix a race between writeprotect and exit_mmap() 93be0eeea14c ocfs2: mount fails with buffer overflow in strlen f1b98569e81c ocfs2: fix data corruption after conversion from inline format 1727e8688d2e ceph: fix handling of "meta" errors 603d4bcc0fcd ceph: skip existing superblocks that are blocklisted or shut down when mounting d48db508f911 can: j1939: j1939_xtp_rx_rts_session_new(): abort TP less than 9 bytes 5abc9b9d3ca5 can: j1939: j1939_xtp_rx_dat_one(): cancel session if receive TP.DT with error length 864e77771a24 can: j1939: j1939_netdev_start(): fix UAF for rx_kref of j1939_priv ecfccb1c58c9 can: j1939: j1939_tp_rxtimer(): fix errant alert in j1939_tp_rxtimer 053bc12df0d6 can: isotp: isotp_sendmsg(): add result check for wait_event_interruptible() 0917fb04069a can: isotp: isotp_sendmsg(): fix return error on FC timeout on TX path 28f28e4bc3a5 can: peak_pci: peak_pci_remove(): fix UAF 9697ad6395f9 can: peak_usb: pcan_usb_fd_decode_status(): fix back to ERROR_ACTIVE state notification 4758e92e75ca can: rcar_can: fix suspend/resume 4a0928c3ebca net: enetc: fix ethtool counter name for PM0_TERR 00ad7a015409 drm/panel: ilitek-ili9881c: Fix sync for Feixin K101-IM2BYL02 panel eccd00728b1a ice: Add missing E810 device ids 6418508a3ac2 e1000e: Fix packet loss on Tiger Lake and later 29f1bdcaa3dd net: stmmac: Fix E2E delay mechanism d36b15e3e7b5 net: hns3: disable sriov before unload hclge layer 6a72e1d78a2f net: hns3: fix vf reset workqueue cannot exit 32b860d364d2 net: hns3: schedule the polling again when allocation fails 96c013f40c9b net: hns3: add limit ets dwrr bandwidth cannot be 0 21f61d10435c net: hns3: reset DWRR of unused tc to zero 53770a411559 powerpc/smp: do not decrement idle task preempt count in CPU offline 81dbd898fb7b NIOS2: irqflags: rename a redefined register name 6edf99b000d6 net: dsa: lantiq_gswip: fix register definition ef97219d5fec ipv6: When forwarding count rx stats on the orig netdev 38d984e5e845 tcp: md5: Fix overlap between vrf and non-vrf keys c28bea6b876f lan78xx: select CRC32 9c8943812dac netfilter: ipvs: make global sysctl readonly in non-init netns 911e01990c70 netfilter: ip6t_rt: fix rt0_hdr parsing in rt_mt6 69ea08c1b539 ice: fix getting UDP tunnel entry 842fce43190c ASoC: wm8960: Fix clock configuration on slave mode 39afed394cc6 dma-debug: fix sg checks in debug_dma_map_sg() 2a670c323055 netfilter: xt_IDLETIMER: fix panic that occurs when timer_type has garbage value 0f4308a164a9 NFSD: Keep existing listeners on portlist error 546c04c85791 xtensa: xtfpga: Try software restart before simulating CPU reset bfef5d826276 xtensa: xtfpga: use CONFIG_USE_OF instead of CONFIG_OF d8284c981c1c drm/amdgpu/display: fix dependencies for DRM_AMD_DC_SI 101e1bcb1147 xen/x86: prevent PVH type from getting clobbered a6285b1b2212 block: decode QUEUE_FLAG_HCTX_ACTIVE in debugfs output 85c1827eeee7 ARM: dts: at91: sama5d2_som1_ek: disable ISC node by default 5489c1bed5b8 arm: dts: vexpress-v2p-ca9: Fix the SMB unit-address f59da9f7efa7 io_uring: fix splice_fd_in checks backport typo b6f32897af19 xhci: add quirk for host controllers that don't update endpoint DCS b3b7f831a49b parisc: math-emu: Fix fall-through warnings (From OE-Core rev: 61f8f7d18417334e3b13e4447f318107372dcfe0) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.14: update to v5.14.15Bruce Ashfield2021-11-053-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.14 to the latest korg -stable release that comprises the following commits: b46092c7497e Linux 5.14.15 96e4ea34f6d7 pinctrl: stm32: use valid pin identifier in stm32_pinctrl_resume() 4850e9e3c6a3 ARM: 9122/1: select HAVE_FUTEX_CMPXCHG 80344938e468 e1000e: Separate TGP board type from SPT 0c4e87ba11eb net: mdiobus: Fix memory leak in __mdiobus_register 2f4356963624 bpf, test, cgroup: Use sk_{alloc,free} for test cases 4e5d794a2743 s390/pci: fix zpci_zdev_put() on reserve e27170d5f2fc s390/pci: cleanup resources only if necessary 2be38f02ec89 scsi: core: Fix shost->cmd_per_lun calculation in scsi_add_host_with_dma() ff261f9aa654 autofs: fix wait name hash calculation in autofs_wait() 1009f098dfbe drm/kmb: Limit supported mode to 1080p 217d42e8b835 drm/kmb: Enable alpha blended second plane c1ad040dbea8 net/mlx5: Lag, change multipath and bonding to be mutually exclusive d2ec7d208d8e net/mlx5: Lag, move lag destruction to a workqueue 42b6431f1c17 net: hns3: fix for miscalculation of rx unused desc f1972f14f16e sched/scs: Reset the shadow stack when idle_task_exit c4813d308517 mm/thp: decrease nr_thps in file's mapping on THP split a7fbb56e6c94 scsi: qla2xxx: Fix a memory leak in an error path of qla2x00_process_els() c8c1b2183fb8 scsi: mpi3mr: Fix duplicate device entries when scanning through sysfs ce527668277c scsi: storvsc: Fix validation for unsolicited incoming packets 08d82a9b65e7 scsi: iscsi: Fix set_param() handling 6408a4c8da2f ASoC: codec: wcd938x: Add irq config support 9eb2aaede632 Input: snvs_pwrkey - add clk handling 9dd0389d77b9 perf/x86/msr: Add Sapphire Rapids CPU support 11d6811cbde0 libperf tests: Fix test_stat_cpu 65eec1fb58c1 libperf test evsel: Fix build error on !x86 architectures b6062308c510 spi-mux: Fix false-positive lockdep splats 722ef19a161c spi: Fix deadlock when adding SPI controllers on SPI buses 785d69099ef4 ALSA: hda: avoid write to STATESTS if controller is in reset 3972b03ed085 platform/x86: intel_scu_ipc: Update timeout value in comment 6659008140b4 platform/x86: intel_scu_ipc: Increase virtual timeout to 10s f5966ba53013 isdn: mISDN: Fix sleeping function called from invalid context ef24577a52ba ARM: dts: spear3xx: Fix gmac node 834cc3fc2b99 net: stmmac: add support for dwmac 3.40a 0c878175dd2f btrfs: deal with errors when checking if a dir entry exists during log replay 051995bd0f42 ALSA: hda: intel: Allow repeatedly probing on codec configuration errors 9906da162dc8 objtool: Update section header before relocations e73e72be194e objtool: Check for gelf_update_rel[a] failures 515e03331255 bitfield: build kunit tests without structleak plugin 3f66b6e01c82 thunderbolt: build kunit tests without structleak plugin d9f94a8ec35a device property: build kunit tests without structleak plugin 2c793a67d71b iio/test-format: build kunit tests without structleak plugin 930f561aae28 gcc-plugins/structleak: add makefile var for disabling structleak 1d1af4da1c44 drm/msm/a6xx: Serialize GMU communication bbdd158b40b6 kunit: fix reference count leak in kfree_at_end dfcc47a1fe36 KVM: MMU: Reset mmu->pkru_mask to avoid stale data e647d75565ab net: hns3: fix the max tx size according to user manual b0e6db0656dd drm: mxsfb: Fix NULL pointer dereference crash on unload 56a3d9637b77 KVM: SEV-ES: Set guest_state_protected after VMSA update d469678d6b50 net: bridge: mcast: use multicast_membership_interval for IGMPv3 8f20259f186e selftests: netfilter: remove stray bash debug line 057aef8df940 netfilter: Kconfig: use 'default y' instead of 'm' for bool config option cc20226e218a isdn: cpai: check ctr->cnr to avoid array index out of bound 6197eb050cfa nfc: nci: fix the UAF of rf_conn_info object fb82d4dbee95 KVM: x86: remove unnecessary arguments from complete_emulator_pio_in 66e46fe3f276 KVM: x86: split the two parts of emulator_pio_in 9887c1668ada KVM: x86: check for interrupts before deciding whether to exit the fast path 169577c8840e KVM: x86: leave vcpu->arch.pio.count alone in emulator_pio_in_out 62a1a254ed83 KVM: SEV-ES: reduce ghcb_sa_len to 32 bits 3f54362dc7d7 KVM: SEV-ES: go over the sev_pio_data buffer in multiple passes if needed 4988e000b3a8 KVM: SEV-ES: fix length of string I/O 727286b23f93 KVM: SEV-ES: keep INS functions together 98c55c508df0 KVM: SEV-ES: clean up kvm_sev_es_ins/outs abcae3cd6272 KVM: SEV-ES: rename guest_ins_data to sev_pio_data 6697ceb9f6cd KVM: SEV: Flush cache on non-coherent systems before RECEIVE_UPDATE_DATA 495bd03b6ba5 KVM: nVMX: promptly process interrupts delivered while in guest mode dc94b8b3f28a mm, slub: fix incorrect memcg slab count for bulk free 159d8cfbd042 mm, slub: fix potential use-after-free in slab_debugfs_fops 42b81946e3ac mm, slub: fix potential memoryleak in kmem_cache_open() ec93d4a439c3 mm, slub: fix mismatch between reconstructed freelist depth and cnt 65ede7bd9713 powerpc/idle: Don't corrupt back chain when going idle 5a8c22e7fb66 KVM: PPC: Book3S HV: Make idle_kvm_start_guest() return 0 if it went to guest 6d077c37c464 KVM: PPC: Book3S HV: Fix stack handling in idle_kvm_start_guest() e8735e2e306f ucounts: Fix signal ucount refcounting 1eb825343d63 ucounts: Proper error handling in set_cred_ucounts f7f7e4dbc41c ucounts: Pair inc_rlimit_ucounts with dec_rlimit_ucoutns in commit_creds 32880dcecb51 ucounts: Move get_ucounts from cred_alloc_blank to key_change_session_keyring 04b938ff2d2c net: dsa: mt7530: correct ds->num_ports 4e9e46a70020 audit: fix possible null-pointer dereference in audit_filter_rules b1a34f86b41f blk-cgroup: blk_cgroup_bio_start() should use irq-safe operations on blkg->iostat_cpu 152f35191d12 ASoC: nau8824: Fix headphone vs headset, button-press detection no longer working a60ce083dcbf ASoC: DAPM: Fix missing kctl change notifications 9da68a107d07 ALSA: hda/realtek: Add quirk for Clevo PC50HS 896fc3ab9fc1 ALSA: usb-audio: Provide quirk for Sennheiser GSP670 Headset b77ba1e02345 mm/secretmem: fix NULL page->mapping dereference in page_is_secretmem() abe046ddf311 vfs: check fd has read access in kernel_read_file_from_fd() 3681e4772c78 elfcore: correct reference to CONFIG_UML 9ee4e9ae98f1 mm/mempolicy: do not allow illegal MPOL_F_NUMA_BALANCING | MPOL_LOCAL in mbind() 149958ecd062 userfaultfd: fix a race between writeprotect and exit_mmap() 6de91691768c mm/userfaultfd: selftests: fix memory corruption with thp enabled 0e677ea5b739 ocfs2: mount fails with buffer overflow in strlen fa9b6b6c953e ocfs2: fix data corruption after conversion from inline format 909c8482d8ac tracing: Have all levels of checks prevent recursion 54dc25f4e31e ceph: fix handling of "meta" errors 0ff7b35631ac ceph: skip existing superblocks that are blocklisted or shut down when mounting d832133cf228 can: j1939: j1939_xtp_rx_rts_session_new(): abort TP less than 9 bytes 03ec23e55e3e can: j1939: j1939_xtp_rx_dat_one(): cancel session if receive TP.DT with error length 6e8811707e2d can: j1939: j1939_netdev_start(): fix UAF for rx_kref of j1939_priv fb545be86c53 can: j1939: j1939_tp_rxtimer(): fix errant alert in j1939_tp_rxtimer 013e7890663d can: isotp: isotp_sendmsg(): fix TX buffer concurrent access in isotp_sendmsg() a76abedd2be3 can: isotp: isotp_sendmsg(): add result check for wait_event_interruptible() 1d12d110a820 can: isotp: isotp_sendmsg(): fix return error on FC timeout on TX path 0e5afdc2315b can: peak_pci: peak_pci_remove(): fix UAF 44c353a14375 can: peak_usb: pcan_usb_fd_decode_status(): fix back to ERROR_ACTIVE state notification e18b9f4d62c1 can: rcar_can: fix suspend/resume 113f7a1f3421 net: enetc: make sure all traffic classes can send large frames 284c68cae7e0 net: enetc: fix ethtool counter name for PM0_TERR eff55ddd240f drm/kmb: Enable ADV bridge after modeset c0179dbae96d drm/kmb: Corrected typo in handle_lcd_irq 566ec004ed8b drm/kmb: Disable change of plane parameters 2317b45fb3d2 drm/kmb: Remove clearing DPHY regs 97cfc4b28c4d drm/kmb: Work around for higher system clock 4dbf3d658540 drm/panel: ilitek-ili9881c: Fix sync for Feixin K101-IM2BYL02 panel 3b194affe445 net/mlx5e: IPsec: Fix work queue entry ethernet segment checksum flags ea7a4d6132ce net/mlx5e: IPsec: Fix a misuse of the software parser's fields e867502bc4f6 ice: Add missing E810 device ids 9b76c3fedb24 igc: Update I226_K device ID 3300633367b6 e1000e: Fix packet loss on Tiger Lake and later 95c0a0c5ec88 ptp: Fix possible memory leak in ptp_clock_register() d487413c020f net: stmmac: Fix E2E delay mechanism 9b5a29f0acef net: hns3: disable sriov before unload hclge layer 82a136c15a77 net: hns3: fix vf reset workqueue cannot exit 9ee9191d3384 net: hns3: schedule the polling again when allocation fails 6446be7c9090 net: hns3: add limit ets dwrr bandwidth cannot be 0 dddafeda454a net: hns3: reset DWRR of unused tc to zero 93fa0277ea4e net: hns3: Add configuration of TM QCN error event 3ea0b497a7a2 powerpc/smp: do not decrement idle task preempt count in CPU offline 0666c4cd67b1 net: dsa: Fix an error handling path in 'dsa_switch_parse_ports_of()' 9ef9a287aab5 NIOS2: irqflags: rename a redefined register name 8b523da74a22 net/sched: act_ct: Fix byte count on fragmented packets 872b836a183d net: dsa: lantiq_gswip: fix register definition 57deb5ffd8f6 hamradio: baycom_epp: fix build for UML c74f3c127e6c ipv6: When forwarding count rx stats on the orig netdev 1dda424ef5c4 tcp: md5: Fix overlap between vrf and non-vrf keys 9c281a1006f4 lan78xx: select CRC32 5220cad0e69e sctp: fix transport encap_port update in sctp_vtag_verify ddffcd23d325 netfilter: ipvs: make global sysctl readonly in non-init netns cd3d0282dd3d netfilter: ip6t_rt: fix rt0_hdr parsing in rt_mt6 aabf95dddb45 ice: Print the api_patch as part of the fw.mgmt.api 75ebc3b08bbd ice: fix getting UDP tunnel entry 777682e59840 ice: Avoid crash from unnecessary IDA free 31b4517293bf ice: Fix failure to re-add LAN/RDMA Tx queues 18b4fcfeab6d ASoC: wm8960: Fix clock configuration on slave mode 2b7d598b9651 dma-debug: fix sg checks in debug_dma_map_sg() 90c7c58aa2bd netfilter: nf_tables: skip netdev events generated on netns removal cae7cab804c9 netfilter: xt_IDLETIMER: fix panic that occurs when timer_type has garbage value 78325fcb17f3 KVM: arm64: Release mmap_lock when using VM_SHARED with MTE b372264c66ef KVM: arm64: Fix host stage-2 PGD refcount 649c2e76632d ASoC: cs4341: Add SPI device ID table efdcc26785de ASoC: pcm179x: Add missing entries SPI to device ID table 242ce1c51b69 ASoC: fsl_xcvr: Fix channel swap issue with ARC 41551810285e ASoC: pcm512x: Mend accesses to the I2S_1 and I2S_2 registers c8ecd221db9a powerpc/bpf: Emit stf barrier instruction sequences for BPF_NOSPEC 663e89b7f4cc powerpc/security: Add a helper to query stf_barrier type 23d127cf5e66 powerpc/bpf: Validate branch ranges e680ab91a034 powerpc/lib: Add helper to check if offset is within conditional branch range 6fe5d304ca49 NFSD: Keep existing listeners on portlist error 9ad89fcde18c xtensa: xtfpga: Try software restart before simulating CPU reset 8287678c20b2 xtensa: xtfpga: use CONFIG_USE_OF instead of CONFIG_OF 2602e9cc283a drm/amdgpu: init iommu after amdkfd device init 68771262aab3 drm/amdgpu/display: fix dependencies for DRM_AMD_DC_SI 537a7189df57 r8152: avoid to resubmit rx immediately 7d8cdaffc518 xen/x86: prevent PVH type from getting clobbered 28d084adc22d block: decode QUEUE_FLAG_HCTX_ACTIVE in debugfs output 96a37f6acb6a ARM: dts: at91: sama5d2_som1_ek: disable ISC node by default 470585caf603 arm: dts: vexpress-v2p-ca9: Fix the SMB unit-address 79e3dc32f14f sh: pgtable-3level: fix cast to pointer from integer of different size d3f4c51c2a7f parisc: math-emu: Fix fall-through warnings 4248f37f6cfc block/mq-deadline: Move dd_queued() to fix defined but not used warning (From OE-Core rev: 5c2c7e54bf17d28fe8b918ee8f053748b2b13e01) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-firmware: upgrade 20210919 -> 20211027Alexander Kanavin2021-11-031-2/+2
| | | | | | | | | License-Update: additional firmwares listed (From OE-Core rev: 1ca3fb1c7f11e04bf8d8bf59901ddd60178cb13c) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* recipes: Update github.com urls to use httpsRichard Purdie2021-11-031-1/+1
| | | | | | | | | | | | | | Github has announced there will be no more git:// fetching from their servers: https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git and they're about to start having brownout periods to encourage people to update. This runs the conversion script over OE-Core to update our urls to use https instead of git. (From OE-Core rev: b37b61e9a1e448a34957db9ae39285d21352552e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta: Add explict branch to git SRC_URIsRichard Purdie2021-10-307-7/+7
| | | | | | | | | | | | | There is uncertainty about the default branch name in git going forward. To try and cover the different possible outcomes, add branch names to all git:// and gitsm:// SRC_URI entries. This update was made with the script added to contrib in this patch which aims to help others convert other layers. (From OE-Core rev: b51c405faf6f8c0365f7533bfaf470d79152a463) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* systemtap: address ncurses 6.3 compatibilityAlexander Kanavin2021-10-282-1/+64
| | | | | | | | (From OE-Core rev: 807f9bc8e35c24dba45724c3075f128e117cffad) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* powertop: address ncurses 6.3 compatibilityAlexander Kanavin2021-10-282-2/+55
| | | | | | | | (From OE-Core rev: 0b6e9db98b69d931f965d32a57ca67afea8f4f11) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lttng-tools: upgrade 2.13.0 -> 2.13.1wangmy2021-10-273-270/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2021-10-18 lttng-tools 2.13.1 (National Chocolate Cupcake Day) Fix: ust: app stuck on recv message during UST comm timeout scenario Fix: ust: UST communication can return -EAGAIN Fix: ust: segfault on lttng start on filter bytecode copy Fix: sessiond: previously created channel cannot be enabled Build fix: Missing message in LTTNG_DEPRECATED invocation Fix: notification-thread: handling event from a removed tracer event src include: add missing "extern" include: remove spurious spaces in condition/session-rotation.h tests: fix header of regression/ust/getcpu-override/run-getcpu-override fix: wrong define used for GCC version check Fix: userspace-probe: unreported error on string copy error Fix: userspace-probe: truncating binary path for SDT Fix: lttng: add-trigger: don't provide a default event rule type Fix: statements with side-effects in assert statements Fix: lttng_trace_archive_location_serialize is called on freed memory Fix: sessiond: ust session is inactive during ust_app_global_update Fix: common: error query for trigger action protocol error Fix: common: un-hide two rate policy functions Fix: include: remove unneeded declaration of lttng_session_descriptor_get_session_name Fix: Tests: race condition in test_ns_contexts_change Fix: Tests: race condition in test_event_tracker Fix: man: lttng-rotate: trace file count/size limitation does not apply Fix: runas: less-than-zero comparison of an unsigned value Fix: runas: supplementary groups are ignored on lttng save Docs: lttng-event-rule(7): --exclude does not exist, use --exclude-name sessiond: logging typo: {triger, triggger} -> trigger Fix: lttng: free sessions in cmd_destroy Fix: lttng: free domains and channels in get_session_stats_str 0001-Fix-Tests-race-condition-in-test_event_tracker.patch 0002-Fix-Tests-race-condition-in-test_ns_contexts_change.patch are removed since they're included in 2.13.1 (From OE-Core rev: 9541cac079b0fa4961328f610e3df3ccf5316cea) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.10: update to v5.10.75Bruce Ashfield2021-10-273-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 3a9842b42e42 Linux 5.10.75 3e2873652163 net: dsa: mv88e6xxx: don't use PHY_DETECT on internal PHY's 3593fa147c86 ionic: don't remove netdev->dev_addr when syncing uc list f33890d9bb59 net: mscc: ocelot: warn when a PTP IRQ is raised for an unknown skb 9c546af181bc nfp: flow_offload: move flow_indr_dev_register from app init to app start 6da9af2d2531 r8152: select CRC32 and CRYPTO/CRYPTO_HASH/CRYPTO_SHA256 ecfd4fa15b06 qed: Fix missing error code in qed_slowpath_start() 51f6e72ca656 mqprio: Correct stats in mqprio_dump_class_stats(). fdaff7f9e806 platform/x86: intel_scu_ipc: Fix busy loop expiry time 057ee6843bbb acpi/arm64: fix next_platform_timer() section mismatch error c6b2400095ba drm/msm/dsi: fix off by one in dsi_bus_clk_enable error handling 2c5658717428 drm/msm/dsi: Fix an error code in msm_dsi_modeset_init() b28586fb04f3 drm/msm/a6xx: Track current ctx by seqno abd11864159b drm/msm/mdp5: fix cursor-related warnings 91a340768b01 drm/msm: Fix null pointer dereference on pointer edp a7b45024f66f drm/edid: In connector_bad_edid() cap num_of_ext by num_blocks read d0f0e1710397 drm/panel: olimex-lcd-olinuxino: select CRC32 a4a37e6516f8 spi: bcm-qspi: clear MSPI spifie interrupt during probe d9428f08e1c3 platform/mellanox: mlxreg-io: Fix read access of n-bytes size attributes c216cebdd245 platform/mellanox: mlxreg-io: Fix argument base in kstrtou32() call e59d839743b5 mlxsw: thermal: Fix out-of-bounds memory accesses 7eef482db728 ata: ahci_platform: fix null-ptr-deref in ahci_platform_enable_regulators() 116932c0e45e pata_legacy: fix a couple uninitialized variable bugs 50cb95487c26 NFC: digital: fix possible memory leak in digital_in_send_sdd_req() 3f2960b39f22 NFC: digital: fix possible memory leak in digital_tg_listen_mdaa() 2f21f06a5e7a nfc: fix error handling of nfc_proto_register() ba39f55952a2 vhost-vdpa: Fix the wrong input in config_cb 84e0f2fc662e ethernet: s2io: fix setting mac address during resume e19c10d6e07c net: encx24j600: check error in devm_regmap_init_encx24j600 f2e1de075018 net: dsa: microchip: Added the condition for scheduling ksz_mib_read_work 9053c5b4594c net: stmmac: fix get_hw_feature() on old hardware 12da46cb6a90 net/mlx5e: Mutually exclude RX-FCS and RX-port-timestamp 4f7bddf8c5c0 net/mlx5e: Fix memory leak in mlx5_core_destroy_cq() error path afb0c67dfdb5 net: korina: select CRC32 33ca85010511 net: arc: select CRC32 17a027aafd52 gpio: pca953x: Improve bias setting d84a69ac410f sctp: account stream padding length for reconf chunk 6fecdb5b54a5 nvme-pci: Fix abort command id 2d937cc12c14 ARM: dts: bcm2711-rpi-4-b: Fix pcie0's unit address formatting 6e6082250b53 ARM: dts: bcm2711-rpi-4-b: fix sd_io_1v8_reg regulator states 48613e687e28 ARM: dts: bcm2711: fix MDIO #address- and #size-cells 6e6e3018d3ce ARM: dts: bcm2711-rpi-4-b: Fix usb's unit address 76644f94595b tee: optee: Fix missing devices unregister during optee_remove 07f885682486 iio: dac: ti-dac5571: fix an error code in probe() 6c0024bcaadc iio: ssp_sensors: fix error code in ssp_print_mcu_debug() 0fbc3cf7dd9a iio: ssp_sensors: add more range checking in ssp_parse_dataframe() abe5b13dd959 iio: adc: max1027: Fix the number of max1X31 channels 41e84a4f25b6 iio: light: opt3001: Fixed timeout error when 0 lux e811506f609a iio: mtk-auxadc: fix case IIO_CHAN_INFO_PROCESSED 1671cfd31b66 iio: adc: max1027: Fix wrong shift with 12-bit devices f931076d32b6 iio: adc128s052: Fix the error handling path of 'adc128_probe()' 4425d059aa2e iio: adc: ad7793: Fix IRQ flag d078043a1775 iio: adc: ad7780: Fix IRQ flag a8177f0576fa iio: adc: ad7192: Add IRQ flag be8ef91d6166 driver core: Reject pointless SYNC_STATE_ONLY device links d5f13bbb5104 drivers: bus: simple-pm-bus: Add support for probing simple bus only devices b45923f66eb6 iio: adc: aspeed: set driver data when adc probe. ea947267eb6f powerpc/xive: Discard disabled interrupts in get_irqchip_state() 9e46bdfb55a3 x86/Kconfig: Do not enable AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT automatically 57e48886401b nvmem: Fix shift-out-of-bound (UBSAN) with byte size cells a7bd0dd3f2ed EDAC/armada-xp: Fix output of uncorrectable error counter 92e6e08ca2b0 virtio: write back F_VERSION_1 before validate 86e3ad8b759d misc: fastrpc: Add missing lock before accessing find_vma() 3f0ca245a834 USB: serial: option: add prod. id for Quectel EG91 ecad614b0c68 USB: serial: option: add Telit LE910Cx composition 0x1204 bf26bc72dc59 USB: serial: option: add Quectel EC200S-CN module support d4b77900cffe USB: serial: qcserial: add EM9191 QDL support 3147f5721588 Input: xpad - add support for another USB ID of Nacon GC-100 9d89e2871167 usb: musb: dsps: Fix the probe error path 3b4275140142 efi: Change down_interruptible() in virt_efi_reset_system() to down_trylock() 5100dc4489ab efi/cper: use stack buffer for error record decoding 2c5dd2a8af77 cb710: avoid NULL pointer subtraction d40e193abd07 xhci: Enable trust tx length quirk for Fresco FL11 USB controller dec944bb7079 xhci: Fix command ring pointer corruption while aborting a command dc3e0a20dbb9 xhci: guard accesses to ep_state in xhci_endpoint_reset() 0ee66290f006 USB: xhci: dbc: fix tty registration race 9f0d6c781cb5 mei: me: add Ice Lake-N device id. e4f7171c2395 x86/resctrl: Free the ctrlval arrays when domain_setup_mon_state() fails 0e32a2b85c7d btrfs: fix abort logic in btrfs_replace_file_extents 52924879ed45 btrfs: update refs for any root except tree log roots 352349aa4948 btrfs: check for error when looking up inode during dir entry replay 4ed68471bc37 btrfs: deal with errors when adding inode reference during log replay 95d3aba5febe btrfs: deal with errors when replaying dir entry during log replay 206868a5b6c1 btrfs: unlock newly allocated extent buffer after error e7e3ed5c92b6 drm/msm: Avoid potential overflow in timeout_to_jiffies() a31c33aa80a5 arm64/hugetlb: fix CMA gigantic page order for non-4K PAGE_SIZE 0c97008859ca csky: Fixup regs.sr broken in ptrace 5dab6e8f141a csky: don't let sigreturn play with priveleged bits of status register e3c37135c9ca clk: socfpga: agilex: fix duplicate s2f_user0_clk faba7916cdc0 s390: fix strrchr() implementation 7ef43c0f68fb nds32/ftrace: Fix Error: invalid operands (*UND* and *UND* sections) for `^' c3bf276fd7c8 ALSA: hda/realtek: Fix the mic type detection issue for ASUS G551JW 1099953b32c6 ALSA: hda/realtek: Fix for quirk to enable speaker output on the Lenovo 13s Gen2 554a5027f536 ALSA: hda/realtek: Add quirk for TongFang PHxTxX1 0fa256509b9f ALSA: hda/realtek - ALC236 headset MIC recording issue 1e10c6bf15d2 ALSA: hda/realtek: Add quirk for Clevo X170KM-G 8a5f01f4b01c ALSA: hda/realtek: Complete partial device name to avoid ambiguity c6e5290e6cc1 ALSA: hda - Enable headphone mic on Dell Latitude laptops with ALC3254 9bb1659ac594 ALSA: hda/realtek: Enable 4-speaker output for Dell Precision 5560 laptop 7680631ac7ab ALSA: seq: Fix a potential UAF by wrong private_free call order 4aab156d302c ALSA: pcm: Workaround for a wrong offset in SYNC_PTR compat ioctl f077d699c1d2 ALSA: usb-audio: Add quirk for VF0770 (From OE-Core rev: 08857198b40617d53701ac46d95d6d60dfbdb4af) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.14: update to v5.14.14Bruce Ashfield2021-10-273-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.14 to the latest korg -stable release that comprises the following commits: fe024e004fa3 Linux 5.14.14 9513ce07f05b ionic: don't remove netdev->dev_addr when syncing uc list 6b55eadb0b1d net: dsa: felix: break at first CPU port during init and teardown 9d2cec10ea9e net: mscc: ocelot: cross-check the sequence id from the timestamp FIFO with the skb PTP header 23a6801c0585 net: mscc: ocelot: deny TX timestamping of non-PTP packets de32ef6d79dd net: mscc: ocelot: warn when a PTP IRQ is raised for an unknown skb 3b4241817601 net: mscc: ocelot: avoid overflowing the PTP timestamp FIFO 34fd7a2e375a net: mscc: ocelot: make use of all 63 PTP timestamp identifiers f7697d70d76b nfp: flow_offload: move flow_indr_dev_register from app init to app start 9d162f541ba3 block/rnbd-clt-sysfs: fix a couple uninitialized variable bugs 61616be89997 ice: fix locking for Tx timestamp tracking flush 99eef638a327 r8152: select CRC32 and CRYPTO/CRYPTO_HASH/CRYPTO_SHA256 821dca5635e2 qed: Fix missing error code in qed_slowpath_start() 1a4554e94f0d mptcp: fix possible stall on recvmsg() 4fd74935619f mqprio: Correct stats in mqprio_dump_class_stats(). 395218b5c7e0 platform/x86: intel_scu_ipc: Fix busy loop expiry time b4fb645a7412 acpi/arm64: fix next_platform_timer() section mismatch error 6302ce26eceb drm/msm/dsi: fix off by one in dsi_bus_clk_enable error handling 3c403c4c0580 drm/msm/dsi: Fix an error code in msm_dsi_modeset_init() f1457eea4ccd drm/msm/dsi: dsi_phy_14nm: Take ready-bit into account in poll_for_ready d59e44e7821a drm/msm/a3xx: fix error handling in a3xx_gpu_init() 3962d626eb3e drm/msm/a4xx: fix error handling in a4xx_gpu_init() 20cfa89cd7e1 drm/msm/a6xx: Track current ctx by seqno 00ba7a3951f4 drm/msm/submit: fix overflow check on 64-bit architectures 2d28dafbc88e drm/msm/mdp5: fix cursor-related warnings 46c8ddede027 drm/msm: Fix null pointer dereference on pointer edp 09f3946bb452 drm/edid: In connector_bad_edid() cap num_of_ext by num_blocks read 8b0462c25eff drm/panel: olimex-lcd-olinuxino: select CRC32 dc4f4acadabf spi: bcm-qspi: clear MSPI spifie interrupt during probe 2a51f25a7ed9 spi: spidev: Add SPI ID table b461c8553474 platform/mellanox: mlxreg-io: Fix read access of n-bytes size attributes 1da4f33681b5 platform/mellanox: mlxreg-io: Fix argument base in kstrtou32() call df8e58716afb mlxsw: thermal: Fix out-of-bounds memory accesses 2d14f8a9f1b7 ata: ahci_platform: fix null-ptr-deref in ahci_platform_enable_regulators() 55b033b82dde pata_legacy: fix a couple uninitialized variable bugs 6432d7f1d1c3 NFC: digital: fix possible memory leak in digital_in_send_sdd_req() 564249219e5b NFC: digital: fix possible memory leak in digital_tg_listen_mdaa() e005ba2235b6 nfc: fix error handling of nfc_proto_register() 0b84e32840b7 vhost-vdpa: Fix the wrong input in config_cb 2d902349653c ethernet: s2io: fix setting mac address during resume 322c0e534963 net: encx24j600: check error in devm_regmap_init_encx24j600 38eaccdcc811 net: dsa: fix spurious error message when unoffloaded port leaves bridge 383239a33cf2 net: dsa: microchip: Added the condition for scheduling ksz_mib_read_work b1752d2f4fc2 net: dsa: mv88e6xxx: don't use PHY_DETECT on internal PHY's f71c73a1275c net: phy: Do not shutdown PHYs in READY state 568feb737f5e net: stmmac: fix get_hw_feature() on old hardware 947442b62090 net/mlx5e: Switchdev representors are not vlan challenged 2f306483d547 net/mlx5e: Mutually exclude RX-FCS and RX-port-timestamp ed8aafea4fec net/mlx5e: Fix memory leak in mlx5_core_destroy_cq() error path 0d9ddf515cde net/smc: improved fix wait on already cleared link 844b62f61709 net: korina: select CRC32 af9a33bfff34 net: arc: select CRC32 81099749174e gpio: pca953x: Improve bias setting 9025c92a6cc7 gpio: 74x164: Add SPI device ID table 4f0bc44b9191 sctp: account stream padding length for reconf chunk 5ccd69157a9a nvme-pci: Fix abort command id 9036542c2bef clk: renesas: rzg2l: Fix clk status function abab28387755 ARM: dts: bcm2711-rpi-4-b: Fix pcie0's unit address formatting 264e77ee3987 ARM: dts: bcm2711-rpi-4-b: fix sd_io_1v8_reg regulator states 06560ba731e2 firmware: arm_ffa: Add missing remove callback to ffa_bus_type b2da1ae1941d firmware: arm_ffa: Fix __ffa_devices_unregister a0dfb710735d ARM: dts: bcm2711: fix MDIO #address- and #size-cells 83fe15846c48 ARM: dts: bcm283x: Fix VEC address for BCM2711 2a7374dd882d ARM: dts: bcm2711-rpi-4-b: Fix usb's unit address a009758b28f3 tee: optee: Fix missing devices unregister during optee_remove 362d067a231d tracing: Fix missing osnoise tracer on max_latency ce5c6dd07473 iio: dac: ti-dac5571: fix an error code in probe() 8d3fd8fdf2cb fpga: ice40-spi: Add SPI device ID table 645e2c994b6a eeprom: at25: Add SPI ID table 362fe6c8d5ab eeprom: 93xx46: fix MODULE_DEVICE_TABLE 42c587653cb7 eeprom: 93xx46: Add SPI device ID table 1a5ba478c41c Input: resistive-adc-touch - fix division by zero error on z1 == 0 6ad4dc9602fa iio: ssp_sensors: fix error code in ssp_print_mcu_debug() af8aae7a1257 iio: ssp_sensors: add more range checking in ssp_parse_dataframe() 3903e5404214 iio: adc: max1027: Fix the number of max1X31 channels 43e399d862ef iio: accel: fxls8962af: return IRQ_HANDLED when fifo is flushed 56e3bcdf6b9b iio: light: opt3001: Fixed timeout error when 0 lux 07415de29ded iio: mtk-auxadc: fix case IIO_CHAN_INFO_PROCESSED 04e03b907022 iio: adis16475: fix deadlock on frequency set 06a6230a5683 iio: adc: max1027: Fix wrong shift with 12-bit devices 45b54f7f6ae7 iio: adc128s052: Fix the error handling path of 'adc128_probe()' 2c675f25eb35 iio: adis16480: fix devices that do not support sleep mode 696eef458c31 iio: adc: ad7793: Fix IRQ flag c9e8c11b1a84 iio: adc: ad7780: Fix IRQ flag d8f72ea6ccfd iio: adc: ad7192: Add IRQ flag 10dea2bc52e4 driver core: Reject pointless SYNC_STATE_ONLY device links e733c7a6f754 drivers: bus: simple-pm-bus: Add support for probing simple bus only devices 11d6dbd807aa iio: adc: aspeed: set driver data when adc probe. 74c078866ff4 powerpc/xive: Discard disabled interrupts in get_irqchip_state() 202975c570d2 x86/Kconfig: Do not enable AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT automatically 128f38289215 x86/fpu: Mask out the invalid MXCSR bits properly bce9adf0b5ea Revert "virtio-blk: Add validation for block size in config space" f2935e790419 virtio-blk: remove unneeded "likely" statements 0e822e5413da nvmem: Fix shift-out-of-bound (UBSAN) with byte size cells eb1e9f2ec683 EDAC/armada-xp: Fix output of uncorrectable error counter 2c2e626d9ba4 virtio: write back F_VERSION_1 before validate d22592f1fd8d misc: fastrpc: Add missing lock before accessing find_vma() 6df4c42e0b60 USB: serial: option: add prod. id for Quectel EG91 b39adce3afe1 USB: serial: option: add Telit LE910Cx composition 0x1204 8372fb17ebf2 USB: serial: option: add Quectel EC200S-CN module support 1e2c4a11a59b USB: serial: qcserial: add EM9191 QDL support 96703298fc51 Input: xpad - add support for another USB ID of Nacon GC-100 ff9249aab398 usb: musb: dsps: Fix the probe error path 85c6f477b357 efi: Change down_interruptible() in virt_efi_reset_system() to down_trylock() 3b7951e32193 efi/cper: use stack buffer for error record decoding 746b00a48688 cb710: avoid NULL pointer subtraction 2b6c75bf9202 xhci: Enable trust tx length quirk for Fresco FL11 USB controller e54abefe703a xhci: Fix command ring pointer corruption while aborting a command fa3093d37cce xhci: add quirk for host controllers that don't update endpoint DCS eacfdec26656 xhci: guard accesses to ep_state in xhci_endpoint_reset() db96c1d87c95 USB: xhci: dbc: fix tty registration race 7c0af62f11c3 mei: hbm: drop hbm responses on early shutdown fe87a580929e mei: me: add Ice Lake-N device id. ce8f1faa8140 x86/resctrl: Free the ctrlval arrays when domain_setup_mon_state() fails 0294b7ccb00b module: fix clang CFI with MODULE_UNLOAD=n 0e309e1152fc btrfs: fix abort logic in btrfs_replace_file_extents f86531a3115f btrfs: update refs for any root except tree log roots 5dbc0d798074 btrfs: check for error when looking up inode during dir entry replay 439cce2df925 btrfs: deal with errors when adding inode reference during log replay 790dbfcd43a0 btrfs: deal with errors when replaying dir entry during log replay 0adda9f173f1 btrfs: unlock newly allocated extent buffer after error 697ee8c3d3fa drm/msm: Avoid potential overflow in timeout_to_jiffies() 2479f72f5328 drm/msm: Do not run snapshot on non-DPU devices 95a9523afb3d drm/nouveau/fifo: Reinstate the correct engine bit programming 0af9c042cd6e arm64/hugetlb: fix CMA gigantic page order for non-4K PAGE_SIZE f66b6d61f2e3 drm/fbdev: Clamp fbdev surface size if too large 2c7820141702 csky: Fixup regs.sr broken in ptrace f8e8e5448c77 csky: don't let sigreturn play with priveleged bits of status register 46f067744387 clk: socfpga: agilex: fix duplicate s2f_user0_clk d429630cde94 s390: fix strrchr() implementation 8ca9745efe35 dm rq: don't queue request to blk-mq during DM suspend d856f5d13d65 ACPI: PM: Include alternate AMDI0005 id in special behaviour 6e506f07c5b5 dm: fix mempool NULL pointer race when completing IO 594a97f7617b nds32/ftrace: Fix Error: invalid operands (*UND* and *UND* sections) for `^' 24262c6439c6 mtd: rawnand: qcom: Update code word value for raw read f7744bdec09f spi: atmel: Fix PDC transfer setup bug 26a88eedfc88 platform/x86: amd-pmc: Add alternative acpi id for PMC controller 1a707ec090e9 platform/x86: gigabyte-wmi: add support for B550 AORUS ELITE AX V2 52d44bd028c1 ALSA: hda/realtek: Fix the mic type detection issue for ASUS G551JW 8c5628cbb26e ALSA: hda/realtek: Fix for quirk to enable speaker output on the Lenovo 13s Gen2 9a13d0f9c3d9 ALSA: hda/realtek: Add quirk for TongFang PHxTxX1 f8d3c17e1c37 ALSA: hda/realtek - ALC236 headset MIC recording issue 1f923b81f49e ALSA: hda/realtek: Add quirk for Clevo X170KM-G 07015c2e0f35 ALSA: hda/realtek: Complete partial device name to avoid ambiguity a2fc31b3699a ALSA: hda - Enable headphone mic on Dell Latitude laptops with ALC3254 72653bfc9b9d ALSA: hda/realtek: Enable 4-speaker output for Dell Precision 5560 laptop 14137ae740cb ALSA: seq: Fix a potential UAF by wrong private_free call order dfd5633ae775 ALSA: usb-audio: Fix a missing error check in scarlett gen2 mixer 1a98c3c68795 ALSA: pcm: Workaround for a wrong offset in SYNC_PTR compat ioctl ca3dccb96511 ALSA: usb-audio: Add quirk for VF0770 (From OE-Core rev: 3471c208fe87e80e4e8d54bc3e24d8ea9c3f6b2a) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.14: common-pc: enable CONFIG_ATA_PIIX as built-inBruce Ashfield2021-10-273-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | Jacob Kroon reported that generic/custom x86 kernels would no longer boot out of the box since the IDE options were removed and the PATA migration happened. To re-enable that use case, we grab the following kernel configuration change: common-pc*/qemux86*: set CONFIG_ATA_PIIX as built-in Since the IDE options were made obselete in the kernel, and the PATA driver is the replacement, we haven't had one of the commonly used qemu boot devices enabled in our kernel by default. We change CONFIG_ATA_PIIX to built-in, to re-enable use cases that boot from default qemu 'hardware'. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Reported-by: Jacob Kroon <jacob.kroon@gmail.com> (From OE-Core rev: 341707513a7c3cfcd797f6631b8daf09ddf5bae8) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.10: update to v5.10.74Bruce Ashfield2021-10-273-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 77434fe5a077 Linux 5.10.74 42b49f012b6a hwmon: (pmbus/ibm-cffps) max_power_out swap changes bb893f075431 sched: Always inline is_percpu_thread() bdae2a083436 perf/core: fix userpage->time_enabled of inactive events 57c7ca3d5592 scsi: virtio_scsi: Fix spelling mistake "Unsupport" -> "Unsupported" d993d1e1c411 scsi: ses: Fix unsigned comparison with less than zero 621ddffb70db drm/amdgpu: fix gart.bo pin_count leak a5ba615fbeb3 net: sun: SUNVNET_COMMON should depend on INET db868b45324d vboxfs: fix broken legacy mount signature checking 42c871d38e3d mac80211: check return value of rhashtable_init bda06aff03a1 net: prevent user from passing illegal stab size 3d68c7b0ab5b hwmon: (ltc2947) Properly handle errors when looking for the external clock 194e8a4f0acd m68k: Handle arrivals of multiple signals correctly 977aee58142a mac80211: Drop frames from invalid MAC address in ad-hoc mode 9ec9a975ea37 netfilter: nf_nat_masquerade: defer conntrack walk to work queue 5182d6db80bb netfilter: nf_nat_masquerade: make async masq_inet6_event handling generic bcb647c1e15d ASoC: SOF: loader: release_firmware() on load failure to avoid batching f6952b1e22c2 HID: wacom: Add new Intuos BT (CTL-4100WL/CTL-6100WL) device IDs ddc4ba737bcb netfilter: ip6_tables: zero-initialize fragment offset ddf026d6ae9a HID: apple: Fix logical maximum and usage maximum of Magic Keyboard JIS 0bcfa99e8fae ASoC: Intel: sof_sdw: tag SoundWire BEs as non-atomic 14cbfeeee41b ext4: correct the error path of ext4_write_inline_data_end() d7a15e1e4fd7 ext4: check and update i_disksize properly (From OE-Core rev: 8e863e9c57fc26e4158b6c10b04931976c54efb8) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.14: update to v5.14.13Bruce Ashfield2021-10-273-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.14 to the latest korg -stable release that comprises the following commits: b9ed05407395 Linux 5.14.13 d7c187ab28f6 hwmon: (pmbus/ibm-cffps) max_power_out swap changes e798dcd960a3 io_uring: kill fasync 15571bb5bb64 sched: Always inline is_percpu_thread() 643c519c36dc perf/core: fix userpage->time_enabled of inactive events 15f69a666166 scsi: qla2xxx: Fix excessive messages during device logout cc07ecaf9a9c scsi: virtio_scsi: Fix spelling mistake "Unsupport" -> "Unsupported" 21c2e89e7caa scsi: ses: Fix unsigned comparison with less than zero 18d1c5ea3798 drm/amdgpu: fix gart.bo pin_count leak 048389b85643 net: sun: SUNVNET_COMMON should depend on INET e36444b36ff0 vboxfs: fix broken legacy mount signature checking 5c85a825615a net: bgmac-platform: handle mac-address deferral af13e6176b25 mac80211: check return value of rhashtable_init ebb25ff84341 net: prevent user from passing illegal stab size 998e080844c9 hwmon: (ltc2947) Properly handle errors when looking for the external clock 1d0996b0d2b3 m68k: Handle arrivals of multiple signals correctly 4d38fb418f71 pinctrl: qcom: sc7280: Add PM suspend callbacks 9a8a181ed97e mac80211: Drop frames from invalid MAC address in ad-hoc mode a3ea231aa3f0 netfilter: nf_nat_masquerade: defer conntrack walk to work queue 36f822c301c7 netfilter: nf_nat_masquerade: make async masq_inet6_event handling generic 6c3e84af3944 KVM: arm64: nvhe: Fix missing FORCE for hyp-reloc.S build rule 1fd0252cad6b ASoC: SOF: loader: release_firmware() on load failure to avoid batching 2dd40af15d19 HID: wacom: Add new Intuos BT (CTL-4100WL/CTL-6100WL) device IDs 95cb145dcfc8 netfilter: ip6_tables: zero-initialize fragment offset f117530a10e0 HID: apple: Fix logical maximum and usage maximum of Magic Keyboard JIS 13e6abfa0b1e ALSA: usb-audio: Unify mixer resume and reset_resume procedure cb315326664d ALSA: oxfw: fix transmission method for Loud models based on OXFW971 3c13d6e6fc56 ASoC: Intel: sof_sdw: tag SoundWire BEs as non-atomic 7c2893a12fc0 ext4: correct the error path of ext4_write_inline_data_end() 501f3491d99e ext4: check and update i_disksize properly (From OE-Core rev: a1028453439db361d5f77fa220d77c49bc7a1f82) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.14: update to v5.14.12Bruce Ashfield2021-10-273-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.14 to the latest korg -stable release that comprises the following commits: 325225e2f9fa Linux 5.14.12 58f0e59efa34 dsa: tag_dsa: Fix mask for trunked packets 5dc24f3e0841 x86/hpet: Use another crystalball to evaluate HPET usability 4e9ec1c65da9 x86/entry: Clear X86_FEATURE_SMAP when CONFIG_X86_SMAP=n 2ba3e3026f4f x86/entry: Correct reference to intended CONFIG_64_BIT 0723d4f8b179 x86/fpu: Restore the masking out of reserved MXCSR bits 44976b5cb6af x86/sev: Return an error on a returned non-zero SW_EXITINFO1[31:0] 6665c1c5770f x86/Kconfig: Correct reference to MWINCHIP3D 1d4092c10125 x86/platform/olpc: Correct ifdef symbol to intended CONFIG_OLPC_XO15_SCI 8ba6e4551011 pseries/eeh: Fix the kdump kernel crash during eeh_pseries_init da0cb12f1983 powerpc/32s: Fix kuap_kernel_restore() d7a8e38999fb powerpc/64s: Fix unrecoverable MCE calling async handler from NMI 22ee1f15a72e powerpc/traps: do not enable irqs in _exception c835b3d1d636 powerpc/64s: fix program check interrupt emergency stack path 6b77166ffee7 powerpc/bpf ppc32: Fix BPF_SUB when imm == 0x80000000 b8601d47e87a powerpc/bpf ppc32: Do not emit zero extend instruction for 64-bit BPF_END 491976e521c1 powerpc/bpf ppc32: Fix JMP32_JSET_K 9a3e91f94473 powerpc/bpf ppc32: Fix ALU32 BPF_ARSH operation 096d4c941f0e powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 2d7781883b3e powerpc/bpf: Fix BPF_MOD when imm == 1 a7ce57ca9407 objtool: Make .altinstructions section entry size consistent 039a68957f81 objtool: Remove reloc symbol type checks in get_alt_entry() 1642f51ac0d4 scsi: iscsi: Fix iscsi_task use after free 412754da783d RISC-V: Include clone3() on rv32 cf63b49349cc i2c: mlxcpld: Modify register setting for 400KHz frequency 3655a1934519 i2c: mlxcpld: Fix criteria for frequency setting d590a410e472 bpf, s390: Fix potential memory leak about jit_data f344ad3060c4 riscv/vdso: make arch_setup_additional_pages wait for mmap_sem for write killable b8b60c1139c7 riscv/vdso: Move vdso data page up front 309fd6f1e7cf riscv/vdso: Refactor asm/vdso.h ff26f96fe0a2 RISC-V: Fix VDSO build for !MMU 363128071346 riscv: explicitly use symbol offsets for VDSO 26e7025ef25a i2c: mediatek: Add OFFSET_EXT_CONF setting back 90f1077c9184 i2c: acpi: fix resource leak in reconfiguration device addition d40c4da7318f powerpc/iommu: Report the correct most efficient DMA mask for PCI devices 272b85c2fdb2 net: prefer socket bound to interface when not in VRF 8d2a1e7fb90c iavf: fix double unlock of crit_lock 75099439209d i40e: Fix freeing of uninitialized misc IRQ vector d6db5bcd1817 i40e: fix endless loop under rtnl 1fad5d7f75f7 gve: report 64bit tx_bytes counter from gve_handle_report_stats() bcf4f5e4d33d gve: fix gve_get_stats() f4479f3bc861 rtnetlink: fix if_nlmsg_stats_size() under estimation f5cfed82e0f3 gve: Properly handle errors in gve_assign_qpl 2044137a268a gve: Avoid freeing NULL pointer 3e8df2cada21 gve: Correct available tx qpl check bb23ade18ad7 net: stmmac: trigger PCS EEE to turn off on link down 940ee87907f0 net: pcs: xpcs: fix incorrect steps on disable EEE 88c3610045ca drm/nouveau/debugfs: fix file release memory leak 0b4e9fc14973 drm/nouveau/kms/nv50-: fix file release memory leak 548f2ff8ea5e drm/nouveau: avoid a use-after-free when BO init fails 23514c752f9b video: fbdev: gbefb: Only instantiate device when built for IP32 ae7a72cd325c drm/panel: abt-y030xx067a: yellow tint fix e6b90dcda29b drm/nouveau/fifo/ga102: initialise chid on return from channel creation 8228b3b3b5a2 drm/sun4i: dw-hdmi: Fix HDMI PHY clock setup ad0fca5a28b3 bus: ti-sysc: Use CLKDM_NOAUTO for dra7 dcan1 for errata i893 37e2d7fe11ae perf jevents: Free the sys_event_tables list after processing entries 72e9a1bf9b72 drm/amdgpu: handle the case of pci_channel_io_frozen only in amdgpu_pci_resume 7e5ce6029b62 drm/amdkfd: fix a potential ttm->sg memory leak 50002489a20c ARM: defconfig: gemini: Restore framebuffer 942bde2caec2 netlink: annotate data races around nlk->bound 464be37f127b net: pcs: xpcs: fix incorrect CL37 AN sequence 6594158f24e1 net: sfp: Fix typo in state machine debug string 7a1c1af34104 net/sched: sch_taprio: properly cancel timer from taprio_destroy() ba07883c780f net: bridge: fix under estimation in br_get_linkxstats_size() df7983fdbc83 net: bridge: use nla_total_size_64bit() in br_get_linkxstats_size() 47afb35c4f87 afs: Fix afs_launder_page() to set correct start file position 2eb0a5440068 netfs: Fix READ/WRITE confusion when calling iov_iter_xarray() cd4dcab5d20c drm/i915/bdb: Fix version check 4e7c20e5166e drm/i915/tc: Fix TypeC port init/resume time sanitization 185e4eeac58e drm/i915/jsl: Add W/A 1409054076 for JSL 8eb67e815d5e drm/i915/audio: Use BIOS provided value for RKL HDA link a23d12eeb1ad ARM: imx6: disable the GIC CPU interface before calling stby-poweroff sequence 94d64d44e41a dt-bindings: drm/bridge: ti-sn65dsi86: Fix reg value b07494f81da2 arm64: dts: ls1028a: fix eSDHC2 node 26a949f2335b arm64: dts: imx8mm-kontron-n801x-som: do not allow to switch off buck2 4350e1f61930 arm64: dts: imx8: change the spi-nor tx 672285df5e0a ARM: dts: imx: change the spi-nor tx baa59a36ff1b ptp_pch: Load module automatically if ID matches 9b5198c1e041 powerpc/fsl/dts: Fix phy-connection-type for fm1mac3 6d1e04d8f044 netfilter: nf_tables: honor NLM_F_CREATE and NLM_F_EXCL in event notification 96117e85b83b MIPS: Revert "add support for buggy MT7621S core detection" 8efe947ea1ea net: stmmac: dwmac-rk: Fix ethernet on rk3399 based devices f1325381177c net: mscc: ocelot: fix VCAP filters remaining active after being deleted fb58cd799174 net_sched: fix NULL deref in fifo_set_limit() 9e8e7504e098 libbpf: Fix memory leak in strset 064c2616234a phy: mdio: fix memory leak 8b6cd17219c3 libbpf: Fix segfault in light skeleton for objects without BTF 2ca78aa65bc1 net/mlx5e: Fix the presented RQ index in PTP stats c0b1de56a40e net/mlx5: Fix setting number of EQs of SFs 5ef55400217f net/mlx5: Fix length of irq_index in chars f1c4eaf49d5d net/mlx5: Avoid generating event after PPS out in Real time mode 4f3369d3e5e8 net/mlx5: Force round second at 1PPS out start time ea0b8ffff565 net/mlx5: E-Switch, Fix double allocation of acl flow counter d7954cedb9e6 net/mlx5e: Keep the value for maximum number of channels in-sync 35460565138f net/mlx5e: IPSEC RX, enable checksum complete 3a1ac1e368be bpf: Fix integer overflow in prealloc_elems_and_freelist() 0385744b240a soc: ti: omap-prm: Fix external abort for am335x pruss f419febd396e bpf, arm: Fix register clobbering in div/mod implementation 34362a65c248 netfilter: nf_tables: reverse order in rule replacement expansion 0b1891aa588a netfilter: nf_tables: add position handle in event notification 3ece5c4bf601 netfilter: conntrack: fix boot failure with nf_conntrack.enable_hooks=1 9039a8596370 iwlwifi: pcie: add configuration of a Wi-Fi adapter on Dell XPS 15 8979fa2c43b0 xtensa: call irqchip_init only when CONFIG_USE_OF is selected c4a9836c9dd6 xtensa: use CONFIG_USE_OF instead of CONFIG_OF 5be9d1335749 arm64: dts: qcom: pm8150: use qcom,pm8998-pon binding 1c186680c89f ath5k: fix building with LEDS=m 436f61a89655 PCI: hv: Fix sleep while in non-sleep context when removing child devices from the bus 11fc74ddd63a ARM: dts: imx6qdl-pico: Fix Ethernet support 871b9129ca6d ARM: dts: imx: Fix USB host power regulator polarity on M53Menlo d5cbf524d90c ARM: dts: imx: Add missing pinctrl-names for panel on M53Menlo 64a64a031fc1 soc: qcom: mdt_loader: Drop PT_LOAD check on hash segment 432d8185e9ff iwlwifi: mvm: Fix possible NULL dereference 306b7fe278ac ARM: at91: pm: do not panic if ram controllers are not enabled 55f37cc6ee05 Revert "arm64: dts: qcom: sc7280: Fixup the cpufreq node" 5ceb465692d6 ARM: dts: qcom: apq8064: Use 27MHz PXO clock as DSI PLL reference 457673bfee0b soc: qcom: socinfo: Fixed argument passed to platform_set_data() 54607728e944 bus: ti-sysc: Add break in switch statement in sysc_init_soc() f1c7aa87c423 riscv: Flush current cpu icache before other cpus b514b752b626 scsi: ufs: core: Fix task management completion 4a0775d0c030 ARM: dts: qcom: apq8064: use compatible which contains chipid d62956ddb915 ARM: dts: imx6dl-yapp4: Fix lp5562 LED driver probe 05d9d419220b ARM: dts: omap3430-sdp: Fix NAND device node 35c6691812b7 xen/balloon: fix cancelled balloon action f574ab3192eb SUNRPC: fix sign error causing rpcsec_gss drops ace054d4e523 nfsd4: Handle the NFSv4 READDIR 'dircount' hint being zero 9228f2a0d1bc nfsd: fix error handling of register_pernet_subsys() in init_nfsd() d9f9dfb9040c ovl: fix IOCB_DIRECT if underlying fs doesn't support direct IO 71b8b36187af ovl: fix missing negative dentry check in ovl_rename() b0ee6190e856 fbdev: simplefb: fix Kconfig dependencies 897e427ef37c mmc: sdhci-of-at91: replace while loop with read_poll_timeout aa7c4ce94835 mmc: sdhci-of-at91: wait for calibration done before proceed 266fd4b85ce3 mmc: meson-gx: do not use memcpy_to/fromio for dram-access-quirk 527d377da38f xen/privcmd: fix error handling in mmap-resource processing c2a35a408070 drm/i915: Extend the async flip VT-d w/a to skl/bxt 6dafefe60cb2 drm/i915: Fix runtime pm handling in i915_gem_shrink 92c92e554553 drm/amd/display: Fix DCN3 B0 DP Alt Mapping 1a9c5c132686 drm/amd/display: Fix detection of 4 lane for DPALT 4fd24bff9fac drm/amd/display: Limit display scaling to up to 4k for DCN 3.1 c43e26907d91 drm/nouveau/ga102-: support ttm buffer moves via copy engine e4c1d18cb951 drm/nouveau/kms/tu102-: delay enabling cursor until after assign_windows 4df3adab896f drm/amdgpu: During s0ix don't wait to signal GFXOFF ec36503dffdd drm/amd/display: USB4 bring up set correct address 4b55ade094de drm/amd/display: Fix B0 USB-C DP Alt mode 3048656f5abf usb: typec: tipd: Remove dependency on "connector" child fwnode f5155225108f usb: typec: tcpm: handle SRC_STARTUP state if cc changes 108d39a6b5a7 usb: typec: tcpci: don't handle vSafe0V event if it's not enabled 267d19e300c1 USB: cdc-acm: fix break reporting aff426d4b887 USB: cdc-acm: fix racy tty buffer accesses 09c4c413bc56 usb: gadget: f_uac2: fixed EP-IN wMaxPacketSize 66dd03b10e1c usb: chipidea: ci_hdrc_imx: Also search for 'phys' phandle 9b70e9acfceb usb: cdc-wdm: Fix check for WWAN d92e0c42cfee Partially revert "usb: Kconfig: using select for USB_COMMON dependency" 924356b31dcb Linux 5.14.11 add46a06b8d3 Revert "ARM: imx6q: drop of_platform_default_populate() from init_machine" cfd436c4b683 Revert "brcmfmac: use ISO3166 country code and 0 rev as fallback" 86524ac0ddac libata: Add ATA_HORKAGE_NO_NCQ_ON_ATI for Samsung 860 and 870 SSD. 2cef02f53d59 perf/x86: Reset destroy callback on event init failure 12058756a220 KVM: x86: nSVM: restore int_vector in svm_clear_vintr b232ba59feb9 kvm: x86: Add AMD PMU MSRs to msrs_to_save_all[] 9c827ab0cb09 KVM: x86: reset pdptrs_from_userspace when exiting smm ce64d61801d9 KVM: do not shrink halt_poll_ns below grow_start 11e4acd09e3f selftests: KVM: Align SMCCC call with the spec in steal_time 96320e3316f8 kasan: always respect CONFIG_KASAN_STACK 7d434c5f4687 tools/vm/page-types: remove dependency on opt_file for idle page tracking 004b8f8a6912 block: don't call rq_qos_ops->done_bio if the bio isn't tracked 648f59a06b0e io_uring: allow conditional reschedule for intensive iterators 1b5b6666e235 x86/insn, tools/x86: Fix undefined behavior due to potential unaligned accesses d022e4c48e16 smb3: correct smb3 ACL security descriptor 629c6e725d10 irqchip/gic: Work around broken Renesas integration ab0a257d1591 scsi: ses: Retry failed Send/Receive Diagnostic commands cd402c666fe7 thermal/drivers/tsens: Fix wrong check for tzd in irq handlers 7efa50dd020c nvme-fc: avoid race between time out and tear down 70f57c93f10b nvme-fc: update hardware queues before using them 2e4a7695c8df swiotlb-xen: ensure to issue well-formed XENMEM_exchange requests 3ad674aa1742 Xen/gntdev: don't ignore kernel unmapping error 95342046ba4e selftests: kvm: fix get_run_delay() ignoring fscanf() return warn 80b7cc21401b selftests: kvm: move get_run_delay() into lib/test_util b6d7e8c09c40 selftests:kvm: fix get_trans_hugepagesz() ignoring fscanf() return warn b664df7bb40a selftests:kvm: fix get_warnings_count() ignoring fscanf() return warn 2085e5ad67f4 selftests: be sure to make khdr before other targets 656998200410 habanalabs/gaudi: fix LBW RR configuration 6874cdba4daa habanalabs: fail collective wait when not supported 1c806d5a425b habanalabs/gaudi: use direct MSI in single mode 337f00a0bc62 usb: dwc2: check return value after calling platform_get_resource() 6b5af31c50ac usb: testusb: Fix for showing the connection speed 6a48e3f46ef4 scsi: elx: efct: Do not hold lock while calling fc_vport_terminate() e95f62013a11 scsi: sd: Free scsi_disk device via put_device() ac7d732b24f4 drm/amdkfd: fix svm_migrate_fini warning 4c5a564bf968 drm/amdkfd: handle svm migrate init error 3c2830d0cb6f ext2: fix sleeping in atomic bugs on error a3b450333d64 platform/x86: gigabyte-wmi: add support for B550I Aorus Pro AX 3702afcf0aac sparc64: fix pci_iounmap() when CONFIG_PCI is not set e4cff35be8ff xen-netback: correct success/error reporting for the SKB-with-fraglist case 0cfda0cc59d4 net: mdio: introduce a shutdown method to mdio device drivers 7a08b2e1e477 btrfs: fix mount failure due to past and transient device flush error 31e401cb05ac btrfs: replace BUG_ON() in btrfs_csum_one_bio() with proper error handling 20282e53d6bd nfsd: back channel stuck in SEQ4_STATUS_CB_PATH_DOWN 5c1e84b7ae04 platform/x86: touchscreen_dmi: Update info for the Chuwi Hi10 Plus (CWI527) tablet 77e6b00985f6 platform/x86: touchscreen_dmi: Add info for the Chuwi HiBook (CWI514) tablet bf4597f45f31 afs: Add missing vnode validation checks 20137432e181 spi: rockchip: handle zero length transfers without timing out b133f076639b Linux 5.14.10 81971ea5ec5c HID: amd_sfh: Fix potential NULL pointer dereference - take 2 fe6f7b77796e objtool: print out the symbol type when complaining about it a7d4cb29f556 drivers: net: mhi: fix error path in mhi_net_newlink 14492ff96387 netfilter: nf_tables: Fix oversized kvmalloc() calls 7ea6f5848281 netfilter: conntrack: serialize hash resizes and cleanups 4664318f73e4 KVM: x86: Handle SRCU initialization failure during page track init 38c84dfafed5 crypto: aesni - xts_crypt() return if walk.nbytes is 0 2b704864c92d HID: usbhid: free raw_report buffers in usbhid_stop 24f3fc95b56b mm: don't allow oversized kvmalloc() calls 3213f5f8d4ad netfilter: ipset: Fix oversized kvmalloc() calls 708107b80aa6 HID: betop: fix slab-out-of-bounds Write in betop_probe eae2fce438f1 usb: hso: remove the bailout parameter 47d791dbe1ba NIOS2: setup.c: drop unused variable 'dram_start' a7931aa81760 net: udp: annotate data race around udp_sk(sk)->corkflag aa3a4f5913a9 HID: u2fzero: ignore incomplete packets without data a4f316af25ba ext4: flush s_error_work before journal destroy in ext4_fill_super 2021f187321c ext4: fix potential infinite loop in ext4_dx_readdir() 27e10c5d31ff ext4: add error checking to ext4_ext_replay_set_iblocks() 9bef6f6e2172 ext4: fix reserved space counter leakage a5a403aed8a0 ext4: limit the number of blocks in one ADD_RANGE TLV 68a5ca234225 ext4: fix loff_t overflow in ext4_max_bitmap_size() 811178f296b1 ipack: ipoctal: fix module reference leak 382ef7ff1854 ipack: ipoctal: fix missing allocation-failure check fcd28f229175 ipack: ipoctal: fix tty-registration error handling 4953ef80af5f ipack: ipoctal: fix tty registration race 0a9c36a2e06a ipack: ipoctal: fix stack information leak ec889a8be77b debugfs: debugfs_create_file_size(): use IS_ERR to check for error e554f26ea453 driver core: fw_devlink: Improve handling of cyclic dependencies 133578ac70a2 elf: don't use MAP_FIXED_NOREPLACE for elf interpreter mappings 617f0ea5dfc4 nvme: add command id quirk for apple controllers bad1cb95af71 kvm: fix objtool relocation warning 77744fa757b1 hwmon: (pmbus/mp2975) Add missed POUT attribute for page 1 mp2975 controller ec9331ef103f hwmon: (occ) Fix P10 VRM temp sensors 9ea06d55278e sched/fair: Null terminate buffer when updating tunable_scaling fce08b03923e sched/fair: Add ancestors of unthrottled undecayed cfs_rq d42683c2b196 perf/x86/intel: Update event constraints for ICX 3aa381480fbe objtool: Teach get_alt_entry() about more relocation types ec716aac7fe4 af_unix: fix races in sk_peer_pid and sk_peer_cred accesses 97f1c1783c1b net: stmmac: fix EEE init issue when paired with EEE capable PHYs dab4677bdbff net: sched: flower: protect fl_walk() with rcu e88c502ef7be net: phy: bcm7xxx: Fixed indirect MMD operations 4cdec1041cd3 net: hns3: disable firmware compatible features when uninstall PF 3937b9c2961e net: hns3: fix always enable rx vlan filter problem after selftest fd519ae5a816 net: hns3: reconstruct function hns3_self_test 851c0b9913b8 net: hns3: fix show wrong state when add existing uc mac address 18e609791fa6 net: hns3: fix mixed flag HCLGE_FLAG_MQPRIO_ENABLE and HCLGE_FLAG_DCB_ENABLE 8bcaeeefccfb net: hns3: don't rollback when destroy mqprio fail 8d4ad0ab2874 net: hns3: remove tc enable checking 3dac38bdce79 net: hns3: do not allow call hns3_nic_net_open repeatedly 2744341dd52e ixgbe: Fix NULL pointer dereference in ixgbe_xdp_setup 81369dce6d85 scsi: csiostor: Add module softdep on cxgb4 7a73120f8eaf Revert "block, bfq: honor already-setup queue merges" 27b9ff88f1f6 ionic: fix gathering of debug stats 477e7f62b358 net: ks8851: fix link error 9d561381e48c bpf, x86: Fix bpf mapping of atomic fetch implementation 0157eb81e339 selftests, bpf: test_lwt_ip_encap: Really disable rp_filter 54d54d2e02c7 selftests, bpf: Fix makefile dependencies on libbpf 173dbe4fdb22 libbpf: Fix segfault in static linker for objects without BTF b822ce7334d5 bpf: Exempt CAP_BPF from checks against bpf_jit_limit b96fc31338ca RDMA/hns: Add the check of the CQE size of the user space 8ba300a48a3b RDMA/hns: Fix the size setting error when copying CQE in clean_cq() 714bfabe5f29 RDMA/hfi1: Fix kernel pointer leak d1db35d832a8 e100: fix buffer overrun in e100_get_regs 474443c9982b e100: fix length calculation in e100_get_regs_len ed3617b8aeb4 dsa: mv88e6xxx: Include tagger overhead when setting MTU for DSA and CPU ports 2c3c98b40e1f dsa: mv88e6xxx: Fix MTU definition eabd1e182225 dsa: mv88e6xxx: 6161: Use chip wide MAX MTU 3027d7ba264f drm/i915: Remove warning from the rps worker 406b3c0f64ab drm/i915/request: fix early tracepoints 60edf381ca21 smsc95xx: fix stalled rx after link change bac85b1d0745 net: ipv4: Fix rtnexthop len when RTA_FLOW is present 3636e045de1f net: enetc: fix the incorrect clearing of IF_MODE bits d4a6139e651f hwmon: (tmp421) fix rounding for negative values 8776ad745092 hwmon: (tmp421) report /PVLD condition as fault 0fe76b4171e4 RDMA/hns: Work around broken constant propagation in gcc 8 62adc41df3b5 mptcp: allow changing the 'backup' bit when no sockets are open 385cf9ac00c2 mptcp: don't return sockets in foreign netns 8180611c238e sctp: break out if skb_header_pointer returns NULL in sctp_rcv_ootb 734652b0a231 net: mdiobus: Set FWNODE_FLAG_NEEDS_CHILD_BOUND_ON_ADD for mdiobus parents 7f9cb654462d driver core: fw_devlink: Add support for FWNODE_FLAG_NEEDS_CHILD_BOUND_ON_ADD ed2adf69e298 mac80211-hwsim: fix late beacon hrtimer handling 35367a5b63d9 mac80211: mesh: fix potentially unaligned access 997ee230e4f5 mac80211: limit injected vht mcs/nss in ieee80211_parse_tx_radiotap 764a80c53dee mac80211: Fix ieee80211_amsdu_aggregate frag_tail bug 2e46f261b28c Revert "mac80211: do not use low data rates for data frames with no ack flag" 5f66dd17451d netfilter: log: work around missing softdep backend module f65c73d3aabb netfilter: nf_tables: unlink table before deleting it ec0eb6794804 RDMA/irdma: Report correct WC error when there are MW bind errors c3044d872d6d RDMA/irdma: Report correct WC error when transport retry counter is exceeded 63a5c2119924 RDMA/irdma: Validate number of CQ entries on create CQ 7dce0dc364c4 RDMA/irdma: Skip CQP ring during a reset aa85fb7bde55 hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs dbe853968d4d bpf, mips: Validate conditional branch offsets e56a5146ef8c RDMA/cma: Fix listener leak in rdma_cma_listen_on_all() failure 2288eafe2c4a IB/cma: Do not send IGMP leaves for sendonly Multicast groups 67b07e7b490f bpf: Handle return value of BPF_PROG_TYPE_STRUCT_OPS prog 473c59ab5de5 ipvs: check that ip_vs_conn_tab_bits is between 8 and 20 ce1cccb000bd drm/i915/gvt: fix the usage of ww lock in gvt scheduler. 8bb4ef3807d5 interconnect: qcom: sdm660: Correct NOC_QOS_PRIORITY shift and mask f3856fe1a057 interconnect: qcom: sdm660: Fix id of slv_cnoc_mnoc_cfg 5c488a28b436 drm/amdgpu: correct initial cp_hqd_quantum for gfx9 73bb3f4e877c drm/amdgpu: check tiling flags when creating FB on GFX8- 0d77b5d94301 drm/amdgpu: force exit gfxoff on sdma resume for rmb s0ix be6f8fb11a24 drm/amd/display: Fix Display Flicker on embedded panels f43a2abf5dd7 drm/amd/display: Pass PCI deviceid into DC 81a22172ba35 drm/amd/display: initialize backlight_ramping_override to false 25011c9ec8e7 nbd: use shifts rather than multiplies 03d884671572 RDMA/cma: Ensure rdma_addr_cancel() happens before issuing more requests d9ba5565c7f8 RDMA/cma: Do not change route.addr.src_addr.ss_family 698c8a0a029b media: ir_toy: prevent device from hanging during transmit 4ed5f2656691 mmc: renesas_sdhi: fix regression with hard reset on old SDHIs dd2ee266dd58 KVM: VMX: Fix a TSX_CTRL_CPUID_CLEAR field mask issue 2cebb9aed993 KVM: nVMX: Fix nested bus lock VM exit efd7866e114d KVM: SVM: fix missing sev_decommission in sev_receive_start 540dd9506ae0 KVM: SEV: Allow some commands for mirror VM d6e7fd7ece71 KVM: SEV: Acquire vcpu mutex when updating VMSA c9343f03e522 KVM: SEV: Pin guest memory for write for RECEIVE_UPDATE_DATA 0c1a1c505432 KVM: SEV: Update svm_vm_copy_asid_from for SEV-ES 5d522f759211 KVM: nVMX: Filter out all unsupported controls when eVMCS was activated 17e96fe4a8ec KVM: x86: Swap order of CPUID entry "index" vs. "significant flag" checks 3e7144429936 KVM: x86: Clear KVM's cached guest CR3 at RESET/INIT 4639ee36e064 KVM: x86: nSVM: don't copy virt_ext from vmcb12 99a9e9b80f19 KVM: x86: Fix stack-out-of-bounds memory access from ioapic_write_indirect() 99a016076ed5 ptp: Fix ptp_kvm_getcrosststamp issue for x86 ptp_kvm 81bfd6268fd3 x86/kvmclock: Move this_cpu_pvti into kvmclock.h 9a75f445a4a1 platform/x86/intel: hid: Add DMI switches allow list 27d3eb5616ee mac80211: fix use-after-free in CCMP/GCMP RX 38b789c914b1 scsi: ufs: Fix illegal offset in UPIU event trace de6c8af17f53 gpio: pca953x: do not ignore i2c errors 16887ae4e3de hwmon: (w83791d) Fix NULL pointer dereference by removing unnecessary structure field 24af1fe376e2 hwmon: (w83792d) Fix NULL pointer dereference by removing unnecessary structure field 746011193f44 hwmon: (w83793) Fix NULL pointer dereference by removing unnecessary structure field 7635f8a7fc8a hwmon: (tmp421) handle I2C errors 343307d050c1 fs-verity: fix signed integer overflow with i_size near S64_MAX 2a0d1a8ff21c ACPI: NFIT: Use fallback node id when numa info in NFIT table is incorrect 062055d4f23e ALSA: hda/realtek: Quirks to enable speaker output for Lenovo Legion 7i 15IMHG05, Yoga 7i 14ITL5/15ITL5, and 13s Gen2 laptops. c949aaec0208 ALSA: firewire-motu: fix truncated bytes in message tracepoints 12d508014972 ALSA: rawmidi: introduce SNDRV_RAWMIDI_IOCTL_USER_PVERSION 3327293839d0 scsi: ufs: ufs-pci: Fix Intel LKF link stability e130f2ed1da9 cpufreq: schedutil: Destroy mutex before kobject_put() frees the memory 920e3c77f130 drm/amdgpu: stop scheduler when calling hw_fini (v2) 8ba968ae672b drm/amdgpu: avoid over-handle of fence driver fini in s3 test (v2) 05c8a9dca354 drm/amdgpu: adjust fence driver enable sequence 8a88b1529a39 scsi: qla2xxx: Changes to support kdump kernel for NVMe BFS 8d62aec52a8c cpufreq: schedutil: Use kobject release() method to free sugov_tunables 699d926585da tty: Fix out-of-bound vmalloc access in imageblit 7be199764d46 watchdog/sb_watchdog: fix compilation problem due to COMPILE_TEST a55e7c3f7e4d perf iostat: Fix Segmentation fault from NULL 'struct perf_counts_values *' af0bbcbba0d5 perf iostat: Use system-wide mode if the target cpu_list is unspecified 018e7ce13f2d perf test: Fix DWARF unwind for optimized builds. 283e4bee701d HID: amd_sfh: Fix potential NULL pointer dereference a3d0bfc22a99 kasan: fix Kconfig check of CC_HAS_WORKING_NOSANITIZE_ADDRESS 5a309b91dd57 NIOS2: fix kconfig unmet dependency warning for SERIAL_CORE_CONSOLE a688abc484b5 m68k: Update ->thread.esp0 before calling syscall_trace() in ret_from_signal e450c422aa23 crypto: ccp - fix resource leaks in ccp_run_aes_gcm_cmd() 0bfe74174132 s390/qeth: fix deadlock during failing recovery 0184084365c4 s390/qeth: Fix deadlock in remove_discipline 946aa1b742df net/mlx4_en: Resolve bad operstate value 262468353f59 pinctrl: qcom: spmi-gpio: correct parent irqspec translation b1ca0c6353d4 ASoC: SOF: imx: imx8m: Bar index is only valid for IRAM and SRAM types 5f589b073843 ASoC: SOF: imx: imx8: Bar index is only valid for IRAM and SRAM types a6bb576ead07 ASoC: SOF: Fix DSP oops stack dump output contents 69c9494d1450 scsi: elx: efct: Fix void-pointer-to-enum-cast warning for efc_nport_topology 0a0d0ce37578 ASoC: mediatek: common: handle NULL case in suspend/resume function 9b5de0165d67 ASoC: fsl_xcvr: register platform component before registering cpu dai 4916efd4385c ASoC: fsl_spdif: register platform component before registering cpu dai 63ff9da3572a ASoC: fsl_micfil: register platform component before registering cpu dai b04db30f71bb ASoC: fsl_esai: register platform component before registering cpu dai 799b9ffd7f5a ASoC: fsl_sai: register platform component before registering cpu dai ef074ff5a776 media: s5p-jpeg: rename JPEG marker constants to prevent build warnings add13fd5e07e media: cedrus: Fix SUNXI tile size calculation 00426cf7effb media: hantro: Fix check for single irq (From OE-Core rev: ddf50256fa94f240d62719d74e144e68a2302797) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.10: update to v5.10.73Bruce Ashfield2021-10-273-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 0268aa579b1f Linux 5.10.73 825c00c2ee14 x86/hpet: Use another crystalball to evaluate HPET usability f2447f6587b8 x86/entry: Clear X86_FEATURE_SMAP when CONFIG_X86_SMAP=n 6bfe1f6fc876 x86/entry: Correct reference to intended CONFIG_64_BIT 5d637bc6f98a x86/sev: Return an error on a returned non-zero SW_EXITINFO1[31:0] df121cf55003 x86/Kconfig: Correct reference to MWINCHIP3D d7c36115fb81 x86/platform/olpc: Correct ifdef symbol to intended CONFIG_OLPC_XO15_SCI f73ca4961d51 pseries/eeh: Fix the kdump kernel crash during eeh_pseries_init 411b38fe68ba powerpc/64s: fix program check interrupt emergency stack path 18a2a2cafcf9 powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 a4037dded56b RISC-V: Include clone3() on rv32 29fdb11ca88d bpf, s390: Fix potential memory leak about jit_data 2c152d9da8fe riscv/vdso: make arch_setup_additional_pages wait for mmap_sem for write killable de834e12b96d i2c: mediatek: Add OFFSET_EXT_CONF setting back f86de018fd7a i2c: acpi: fix resource leak in reconfiguration device addition 87990a60b45f powerpc/iommu: Report the correct most efficient DMA mask for PCI devices 985cca1ad11e net: prefer socket bound to interface when not in VRF 97aeed72af4f i40e: Fix freeing of uninitialized misc IRQ vector 2dc768a98c9b i40e: fix endless loop under rtnl d3a07ca78ace gve: report 64bit tx_bytes counter from gve_handle_report_stats() 35f6ddd934e6 gve: fix gve_get_stats() 9a043022522e rtnetlink: fix if_nlmsg_stats_size() under estimation 72c2a68f1d83 gve: Avoid freeing NULL pointer 5d903a694b08 gve: Correct available tx qpl check f69556a42043 drm/nouveau/debugfs: fix file release memory leak 65fff0a8efcd drm/nouveau/kms/nv50-: fix file release memory leak f86e19d918a8 drm/nouveau: avoid a use-after-free when BO init fails 008224cdc126 video: fbdev: gbefb: Only instantiate device when built for IP32 d2ccbaaa6615 drm/sun4i: dw-hdmi: Fix HDMI PHY clock setup 18d2568cc7ff bus: ti-sysc: Use CLKDM_NOAUTO for dra7 dcan1 for errata i893 40a84fcae2bf perf jevents: Tidy error handling 628b31d96711 netlink: annotate data races around nlk->bound 144715fbab1b net: sfp: Fix typo in state machine debug string 3ec73ffeef54 net/sched: sch_taprio: properly cancel timer from taprio_destroy() 60955b65bd6a net: bridge: fix under estimation in br_get_linkxstats_size() c480d15190eb net: bridge: use nla_total_size_64bit() in br_get_linkxstats_size() cb8880680bdf ARM: imx6: disable the GIC CPU interface before calling stby-poweroff sequence 2b0035d1058a dt-bindings: drm/bridge: ti-sn65dsi86: Fix reg value 10afd1597263 arm64: dts: ls1028a: add missing CAN nodes 95ba03fb4cb1 ptp_pch: Load module automatically if ID matches 442ea65d0ccb powerpc/fsl/dts: Fix phy-connection-type for fm1mac3 acff2d182c07 net_sched: fix NULL deref in fifo_set_limit() 0d2dd40a7be6 phy: mdio: fix memory leak 6e6f79e39830 net/mlx5: E-Switch, Fix double allocation of acl flow counter d70cb6c77ad9 net/mlx5e: IPSEC RX, enable checksum complete 064faa8e8a9b bpf: Fix integer overflow in prealloc_elems_and_freelist() d5f4b27c3cfc soc: ti: omap-prm: Fix external abort for am335x pruss 1d8f4447e8c4 bpf, arm: Fix register clobbering in div/mod implementation 29a19eaeb29d iwlwifi: pcie: add configuration of a Wi-Fi adapter on Dell XPS 15 6b0132f73094 xtensa: call irqchip_init only when CONFIG_USE_OF is selected 3d288ed98314 xtensa: use CONFIG_USE_OF instead of CONFIG_OF 997bec509a83 arm64: dts: qcom: pm8150: use qcom,pm8998-pon binding fbca14abc111 ath5k: fix building with LEDS=m 8aef3824e946 PCI: hv: Fix sleep while in non-sleep context when removing child devices from the bus d9b838ae390e ARM: dts: imx6qdl-pico: Fix Ethernet support 9e99ad4194a5 ARM: dts: imx: Fix USB host power regulator polarity on M53Menlo 2ba34cf0c16c ARM: dts: imx: Add missing pinctrl-names for panel on M53Menlo 8f977e97b2b9 soc: qcom: mdt_loader: Drop PT_LOAD check on hash segment 14f52004bda5 ARM: at91: pm: do not panic if ram controllers are not enabled d89a313a5739 ARM: dts: qcom: apq8064: Use 27MHz PXO clock as DSI PLL reference 25ac88e601eb soc: qcom: socinfo: Fixed argument passed to platform_set_data() ab8073794be3 bus: ti-sysc: Add break in switch statement in sysc_init_soc() 427faa29e06f riscv: Flush current cpu icache before other cpus 05287407dedf ARM: dts: qcom: apq8064: use compatible which contains chipid ac06fe40e889 ARM: dts: imx6dl-yapp4: Fix lp5562 LED driver probe 71d3ce62ac88 ARM: dts: omap3430-sdp: Fix NAND device node f9a855d1bcb2 xen/balloon: fix cancelled balloon action 9aac782ab0ab SUNRPC: fix sign error causing rpcsec_gss drops 8f174a208c4c nfsd4: Handle the NFSv4 READDIR 'dircount' hint being zero 12d4b179022a nfsd: fix error handling of register_pernet_subsys() in init_nfsd() 1bc2f315a215 ovl: fix IOCB_DIRECT if underlying fs doesn't support direct IO 9763ffd4da21 ovl: fix missing negative dentry check in ovl_rename() 1500f0c83670 mmc: sdhci-of-at91: replace while loop with read_poll_timeout 3a0feae5f642 mmc: sdhci-of-at91: wait for calibration done before proceed e5cb3680b958 mmc: meson-gx: do not use memcpy_to/fromio for dram-access-quirk 13d17cc717d5 xen/privcmd: fix error handling in mmap-resource processing de1e8bd36ab4 drm/nouveau/kms/tu102-: delay enabling cursor until after assign_windows 1d4e9f27d20d usb: typec: tcpm: handle SRC_STARTUP state if cc changes feb3fe702a58 USB: cdc-acm: fix break reporting fc8b3e838bdf USB: cdc-acm: fix racy tty buffer accesses b3265b88e83b usb: chipidea: ci_hdrc_imx: Also search for 'phys' phandle 16d728110bd7 Partially revert "usb: Kconfig: using select for USB_COMMON dependency" 5aa003b38148 Linux 5.10.72 387aecdab7fa libata: Add ATA_HORKAGE_NO_NCQ_ON_ATI for Samsung 860 and 870 SSD. 02bf504bc32b perf/x86: Reset destroy callback on event init failure b56475c29bd8 KVM: x86: nSVM: restore int_vector in svm_clear_vintr ae34f26d4a84 kvm: x86: Add AMD PMU MSRs to msrs_to_save_all[] 6d0ff9205999 KVM: do not shrink halt_poll_ns below grow_start b8add3f47ae7 selftests: KVM: Align SMCCC call with the spec in steal_time 352b02562a3e tools/vm/page-types: remove dependency on opt_file for idle page tracking 84778fd66d3d smb3: correct smb3 ACL security descriptor a7be240d1703 irqchip/gic: Work around broken Renesas integration 8724a2a0e6d9 scsi: ses: Retry failed Send/Receive Diagnostic commands 2e28f7dd3743 thermal/drivers/tsens: Fix wrong check for tzd in irq handlers 7a670cfb0f4c nvme-fc: avoid race between time out and tear down c251d023ed22 nvme-fc: update hardware queues before using them c4506403e1f3 selftests:kvm: fix get_warnings_count() ignoring fscanf() return warn bcc4b4de63a4 selftests: be sure to make khdr before other targets 6a4aaf1d84f7 habanalabs/gaudi: fix LBW RR configuration 2754fa3b73df usb: dwc2: check return value after calling platform_get_resource() ed6574d48469 usb: testusb: Fix for showing the connection speed 60df9f55562a scsi: sd: Free scsi_disk device via put_device() 76c7063c7405 ext2: fix sleeping in atomic bugs on error b114f2d18e0f sparc64: fix pci_iounmap() when CONFIG_PCI is not set fdfb3bc87381 xen-netback: correct success/error reporting for the SKB-with-fraglist case a41938d07201 net: mdio: introduce a shutdown method to mdio device drivers 63c89930d4b5 btrfs: fix mount failure due to past and transient device flush error 50628b06e604 btrfs: replace BUG_ON() in btrfs_csum_one_bio() with proper error handling 83050cc23909 nfsd: back channel stuck in SEQ4_STATUS_CB_PATH_DOWN f986cf270284 platform/x86: touchscreen_dmi: Update info for the Chuwi Hi10 Plus (CWI527) tablet e5611503249f platform/x86: touchscreen_dmi: Add info for the Chuwi HiBook (CWI514) tablet 2ababcd8c2ab spi: rockchip: handle zero length transfers without timing out 5cd40b137cba Linux 5.10.71 96f439a7eda6 netfilter: nf_tables: Fix oversized kvmalloc() calls e2d192301a0d netfilter: conntrack: serialize hash resizes and cleanups deb294941767 KVM: x86: Handle SRCU initialization failure during page track init f7ac4d24e161 HID: usbhid: free raw_report buffers in usbhid_stop 57a269a1b12a mm: don't allow oversized kvmalloc() calls da5b8b9319f0 netfilter: ipset: Fix oversized kvmalloc() calls dedfc35a2de2 HID: betop: fix slab-out-of-bounds Write in betop_probe 17ccc64e4fa5 crypto: ccp - fix resource leaks in ccp_run_aes_gcm_cmd() 28f0fdbac0f5 usb: hso: remove the bailout parameter 4ad4852b9adf ASoC: dapm: use component prefix when checking widget names 5c3a90b6ff75 net: udp: annotate data race around udp_sk(sk)->corkflag a7f4c633ae12 HID: u2fzero: ignore incomplete packets without data 3770e21f60fc ext4: fix potential infinite loop in ext4_dx_readdir() a63474dbf692 ext4: add error checking to ext4_ext_replay_set_iblocks() 9ccf35492b08 ext4: fix reserved space counter leakage dc0942168ab3 ext4: limit the number of blocks in one ADD_RANGE TLV d11502fa2691 ext4: fix loff_t overflow in ext4_max_bitmap_size() 7cea84867847 ipack: ipoctal: fix module reference leak 843efca98e6a ipack: ipoctal: fix missing allocation-failure check 67d1df661088 ipack: ipoctal: fix tty-registration error handling f46e5db92fa2 ipack: ipoctal: fix tty registration race 5f6a309a6996 ipack: ipoctal: fix stack information leak 3bef1b7242e0 debugfs: debugfs_create_file_size(): use IS_ERR to check for error 15fd3954bca7 elf: don't use MAP_FIXED_NOREPLACE for elf interpreter mappings 011b4de950d8 nvme: add command id quirk for apple controllers 44c600a57d57 hwmon: (pmbus/mp2975) Add missed POUT attribute for page 1 mp2975 controller 7fc5f60a01bb perf/x86/intel: Update event constraints for ICX 3db53827a0e9 af_unix: fix races in sk_peer_pid and sk_peer_cred accesses d0d520c19e7e net: sched: flower: protect fl_walk() with rcu e63f6d8fe74a net: phy: bcm7xxx: Fixed indirect MMD operations 071febc37e06 net: hns3: fix always enable rx vlan filter problem after selftest 85e4f5d28d25 net: hns3: reconstruct function hns3_self_test 8e89876c84b2 net: hns3: fix prototype warning d4a14faf7919 net: hns3: fix show wrong state when add existing uc mac address 64dae9551f8a net: hns3: fix mixed flag HCLGE_FLAG_MQPRIO_ENABLE and HCLGE_FLAG_DCB_ENABLE 8d3d27664ef4 net: hns3: keep MAC pause mode when multiple TCs are enabled f8ba689cb695 net: hns3: do not allow call hns3_nic_net_open repeatedly 20f6c4a31a52 ixgbe: Fix NULL pointer dereference in ixgbe_xdp_setup 16138cf938dc scsi: csiostor: Add module softdep on cxgb4 0306a2c7df7e Revert "block, bfq: honor already-setup queue merges" 1f2ca30fbde6 net: ks8851: fix link error f1dd6e10f077 selftests, bpf: test_lwt_ip_encap: Really disable rp_filter 4967ae9ab44b selftests, bpf: Fix makefile dependencies on libbpf 59efda5073ab bpf: Exempt CAP_BPF from checks against bpf_jit_limit f908072391a6 RDMA/hns: Fix inaccurate prints 7e3eda32b881 e100: fix buffer overrun in e100_get_regs f2edf80cdd03 e100: fix length calculation in e100_get_regs_len c20a0ad7b6a0 dsa: mv88e6xxx: Include tagger overhead when setting MTU for DSA and CPU ports 7b771b12229e dsa: mv88e6xxx: Fix MTU definition ee4d0495a65e dsa: mv88e6xxx: 6161: Use chip wide MAX MTU d35d95e8b9da drm/i915/request: fix early tracepoints 8321738c6e5a smsc95xx: fix stalled rx after link change 8de12ad9162c net: ipv4: Fix rtnexthop len when RTA_FLOW is present b22c5e2c8e03 net: enetc: fix the incorrect clearing of IF_MODE bits 5ee40530b0a6 hwmon: (tmp421) fix rounding for negative values 89d96f147d82 hwmon: (tmp421) report /PVLD condition as fault 560271d09f78 mptcp: don't return sockets in foreign netns 9c6591ae8e63 sctp: break out if skb_header_pointer returns NULL in sctp_rcv_ootb 2c204cf594df mac80211-hwsim: fix late beacon hrtimer handling 8576e72ac5d6 mac80211: mesh: fix potentially unaligned access 1282bb00835f mac80211: limit injected vht mcs/nss in ieee80211_parse_tx_radiotap 3748871e1215 mac80211: Fix ieee80211_amsdu_aggregate frag_tail bug 76bbb482d33b hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs c61736a994fe bpf, mips: Validate conditional branch offsets 3f4e68902d2e RDMA/cma: Fix listener leak in rdma_cma_listen_on_all() failure 62ba3c50104b IB/cma: Do not send IGMP leaves for sendonly Multicast groups d93f65586c59 bpf: Handle return value of BPF_PROG_TYPE_STRUCT_OPS prog 12cbdaeeb5d4 ipvs: check that ip_vs_conn_tab_bits is between 8 and 20 9f382e1edf90 drm/amdgpu: correct initial cp_hqd_quantum for gfx9 c331fad63b6d drm/amd/display: Pass PCI deviceid into DC 0a16c9751e0f RDMA/cma: Do not change route.addr.src_addr.ss_family 31a13f039e15 media: ir_toy: prevent device from hanging during transmit 249e5e5a501e KVM: rseq: Update rseq when processing NOTIFY_RESUME on xfer to KVM guest 3778511dfc59 KVM: nVMX: Filter out all unsupported controls when eVMCS was activated 4ed671e6bc62 KVM: x86: nSVM: don't copy virt_ext from vmcb12 bebabb76ad9a KVM: x86: Fix stack-out-of-bounds memory access from ioapic_write_indirect() 782122ae7db0 x86/kvmclock: Move this_cpu_pvti into kvmclock.h 57de2dcb1874 mac80211: fix use-after-free in CCMP/GCMP RX 201ba843fef5 scsi: ufs: Fix illegal offset in UPIU event trace bd4e446a6947 gpio: pca953x: do not ignore i2c errors 516d90550390 hwmon: (w83791d) Fix NULL pointer dereference by removing unnecessary structure field 1499bb2c3a87 hwmon: (w83792d) Fix NULL pointer dereference by removing unnecessary structure field 7c4fd5de39f2 hwmon: (w83793) Fix NULL pointer dereference by removing unnecessary structure field 196dabd96bbf hwmon: (tmp421) handle I2C errors 23a6dfa10f03 fs-verity: fix signed integer overflow with i_size near S64_MAX d1d0016e4a7d ACPI: NFIT: Use fallback node id when numa info in NFIT table is incorrect e9edc7bc611a ALSA: hda/realtek: Quirks to enable speaker output for Lenovo Legion 7i 15IMHG05, Yoga 7i 14ITL5/15ITL5, and 13s Gen2 laptops. 23115ca7d227 usb: cdns3: fix race condition before setting doorbell 3945c481360c cpufreq: schedutil: Destroy mutex before kobject_put() frees the memory 2193cf76f43a scsi: qla2xxx: Changes to support kdump kernel for NVMe BFS a7d4fc84404d cpufreq: schedutil: Use kobject release() method to free sugov_tunables d570c48dd37d tty: Fix out-of-bound vmalloc access in imageblit (From OE-Core rev: c9697cc081208a91d21b0c41219dc1b30d772f13) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* wireless-regdb: upgrade 2021.07.14 -> 2021.08.28Alexander Kanavin2021-10-231-1/+1
| | | | | | | | (From OE-Core rev: 00c590f50d6894089ff7ce8ad6e263431d9cc550) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-firmware: upgrade 20210818 -> 20210919Alexander Kanavin2021-10-231-2/+2
| | | | | | | | | License-Update: additional files (From OE-Core rev: 8dac57dfed45a0d8a049473f2efc1711b56273a4) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cryptodev-tests: do not use -Werror with openssl 3Alexander Kanavin2021-10-142-0/+25
| | | | | | | | (From OE-Core rev: 8ffab3cc437d9c4f3cbd41e1a52db768d6fbe938) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto-dev: Ensure DEPENDS matches recent 5.14 kernel changesRichard Purdie2021-10-141-0/+1
| | | | | | | | DEPENDS here should match what 5.14 is using. (From OE-Core rev: 899fd41723f41fe0a0cc24373c326b88cb385fe9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: add libmpc-native to DEPENDSRoss Burton2021-10-141-1/+1
| | | | | | | | | | | | 5.14 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. (From OE-Core rev: f242a6db0757b31c0d4eba5c362f616e1ace14d6) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lttng-tools: replace ad hoc ptest fixup with upstream fixesAlexander Kanavin2021-10-134-89/+269
| | | | | | | (From OE-Core rev: 87fd3080c86f6987e4403a2cb8263564f6e1ac4f) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lttng-ust: fix do_compile failure for arm32 with DEBUG_BUILD enabledChangqing Li2021-10-091-0/+1
| | | | | | | | | | | | | | | | | | | After upgrade to 2.13.0, for arm32, with DEBUG_BUILD enabled, lttng-ust build failed with error: | /path/to/tmp/work/cortexa15t2hf-neon-poky-linux-gnueabi/lttng-ust/2_2.13.0-r0/recipe-sysroot-native/usr/bin/arm-poky-linux-gnueabi/../../libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/11.2.0/ld: ../../../src/lib/lttng-ust/.libs/liblttng-ust.so: undefined reference to `_uatomic_link_error' | collect2: error: ld returned 1 exit status | Makefile:399: recipe for target 'test_ust_error' failed | make[3]: *** [test_ust_error] Error 1 The problem has reported to upstream, and upstream suggests to use -DUATOMIC_NO_LINK_ERROR for the failure case, refer [1]. [1]https://lists.lttng.org/pipermail/lttng-dev/2021-September/030056.html (From OE-Core rev: 722d58bccd5616b3b3364845bbf1121d3cc0c3cd) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>