summaryrefslogtreecommitdiffstats
path: root/meta
AgeCommit message (Collapse)Author
2022-01-14go: fix building without SECURITY_LDFLAGSDmitry Baryshkov
Commit 9985b17a30bb ("go: correctly set debug-prefix-map and build directory") has changed CGO_LDFLAGS to the manually crafted version of LDFLAGS to strip out DEBUG_PREFIX_MAP contents. However this manually crafted version includes ${SECURITY_LDFLAGS}. If security_flags.inc is not included, the variable is not defined, thus CGO_LDFLAGS will include the '${SECURITY_LDFLAGS}' literally. When building the recipe, the build would break with the follwing message: aarch64-linaro-linux-gcc: error: ${SECURITY_LDFLAGS}: No such file or directory So, instead of manually specifying variable contents, perform the expected action: filter offending arguments out of LDFLAGS. Cc: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-14sanity: Drop TUNEABI, TUNEABI_WHITELIST, TUNEABI_OVERRIDERichard Purdie
These were added nearly a decade ago but there are no users in OE-Core. I checked with the likely users and they seem to have no current usage either. Therefore remove them. If needed for some prebuilt library somewhere, they could be implemented in the layer using them instead but I doubt these are in use any longer. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-14grub-efi: Add xen_boot support when 'xen' is in DISTRO_FEATURES for aarch64Kamil Dziezyk
'xen-boot' module is available only for aarch64. Signed-off-by: Kamil Dziezyk <kamil.dziezyk@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-14systemd: Avoid a Python deprecation warningPeter Kjellerstedt
This avoids the following warning: WARNING: .../meta/recipes-core/systemd/systemd_250.1.bb: Var <do_install>:1: DeprecationWarning: invalid escape sequence \$ seen when doing `devtool finish --force-patch-refresh systemd meta`. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-14epiphany: update 41.0 -> 41.3Khairul Rohaizzat Jamaluddin
Includes fix patches for epiphany CVE. CVE: CVE-2021-45085 CVE-2021-45086 CVE-2021-45087 CVE-2021-45088 Signed-off-by: Khairul Rohaizzat Jamaluddin <khairul.rohaizzat.jamaluddin@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-13tune-cortexa72: Drop the redundant cortexa72-crc tuneKevin Hao
We have enabled the crc extension by default for cortexa72 in patch ("tune-cortexa72: Enable the crc extension by default for cortexa72"), then the cortexa72-crc seems redundant. So drop it. We also rename the cortexa72-crc-crypto to cortexa72-crypto. With these changes, it will break the BSPs which used these two tunes, but it should be easy to fix. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-13create-spdx: Add kernel work-shared sourceSaul Wold
Since the kernel source is stored in work-shared, we need to add it to the search path so the kernel and kernel-modules source code can be found correctly. Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-13package: Add support for kernel strippingSaul Wold
Extend runstrip() to accept additional argument to enable sharing it with the kernel do_strip() so that KERNEL_IMAGE_STRIP_EXTRA_SECTIONS can be passed. Since is_elf() understands kernel modules there is no need to keep a seperate list for kernmodules or hardcode the values to runstrip. Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-13kernel.bbclass: use common strip()Saul Wold
Re-use the runstrip() code from oe.packaging, for the kernel stripping process. Since runstrip() is python the kernel do_strip() need to be converted to Python also. The stripped kernel image will be used for deployment in do_deploy(). This will allow the package.bbclass to split an unstripped kernel binary for the debug information and extended packagedata. The extended package data is used by create-spdx. Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-13armv9a/tune: Add the support for the Neoverse N2 coreKevin Hao
This adds the support for the Neoverse N2 core, even though the Neoverse N2 core implements the Arm v9.0-A architecture, but the support of it in GCC is based on the Arm v8.5-A architecture. Please see the commit 50d9db203bc3 ("aarch64: Add support for Neoverse N2 CPU") in GCC for more detail. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-13arch-armv8-5a.inc: Add tune include for armv8.5aKevin Hao
This adds support for the armv8.5a architecture and the crypto extension. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-13tune-cortexa72: Enable the crc extension by default for cortexa72Kevin Hao
The crc extension is optional for the ARMv8.0 but is mandatory for the cortexa72, so there is no reason not to enable it for the cortexa72 tune. With this change, the cortexa72-crc seems redundant. But we had better to keep it to be compatible with the BSP which already used that tune. Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12classes: Only allow network in existing network accessing codeRichard Purdie
Use the newly added network task flag against tasks where network access is expected. This is do_fetch, do_checkuri, do_testimage, do_testsdk and do_testsdkext. We can't disable networking in sstate tasks due to sstate downloads and also so we can report hash equivalence to the server so network access is enabled in sstate tasks. Access within build-appliance do_image is also allowed due to the use of pip, this is a poor example made rather obvious now and needs to be reworked. Network access anywhere else in any other task isn't allowed. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12ruby: update 3.0.3 -> 3.1.0Alexander Kanavin
Turn on "link external modules statically" option as otherwise ruby installer tries to do additional building inside installed module directories in do_install which fails horribly. License-Update: additional MIT/BSD items Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12python3: drop unneeded multiprocessing module patchAlexander Kanavin
pthread has been merged into the main libc library (and was never separate in musl), so separate linking for it is no longer needed. I ran the reproducing sequence on qemux86, qemux86_64 and same targets with musl, and it went fine: root@qemux86:~# python3 Python 3.10.0 (default, Oct 4 2021, 17:55:55) [GCC 11.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import multiprocessing >>> pool_sema = multiprocessing.BoundedSemaphore(value=1) >>> pool_sema.acquire() True >>> pool_sema.release() >>> Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12rootfs_rpm.bbclass: distutils -> sysconfig moduleTim Orling
Change a comment to reference our custom changes to the sysconfig module, as dnf no longer uses distutils. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12python3native.bbclass: distutils -> sysconfigTim Orling
In the comment it says we patch distutils modules, but we now are patching sysconfig and not using distutils. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12dnf: drop python3-distutils dependencyTim Orling
Upstream dropped the now deprecated distutils: 18995d65 Remove distutils which are deprecated in python3.10 (RhBug:1950229) Usage was replaced with sysconfig, which is in python3-core [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12waf.bbclass: drop usage of distutilsTim Orling
Refactor to use bb.utils.vercmp_string_op() instead of StrictVersion from distutils [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12gstreamer1.0-python: inherit setuptools3-baseTim Orling
Drop distutils3-base usage as it is now deprecated. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12python3-setuptools: do not depend on distutilsTim Orling
No longer depend on python3-distutils, current versions of setuptools vendor as _distutils. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12python3-pygobject: setuptools instead of distuilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12bind: inherit setuptools3-base instead of distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12btrfs-tools: use setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12librepo: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12createrepo-c: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12libcomps: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12systemtap: use setuptools-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12python3-pip: inherit setuptools3 not distuils3Tim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12gpgme: inherit setuptools-base not distuilsTim Orling
What was distutils-common-base has been merged into setuptools3-base, since we no longer need to support python2 and python3. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12python3-dbus: inherit setuptools3-base not distuilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12python3-cython: DISTUTILS_* -> SETUPTOOLS_*Tim Orling
Refactor to new SETUPTOOLS_* variables [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12libdnf: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12dnf: inherit setuptools3-base instead of distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12setuptools3: refactor for no distutils bbclassesTim Orling
Add setuptools3-base.bbclass as a re-usable starting point similar to what used to be distutils-common-base.bbclass and disutils3-base.bbclass. We no longer need to support python2, so no need for a setuptools-common-base.bbclass. Refactor setuptools3.bbclass to use setuptools3-base.bbclass instead of the distulis*.bbclasses. Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12classes/distutils-*: add warning of deprecationTim Orling
distutils has been deprecated in Python 3.10 and will be removed in Python 3.12 (predicted release date October 2023). Add a warning now that recommends using the roughly equivalent setuptools-* classes. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12libsdl2: fix build if egl.pc sets macros in cflagsMax Krummenacher
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12linux-yocto-dev: Set KBRANCH with =He Zhe
The "?=" assignment to KBRANCH in kernel-yocto.bbclass is selected prior to the one in this recipe and makes it "master" as a result. Change the KBRANCH assignment back to "=" as how it was done before. Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12linux-yocto: drop 5.14 recipesBruce Ashfield
5.14 is EOL upstream on korg, so we drop our 5.14 recipes from master. 5.10 and 5.15 + the dev kernel continue to be active. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12conf/machine: bump qemu preferred versions to 5.15Bruce Ashfield
5.14 has been removed from the active kernel list, so we make 5.15 the new default. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12linux-yocto/5.10: update to v5.10.90Bruce Ashfield
Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: d3e491a20d15 Linux 5.10.90 8c15bfb36a44 bpf: Add kconfig knob for disabling unpriv bpf by default d8a5b1377bf6 perf script: Fix CPU filtering of a script's switch events 2386e81a1d27 net: fix use-after-free in tw_timer_handler 34087cf96046 Input: spaceball - fix parsing of movement data packets 9f329d0d6c91 Input: appletouch - initialize work before device registration 2a4f551dec1a scsi: vmw_pvscsi: Set residual data length conditionally 1cb8444f3114 binder: fix async_free_space accounting for empty parcels a6e26251dd3a usb: mtu3: set interval of FS intr and isoc endpoint 3b6efe0b7ba0 usb: mtu3: fix list_head check warning f10b01c48f85 usb: mtu3: add memory barrier before set GPD's HWO 1c4ace3e6b85 usb: gadget: f_fs: Clear ffs_eventfd in ffs_data_clear. 1933fe8ce712 xhci: Fresco FL1100 controller should not have BROKEN_MSI quirk set. b8553330a077 drm/amdgpu: add support for IP discovery gc_info table v2 28863ffe21ff drm/amdgpu: When the VCN(1.0) block is suspended, powergating is explicitly enabled a0f3ac399ef5 uapi: fix linux/nfc.h userspace compilation errors 818c9e0a04df nfc: uapi: use kernel size_t to fix user-space builds 8d31cbab4c29 i2c: validate user data in compat ioctl 51c94d8fbd09 fsl/fman: Fix missing put_device() call in fman_port_probe 920932b20e0c net/ncsi: check for error return from call to nla_put_u32 610af55f9fbe selftests/net: udpgso_bench_tx: fix dst ip argument 78503589b1e0 net/mlx5e: Fix wrong features assignment in case of error 61146008087a ionic: Initialize the 'lif->dbid_inuse' bitmap b7c9a1427b32 igc: Fix TX timestamp support for non-MSI-X platforms e8a5988a85c7 net/smc: fix kernel panic caused by race of smc_sock 97c87c1db9ff net/smc: don't send CDC/LLC message if link not ready 99f19566b1c4 net/smc: improved fix wait on already cleared link e553265ea564 NFC: st21nfca: Fix memory leak in device probe and remove 8d70dc0eecf0 net: lantiq_xrx200: fix statistics of received bytes 7ef89bd1e8f1 net: ag71xx: Fix a potential double free in error handling paths 40d36186913b net: usb: pegasus: Do not drop long Ethernet frames a67becdaa8ad net/smc: fix using of uninitialized completions 769d14abd35e sctp: use call_rcu to free endpoint 13c1bf43b674 selftests: Calculate udpgso segment count without header adjustment abe74fb43378 udp: using datalen to cap ipv6 udp max gso segments 5e6ad649e927 net/mlx5e: Fix ICOSQ recovery flow for XSK 73665165b64a net/mlx5e: Wrap the tx reporter dump callback to extract the sq 4cd1da02f0c3 net/mlx5: DR, Fix NULL vs IS_ERR checking in dr_domain_init_resources fcb32eb3d04d scsi: lpfc: Terminate string in lpfc_debugfs_nvmeio_trc_write() 4833ad4908a1 selinux: initialize proto variable in selinux_ip_postroute_compat() ec941a2277a1 recordmcount.pl: fix typo in s390 mcount regex a0e82d5ef992 memblock: fix memblock_phys_alloc() section mismatch error 7da855e93964 platform/x86: apple-gmux: use resource_size() with res d01e9ce1af61 parisc: Clear stale IIR value on instruction access rights trap 0643d9175dc6 tomoyo: use hwight16() in tomoyo_domain_quota_is_ok() e2048a1f9186 tomoyo: Check exceeded quota early in tomoyo_domain_quota_is_ok(). 210c7c6908f3 Input: i8042 - enable deferred probe quirk for ASUS UM325UA bb672eff7447 Input: i8042 - add deferred probe support Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12linux-yocto/5.15: update to v5.15.13Bruce Ashfield
Updating linux-yocto/5.15 to the latest korg -stable release that comprises the following commits: 734eb1fd2073 Linux 5.15.13 bc5fce3dff9a perf scripts python: intel-pt-events.py: Fix printing of switch events 632ee8a1786a perf script: Fix CPU filtering of a script's switch events 90d273381bfb perf intel-pt: Fix parsing of VM time correlation arguments 47b5d0a7532d fs/mount_setattr: always cleanup mount_kattr 08eacbd141e2 net: fix use-after-free in tw_timer_handler ffe4a1ba1a82 mm/damon/dbgfs: fix 'struct pid' leaks in 'dbgfs_target_ids_write()' 466267ced87d Input: spaceball - fix parsing of movement data packets e79ff8c68acb Input: appletouch - initialize work before device registration 90ffed2d5e0d scsi: vmw_pvscsi: Set residual data length conditionally 17691bada6b2 binder: fix async_free_space accounting for empty parcels 90d2beed5e75 nitro_enclaves: Use get_user_pages_unlocked() call to handle mmap assert 0c823e0b4697 usb: mtu3: set interval of FS intr and isoc endpoint 249ddfbe0057 usb: mtu3: fix list_head check warning dace4123e304 usb: mtu3: add memory barrier before set GPD's HWO ebef2aa29f37 usb: gadget: f_fs: Clear ffs_eventfd in ffs_data_clear. 81f8de4b6af6 xhci: Fresco FL1100 controller should not have BROKEN_MSI quirk set. 0f591d17e36e drm/amd/display: Changed pipe split policy to allow for multi-display pipe split 94ba5b0fb52d drm/amdgpu: add support for IP discovery gc_info table v2 97fd2b6c0340 drm/amdgpu: When the VCN(1.0) block is suspended, powergating is explicitly enabled 2ee1296e0655 drm/nouveau: wait for the exclusive fence after the shared ones v2 e63109384796 uapi: fix linux/nfc.h userspace compilation errors 7b006d5a5aad nfc: uapi: use kernel size_t to fix user-space builds f68599581067 i2c: validate user data in compat ioctl 17f5a2bc2ffe fsl/fman: Fix missing put_device() call in fman_port_probe 20426341c071 selftests: net: using ping6 for IPv6 in udpgro_fwd.sh 6eb92fb14689 net/ncsi: check for error return from call to nla_put_u32 62320f472fc2 net: bridge: mcast: fix br_multicast_ctx_vlan_global_disabled helper 5943eb7bbac3 selftests: net: Fix a typo in udpgro_fwd.sh 676345fa9c55 selftests/net: udpgso_bench_tx: fix dst ip argument f1157fe47992 net: bridge: mcast: add and enforce startup query interval minimum a22ac8009f7e net: bridge: mcast: add and enforce query interval minimum a780f0dd2507 net/mlx5e: Fix wrong features assignment in case of error 30a26a8c506f ionic: Initialize the 'lif->dbid_inuse' bitmap a3dffd1d0677 drm/amd/display: Set optimize_pwr_state for DCN31 6af58ce9307f drm/amd/display: Send s0i2_rdy in stream_count == 0 optimization a87eb54df52f igc: Fix TX timestamp support for non-MSI-X platforms 10597585d793 igc: Do not enable crosstimestamping for i225-V models b85f751d71ae net/smc: fix kernel panic caused by race of smc_sock 85ce25935e06 net/smc: don't send CDC/LLC message if link not ready 238920381b89 NFC: st21nfca: Fix memory leak in device probe and remove c1babfe1b810 net: lantiq_xrx200: fix statistics of received bytes c903a963b7e6 net: ag71xx: Fix a potential double free in error handling paths 0d82faa347a1 net: usb: pegasus: Do not drop long Ethernet frames cc70cbd3b155 net/smc: fix using of uninitialized completions 75799e71df1d sctp: use call_rcu to free endpoint df06c8dd7aca selftests: Calculate udpgso segment count without header adjustment 027282344397 udp: using datalen to cap ipv6 udp max gso segments 07f16b17416a net/mlx5e: Delete forward rule for ct or sample action aa584ad8fa29 net/mlx5e: Use tc sample stubs instead of ifdefs in source file 12813ba11bf0 net/mlx5e: Fix ICOSQ recovery flow for XSK 144dbcc14546 net/mlx5e: Fix interoperability between XSK and ICOSQ recovery flow 07f13d58a8ec net/mlx5e: Wrap the tx reporter dump callback to extract the sq 219419510c4e net/mlx5: Fix tc max supported prio for nic mode 5da639db8b71 net/mlx5: Fix SF health recovery flow c0cc069899fb net/mlx5: Fix error print in case of IRQ request failed 4595dffccfa5 net/mlx5: DR, Fix NULL vs IS_ERR checking in dr_domain_init_resources a68d72d899a2 scsi: lpfc: Terminate string in lpfc_debugfs_nvmeio_trc_write() 172fc0a7d7ab selinux: initialize proto variable in selinux_ip_postroute_compat() f5cb610fa3d2 efi: Move efifb_setup_from_dmi() prototype from arch headers 5677e0772364 powerpc/ptdump: Fix DEBUG_WX since generic ptdump conversion fc738764c9fa recordmcount.pl: fix typo in s390 mcount regex 919f5678bae1 ALSA: hda: intel-sdw-acpi: go through HDAS ACPI at max depth of 2 cce476954401 ALSA: hda: intel-sdw-acpi: harden detection of controller 62f0a61fcb8a memblock: fix memblock_phys_alloc() section mismatch error ea48bffecc3e platform/x86: apple-gmux: use resource_size() with res 6964e81f11ce platform/mellanox: mlxbf-pmc: Fix an IS_ERR() vs NULL bug in mlxbf_pmc_map_counters e96373f0a5f4 parisc: Clear stale IIR value on instruction access rights trap 0d76daf2013c net/sched: Extend qdisc control block with tc control block 80176f65fa28 tomoyo: use hwight16() in tomoyo_domain_quota_is_ok() 3fe6a63b5dbd tomoyo: Check exceeded quota early in tomoyo_domain_quota_is_ok(). e97d5549f842 Input: i8042 - enable deferred probe quirk for ASUS UM325UA dd33054e4c18 Input: i8042 - add deferred probe support Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12linux-yocto/5.15/cfg: add kcov feature fragmentBruce Ashfield
Integrating the following commit(s) to linux-yocto: 41721be8a03 cfg/debug: add kcov kernel configs Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12linux-yocto/5.10/cfg: add kcov feature fragmentBruce Ashfield
Integrating the following commit(s) to linux-yocto: 41721be8a03 cfg/debug: add kcov kernel configs Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12linux-yocto/5.15: fix arm 32bit -rt warningsBruce Ashfield
Integrating the following commit(s) to: 41e5b01b59c preempt-rt.scc: arm should come after ftrace 6fe0a923260 drivers-zynq.cfg: update CONFIG_NET_CADENCE option Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12linux-yocto/5.14: fix arm 32bit -rt warningsBruce Ashfield
Integrating the following commit(s): f9e349e1745 preempt-rt.scc: arm should come after ftrace 25f5db372ac drivers-zynq.cfg: update CONFIG_NET_CADENCE option Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12linux-yocto/5.15: update to v5.15.12Bruce Ashfield
Updating linux-yocto/5.15 to the latest korg -stable release that comprises the following commits: 25960cafa06e Linux 5.15.12 53ccdc73eeda phonet/pep: refuse to enable an unbound pipe 3cb5ae77799e tun: avoid double free in tun_free_netdev 03d00f7f1815 hamradio: improve the incomplete fix to avoid NPD cb6c99aedd2c hamradio: defer ax25 kfree after unregister_netdev a8e4a64cdc97 ax25: NPD bug when detaching AX25 device f547b0f8f3ce r8152: sync ocp base 5cc8813c4966 hwmon: (lm90) Do not report 'busy' status bit as alarm 722fc45be049 hwmom: (lm90) Fix citical alarm status for MAX6680/MAX6681 fb563baa3eb8 pinctrl: mediatek: fix global-out-of-bounds issue aa50406f36a1 ASoC: rt5682: fix the wrong jack type detected 46b3fe1eb2b7 ASoC: SOF: Intel: pci-tgl: add ADL-N support d0fa8c252956 ASoC: SOF: Intel: pci-tgl: add new ADL-P variant d9ad0ae8bfa0 ASoC: tas2770: Fix setting of high sample rates cc71a723f3d8 Input: goodix - add id->model mapping for the "9111" model efaa327b4146 Input: elants_i2c - do not check Remark ID on eKTH3900/eKTH5312 70750056620b Input: iqs626a - prohibit inlining of channel parsing functions 2f06c8293d27 kfence: fix memory leak when cat kfence objects ca38833c915e arm64: dts: lx2160a: fix scl-gpios property name 0ae519ecbbdb KVM: VMX: Fix stale docs for kvm-intel.emulate_invalid_guest_state 35f9ff45ee5c netfs: fix parameter of cleanup() a8a9d753edd7 f2fs: fix to do sanity check on last xattr entry in __f2fs_setxattr() 91e94e42f6fc tee: optee: Fix incorrect page free bug 330c6117a82c mm/damon/dbgfs: protect targets destructions with kdamond_lock c691e7575eff mm/hwpoison: clear MF_COUNT_INCREASED before retrying get_any_page() 7a77e22fde63 mm, hwpoison: fix condition in free hugetlb page path 6b2cdcc8f555 mm: mempolicy: fix THP allocations escaping mempolicy restrictions c1d1ec4db5f7 mac80211: fix locking in ieee80211_start_ap error path a2c144d17623 ksmbd: disable SMB2_GLOBAL_CAP_ENCRYPTION for SMB 3.1.1 f43ba86a8211 ksmbd: fix uninitialized symbol 'pntsd_size' 89d0ffb4bb96 ksmbd: fix error code in ndr_read_int32() c99513dffd36 ARM: 9169/1: entry: fix Thumb2 bug in iWMMXt exception handling c7814569b387 mmc: mmci: stm32: clear DLYB_CR after sending tuning command c0db06fd0993 mmc: core: Disable card detect during shutdown 9d93c863d04f mmc: meson-mx-sdhc: Set MANUAL_STOP for multi-block SDIO commands 46e2fc260543 mmc: sdhci-tegra: Fix switch to HS400ES mode e5dd3e61baed gpio: dln2: Fix interrupts when replugging the device c1ce3c410038 pinctrl: stm32: consider the GPIO offset to expose all the GPIO lines b9d7c7a5bf6e KVM: VMX: Wake vCPU when delivering posted IRQ even if vCPU == this vCPU e4e4e7cb2298 KVM: VMX: Always clear vmx->fail on emulation_required 543bfbcb5cf5 KVM: nVMX: Synthesize TRIPLE_FAULT for L2 if emulation is required d884eefd75cc KVM: x86/mmu: Don't advance iterator after restart due to yielding 5dea76f5da65 KVM: x86: Always set kvm_run->if_flag 9ca1324755f1 platform/x86: intel_pmc_core: fix memleak on registration failure a42c41be8324 platform/x86: amd-pmc: only use callbacks for suspend 9ede07c4af14 x86/pkey: Fix undefined behaviour with PKRU_WD_BIT 492eb7afe858 tee: handle lookup of shm with reference count 0 c576d7a197b7 parisc: Fix mask used to select futex spinlock 7c6567979c82 parisc: Correct completer in lws start 5aae769a0ef7 ipmi: fix initialization when workqueue allocation fails 77a7311ca167 ipmi: ssif: initialize ssif_info->client early 7232a5941d3f ipmi: bail out if init_srcu_struct fails 7f7f61042f70 Input: atmel_mxt_ts - fix double free in mxt_read_info_block 6084a6c1ca7f ASoC: tegra: Restore headphones jack name on Nyan Big f7fe9d303445 ASoC: tegra: Add DAPM switches for headphones and mic jack 8e9b8b8a8ff2 ASoC: meson: aiu: Move AIU_I2S_MISC hold setting to aiu-fifo-i2s 88b4fbd6348a ALSA: hda/realtek: Fix quirk for Clevo NJ51CU 417e6ee4df64 ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook 0896c97e6657 ALSA: hda/realtek: Add new alc285-hp-amp-init model 3934aa1259d9 ALSA: hda/realtek: Amp init fixup for HP ZBook 15 G6 2e9cd9ff997f ALSA: hda/hdmi: Disable silent stream on GLK b398fcbe4de1 ALSA: rawmidi - fix the uninitalized user_pversion 3fd58303b05e ALSA: drivers: opl3: Fix incorrect use of vp->state fdaa60d900a7 ALSA: jack: Check the return value of kstrdup() 28b03ec2c0c5 x86/boot: Move EFI range reservation after cmdline parsing f95fcac5d66a Revert "x86/boot: Pull up cmdline preparation and early param parsing" 70e7705b0230 kernel/crash_core: suppress unknown crashkernel parameter warning 4a34b51ea99b platform/x86/intel: Remove X86_PLATFORM_DRIVERS_INTEL 50f27a29d758 compiler.h: Fix annotation macro misplacement with Clang 0cd3ef801004 uapi: Fix undefined __always_inline on non-glibc systems 8a351388b295 ARM: 9160/1: NOMMU: Reload __secondary_data after PROCINFO_INITFUNC afda22fea766 hwmon: (lm90) Drop critical attribute support for MAX6654 9d21029e7199 hwmon: (lm90) Add basic support for TI TMP461 983084e19aeb hwmon: (lm90) Introduce flag indicating extended temperature support d105f30bea91 hwmon: (lm90) Prevent integer overflow/underflow in hysteresis calculations 4b8f0e940972 hwmon: (lm90) Fix usage of CONFIG2 register in detect function 79c6d4fa1be1 pinctrl: bcm2835: Change init order for gpio hogs dfd5b60b5342 Input: elantech - fix stack out of bound access in elantech_change_report_id() b480d5f42d45 net: stmmac: dwmac-visconti: Fix value of ETHER_CLK_SEL_FREQ_SEL_2P5M f80527200d01 r8152: fix the force speed doesn't work for RTL8156 b8871c6734d8 net: bridge: fix ioctl old_deviceless bridge argument 1c66ea39c6c4 net: bridge: Use array_size() helper in copy_to_user() be2473e5f377 net: stmmac: ptp: fix potentially overflowing expression d2269ae48598 veth: ensure skb entering GRO are not cloned. 20fb0dc35bf9 io_uring: zero iocb->ki_pos for stream file types 5cf03976e1f0 asix: fix wrong return value in asix_check_host_enable() d259f621c859 asix: fix uninit-value in asix_mdio_read() d00726b7061c sfc: falcon: Check null pointer of rx_queue->page_ring 20c3efcca612 sfc: Check null pointer of rx_queue->page_ring 8307c1ecd366 net: ks8851: Check for error irq 98a5242e82f2 drivers: net: smc911x: Check for error irq 643c89669e31 fjes: Check for error irq a038c504f6f5 bonding: fix ad_actor_system option setting to default 1f0d95fb3755 gpio: virtio: remove timeout 6b3f7e4b10f3 ipmi: Fix UAF when uninstall ipmi_si and ipmi_msghandler module 33385aded71e igb: fix deadlock caused by taking RTNL in RPM resume path b99c71f90978 net: skip virtio_net_hdr_set_proto if protocol already set 8ba353f553da net: accept UFOv6 packages in virtio_net_hdr_to_skb 0249a4b8a554 inet: fully convert sk->sk_rx_dst to RCU rules 98a8e5c20027 ipv6: move inet6_sk(sk)->rx_dst_cookie to sk->sk_rx_dst_cookie 8e096cffc6d3 tcp: move inet->rx_dst_ifindex to sk->sk_rx_dst_ifindex e69eacf74e15 qlcnic: potential dereference null pointer of rx_queue->page_ring 5c553a0cd126 net: marvell: prestera: fix incorrect structure access da3feb8a9baf net: marvell: prestera: fix incorrect return of port_find ad6d20da2cfb ice: xsk: return xsk buffers back to pool when cleaning the ring c1c36df0b0a5 ice: Use xdp_buf instead of rx_buf for xsk zero-copy ef73e3b650b7 ARM: dts: imx6qdl-wandboard: Fix Ethernet support 406b7337d6bc netfilter: fix regression in looped (broad|multi)cast's MAC handling 9d558e5f0d6f netfilter: nf_tables: fix use-after-free in nft_set_catchall_destroy() 2eb1cac16bc7 RDMA/hns: Replace kfree() with kvfree() aefcc25f3a0c IB/qib: Fix memory leak in qib_user_sdma_queue_pkts() c41b98070392 RDMA/hns: Fix RNR retransmission issue for HIP08 9b0ed41b25e2 ASoC: meson: aiu: fifo: Add missing dma_coerce_mask_and_coherent() 71d07ebc5000 drm/mediatek: hdmi: Perform NULL pointer check for mtk_hdmi_conf 11bf802877bf ucounts: Fix rlimit max values check 3121b5bff903 spi: change clk_disable_unprepare to clk_unprepare 512dbc1a09ac bus: sunxi-rsb: Fix shutdown 115a291395df arm64: dts: allwinner: orangepi-zero-plus: fix PHY mode f4321ac030b5 PM: sleep: Fix error handling in dpm_prepare() eabc0aab98e5 NFSD: Fix READDIR buffer overflow b1712a691bbb HID: potential dereference of null pointer 3c431e19ad70 HID: holtek: fix mouse probing a65ac9d23276 selftests: KVM: Fix non-x86 compiling 49c29e13fcd6 ext4: check for inconsistent extents between index and leaf block f71ab21b1a28 ext4: check for out-of-order index extents in ext4_valid_extent_entries() 02f825cf0255 ext4: prevent partial update of the extent blocks fedeb1b2c8e6 net: usb: lan78xx: add Allied Telesis AT29M2-AF 1d1c25233a29 arm64: vdso32: require CROSS_COMPILE_COMPAT for gcc+bfd fb6ad5cb3b67 Linux 5.15.11 bd926d189210 xen/netback: don't queue unlimited number of packages 88449dbe6203 xen/netback: fix rx queue stall detection 153d1ea32722 xen/console: harden hvc_xen against event channel storms a29c8b5226ed xen/netfront: harden netfront against event channel storms caf9b51829a5 xen/blkfront: harden blkfront against event channel storms ffbd663ebac9 Revert "xsk: Do not sleep in poll() when need_wakeup set" 581b09795199 selftests/damon: test debugfs file reads/writes with huge count a272f990cb26 bus: ti-sysc: Fix variable set but not used warning for reinit_modules 11053a021937 io-wq: drop wqe lock before creating new worker a96ac0688acb rcu: Mark accesses to rcu_state.n_force_qs 4b4e5bbf9386 io-wq: check for wq exit after adding new worker task_work 024f9c7cd3d8 io-wq: remove spurious bit clear on task_work addition dfc3fff63793 scsi: scsi_debug: Sanity check block descriptor length in resp_mode_select() 308514764593 scsi: scsi_debug: Fix type in min_t to avoid stack OOB 47d11d35203b scsi: scsi_debug: Don't call kcalloc() if size arg is zero d2ccdd4e4efa ovl: fix warning in ovl_create_real() 4658f2a9b336 fuse: annotate lock in fuse_reverse_inval_entry() 8c6fdf62bfe1 media: mxl111sf: change mutex_init() location 403716741c6c USB: core: Make do_proc_control() and do_proc_bulk() killable 303644fe7e0c bpf: Fix extable address check. eea5a58d86a4 bpf, x64: Factor out emission of REX byte in more cases 7e83a6577d5c mptcp: add missing documented NL params e8d38fcd0a1c xsk: Do not sleep in poll() when need_wakeup set 6b2ee1002c6b ARM: dts: imx6ull-pinfunc: Fix CSI_DATA07__ESAI_TX0 pad name 0e8ffdf3b86d can: m_can: pci: use custom bit timings for Elkhart Lake 274f4b342ba9 can: m_can: make custom bittiming fields const 5b4641e9c06c Revert "can: m_can: remove support for custom bit timing" e3a01c14e806 drm/amd/pm: fix reading SMU FW version from amdgpu_firmware_info on YC a386ae526866 drm/amdgpu: don't override default ECO_BITs setting f2e600f6572b drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE 9b9f2567145b powerpc/module_64: Fix livepatching for RO modules 78f27c43eb16 libata: if T_LENGTH is zero, dma direction should be DMA_NONE f67c85a557c8 perf inject: Fix segfault due to perf_data__fd() without open a7c0e6aa63c8 perf inject: Fix segfault due to close without open 4a74df7707b5 riscv: dts: unmatched: Add gpio card detect to mmc-spi-slot 7fe286afbd90 riscv: dts: unleashed: Add gpio card detect to mmc-spi-slot 5e14b8b2680a locking/rtmutex: Fix incorrect condition in rtmutex_spin_on_owner() c63433a09d6a cifs: sanitize multiple delimiters in prepath c5664d508674 timekeeping: Really make sure wall_to_monotonic isn't positive 89362ec97ac0 serial: 8250_fintek: Fix garbled text for console 3a1a4eb57417 iocost: Fix divide-by-zero on donation from low hweight cgroup d153ff65a977 zonefs: add MODULE_ALIAS_FS 210ab4e3c032 btrfs: fix missing blkdev_put() call in btrfs_scan_one_device() 8848395975bd btrfs: check WRITE_ERR when trying to read an extent buffer bbdaa7a48f46 btrfs: fix double free of anon_dev after failure to create subvolume 493ff661d434 btrfs: fix memory leak in __add_inode_ref() d1bac0d97bc9 selinux: fix sleeping function called from invalid context 252f245ff4a1 USB: serial: option: add Telit FN990 compositions db83bbfe1bec USB: serial: cp210x: fix CP2105 GPIO registration 5154bc1c16c9 usb: gadget: u_ether: fix race in setting MAC address in setup phase 428ad19f98bb usb: typec: tcpm: fix tcpm unregister port but leave a pending timer ffe642edb4e2 usb: cdnsp: Fix lack of spin_lock_irqsave/spin_lock_restore 368bfabceb11 usb: cdnsp: Fix issue in cdnsp_log_ep trace event ec83d6e57a62 usb: cdnsp: Fix incorrect calling of cdnsp_died function ed89521e2dcb usb: cdnsp: Fix incorrect status for control request 5cb5c3e1b184 usb: xhci: Extend support for runtime power management for AMD's Yellow carp. 67cbcd3fb8e6 usb: xhci-mtk: fix list_del warning when enable list debug d8888cdabedf PCI/MSI: Mask MSI-X vectors only on success 4df1af29930b PCI/MSI: Clear PCI_MSIX_FLAGS_MASKALL on error 3901c7784ad7 usb: dwc2: fix STM ID/VBUS detection startup delay in dwc2_driver_probe af00fb784286 USB: NO_LPM quirk Lenovo USB-C to Ethernet Adapher(RTL8153-04) e7a8a261bab0 tty: n_hdlc: make n_hdlc_tty_wakeup() asynchronous 5fc3cfa62b85 KVM: x86: Drop guest CPUID check for host initiated writes to MSR_IA32_PERF_CAPABILITIES 9f8b3f238530 Revert "usb: early: convert to readl_poll_timeout_atomic()" abd3a33b3f2b USB: gadget: bRequestType is a bitfield, not a enum d0ac17b9bac5 powerpc/85xx: Fix oops when CONFIG_FSL_PMC=n c8e8e6f4108e bpf, selftests: Fix racing issue in btf_skc_cls_ingress test 9f55f2913ebd bpf: Fix extable fixup offset. ecd8ad3af6d5 arm64: kexec: Fix missing error code 'ret' warning in load_other_segments() 5473fe0c484a afs: Fix mmap 44a6c846bc3a sit: do not call ipip6_dev_free() from sit_init_net() eb4687c74429 net: systemport: Add global locking for descriptor lifecycle e99fe4137b6d net/smc: Prevent smc_release() from long blocking ff3d58592be4 net: Fix double 0x prefix print in SKB dump 987e1a4682e5 dsa: mv88e6xxx: fix debug print for SPEED_UNFORCED 9a77c02d1d21 sfc_ef100: potential dereference of null pointer 0b4a5d1e15ce net: stmmac: dwmac-rk: fix oob read in rk_gmac_setup feb116a0ecc5 net/packet: rx_owner_map depends on pg_vec 27358aa81a7d netdevsim: Zero-initialize memory for new map's value in function nsim_bpf_map_alloc 288b0c511c11 ixgbe: set X550 MDIO speed before talking to PHY 2f2ebb7d4324 ixgbe: Document how to enable NBASE-T support 33c1707a8ea4 igc: Fix typo in i225 LTR functions 944b8be08131 igbvf: fix double free in `igbvf_probe` 81ffe207ae1b igb: Fix removal of unicast MAC filters of VFs 12dc89ccaf20 soc/tegra: fuse: Fix bitwise vs. logical OR warning 23311b92755f mptcp: fix deadlock in __mptcp_push_pending() c26ac0ea3a91 mptcp: clear 'kern' flag from fallback sockets 3de0c86d42f8 mptcp: remove tcp ulp setsockopt support 257b3bb16634 drm/amd/pm: fix a potential gpu_metrics_table memory leak cc98ef784152 drm/amd/display: Set exit_optimized_pwr_state for DCN31 a0dacf4bc3c5 ice: Don't put stale timestamps in the skb 89f9c880141e ice: Use div64_u64 instead of div_u64 in adjfine 68014890e438 rds: memory leak in __rds_conn_create() d92781bf78db flow_offload: return EOPNOTSUPP for the unsupported mpls action type 97cb5c82aa1d net: stmmac: fix tc flower deletion for VLAN priority Rx steering 1571ff2d199e mac80211: fix lookup when adding AddBA extension element 0783716ba2bd cfg80211: Acquire wiphy mutex on regulatory work e0984a4d414b mac80211: agg-tx: don't schedule_and_wake_txq() under sta->lock 95053f4477c9 drm/i915/display: Fix an unsigned subtraction which can never be negative. fb5099ad02dc drm/ast: potential dereference of null pointer 1456a0004cc5 mptcp: never allow the PM to close a listener subflow 1752132eba08 selftest/net/forwarding: declare NETIFS p9 p10 7c23a5d90733 net: dsa: mv88e6xxx: Unforce speed & duplex in mac_link_down() 4985d3b53c4d selftests/net: toeplitz: fix udp option 491c1253441e net/sched: sch_ets: don't remove idle classes from the round-robin list 215b5046b11e drm: simpledrm: fix wrong unit with pixel clock 00b072a55ffc dmaengine: st_fdma: fix MODULE_ALIAS ee3701c4d975 dmaengine: idxd: fix missed completion on abort path 088e4d7dba27 selftests: Fix IPv6 address bind tests 28c73d856b71 selftests: Fix raw socket bind tests with VRF 013ed7533966 selftests: Add duplicate config only for MD5 VRF tests 769f38809709 net: hns3: fix race condition in debugfs 4f4a353f6fe0 net: hns3: fix use-after-free bug in hclgevf_send_mbx_msg a4377575d2e9 selftests: icmp_redirect: pass xfail=0 to log_test() 4cd2d21bbe58 netdevsim: don't overwrite read only ethtool parms e5d28205bf1d inet_diag: fix kernel-infoleak for UDP sockets f6deae2e2d83 sch_cake: do not call cake_destroy() from cake_init() cc851898751d s390/kexec_file: fix error handling when applying relocations b0eb9ac9ddc3 selftests: net: Correct ping6 expected rc from 2 to 1 9ff66e9ceefc Revert "drm/fb-helper: improve DRM fbdev emulation device names" 03b5d9d618a6 vdpa: Consider device id larger than 31 091b84437a82 virtio/vsock: fix the transport to work with VMADDR_CID_ANY 149a4d12c44b virtio: always enter drivers/virtio/ fac85fe13547 iwlwifi: mvm: don't crash on invalid rate w/o STA f295986e5b6d soc: imx: Register SoC device only on i.MX boards ad4adbbf666e clk: Don't parent clks until the parent is fully registered d058c136fe3d arm64: dts: imx8mq: remove interconnect property from lcdif f580a4315062 ARM: socfpga: dts: fix qspi node compatible e7506c76b7ef ceph: initialize pathlen variable in reconnect_caps_cb 24a19e6d6518 ceph: fix duplicate increment of opened_inodes metric 832f3655c613 tee: amdtee: fix an IS_ERR() vs NULL bug 42d08e97b196 mac80211: track only QoS data frames for admission control b08767936841 dmaengine: idxd: fix calling wq quiesce inside spinlock 05d2cc973cf5 dmaengine: idxd: add halt interrupt support f2aebdaa3d3c arm64: dts: rockchip: fix poweroff on helios64 d4218b2803de arm64: dts: rockchip: fix audio-supply for Rock Pi 4 77eb455febc5 arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply e2daa0c9e898 arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply c2ff001288dd arm64: dts: rockchip: remove mmc-hs400-enhanced-strobe from rk3399-khadas-edge 8e72fcf9aa9a pinctrl: amd: Fix wakeups when IRQ is shared with SCI 78ae328fb170 drm/i915/hdmi: Turn DP++ TMDS output buffers back on in encoder->shutdown() 8f50c26fdf65 drm/i915/hdmi: convert intel_hdmi_to_dev to intel_hdmi_to_i915 4999509a9184 scsi: ufs: core: Retry START_STOP on UNIT_ATTENTION af9b9c8bfeee btrfs: remove stale comment about the btrfs_show_devname a6e7e218a4d6 btrfs: update latest_dev when we create a sprout device e342c2558016 btrfs: use latest_dev in btrfs_show_devname 5c460192c2fa btrfs: convert latest_bdev type to btrfs_device and rename a5f4d17daf2e audit: improve robustness of the audit queue handling 607beb420b3f dm btree remove: fix use after free in rebalance_children() 09cdb8aa5904 ceph: fix up non-directory creation in SGID directories 2c7a616145aa arm64: dts: ten64: remove redundant interrupt declaration for gpio-keys ab2ba2dd711f recordmcount.pl: look for jgnop instruction as well as bcrl on s390 2eeff00926e5 s390/entry: fix duplicate tracking of irq nesting level b08b3bfcc720 vdpa: check that offsets are within bounds 0c51663c77d2 virtio_ring: Fix querying of maximum DMA mapping size for virtio device ebbbc5fea3f6 vduse: check that offset is within bounds in get_config() e6c67560b434 vduse: fix memory corruption in vduse_dev_ioctl() 2746d3face65 bpf, selftests: Update test case for atomic cmpxchg on r0 with pointer f87a6c160ecc bpf: Fix kernel address leakage in atomic cmpxchg's r0 aux reg d0d68083f273 bpf, selftests: Add test case trying to taint map value pointer dbda060d50ab bpf: Make 32->64 bounds propagation slightly more robust f77d7a35d491 bpf: Fix signed bounds propagation after mov32 efcad725feb4 bpf, selftests: Add test case for atomic fetch on spilled pointer 423628125a48 bpf: Fix kernel address leakage in atomic fetch 976389cbb16c firmware: arm_scpi: Fix string overflow in SCPI genpd driver c62b16f98688 mac80211: validate extended element ID is present e606db721de5 mac80211: send ADDBA requests using the tid/queue of the aggregation session 815ee27cfbf8 mac80211: mark TX-during-stop for TX in in_reconfig a7aed5c87d74 mac80211: fix regression in SSN handling of addba tx 237ee0f24bc4 mac80211: fix rate control for retransmitted frames 6bd55427e266 KVM: X86: Fix tlb flush for tdp in kvm_invalidate_pcid() bf4367c02c8c x86/kvm: remove unused ack_notifier callbacks 54bf0b0d3536 KVM: downgrade two BUG_ONs to WARN_ON_ONCE 4b65555a501e KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE 6890c75c14b3 KVM: VMX: clear vmx_x86_ops.sync_pir_to_irr if APICv is disabled efccff32defc reset: tegra-bpmp: Revert Handle errors in BPMP response Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12linux-yocto/5.10: update to v5.10.89Bruce Ashfield
Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: eb967e323f7f Linux 5.10.89 52ad5da8e316 phonet/pep: refuse to enable an unbound pipe 7dd52af1eb57 hamradio: improve the incomplete fix to avoid NPD 450121075a6a hamradio: defer ax25 kfree after unregister_netdev 8e34d07dd4d9 ax25: NPD bug when detaching AX25 device 50f78486f90b hwmon: (lm90) Do not report 'busy' status bit as alarm ec1d222d37ea hwmom: (lm90) Fix citical alarm status for MAX6680/MAX6681 441d3873664d pinctrl: mediatek: fix global-out-of-bounds issue 9c75a9657bdc ASoC: rt5682: fix the wrong jack type detected 94caab5af19a ASoC: tas2770: Fix setting of high sample rates c7282790c782 Input: goodix - add id->model mapping for the "9111" model 3bb3bf50d69f Input: elants_i2c - do not check Remark ID on eKTH3900/eKTH5312 ee6f34215c5d mm: mempolicy: fix THP allocations escaping mempolicy restrictions 8008fc1d0be1 KVM: VMX: Fix stale docs for kvm-intel.emulate_invalid_guest_state d91ed251fd70 usb: gadget: u_ether: fix race in setting MAC address in setup phase 6697f29bf56b ceph: fix up non-directory creation in SGID directories fffb6581a23a f2fs: fix to do sanity check on last xattr entry in __f2fs_setxattr() ad338d825e3f tee: optee: Fix incorrect page free bug 1f2070767401 mm/hwpoison: clear MF_COUNT_INCREASED before retrying get_any_page() ac61b9c6c054 mac80211: fix locking in ieee80211_start_ap error path 89876d10830d ARM: 9169/1: entry: fix Thumb2 bug in iWMMXt exception handling c3253d3a38bc mmc: mmci: stm32: clear DLYB_CR after sending tuning command 0d66b395210c mmc: core: Disable card detect during shutdown c8e366a01c20 mmc: meson-mx-sdhc: Set MANUAL_STOP for multi-block SDIO commands 4af79153617b mmc: sdhci-tegra: Fix switch to HS400ES mode 9a7ec7979785 gpio: dln2: Fix interrupts when replugging the device f5b02912e2dd pinctrl: stm32: consider the GPIO offset to expose all the GPIO lines 28626e76baf5 KVM: VMX: Wake vCPU when delivering posted IRQ even if vCPU == this vCPU 7a37f2e37069 platform/x86: intel_pmc_core: fix memleak on registration failure b57afd124046 x86/pkey: Fix undefined behaviour with PKRU_WD_BIT c05d8f66ec34 tee: handle lookup of shm with reference count 0 0ffb9f83e4f6 parisc: Fix mask used to select futex spinlock 5deeb9ad598b parisc: Correct completer in lws start 8b745616ba8f ipmi: fix initialization when workqueue allocation fails 1f6ab847461c ipmi: ssif: initialize ssif_info->client early a5192f31160c ipmi: bail out if init_srcu_struct fails bc674f1b2119 Input: atmel_mxt_ts - fix double free in mxt_read_info_block 30140e252fdb ASoC: meson: aiu: Move AIU_I2S_MISC hold setting to aiu-fifo-i2s 2b4c020b70cc ALSA: hda/realtek: Fix quirk for Clevo NJ51CU 7470780f3b0c ALSA: hda/realtek: Add new alc285-hp-amp-init model 4cb7dc2e3074 ALSA: hda/realtek: Amp init fixup for HP ZBook 15 G6 69e492161c7b ALSA: drivers: opl3: Fix incorrect use of vp->state a96c08e0b41e ALSA: jack: Check the return value of kstrdup() 51c7b2a7b86a hwmon: (lm90) Drop critical attribute support for MAX6654 2464738d0ee4 hwmon: (lm90) Introduce flag indicating extended temperature support 196df56c3dc8 hwmon: (lm90) Add basic support for TI TMP461 fa2e149260bf hwmon: (lm90) Fix usage of CONFIG2 register in detect function ba696b470839 pinctrl: bcm2835: Change init order for gpio hogs 676c572439e5 Input: elantech - fix stack out of bound access in elantech_change_report_id() 2792fde84cce sfc: falcon: Check null pointer of rx_queue->page_ring d70b4001ef74 sfc: Check null pointer of rx_queue->page_ring 75c962f02a4f net: ks8851: Check for error irq 9db0f8d395fd drivers: net: smc911x: Check for error irq ca2a15053b07 fjes: Check for error irq c6d2754006c1 bonding: fix ad_actor_system option setting to default 6809da518514 ipmi: Fix UAF when uninstall ipmi_si and ipmi_msghandler module 61e6b82e7b6c igb: fix deadlock caused by taking RTNL in RPM resume path e00eace2325c net: skip virtio_net_hdr_set_proto if protocol already set ed05e4dcfba6 net: accept UFOv6 packages in virtio_net_hdr_to_skb 56b0bbba782b qlcnic: potential dereference null pointer of rx_queue->page_ring 78e49d77e517 net: marvell: prestera: fix incorrect return of port_find 861b4413e41d ARM: dts: imx6qdl-wandboard: Fix Ethernet support d79f5e0d458b netfilter: fix regression in looped (broad|multi)cast's MAC handling 579cefef7c42 RDMA/hns: Replace kfree() with kvfree() 7cf6466e00a7 IB/qib: Fix memory leak in qib_user_sdma_queue_pkts() cd9c90682b2f ASoC: meson: aiu: fifo: Add missing dma_coerce_mask_and_coherent() 580ecf86e772 spi: change clk_disable_unprepare to clk_unprepare 93a957bbf46c arm64: dts: allwinner: orangepi-zero-plus: fix PHY mode ef2dce43257d HID: potential dereference of null pointer 3110bc5862d2 HID: holtek: fix mouse probing 0875873b2a97 ext4: check for inconsistent extents between index and leaf block 76366c024f56 ext4: check for out-of-order index extents in ext4_valid_extent_entries() 1d4b1c4e8bbd ext4: prevent partial update of the extent blocks f69a47fcbb9c net: usb: lan78xx: add Allied Telesis AT29M2-AF 8c0059a25cb1 arm64: vdso32: require CROSS_COMPILE_COMPAT for gcc+bfd b16b124a42e0 arm64: vdso32: drop -no-integrated-as flag 856f88f27bbc Linux 5.10.88 88f20cccbeec xen/netback: don't queue unlimited number of packages 525875c410df xen/netback: fix rx queue stall detection 8fa3a370cc2a xen/console: harden hvc_xen against event channel storms d31b3379179d xen/netfront: harden netfront against event channel storms 8ac3b6ee7c9f xen/blkfront: harden blkfront against event channel storms 76ec7fe2d866 Revert "xsk: Do not sleep in poll() when need_wakeup set" e24fc8983025 bus: ti-sysc: Fix variable set but not used warning for reinit_modules 70692b06208c rcu: Mark accesses to rcu_state.n_force_qs a9078e791426 scsi: scsi_debug: Sanity check block descriptor length in resp_mode_select() bdb854f134b9 scsi: scsi_debug: Fix type in min_t to avoid stack OOB aa1f912712a1 scsi: scsi_debug: Don't call kcalloc() if size arg is zero 6859985a2fbd ovl: fix warning in ovl_create_real() 5fd7d62daa24 fuse: annotate lock in fuse_reverse_inval_entry() b99bdf127af9 media: mxl111sf: change mutex_init() location 0413f7a1a533 xsk: Do not sleep in poll() when need_wakeup set 6b8d8ecdd980 ARM: dts: imx6ull-pinfunc: Fix CSI_DATA07__ESAI_TX0 pad name 8affa1b68db6 Input: touchscreen - avoid bitwise vs logical OR warning aec5897b277b drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE c1d519263ded libata: if T_LENGTH is zero, dma direction should be DMA_NONE a9f2c6af5a60 timekeeping: Really make sure wall_to_monotonic isn't positive 6471ebcd6f15 serial: 8250_fintek: Fix garbled text for console a7c80674538f iocost: Fix divide-by-zero on donation from low hweight cgroup bcebb8eb1948 zonefs: add MODULE_ALIAS_FS 1c414ff63b2d btrfs: fix double free of anon_dev after failure to create subvolume 005d9292b5b2 btrfs: fix memory leak in __add_inode_ref() cd98cb5216a0 USB: serial: option: add Telit FN990 compositions 5c93584d9a2f USB: serial: cp210x: fix CP2105 GPIO registration 8f207f12630b usb: xhci: Extend support for runtime power management for AMD's Yellow carp. e5949933f313 PCI/MSI: Mask MSI-X vectors only on success f8aa09186c30 PCI/MSI: Clear PCI_MSIX_FLAGS_MASKALL on error d17c5a389768 usb: dwc2: fix STM ID/VBUS detection startup delay in dwc2_driver_probe 2b2edc8fc5a8 USB: NO_LPM quirk Lenovo USB-C to Ethernet Adapher(RTL8153-04) fd623e16b2ff tty: n_hdlc: make n_hdlc_tty_wakeup() asynchronous 9439fabfc349 KVM: x86: Drop guest CPUID check for host initiated writes to MSR_IA32_PERF_CAPABILITIES 5fe305c6d485 Revert "usb: early: convert to readl_poll_timeout_atomic()" 2b54f485f2c1 USB: gadget: bRequestType is a bitfield, not a enum 151ffac3ac27 powerpc/85xx: Fix oops when CONFIG_FSL_PMC=n fcf9194d366c bpf, selftests: Fix racing issue in btf_skc_cls_ingress test 6f46c59e60b6 sit: do not call ipip6_dev_free() from sit_init_net() 6e1011cd183f net: systemport: Add global locking for descriptor lifecycle d1765f984c99 net/smc: Prevent smc_release() from long blocking 337bb7bf7c31 net: Fix double 0x prefix print in SKB dump 734a3f310605 sfc_ef100: potential dereference of null pointer 7da349f07e45 net/packet: rx_owner_map depends on pg_vec 1a34fb9e2bf3 netdevsim: Zero-initialize memory for new map's value in function nsim_bpf_map_alloc d3e1f54508f1 ixgbe: set X550 MDIO speed before talking to PHY 48e01e388182 ixgbe: Document how to enable NBASE-T support 776ed8b36697 igc: Fix typo in i225 LTR functions 74a16e062b23 igbvf: fix double free in `igbvf_probe` ddac50d04f34 igb: Fix removal of unicast MAC filters of VFs 12c1938870dc soc/tegra: fuse: Fix bitwise vs. logical OR warning 451f1eded7f5 mptcp: clear 'kern' flag from fallback sockets 222cebd995cd drm/amd/pm: fix a potential gpu_metrics_table memory leak 74dc97dfb276 rds: memory leak in __rds_conn_create() 67f4362ae286 flow_offload: return EOPNOTSUPP for the unsupported mpls action type 03fd6ca05601 mac80211: fix lookup when adding AddBA extension element bef59d6a83d3 mac80211: agg-tx: don't schedule_and_wake_txq() under sta->lock 96bc86cac0a9 drm/ast: potential dereference of null pointer cac0fd4b9bd3 selftest/net/forwarding: declare NETIFS p9 p10 81fbdd45652d net/sched: sch_ets: don't remove idle classes from the round-robin list be32c8a78887 dmaengine: st_fdma: fix MODULE_ALIAS dfff1d5e85ff selftests: Fix IPv6 address bind tests 08896ecfffc3 selftests: Fix raw socket bind tests with VRF 5ba4dfb8b8a1 selftests: Add duplicate config only for MD5 VRF tests 12512bc8f25b net: hns3: fix use-after-free bug in hclgevf_send_mbx_msg 3a4f6dba1eb9 inet_diag: fix kernel-infoleak for UDP sockets 20ad1ef02f9a sch_cake: do not call cake_destroy() from cake_init() 1208b445a497 s390/kexec_file: fix error handling when applying relocations c058c544e73a selftests: net: Correct ping6 expected rc from 2 to 1 9983425c203b virtio/vsock: fix the transport to work with VMADDR_CID_ANY 94a01e6fb2d8 soc: imx: Register SoC device only on i.MX boards cc426a91d384 clk: Don't parent clks until the parent is fully registered 429bb01e4dda ARM: socfpga: dts: fix qspi node compatible 7b4cc168d9ca ceph: initialize pathlen variable in reconnect_caps_cb e0f06c32afb2 ceph: fix duplicate increment of opened_inodes metric 640e28d618e8 tee: amdtee: fix an IS_ERR() vs NULL bug eed897a22230 mac80211: track only QoS data frames for admission control 24983f750881 arm64: dts: rockchip: fix audio-supply for Rock Pi 4 49bd597719bf arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply 9fcdbbf3964d arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply ba866840b240 arm64: dts: rockchip: remove mmc-hs400-enhanced-strobe from rk3399-khadas-edge 3516bc149223 arm64: dts: imx8mp-evk: Improve the Ethernet PHY description 06294e7e341a arm64: dts: imx8m: correct assigned clocks for FEC 4cc6badff97f audit: improve robustness of the audit queue handling 0e21e6cd5eeb dm btree remove: fix use after free in rebalance_children() f5187a9d52ae recordmcount.pl: look for jgnop instruction as well as bcrl on s390 51f6302f81d2 vdpa: check that offsets are within bounds e3a1ab5aea4c virtio_ring: Fix querying of maximum DMA mapping size for virtio device 0612679e48d0 bpf, selftests: Add test case trying to taint map value pointer 279e0bf80d95 bpf: Make 32->64 bounds propagation slightly more robust e2aad0b5f2cb bpf: Fix signed bounds propagation after mov32 f0f484714f35 firmware: arm_scpi: Fix string overflow in SCPI genpd driver 7fd214fc7f2e mac80211: validate extended element ID is present 0bb50470f1e0 mac80211: send ADDBA requests using the tid/queue of the aggregation session 29bb131dbbb5 mac80211: mark TX-during-stop for TX in in_reconfig 15640e40e3bb mac80211: fix regression in SSN handling of addba tx 49b7e496928e KVM: downgrade two BUG_ONs to WARN_ON_ONCE 8d0f56c2ed71 KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12connman-conf: do nothing in qemu, do not touch eth0Alexander Kanavin
qemu kernel itself is nowdays perfectly capable of setting up what was passed in via ip=: [ 1.676847] IP-Config: Complete: [ 1.677768] device=eth0, hwaddr=52:54:00:12:34:02, ipaddr=192.168.7.2, mask=255.255.255.0, gw=192.168.7.1 [ 1.679933] host=192.168.7.2, domain=, nis-domain=(none) [ 1.681201] bootserver=255.255.255.255, rootserver=255.255.255.255, rootpath= [ 1.681203] nameserver0=8.8.8.8 connman-conf only does the same thing again by (badly and incompletely) parsing those parameters with sed. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-12ofono: update to 1.34Oleksandr Kravchuk
Changelog: - Fix issue with handling device info of Quectel modems. - Fix issue with handling callback for RIL dial manager. Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>