summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* bitbake: bitbake: Add copyright headers where missingRichard Purdie2022-10-1128-0/+56
| | | | | | | | | | | | Where copyright headers were not present, add them to make things clear. (Bitbake rev: e591325b2bd901c381003deb96a7b32a7148e93e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 1aa338a216350a2751fff52f866039343e9ac013) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: siggen: Fix insufficent entropy in sigtask file namesJoshua Watt2022-10-112-1/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | Signature generation uses mkstemp() to get a file descriptor to a unique file and then write the signature into it. However, the unique file name generation in glibc is based on the system timestamp, which means that with highly parallel builds it is more likely than one might expect expected that a conflict will occur between two different builder nodes. When operating over NFS (such as a shared sstate cache), this can cause race conditions and rare failures (particularly with NFS servers that may not correctly implement O_EXCL). The signature generation code is particularly susceptible to races since a single "sigtask." prefix used for all signatures from all tasks, which makes collision even more likely. To work around this, add an internal implementation of mkstemp() that adds additional truly random entropy to the file name to eliminate conflicts. (Bitbake rev: 63bb5591e833de0e7b552963ad9bc4b39e56fda9) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> (cherry picked from commit 97955f3c1c738aa4b4478a6ec10a08094ffc689d) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: runqueue: Drop deadlock breaking force failRichard Purdie2022-10-111-3/+0
| | | | | | | | | | | | | | | | | I'm 99% certain this failing of a scenequeue task corrupts runqueue and causes all kinds of breakage. I'd rather runqueue deadlocked than corrupted and did weird things so drop this code. We've seen builds where the deadlock triggers and it then tries to run tasks where the SQ task already ran with very confusing failures. It is likely it is this code causing it. (Bitbake rev: f386298fc056ef130c2eb6dabf25eafbd55f55ca) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 8efced47fcb47851a370fd6786df6fb377f99963) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: runqueue: Improve deadlock warning messagesRichard Purdie2022-10-111-4/+6
| | | | | | | | | | | | | Tweak the deadlock breaking messages to be explict about which task is blocked on which other task. The messages currently imply it is "freeing" the blocking task which is confusing. (Bitbake rev: d1b84e3cfe9fb8d282d4b700a9fe31891e00d837) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit cf7f60b83adaded180f6717cb4681edc1d65b66d) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: runqueue: Ensure deferred tasks are sorted by multiconfigRichard Purdie2022-10-111-5/+8
| | | | | | | | | | | | | | | | We have to prefer one multiconfig over another when deferring tasks, else we'll have cross-linked build trees and nothing will be able to build. In the original population code, we sort like this but we don't after rehashing. Ensure we have the same sorting after rehashing toa void deadlocks. (Bitbake rev: 513bfd771d9095fcb6a8bf93806673dbf988a4de) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 27228c7f026acb8ae9e1211d0486ffb7338123a2) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* coreutils: add openssl PACKAGECONFIGDaniel McGregor2022-10-111-0/+1
| | | | | | | | | | | | | | | | | coreutils-native will pick up openssl on the host if it's GPL compatible (version >= 3), which causes uninative failures with hosts that don't have openssl3. Add a PACKAGECONFIG entry for openssl so it can be enabled, but isn't by default. (From OE-Core rev: e728d0965d6fda8ac54e065ca7bf7eb9da9a8170) Signed-off-by: Daniel McGregor <daniel.mcgregor@vecima.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 9859a8124a0c09ac38d476445e7df7097f41d153) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glibc-locale: explicitly remove empty dirs in ${libdir}Denys Dmytriyenko2022-10-111-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | glibc-locale defaults to ENABLE_BINARY_LOCALE_GENERATION ?= "0", but gets changed to "1" in the default-distrovars.inc When it is explicitly set back to "0", it fails with this error: ERROR: glibc-locale-2.35-r0 do_package: QA Issue: glibc-locale: Files/directories were installed but not shipped in any package: /usr/lib/locale Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. glibc-locale: 1 installed and not shipped files. [installed-vs-shipped] ERROR: glibc-locale-2.35-r0 do_package: Fatal QA errors were found, failing task. There's a code to remove empty dirs in ${libdir}, but it's keyed off of PACKAGE_NO_GCONV to clean up $[libdir]/gconv, just extend it to also cover other empty dirs, including ${libdir}/locale. (From OE-Core rev: 46b703dbbddf612f70d9fd402b8538fca9c757e4) Signed-off-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lttng-tools: Disable on riscv32He Zhe2022-10-111-1/+1
| | | | | | | | | | | | | | As a bunch of other assignments did, let this cover all riscv32 architectures, not just qemuriscv32. (From OE-Core rev: b1883d725e2ee833b6bcbc2036df8c8287bed547) Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 976fe5e3fb630e9daf5bbde79ee2148a7a97694a) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* stress-cpu: disable float128 math on powerpc64 to avoid SIGILLHe Zhe2022-10-112-1/+46
| | | | | | | | | | | | | | | | | | | | | float128 requires instructions of xsmaddqp and xsmsubqp which are added to qemu since v7.0 by the following commit. https://github.com/qemu/qemu/commit/3bb1aed246d7b59ceee625a82628f7369d492a8f While kirkstone is still at v6.2 and thus experiences SIGILL as follow root@qemuppc64:~# stress-ng --cpu 2 --timeout 30s stress-ng: info: [972] setting to a 30 second run per stressor stress-ng: info: [972] dispatching hogs: 2 cpu stress-ng: info: [973] stressor terminated with unexpected signal signal 4 'SIGILL' <snip> This is specific to kirkstone since qemu on master branch has upgraded to v7.1. (From OE-Core rev: a3d6742ac066c6dd323c5efd95bed36c30f69127) Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* create-pull-request: don't switch the git remote protocol to git://Martin Jansa2022-10-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Many git repos prefer https:// nowadays and many removed support for git://. This breaks the script when using github.com even when selected remote is ssh (git@github.com:openembedded/...), it will re-write it to git:// before calling git pull-request causing: openembedded-core $ scripts/create-pull-request -u github -b jansa/artifacts -o pull-kernel NOTE: Assuming local branch HEAD, use -l to override. fatal: unable to connect to github.com: github.com[0: 140.82.121.3]: errno=Connection timed out warn: No match for commit ea003bd026aa24bb4c8b7562f44ed6512e921259 found at git://github.com/shr-distribution/oe-core warn: Are you sure you pushed 'jansa/artifacts' there? ERROR: git request-pull reported an error (From OE-Core rev: 5aac691040502e6f578316dfc090643d341dd3cb) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 64c466920b808c35d1ac87b47cf438bc79becea7) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lttng-tools: Disable on qemuriscv32He Zhe2022-10-111-0/+4
| | | | | | | | | | | | | | | | | lttng-tools requires SYS_ppoll and SYS_pselect6 which are not supported on riscv32. This has been confirmed by lttng-tools upstream. https://github.com/lttng/lttng-tools/pull/162 It's also turned off for riscv32 in meta-riscv. https://github.com/riscv/meta-riscv/blob/master/conf/layer.conf (From OE-Core rev: 035fddfa35ccf17d3f1636f6410e626240fe527d) Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 68b07bb7f0f01925f9da1cb966239ee49d5c84e3) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tzdata: update to 2022dAlexander Kanavin2022-10-111-3/+3
| | | | | | | | | | (From OE-Core rev: cc3d1034d5635fe8270eb532b586c8fb84d851bc) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ceac0492e75baa63a46365d8b63275437ad5671f) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bind: upgrade 9.18.6 -> 9.18.7Teoh Jay Shen2022-10-1110-1/+1
| | | | | | | | | | | | | | | | | | | | CVE fixed : -CVE-2022-2795 -CVE-2022-2881 -CVE-2022-2906 -CVE-2022-3080 -CVE-2022-38178 Notes for BIND 9.18.7 [https://downloads.isc.org/isc/bind9/9.18.7/doc/arm/html/notes.html#notes-for-bind-9-18-7] (From OE-Core rev: 5b87b79c6bb155d23ad4eab3243118b98a3b5906) (From OE-Core rev: 01710ddade6cf20a5ddbbf9599843e8753baff51) Signed-off-by: Teoh Jay Shen <jay.shen.teoh@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bind: upgrade 9.18.5 -> 9.18.6wangmy2022-10-1110-1/+1
| | | | | | | | | | | | (From OE-Core rev: f7061fc14cbc4388b1fd0cf6233b1a2e743e20e5) (From OE-Core rev: daae4cada71b197a353b7f0446d43f98e17bcbaa) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rpm: Remove -Wimplicit-function-declaration warningsKhem Raj2022-10-111-7/+11
| | | | | | | | | | | (From OE-Core rev: 9f2dbfc51ef2faf1b6154856adb69ca9f764573b) (From OE-Core rev: b2be1f5e7e858056cd5bf3273dca312a5ea8cf92) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rpm: update 4.17.0 -> 4.17.1Alexander Kanavin2022-10-116-461/+40
| | | | | | | | | | | | (From OE-Core rev: 826eb17fe741d38be24d31f3bba35074e404a414) (From OE-Core rev: 49a875322110e5c9d90d99473a0e3f874e42739c) 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> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rsync: update 3.2.4 -> 3.2.5Florin Diaconescu2022-10-111-1/+1
| | | | | | | | | | Changelog: https://download.samba.org/pub/rsync/NEWS#3.2.5 (From OE-Core rev: 9431be33d8107e7c861b5b41411aae1532fb2c8c) Signed-off-by: Florin Diaconescu <florin.diaconescu009@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rsync: update 3.2.3 -> 3.2.4Florin Diaconescu2022-10-113-41/+19
| | | | | | | | | | | | | | Drop configure options that have been removed upstream. License-Update: formatting Changelog: https://download.samba.org/pub/rsync/NEWS#3.2.4 (From OE-Core rev: 4a4097ed1db8ecedbcf12388207c546d4d106e17) Signed-off-by: Florin Diaconescu <florin.diaconescu009@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* webkitgtk: Update to 2.36.7Khem Raj2022-10-111-2/+1
| | | | | | | | | | | | | | including fixes for CVE-2022-32893 (From OE-Core rev: edbfd06927ef4a9bb1ea1ff80fbc901ede89ce42) (From OE-Core rev: d95303abef02f3f0e479c3b007f47fc72a9d2d49) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Teoh Jay Shen <jay.shen.teoh@intel.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* webkitgtk: Upgrade to 2.36.6 minor updateKhem Raj2022-10-111-1/+1
| | | | | | | | | | | | (From OE-Core rev: bee36428a45c6c0c24d4c0fcf64bd890f3481c4a) (From OE-Core rev: 342a05cc65aaff83f738988211f291e377b1ab87) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vim: Upgrade 9.0.0541 -> 9.0.0598Richard Purdie2022-10-111-2/+2
| | | | | | | | | | | | | Includes a fix for CVE-2022-3278. (From OE-Core rev: 9837a62cc42de4120794d4ae8d0264109b8308dc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 98c40271692147873a622e168e8b2e90a9fcc54c) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* binutils : Fix CVE-2022-38127pgowda2022-10-115-0/+1670
| | | | | | | | | | | | | | Upstream-Status: Backport [https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=19c26da69d68d5d863f37c06ad73ab6292d02ffa] Upstream-Status: Backport [https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=ec41dd75c866599fc03c390c6afb5736c159c0ff] Upstream-Status: Backport [https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=f18acc9c4e5d18f4783f3a7d59e3ec95d7af0199] Upstream-Status: Backport [https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=e98e7d9a70dcc987bff0e925f20b78cd4a2979ed] (From OE-Core rev: e384b754eb0223928c239db42ece93c06dce6daa) Signed-off-by: pgowda <pgowda.cve@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* migration-guides: add 4.0.4 release notesMichael Opdenacker2022-10-072-0/+300
| | | | | | | | (From yocto-docs rev: df129c47f866b933af722b1214f3296a8cfe483b) Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* poky.yaml.in: update version requirementsMichael Opdenacker2022-10-052-1/+3
| | | | | | | | | | According to meta/classes/sanity.bbclass in Poky (From yocto-docs rev: 2c6207606329c2b4ec56b7af538182ebf3c92792) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reported-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* busybox: add devmem 128-bit supportMingli Yu2022-09-282-0/+129
| | | | | | | | | | | | | | | Add devmem 128-bit support [1]. [1] https://git.busybox.net/busybox/commit/?id=d432049f288c9acdc4a7caa729c68ceba3c5dca1 (From OE-Core rev: d19cd09b43a7009d660b28ac9dcb21b8038e399f) Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit d0d78aa7a34fbd7065b31ffc224be8e1984cb7aa) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/runtime/dnf: fix typoAlexandre Belloni2022-09-281-1/+1
| | | | | | | | | | (From OE-Core rev: 7bd92a0fac5f83c5c8b38591901760753192e586) Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 454b85fc612bd060b51ac2b94e36698ed1b76d56) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tune-neoversen2: support tune-neoversen2 base on armv9aRuiqiang Hao2022-09-282-6/+32
| | | | | | | | | | | We supported neoversen2 base on armv8.5a in the past, add tune include for armv9a and support neoversen2 base on armv9a. (From OE-Core rev: 278c50d18ac6b92d43778f9b797ab5999ae869ad) Signed-off-by: Ruiqiang Hao <Ruiqiang.Hao@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gcc: add arm-v9 supportRuiqiang Hao2022-09-285-0/+468
| | | | | | | | | | Backport some patches from GCC 12 to support arm-v9. (From OE-Core rev: 450639bf4b46b963480b2ab4efe72e443d0524b3) Signed-off-by: Ruiqiang Hao <Ruiqiang.Hao@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ltp: Fix pread02 case trigger the glibc overflow detectionXiangyu Chen2022-09-282-0/+59
| | | | | | | | | | | Backport a patch to fix the pread02 case trigger the glibc overflow detection. (From OE-Core rev: 2d32385490344db529de7eca33bb0ab9a14e0555) Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gcc-cross-canadian: add default plugin linkerSamuli Piippo2022-09-281-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix multilib sdk issue where gcc is unable to find linker. Previous fix was in cdd86896c8d29135f937968e9aa07f919cf543d3 using real-ld symlink, but that prevented switching between bfd and gold linkers. Running compiler with debug arguments shows that collect2 tries and fails to find linker using the multilib triples: $ $CC -v -Wl,-debug ... Looking for 'real-ld' Looking for 'collect-ld' Looking for 'mips-oemllib32-linux-ld' Looking for 'mips-oe-linux-mips-oemllib32-linux-ld' ... collect2 version 12.2.0 ld_file_name = not found ... collect2: fatal error: cannot find ‘ld’ Using --with-plugin-ld=ld in gcc-cross-canadian builds to set default linker name for collect2, lets it find the linker correctly: Looking for 'real-ld' Looking for 'collect-ld' Looking for 'ld' ... collect2 version 12.2.0 ld_file_name = /usr/local/oecore-x86_64/sysroots/x86_64-oesdk-linux/usr/libexec/mips-oe-linux/gcc/mips-oe-linux/12.2.0/ld Swith between bfd and gold linker works as expected now: $ $CC -v -Wl,-debug -fuse-ld=gold ... Looking for 'real-ld' Looking for 'collect-ld' Looking for 'ld.gold' ... collect2 version 12.2.0 ld_file_name = /usr/local/oecore-x86_64/sysroots/x86_64-oesdk-linux/usr/libexec/i686-oe-linux/gcc/i686-oe-linux/12.2.0/ld.gold (From OE-Core rev: f4174b3bde5ec91293619fac3258f35153363c51) Signed-off-by: Samuli Piippo <samuli.piippo@qt.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit cf1bb16b7f9f81514feaf1e4ecffd9039387bb89) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Revert "gcc-cross-canadian: Add symlink to real-ld alongside other symlinks"Samuli Piippo2022-09-281-2/+0
| | | | | | | | | | | | | | | This reverts commit cdd86896c8d29135f937968e9aa07f919cf543d3. real-ld is always used if that is found, which means you cannot switch between bfd and gold linkers using -fuse-ld gcc option. (From OE-Core rev: 3d13ef9e457ad3854c5e9bc37f8ea9a6b0e6c54f) Signed-off-by: Samuli Piippo <samuli.piippo@qt.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 53ae417c63a4a7ff4a729d3653a31cf1c0758f10) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-libc-headers: switch from SRC_URI:append to SRC_URI +=Mikko Rapeli2022-09-281-1/+1
| | | | | | | | | | | | | | | The :append can not be removed via bbappends in custom layers so it's better to use += appends when ever possible. (From OE-Core rev: 6604795a3f7e53fd748d4103b521d8baf35cf7be) (From OE-Core rev: e754bc0f2562a0fe83b89864a4a897233887d99d) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ab9f6d205f655cffa2c75d89ba0456fa0586480c) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-rfc3986-validator: switch from SRC_URI:append to SRC_URI +=Mikko Rapeli2022-09-281-1/+1
| | | | | | | | | | | | | | | The :append can not be removed via bbappends if needed. Thus it's better for open source layers to use += append if possible. (From OE-Core rev: 1e09be9455fb054b3f74f088b355116828cb4626) (From OE-Core rev: 15ac2f4f2873a3c7b9f5bd0385d570e7b64fc643) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 4546b5186e5aa2808be6c1616eca15219c4fcb5d) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* go-native: switch from SRC_URI:append to SRC_URI +=Mikko Rapeli2022-09-281-1/+1
| | | | | | | | | | | | | | The :append can not be removed if needed in other layers. (From OE-Core rev: e129d2f7e3ba312ab5383397eeabf7273d23a529) (From OE-Core rev: 905062ef53c016091c36690b36ed9ed5203175e5) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 09ed655c2a8a0a246e7dcc745ec89f7a1d13813d) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glibc-tests: use += instead of :appendMikko Rapeli2022-09-281-2/+2
| | | | | | | | | | | | | | | :append can not be modified in bbappends and thus += is better in re-usable, generic layers and recipes. (From OE-Core rev: da88406ba592504a718f516b985adc0d4553080d) (From OE-Core rev: 98513137092ff259b163556167f034971b89fe64) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit c9676445c942b95cc2bb71085d1648c02d774479) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* u-boot: switch from append to += in SRC_URIMikko Rapeli2022-09-281-1/+1
| | | | | | | | | | | | | | | | | += allows custom layers to change the SRC_URI e.g. when updating the whole recipe to newer u-boot version. With :append, there is no way to change the variable from a bbappend. (From OE-Core rev: be96b384ce964ff14536d3bc40c89851a12dfb60) (From OE-Core rev: aa0e319fe07c0ac807a6963ac47fe5e70a0b6fff) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit be267f61698d149ed2f65190f362fc556af1f54e) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tzdata: Update from 2022b to 2022cRobert Joslyn2022-09-281-3/+3
| | | | | | | | | | (From OE-Core rev: 45540e1b5ef1e590ecfecefa513094b81585a934) Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ecf88d151f265e5efb8e1dde5aba3ee2a8b76d8d) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-firmware: package new Qualcomm firmwareDmitry Baryshkov2022-09-281-0/+22
| | | | | | | | | | | | | | | | | | | | Add packages for the new Qualcomm firmware released for Lenovo X13s laptop. The INSANE_SKIP:${PN} has to be provided to silent following warnings: WARNING: File '/lib/firmware/qcom/sc8280xp/LENOVO/21BX/qcadsp8280.mbn' from linux-firmware was already stripped, this will prevent future debugging! WARNING: File '/lib/firmware/qcom/sc8280xp/LENOVO/21BX/qcdxkmsuc8280.mbn' from linux-firmware was already stripped, this will prevent future debugging! WARNING: File '/lib/firmware/qcom/sc8280xp/LENOVO/21BX/qccdsp8280.mbn' from linux-firmware was already stripped, this will prevent future debugging! WARNING: File '/lib/firmware/qcom/sc8280xp/LENOVO/21BX/qcslpi8280.mbn' from linux-firmware was already stripped, this will prevent future debugging! (From OE-Core rev: 178441fcbb54bb70374fa231a6b5870ef52266fa) Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit af9924a3da0569e90c2d3abe030584456e66229b) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-firmware: upgrade 20220708 -> 20220913Dmitry Baryshkov2022-09-281-2/+2
| | | | | | | | | | | License-Update: additional files (From OE-Core rev: 5f04af95019926970dcabe755645d167ae46189f) Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 68ce822b765a7b67f8cc8590688860cc2530cf04) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* perf: Fix for recent kernel upgradesRichard Purdie2022-09-281-0/+6
| | | | | | | | | | | | | With recent kernel changes in stable, the full path to python was being encoded into binaries and python install files. Add some workarounds for both issues to fix build reproducibility issues. (From OE-Core rev: 35dbd02b73a586db9e09c6a6d36252244ea5e91f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit cf33e2ab2693eafaf0e5fc45666355d60e084281) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kern-tools: allow 'y' or 'm' to avoid config audit warningsBruce Ashfield2022-09-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | commit b627b8bd17501400649d38bf61c8a3d2121a1b8f (HEAD -> master, origin/master, origin/HEAD) Author: Bruce Ashfield <bruce.ashfield@gmail.com> Date: Sun Sep 18 16:36:43 2022 -0400 symbol_why: allow options to be flagged as built-in or module Some options that are hardware related, can either be built in or modules, and meet the criteria of being acceptable for a BSP. To allow these options to not throw warnings, we create a new configuration fragment to go along with the 'hardware.cfg' and 'nonhardware.cfg' special fragments. This new fragment is called 'y_or_m_enabled.cfg' and is effective for the fragments in its directory. The format is the same as hardware/nonhardware.cfg, is simply a list of CONFIG_ options. (From OE-Core rev: 35c2debe35103f92993d9d7bb164b7bd64629c67) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 9cd0623f89d8ff5ea95d6ab713dd4bf45742a8b1) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kern-tools: fix queue processing in relative TOPDIR configurationsBruce Ashfield2022-09-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As reported by Peter Hoyes, in some very specific configurations the processing done by the kern-tools results in errors. This is due to the bad creation of relative paths to patches and configuration. This is fixed by the following kern-tools commit (based on a similar suggestion by Peter): spp: ensure that relocations and patch paths are absolute If include directories (locations of layers) have relative components, and the path to a patch doesn't share that relative location, the detection of a common prefix can fail. When the common prefix is incorrectly specified, it can be the entire path to a patch. This results in everything being removed and subtle errors (as this shouldn't happen). By ensuring that both the relocation directories and patch path are absolute, we can avoid this issue. (From OE-Core rev: 8f76f9f04bf50d9c80ed23bd8297c5c9236b90bb) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit b9681ad7c5c72aa1e68b3cdc93788a03b3781d63) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel-yocto: allow patch author date to be commit dateBruce Ashfield2022-09-282-2/+6
| | | | | | | | | | | | | | | | | | | | In situations where a buid needs to be reproducible, it is sometimes desireable to use a patches author date, versus the time when it is applied. This generates a consistent hash between different patch applications. We leverage the existing KERNEL_DEBUG_TIMESTAMPS to trigger the use of a new option to kgit-s2q. This allows us to use the author date in a reproducible configuration, but disable it if we need the current time/date. (From OE-Core rev: 8dbce9b13960acfd6889567c11456e3c73a783b5) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ebe2411ce78d5e4ea49b9b4cb732b461ecc32ca6) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.15: cfg: fix ACPI warnings for -tinyBruce Ashfield2022-09-283-15/+15
| | | | | | | | | | | | Integrating the following commit(s) to linux-yocto/.: 1128d7bcdcd acpi: fix defaults for x86 and qemuarm64 (From OE-Core rev: 5eb09877b278b22e1aa1e3d3b8f9f3821ab5c8db) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.15: update to v5.15.68Bruce Ashfield2022-09-283-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating to the latest korg -stable release that comprises the following commits: dd20085f2a88 Linux 5.15.68 e04b25638aef ARM: at91: ddr: remove CONFIG_SOC_SAMA7 dependency 154e72a4b381 perf machine: Use path__join() to compose a path instead of snprintf(dir, '/', filename) 590b4f10e3a4 drm/bridge: display-connector: implement bus fmts callbacks e084c6ab37d2 arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly 4740910867ea iommu/vt-d: Correctly calculate sagaw value of IOMMU f9e792035a0b arm64/bti: Disable in kernel BTI when cross section thunks are broken a8a007c5b10f Revert "arm64: kasan: Revert "arm64: mte: reset the page tag in page->flags"" 7aa57d869e4a hwmon: (mr75203) enable polling for all VM channels 5e0fddad7100 hwmon: (mr75203) fix multi-channel voltage reading 948b7beb0073 hwmon: (mr75203) fix voltage equation for negative source input a02267ebb247 hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used sensors 000f3353231e hwmon: (mr75203) fix VM sensor allocation when "intel,vm-map" not defined 4b198c41d736 s390/boot: fix absolute zero lowcore corruption on boot a557ae094207 iommu/amd: use full 64-bit value in build_completion_wait() 4f8d65884808 swiotlb: avoid potential left shift overflow df82f5ce4f50 i40e: Fix ADQ rate limiting for PF 39d9de5872b6 i40e: Refactor tc mqprio checks 657d9d8ac3e6 kbuild: disable header exports for UML in a straightforward way 12202e0f74fd MIPS: loongson32: ls1c: Fix hang during startup 166ae43f02fb ASoC: mchp-spdiftx: Fix clang -Wbitfield-constant-conversion 4643fbc79ded ASoC: mchp-spdiftx: remove references to mchp_i2s_caps 30a455ac385e hwmon: (tps23861) fix byte order in resistance register 159d35a87ec3 perf script: Fix Cannot print 'iregs' field for hybrid systems 4519d4e32f98 sch_sfb: Also store skb len before calling child enqueue a600a9babad6 RDMA/irdma: Report RNR NAK generation in device caps 3ca173b217f4 RDMA/irdma: Return correct WC error for bind operation failure c1872dfde6f7 RDMA/irdma: Report the correct max cqes from query device a1d7c8647c18 nvmet: fix mar and mor off-by-one errors a96b1d33ec71 tcp: fix early ETIMEDOUT after spurious non-SACK RTO 8589bbfad2b4 nvme-tcp: fix regression that causes sporadic requests to time out 13c80a6c1124 nvme-tcp: fix UAF when detecting digest errors 8ddd001cef5e erofs: fix pcluster use-after-free on UP platforms 5fbe35c94abc RDMA/mlx5: Set local port to one when accessing counters 819110054b14 IB/core: Fix a nested dead lock as part of ODP flow 55195563ec29 ipv6: sr: fix out-of-bounds read when setting HMAC data. 4c4eda136410 RDMA/siw: Pass a pointer to virt_to_page() 595e3616f8e0 xen-netback: only remove 'hotplug-status' when the vif is actually destroyed c3efe896f13b iavf: Detach device during reset task 2ed94383f3a2 i40e: Fix kernel crash during module removal 3e245b0e2168 ice: use bitmap_free instead of devm_kfree 8527c9a6bf8e tcp: TX zerocopy should not sense pfmemalloc status cd5f1a69d0b6 net: introduce __skb_fill_page_desc_noacc 7eb9bf4edd1c tipc: fix shift wrapping bug in map_get() 1a889da60afc sch_sfb: Don't assume the skb is still around after enqueueing to child b0b35b455ece Revert "net: phy: meson-gxl: improve link-up behavior" 2f6640b19edf afs: Use the operation issue time instead of the reply time for callbacks e28eb3519d5f rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() 24a4e79d92e0 rxrpc: Fix ICMP/ICMP6 error handling 59f1c62d91ca ALSA: usb-audio: Register card again for iface over delayed_register option 4dc401ef8b23 ALSA: usb-audio: Inform the delayed registration more properly a8edd49c94b4 RDMA/srp: Set scmnd->result only when scmnd is not NULL 451c9ce1e2fc netfilter: nf_conntrack_irc: Fix forged IP logic 1ce55ec5cb7c netfilter: nf_tables: clean up hook list when offload flags check fails 92837ac04779 netfilter: br_netfilter: Drop dst references before setting. 940e58f2ccc0 ARM: dts: at91: sama5d2_icp: don't keep vdd_other enabled all the time 86706fa90be6 ARM: dts: at91: sama5d27_wlsom1: don't keep ldo2 enabled all the time d6015c56f477 ARM: dts: at91: sama5d2_icp: specify proper regulator output ranges a8ab10c3f137 ARM: dts: at91: sama5d27_wlsom1: specify proper regulator output ranges 6fbff44cba17 ARM: at91: pm: fix DDR recalibration when resuming from backup and self-refresh e11d08c825f2 ARM: at91: pm: fix self-refresh for sama7g5 32dd0b22a5ba wifi: wilc1000: fix DMA on stack objects 6f7aa1029f8e RDMA/hns: Fix wrong fixed value of qp->rq.wqe_shift c1796dd54259 RDMA/hns: Fix supported page size 43245c77d9ef soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs d3eb252d7636 RDMA/cma: Fix arguments order in net device validation e2ec1064a47d tee: fix compiler warning in tee_shm_register() eb53e84dc1ac regulator: core: Clean up on enable failure a53b30716c60 soc: imx: gpcv2: Assert reset before ungating clock 83a7e5d2f14e ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node ae8e70e31763 RDMA/rtrs-srv: Pass the correct number of entries for dma mapped SGL ad69caa47861 RDMA/rtrs-clt: Use the right sg_cnt after ib_dma_map_sg 237f16395304 ASoC: qcom: sm8250: add missing module owner 3bf4bf54069f cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock 509e3456d363 cgroup: Elide write-locking threadgroup_rwsem when updating csses on an empty subtree 3b97deb4abf5 NFS: Fix another fsync() issue after a server reboot 31b992b3c39b NFS: Save some space in the inode 88d24e83a268 NFS: Further optimisations for 'ls -l' 1dcc308898e7 scsi: lpfc: Add missing destroy_workqueue() in error path 6229fa494a59 scsi: mpt3sas: Fix use-after-free warning d2ca79dd0b54 drm/i915: Implement WaEdpLinkRateDataReload ebf46da50beb nvmet: fix a use-after-free 58acd2ebae03 drm/amd/display: fix memory leak when using debugfs_lookup() 26e9a1ded892 sched/debug: fix dentry leak in update_sched_domain_debugfs 94c84128adb1 debugfs: add debugfs_lookup_and_remove() 8875d606761e kprobes: Prohibit probes in gate area 5321908ef74f vfio/type1: Unpin zero pages 7da1afa444a1 btrfs: zoned: set pseudo max append zone limit in zone emulation mode 75082adeb414 tracing: Fix to check event_mutex is held while accessing trigger list 98e8e67395cc ALSA: usb-audio: Fix an out-of-bounds bug in __snd_usb_parse_audio_interface() df5ec554e9e3 ALSA: usb-audio: Split endpoint setups for hw_params and prepare d1118465ae2e ALSA: aloop: Fix random zeros in capture data when using jiffies timer 45814a53514e ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() 8015ef9e8a0e ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC ad5ef763dbbe drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly fc5a2a9616f3 fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() c3abfd6ce2f3 fbdev: fbcon: Destroy mutex on freeing struct fb_info a7dff6f41e16 md: Flush workqueue md_rdev_misc_wq in md_alloc() 0b7058067eb8 net/core/skbuff: Check the return value of skb_copy_bits() bd1b769564eb cpufreq: check only freq_table in __resolve_freq() e928cf258910 netfilter: conntrack: work around exceeded receive window 29906311b351 arm64: cacheinfo: Fix incorrect assignment of signed error value to unsigned fw_level 27092358e9c6 parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines deb2c9c0770b parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() c63ff388e7d4 Revert "parisc: Show error if wrong 32/64-bit compiler is being used" c50189129374 scsi: ufs: core: Reduce the power mode change timeout 5a7a5b2edac4 drm/radeon: add a force flush to delay work when radeon 622a557b28b7 drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. c15c2c2c0896 drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to psp_hw_fini 1f574fbe9c2b drm/gem: Fix GEM handle release errors bbfd857abbd2 scsi: megaraid_sas: Fix double kfree() 8179f0e08578 scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX 625c78e1ae35 Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" 7c6333411acf fs: only do a memory barrier for the first set_buffer_uptodate() 44b402da7b24 wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in il4965_rs_fill_link_cmd() dd291e070be0 efi: capsule-loader: Fix use-after-free in efi_capsule_write ee06f08139e7 efi: libstub: Disable struct randomization 6427605fa781 net: wwan: iosm: remove pointless null check e1ad7a011591 Linux 5.15.67 096e34b05a43 kbuild: fix up permissions on scripts/pahole-flags.sh bcecd2ee19ef Linux 5.15.66 e1779c25e48b USB: serial: ch341: fix disabled rx timer on older devices e0923b4f38df USB: serial: ch341: fix lost character on LCR updates 55d328924347 usb: dwc3: disable USB core PHY management 121c6e37da76 usb: dwc3: qcom: fix use-after-free on runtime-PM wakeup 9d6a2d022010 usb: dwc3: fix PHY disable sequence b775fbf532dc kbuild: Add skip_encoding_btf_enum64 option to pahole 0baced0e0938 kbuild: Unify options for BTF generation for vmlinux and modules 309aea4b6b81 tty: n_gsm: add sanity check for gsm->receive in gsm_receive_buf() 1787ec7dcc37 drm/i915: Skip wm/ddb readout for disabled pipes f9a0f49be767 drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk 301be8985e87 ALSA: seq: Fix data-race at module auto-loading 9b7a07fcc5d4 ALSA: seq: oss: Fix data-race for max_midi_devs access b2c973b52f14 ALSA: hda/realtek: Add speaker AMP init for Samsung laptops with ALC298 c5652d5d71cf net: mac802154: Fix a condition in the receive path 4b9f3743a822 net: Use u64_stats_fetch_begin_irq() for stats fetch. 57f1407ca166 ip: fix triggering of 'icmp redirect' 5d20c6f932f2 wifi: mac80211: Fix UAF in ieee80211_scan_rx() 552ba102a689 wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected 253ec5fb8405 driver core: Don't probe devices after bus_type.match() probe deferral 7da29a2cc514 usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS 299f4f420f23 usb: xhci-mtk: fix bandwidth release issue 27102b39b6d0 usb: xhci-mtk: relax TT periodic bandwidth allocation c548b99e1c37 USB: core: Prevent nested device-reset calls 4e22a43ec717 s390: fix nospec table alignments 047a4d0f7924 s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages efdfa236a085 usb-storage: Add ignore-residue quirk for NXP PN7462AU 0f8b5d706dcd USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) bf6e4243f80b usb: cdns3: fix incorrect handling TRB_SMM flag for ISOC transfer f1eb9e5d2f6e usb: cdns3: fix issue with rearming ISO OUT endpoint 48917032c702 usb: dwc2: fix wrong order of phy_power_on and phy_init ea72b22a05ea usb: typec: tcpm: Return ENOTSUPP for power supply prop writes 4be500c63911 usb: typec: intel_pmc_mux: Add new ACPI ID for Meteor Lake IOM device b201f6203197 usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles 577f84a6f120 USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode 6415953963a9 USB: serial: option: add Quectel EM060K modem 93c283a09959 USB: serial: option: add support for OPPO R11 diag port 2bb1ad8c957d USB: serial: cp210x: add Decagon UCA device id 3a6c5c5ab734 xhci: Add grace period after xHC start to prevent premature runtime suspend. 75913c562f5b media: mceusb: Use new usb_control_msg_*() routines 2c948dd68b9e usb: dwc3: pci: Add support for Intel Raptor Lake 23987d01de44 thunderbolt: Use the actual buffer in tb_async_error() e31db376f6d1 xen-blkfront: Cache feature_persistent value before advertisement 895a90ad7b3e xen-blkfront: Advertise feature-persistent as user requested 3e8107d69fc3 xen-blkback: Advertise feature-persistent as user requested c235c4fc521f mm: pagewalk: Fix race between unmap and page walker 763d77241d8f xen/grants: prevent integer overflow in gnttab_dma_alloc_pages() 03b1870fbc5e KVM: x86: Mask off unsupported and unknown bits of IA32_ARCH_CAPABILITIES 111a3586ed4a gpio: pca953x: Add mutex_lock for regcache sync in PM 53196e037620 hwmon: (gpio-fan) Fix array out of bounds access 7b8a284ffe7a clk: bcm: rpi: Add missing newline ff0b144d4b0a clk: bcm: rpi: Prevent out-of-bounds access e827a5f32a0d clk: bcm: rpi: Use correct order for the parameters of devm_kcalloc() 237b4ef4c088 clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate 5ba6155d3b2f Input: rk805-pwrkey - fix module autoloading 9766749a30f6 clk: core: Fix runtime PM sequence in clk_core_unprepare() c13b0be5ade0 Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" 519cd9c4b56e clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops 0522550aeed4 drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" fec48eba4783 KVM: VMX: Heed the 'msr' argument in msr_write_intercepted() 9e3c9efa7caf cifs: fix small mempool leak in SMB2_negotiate() 81203ab7a6ef binder: fix alloc->vma_vm_mm null-ptr dereference c2a4b5dc8fa7 binder: fix UAF of ref->proc caused by race condition da3c6d0708e6 mmc: core: Fix inconsistent sd3_bus_mode at UHS-I SD voltage switch failure 8bca22970e1c mmc: core: Fix UHS-I SD 1.8V workaround branch fc9b5b3f2ccc USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id cf20c3533efc misc: fastrpc: fix memory corruption on open 0e33b0f322fe misc: fastrpc: fix memory corruption on probe 95ac9601feb5 iio: adc: mcp3911: use correct formula for AD conversion 6e933a26e6a2 iio: ad7292: Prevent regulator double disable df1b53bc799d Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag 9f185ca8e019 tty: serial: lpuart: disable flow control while waiting for the transmit engine to complete 532b255af195 musb: fix USB_MUSB_TUSB6010 dependency 2535431ae967 vt: Clear selection before changing the font a19846f0f45b powerpc: align syscall table for ppc32 f12afb4b5db0 staging: r8188eu: add firmware dependency dc02aaf95001 staging: rtl8712: fix use after free bugs 01fd7e12f8fb serial: fsl_lpuart: RS485 RTS polariy is inverse 839ca7969fcf soundwire: qcom: fix device status array range fdc69b070071 net/smc: Remove redundant refcount increase 6ce0d73b2fbd Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" aca9d0acda9e tcp: annotate data-race around challenge_timestamp 1c472d671d9c sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb 55fb8c3baa80 kcm: fix strp_init() order and cleanup 660df4411ef4 mlxbf_gige: compute MDIO period based on i1clk a4c08cbfbcf9 ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler a420d5872601 net/sched: fix netdevice reference leaks in attach_default_qdiscs() ce881ddbdc02 net: sched: tbf: don't call qdisc_put() while holding tree lock d6ec2f711c94 net: dsa: xrs700x: Use irqsave variant for u64 stats update ca54b2bfaab3 openvswitch: fix memory leak at failed datapath creation 8eeba7ef4d1d net: smsc911x: Stop and start PHY during suspend and resume cc2b9170aa34 net: sparx5: fix handling uneven length packets in manual extraction 5359524251d2 Revert "xhci: turn off port power in shutdown" ee19bbed4b03 wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() 20b2d5be85e9 ALSA: hda: intel-nhlt: Correct the handling of fmt_config flexible array 59a711467e8d ALSA: hda: intel-nhlt: remove use of __func__ in dev_dbg 7828b5d0080a drm/i915/display: avoid warnings when registering dual panel backlight 630ab29120b5 drm/i915/backlight: extract backlight code to a separate file 9f8558c5c642 ieee802154/adf7242: defer destroy_workqueue call 222bd95c89b1 bpf, cgroup: Fix kernel BUG in purge_effective_progs 1c518476ceb4 bpf: Restrict bpf_sys_bpf to CAP_PERFMON de22cba333d8 skmsg: Fix wrong last sg check in sk_msg_recvmsg() 7497f9766f08 iio: adc: mcp3911: make use of the sign bit 9e1f74294d53 platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask 1a785b435276 drm/msm/dsi: Fix number of regulators for SDM660 ab8533946db7 drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg 0a4f633548c4 drm/msm/dp: delete DP_RECOVERED_CLOCK_OUT_EN to fix tps4 e8bd54b0664b drm/msm/dsi: fix the inconsistent indenting (From OE-Core rev: c20e9c6f4ec19d2e1dca443ea945e5c4e3d4d11f) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit a15a61c801e1a3014ac228e7e100a1867dd498f9) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.15: update to v5.15.65Bruce Ashfield2022-09-283-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating to the latest korg -stable release that comprises the following commits: 633c3b4c71bb Linux 5.15.65 572b646c8d93 net: neigh: don't call kfree_skb() under spin_lock_irqsave() facf99bc3a95 net/af_packet: check len when min_header_len equals to 0 591a98b823fb android: binder: fix lockdep check on clearing vma 92dc4c1a8e58 btrfs: fix space cache corruption and potential double allocations 55c7a9152734 kprobes: don't call disarm_kprobe() for disabled kprobes 6a27997cf44e btrfs: tree-checker: check for overlapping extent items 1b2a7ddeaa77 btrfs: fix lockdep splat with reloc root extent buffers 98dfad7fb688 btrfs: move lockdep class helpers to locking.c a74fc94fb1a9 testing: selftests: nft_flowtable.sh: use random netns names 1d8b5d251994 netfilter: conntrack: NF_CONNTRACK_PROCFS should no longer default to y 85dd24ff77c1 drm/amd/display: avoid doing vm_init multiple time 898467ac9bcb drm/amdgpu: Increase tlb flush timeout for sriov 4df54c493e76 drm/amd/display: Fix pixel clock programming a89e753d5a9f drm/amd/pm: add missing ->fini_microcode interface for Sienna Cichlid a2ede313fbf0 ksmbd: don't remove dos attribute xattr on O_TRUNC open a7ada939712a s390/hypfs: avoid error message under KVM db6fa03d80ab neigh: fix possible DoS due to net iface start/stop loop 857048ea1d28 ksmbd: return STATUS_BAD_NETWORK_NAME error status if share is not configured 5ee30bcfdb32 drm/amd/display: clear optc underflow before turn off odm clock e407e04a93d7 drm/amd/display: For stereo keep "FLIP_ANY_FRAME" 2cddd3d0b049 drm/amd/display: Fix HDMI VSIF V3 incorrect issue 0c8abeceee0f drm/amd/display: Avoid MPC infinite loop 061ffb1e419b ASoC: sh: rz-ssi: Improve error handling in rz_ssi_probe() error path d347d66b1972 fs/ntfs3: Fix work with fragmented xattr bf216c168f9e btrfs: fix warning during log replay when bumping inode link count 985bbad18408 btrfs: add and use helper for unlinking inode during log replay 968815211212 btrfs: remove no longer needed logic for replaying directory deletes 7697ca60db06 btrfs: remove root argument from btrfs_unlink_inode() 71beead997f5 mmc: sdhci-of-dwcmshc: Re-enable support for the BlueField-3 SoC 68b6cbaa318e mmc: sdhci-of-dwcmshc: rename rk3568 to rk35xx c038e4094ba2 mmc: sdhci-of-dwcmshc: add reset call back for rockchip Socs d6a74ee2a7b2 mmc: mtk-sd: Clear interrupts when cqe off/disable 4676773ea117 drm/i915/gt: Skip TLB invalidations once wedged f0582f5ac1ea HID: thrustmaster: Add sparco wheel and fix array length 77f8e40a3cbb HID: asus: ROG NKey: Ignore portion of 0x5a report d74ce3ece402 HID: AMD_SFH: Add a DMI quirk entry for Chromebooks a569d41c5aba HID: add Lenovo Yoga C630 battery quirk b08469874a16 ALSA: usb-audio: Add quirk for LH Labs Geek Out HD Audio 1V5 c18a209b56e3 mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse a75987714bd2 bpf: Don't redirect packets with invalid pkt_len e4ae97295984 ftrace: Fix NULL pointer dereference in is_ftrace_trampoline when ftrace is dead 34c3dea11895 fbdev: fb_pm2fb: Avoid potential divide by zero error a5d1cb908131 net: fix refcount bug in sk_psock_get (2) dfd27a737283 HID: hidraw: fix memory leak in hidraw_release() f2f6e6752291 media: pvrusb2: fix memory leak in pvr_probe e658538c610c udmabuf: Set the DMA mask for the udmabuf device (v2) 989560b6d9e0 HID: steam: Prevent NULL pointer dereference in steam_{recv,send}_report 67216f47922d Revert "PCI/portdrv: Don't disable AER reporting in get_port_device_capability()" 9e38a363dc63 Bluetooth: L2CAP: Fix build errors in some archs 2e0ffef17308 kbuild: Fix include path in scripts/Makefile.modpost e9d7ca0c4640 io_uring: fix UAF due to missing POLLFREE handling 182dc3aa5ae2 io_uring: fix wrong arm_poll error handling 6c7259c83773 io_uring: fail links when poll fails c41e79a0c464 io_uring: bump poll refs to full 31-bits 7524ec52caa8 io_uring: remove poll entry from list when canceling all 95a004a223f8 io_uring: Remove unused function req_ref_put f770fba096a6 io_uring: poll rework 8dc669632f0d io_uring: inline io_poll_complete 20bbcc316314 io_uring: kill poll linking optimisation a85d7ac14f22 io_uring: move common poll bits 040e58f51c0b io_uring: refactor poll update b850d6ddc788 io_uring: clean cqe filling functions 5c0ea4c8e54b io_uring: correct fill events helpers types 285e77dbb36f arm64: errata: Add Cortex-A510 to the repeat tlbi list da60ddd80d09 mm/hugetlb: avoid corrupting page->mapping in hugetlb_mcopy_atomic_pte e7a792dcd6a7 Drivers: hv: balloon: Support status report for larger page sizes 2edbdfc89d9f crypto: lib - remove unneeded selection of XOR_BLOCKS 6db913f5e449 firmware: tegra: bpmp: Do only aligned access to IPC memory area 80d46e73e8d3 drm/vc4: hdmi: Depends on CONFIG_PM 3d2d12fb7815 drm/vc4: hdmi: Rework power up 8468ccbf4c44 ACPI: thermal: drop an always true check f8b07c05b699 drm/bridge: Add stubs for devm_drm_of_get_bridge when OF is disabled 3ffb97fce282 mm: Force TLB flush for PFNMAP mappings before unlink_file_vma() 1ded0ef2419e Linux 5.15.64 4f672112f866 bpf: Don't use tnum_range on array range checking for poke descriptors cd2a50d0a097 scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq 2c72bead9bc6 scsi: ufs: core: Enable link lost interrupt da86f80da31a perf stat: Clear evsel->reset_group for each stat run b5f5fee03d17 perf/x86/intel/ds: Fix precise store latency handling 83bd6d121245 perf/x86/intel/uncore: Fix broken read_counter() for SNB IMC PMU a38e7ab46740 perf python: Fix build when PYTHON_CONFIG is user supplied 77864ed6c6ce blk-mq: fix io hung due to missing commit_rqs 4428d15cddd5 Documentation/ABI: Mention retbleed vulnerability info file for sysfs 992d2fc2fe7f x86/nospec: Fix i386 RSB stuffing 577d9c05cc48 binder_alloc: add missing mmap_lock calls when using the VMA 1ed630bc530a arm64: Fix match_list for erratum 1286807 on Arm Cortex-A76 af61a8f76039 mptcp: Fix crash due to tcp_tsorted_anchor was initialized before release skb 661c01b2181d md: call __md_stop_writes in md_stop ee0c613bfe83 Revert "md-raid: destroy the bitmap after destroying the thread" 0038f8593325 mm/hugetlb: fix hugetlb not supporting softdirty tracking 6ee82524b0aa Revert "usbnet: smsc95xx: Forward PHY interrupts to PHY driver to avoid polling" 7ae43647f499 Revert "usbnet: smsc95xx: Fix deadlock on runtime resume" 295219ab7d62 io_uring: fix issue with io_write() not always undoing sb_start_write() f8aafb25ec38 riscv: traps: add missing prototype c2b7bae7c900 xen/privcmd: fix error exit of privcmd_ioctl_dm_op() 0351fdbd8cb4 smb3: missing inode locks in punch hole 3640cdccbe75 nouveau: explicitly wait on the fence in nouveau_bo_move_m2mf b490dfcbb921 ACPI: processor: Remove freq Qos request for all CPUs f1aedd2ffead Revert "memcg: cleanup racy sum avoidance code" ebd6f886aa24 fbdev: fbcon: Properly revert changes when vc_resize() failed 8195e065abf3 s390: fix double free of GS and RI CBs on fork() failure 16a12ee619e3 bootmem: remove the vmemmap pages from kmemleak in put_page_bootmem 9227599cd987 s390/mm: do not trigger write fault when vma does not allow VM_WRITE ddcb0696136b mm/damon/dbgfs: avoid duplicate context directory creation 95587037ea58 asm-generic: sections: refactor memory_intersects f96b9f7c1676 writeback: avoid use-after-free after removing device 0455bef69028 loop: Check for overflow while configuring loop 500195a109bc x86/nospec: Unwreck the RSB stuffing 75fa6c733b85 x86/bugs: Add "unknown" reporting for MMIO Stale Data a7484eb9f3e0 x86/unwind/orc: Unwind ftrace trampolines with correct ORC entry 1cdfef6cd296 perf/x86/lbr: Enable the branch type for the Arch LBR by default 5f52402c7701 btrfs: fix possible memory leak in btrfs_get_dev_args_from_path() 793505888d60 btrfs: check if root is readonly while setting security xattr 2aa1a1cff81d btrfs: add info when mount fails due to stale replace target 17343a515fa5 btrfs: replace: drop assert for suspended replace 34cab3bba8ca btrfs: fix silent failure when deleting root reference 50396e19d9d8 net: stmmac: work around sporadic tx issue on link-up 48f4d54ccc4d ionic: VF initial random MAC address if no assigned mac bcbf1d959933 ionic: fix up issues with handling EAGAIN on FW cmds 9a41433cc73b ionic: clear broken state on generation change 8d2761dbfcb9 ionic: widen queue_lock use around lif init and deinit 2bc769b8edb1 rxrpc: Fix locking in rxrpc's sendmsg 0c3fd13b9c6d i40e: Fix incorrect address type for IPv6 flow rules bda3e3892434 ixgbe: stop resetting SYSTIME in ixgbe_ptp_start_cyclecounter cb9eaedd9fc0 net: Fix a data-race around sysctl_somaxconn. b340f83dafba net: Fix data-races around sysctl_devconf_inherit_init_net. 181bae6dff66 net: Fix data-races around sysctl_fb_tunnels_only_for_init_net. ed14f10e13f6 net: Fix a data-race around netdev_budget_usecs. 70564ad8d190 net: Fix data-races around sysctl_max_skb_frags. 289f2f582667 mptcp: stop relying on tcp_tx_skb_cache a07f3af6393a tcp: expose the tcp_mark_push() and tcp_skb_entail() helpers 2baeaef4dd73 net: Fix a data-race around netdev_budget. 8e9e124aeb9c net: Fix a data-race around sysctl_net_busy_read. 4e12829fd3b9 net: Fix a data-race around sysctl_net_busy_poll. f6b5be42ce4b net: Fix a data-race around sysctl_tstamp_allow_data. d39a02760bf2 net: Fix data-races around sysctl_optmem_max. 0db9ce822f13 ratelimit: Fix data-races in ___ratelimit(). cd755a7e4062 net: Fix data-races around netdev_tstamp_prequeue. 4d2c808d0983 net: Fix data-races around netdev_max_backlog. 572d4cdf907f net: Fix data-races around weight_p and dev_weight_[rt]x_bias. 33372f2b6c6d net: Fix data-races around sysctl_[rw]mem_(max|default). 8fbdec08dbf7 netfilter: flowtable: fix stuck flows on cleanup due to pending work eb6645a0f2ca netfilter: flowtable: add function to invoke garbage collection immediately 51f192ae71c3 netfilter: nf_tables: disallow binding to already bound chain 7196f4577f1c netfilter: nf_tables: disallow jump to implicit chain from set element 4097749aec54 netfilter: nf_tables: upfront validation of data via nft_data_init() cc311eae1f30 netfilter: bitwise: improve error goto labels 9bf98120a943 netfilter: nft_cmp: optimize comparison for 16-bytes c5ba86cde6bb netfilter: nf_tables: consolidate rule verdict trace call b6d601211ce4 netfilter: nft_tunnel: restrict it to netdev family 530f4bb9ed58 netfilter: nft_osf: restrict osf to ipv4, ipv6 and inet families 6d7ddee50395 netfilter: nf_tables: do not leave chain stats enabled on error cafe94e8d685 netfilter: nft_payload: do not truncate csum_offset and csum_type fbbecf068a3f netfilter: nft_payload: report ERANGE for too long offset and length fbaeb8046e7d netfilter: nf_tables: make table handle allocation per-netns friendly 9f4b32890768 netfilter: nf_tables: disallow updates of implicit chain acca44ec232a bnxt_en: fix NQ resource accounting during vf creation on 57500 chips 1b2c5428f773 netfilter: ebtables: reject blobs that don't provide all entry points 7a5d10afeb1b net: ipvtap - add __init/__exit annotations to module init/exit funcs fec37fe2f278 bonding: 802.3ad: fix no transmission of LACPDUs aa108c97acf1 net: moxa: get rid of asymmetry in DMA mapping/unmapping c9dabd1f0410 net: phy: Don't WARN for PHY_READY state in mdio_bus_phy_resume() c4b38473b18e net: ipa: don't assume SMEM is page-aligned f7de12f247bb net/mlx5e: Fix wrong tc flag used when set hw-tc-offload off 3f8608199640 net/mlx5e: Fix wrong application of the LRO state e161c24a92ef net/mlx5: Avoid false positive lockdep warning by adding lock_class_key 0782959b92eb net/mlx5e: Properly disable vlan strip on non-UL reps fe76b3e67466 ice: xsk: prohibit usage of non-balanced queue id 141b795ee39e ice: xsk: Force rings to be sized to power of 2 9c34c33893db nfc: pn533: Fix use-after-free bugs caused by pn532_cmd_timeout 2e8b65fda933 r8152: fix the RX FIFO settings when suspending 59cfae681ffb r8152: fix the units of some registers for RTL8156A 9cf85759e104 rose: check NULL rose_loopback_neigh->loopback e1ae035a5663 ntfs: fix acl handling d28f319043f0 mm/smaps: don't access young/dirty bit if pte unpresent 28dccc4eaf98 SUNRPC: RPC level errors should set task->tk_rpc_status 5626f9535611 NFSv4.2 fix problems with __nfs42_ssc_open 519543a64650 NFS: Don't allocate nfs_fattr on the stack in __nfs42_ssc_open() 84dc68c6140c Revert "net: macsec: update SCI upon MAC address change." c3f4f07a9eb1 net: use eth_hw_addr_set() instead of ether_addr_copy() 770afc6e262b fs: require CAP_SYS_ADMIN in target namespace for idmapped mounts 96f2758a6d02 xfrm: policy: fix metadata dst->dev xmit null pointer dereference 103bd319c0fc af_key: Do not call xfrm_probe_algs in parallel 4edd868acd23 xfrm: clone missing x->lastused in xfrm_do_migrate 26ad2398fe49 xfrm: fix refcount leak in __xfrm_policy_check() 044f8ff30e62 riscv: lib: uaccess: fix CSR_STATUS SR_SUM bit 093cb743dcad riscv: lib: uaccess: fold fixups into body 9de35edff035 btrfs: remove unnecessary parameter delalloc_start for writepage_delalloc() da7ad2ec580b btrfs: pass the dentry to btrfs_log_new_name() instead of the inode 90b9e4892704 btrfs: put initial index value of a directory in a constant 4438d54ce7a8 scsi: qla2xxx: edif: Fix dropped IKE message bcfe37c78854 scsi: qla2xxx: Fix response queue handler reading stale packets 799e39edb0a8 drivers/base: fix userspace break from using bin_attributes for cpumap and cpulist 75260fa268e1 Input: i8042 - add additional TUXEDO devices to i8042 quirk tables d6351dfe846c Input: i8042 - add TUXEDO devices to i8042 quirk tables e7d46453410d Input: i8042 - merge quirk tables 0b0ee46bf65e Input: i8042 - move __initconst to fix code styling warning 057238cdce45 btrfs: convert count_max_extents() to use fs_info->max_extent_size 1aa262c1d056 btrfs: replace BTRFS_MAX_EXTENT_SIZE with fs_info->max_extent_size f675e3ae67e4 btrfs: zoned: revive max_zone_append_bytes 1815305d8199 block: add bdev_max_segments() helper dd2ee2fd1fcb block: add a bdev_max_zone_append_sectors helper a50d9fde4616 x86/entry: Move CLD to the start of the idtentry macro 108fb7e99bbf kernel/sys_ni: add compat entry for fadvise64_64 7c83923031cd parisc: Fix exception handler for fldw and fstw instructions 6efe7754e05d parisc: Make CONFIG_64BIT available for ARCH=parisc64 only f49fd5fe2399 cgroup: Fix race condition at rebind_subsystems() 5c192867ae57 audit: fix potential double free on error path from fsnotify_add_inode_mark edd6e98a752c eth: sun: cassini: remove dead code b51ca7326d16 wifi: rtlwifi: remove always-true condition pointed out by GCC 12 (From OE-Core rev: 28d1483d33797404deee4cbc28b19b1b52b822ad) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 104217e05ea494d46e3cc22bb4b3bf2379004882) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.15: update to v5.15.63Bruce Ashfield2022-09-283-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating to the latest korg -stable release that comprises the following commits: addc9003c2e8 Linux 5.15.63 b92be74cb2da xfs: reject crazy array sizes being fed to XFS_IOC_GETBMAP* 1350a4cdfbe6 xfs: revert "xfs: actually bump warning counts when we send warnings" 12689d950d75 xfs: fix soft lockup via spinning in filestream ag selection loop bbc256bf904d xfs: fix overfilling of reserve pool 90f414686bc4 xfs: always succeed at setting the reserve pool size 07e17dcd03e0 xfs: remove infinite loop when reserving free block pool 130b5965da3a xfs: reserve quota for target dir expansion when renaming files 5e7f687ca727 xfs: reserve quota for dir expansion when linking/unlinking files 139e6fc6e7a7 xfs: flush inodegc workqueue tasks before cancel d66d392c72a6 scsi: ufs: ufs-mediatek: Fix build error and type mismatch 1a9f5411837a can: j1939: j1939_sk_queue_activate_next_locked(): replace WARN_ON_ONCE with netdev_warn_once() e7403632c015 MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 e740e787f066 video: fbdev: i740fb: Check the argument of i740_calc_vclk() 0bdec5eed69c venus: pm_helpers: Fix warning in OPP during probe e3c9e9452a8e powerpc/64: Init jump labels before parse_early_param() ecdba236bc35 smb3: check xattr value length earlier 3c201130cc81 f2fs: fix to do sanity check on segment type in build_sit_entries() 5a01e45b925a f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() 3895d353f45a ALSA: control: Use deferred fasync helper 409e6a799283 ALSA: timer: Use deferred fasync helper 60110fd26623 ALSA: core: Add async signal helpers a5ec4cd45b52 powerpc/ioda/iommu/debugfs: Generate unique debugfs entries 8641e0bbb5ef ovl: warn if trusted xattr creation fails 0480540da5a2 powerpc/32: Don't always pass -mcpu=powerpc to the compiler 3d5d2dc1dc08 powerpc/32: Set an IBAT covering up to _einittext during init 6568e52b281c watchdog: export lockup_detector_reconfigure c5a8d0512018 RISC-V: Add fast call path of crash_kexec() 64f94e6e1fab riscv: mmap with PROT_WRITE but no PROT_READ is invalid e751030eb844 riscv: dts: canaan: Add k210 topology information 23069475daeb riscv: dts: sifive: Add fu740 topology information 21d784398a04 ASoC: rsnd: care default case on rsnd_ssiu_busif_err_irq_ctrl() 9774b96bce7d modules: Ensure natural alignment for .altinstructions and __bug_table sections 2097c7835162 iommu/io-pgtable-arm-v7s: Add a quirk to allow pgtable PA up to 35bit 7822d994eb95 mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start c983edb06239 vfio: Clear the caps->buf to NULL after free a1d8021d2130 KVM: PPC: Book3S HV: Fix "rm_exit" entry in debugfs timings 17c32546166d tty: serial: Fix refcount leak bug in ucc_uart.c ce0432aa8944 lib/list_debug.c: Detect uninitialized lists 72b850a2a996 ext4: avoid resizing to a partial cluster size 0e734f91cb1c ext4: avoid remove directory when directory is corrupted d9b94c3ace54 drivers:md:fix a potential use-after-free bug a600ed25e3d9 nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown e59ef9b07130 md: Notify sysfs sync_completed in md_reap_sync_thread() 2dc9615abfbc phy: samsung: phy-exynos-pcie: sanitize init/power_on callbacks 405ea6d70684 openrisc: io: Define iounmap argument as volatile d1fc64bf4526 dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed d0e2b8e36911 selftests/kprobe: Do not test for GRP/ without event failures 3645ed60ac07 csky/kprobe: reclaim insn_slot on kprobe unregistration fda4bff43bcd RDMA/rxe: Limit the number of calls to each tasklet 54aa6c49361b dmaengine: dw-axi-dmac: ignore interrupt if no descriptor af76e6fdcf92 dmaengine: dw-axi-dmac: do not print NULL LLI during error e799817b67b3 um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups 405f655ee7f6 PCI/ACPI: Guard ARM64-specific mcfg_quirks addff638c417 cxl: Fix a memory leak in an error handling path 5e24cd70355e pinctrl: intel: Check against matching data instead of ACPI companion 67b5870a35bb mmc: tmio: avoid glitches when resetting 0f5916516d86 habanalabs/gaudi: mask constant value before cast b09e5ab18c9f habanalabs/gaudi: fix shift out of bounds 1693fe9ba2ef coresight: etm4x: avoid build failure with unrolled loops 94aadba8d000 gadgetfs: ep_io - wait until IRQ finishes 9c8e2e607270 scsi: lpfc: Fix possible memory leak when failing to issue CMF WQE b92506dc51f8 scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user input 0af01d2c5edd clk: qcom: clk-alpha-pll: fix clk_trion_pll_configure description 25041029389b zram: do not lookup algorithm in backends table 50de5045815e uacce: Handle parent device removal or parent driver module rmmod 17d58499dc9c clk: qcom: ipq8074: dont disable gcc_sleep_clk_src 348274a6bb7f vboxguest: Do not use devm for irq b9c31d4ae9be usb: dwc2: gadget: remove D+ pull-up while no vbus with usb-role-switch fbdbd61a36d8 usb: renesas: Fix refcount leak bug 0fc62bbc9531 usb: host: ohci-ppc-of: Fix refcount leak bug 4d6bab8d366a scsi: ufs: ufs-mediatek: Fix the timing of configuring device regulators 35c3ec7d7a51 clk: ti: Stop using legacy clkctrl names for omap4 and 5 00c274bc5bfa drm/meson: Fix overflow implicit truncation warnings b01d6bfdf2e4 irqchip/tegra: Fix overflow implicit truncation warnings 49968090f921 PCI: aardvark: Fix reporting Slot capabilities on emulated bridge fb76cdd21662 usb: gadget: uvc: call uvc uvcg_warn on completed status instead of uvcg_info de6aa7abfebf usb: gadget: uvc: calculate the number of request depending on framesize 8e142744f0e9 usb: cdns3: fix random warning message when driver load c3c1dbad3a2d usb: cdns3 fix use-after-free at workaround 2 08c0a77b2aec platform/chrome: cros_ec_proto: don't show MKBP version if unsupported da56759a4a35 PCI: Add ACS quirk for Broadcom BCM5750x NICs 6fc955b58acf HID: multitouch: new device class fix Lenovo X12 trackpad sticky 57b5be2bd1e0 KVM: arm64: Reject 32bit user PSTATE on asymmetric systems cb332a666e3f KVM: arm64: Treat PMCR_EL1.LC as RES1 on asymmetric systems c682fb70a7df net: qrtr: start MHI channel after endpoit creation 98e28de472ef drm/sun4i: dsi: Prevent underflow when computing packet sizes fe71d84c1a6c drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() 6ee1310f4d14 ASoC: SOF: Intel: hda: Fix potential buffer overflow by snprintf() 3142b5f09e55 ASoC: SOF: Intel: hda: Define rom_status_reg in sof_intel_dsp_desc 88db4a22d954 drm/imx/dcss: get rid of HPD warning message 1c7e569c0ece tracing/eprobes: Fix reading of string fields 830426469f77 gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file a2cafe242874 kbuild: fix the modules order between drivers and libs 8ee44abe4cae igb: Add lock to avoid data race 471295311960 stmmac: intel: Add a missing clk_disable_unprepare() call in intel_eth_pci_remove() 334554aab154 fec: Fix timer capture timing in `fec_ptp_enable_pps()` c56e1fcb3091 i40e: Fix to stop tx_timeout recovery if GLOBR fails bd1fd0a02e9a regulator: pca9450: Remove restrictions for regulator-name 09e512a659e4 i2c: imx: Make sure to unregister adapter on remove() b4ac11967e8c ice: Ignore EEXIST when setting promisc mode e84c6321f357 net: dsa: sja1105: fix buffer overflow in sja1105_setup_devlink_regions() caa80c1f8316 net: dsa: don't warn in dsa_port_set_state_now() when driver doesn't support it b0672895d8be net: genl: fix error path memory leak in policy dumping 232fab59a65a net: dsa: felix: fix ethtool 256-511 and 512-1023 TX packet counters 29c5956061c9 net: dsa: microchip: ksz9477: fix fdb_dump last invalid entry ffb155944333 net: fix potential refcount leak in ndisc_router_discovery() c7118a579106 net: moxa: pass pdev instead of ndev to DMA functions a44a1a14211d mlxsw: spectrum: Clear PTP configuration after unregistering the netdevice dd236b62d25e net: dsa: mv88e6060: prevent crash on an unused port c0434f0e0586 net/sunrpc: fix potential memory leaks in rpc_sysfs_xprt_state_change() dd32ea395658 spi: meson-spicc: add local pow2 clock ops to preserve rate between messages 1d9e75c3d8cd powerpc/pci: Fix get_phb_number() locking e58d1a96e93b netfilter: nf_tables: check NFT_SET_CONCAT flag if field_count is specified 7ac21b920ee6 netfilter: nf_tables: disallow NFT_SET_ELEM_CATCHALL and NFT_SET_ELEM_INTERVAL_END 0df32f45be40 netfilter: nf_tables: NFTA_SET_ELEM_KEY_END requires concat and interval flags 46f64e6325ee netfilter: nf_tables: validate NFTA_SET_ELEM_OBJREF based on NFT_SET_OBJECT flag 8a6775ede639 netfilter: nf_tables: really skip inactive sets when allocating name b59bee8b05b0 netfilter: nf_tables: possible module reference underflow in error path 3be4d59808bb netfilter: nf_tables: disallow NFTA_SET_ELEM_KEY_END with NFT_SET_ELEM_INTERVAL_END flag 81dcb3b80475 fs/ntfs3: uninitialized variable in ntfs_set_acl_ex() 8a38a73cb406 netfilter: nf_tables: use READ_ONCE and WRITE_ONCE for shared generation id access cacdddfefe8d ASoC: codec: tlv320aic32x4: fix mono playback via I2S 18b5a57e7d96 ASoC: tas2770: Fix handling of mute/unmute 8eab21065492 ASoC: tas2770: Drop conflicting set_bias_level power setting 0a63bc250cc1 ASoC: tas2770: Allow mono streams 480bf1e299a4 ASoC: tas2770: Set correct FSYNC polarity b318b9dd2ac6 ASoC: SOF: debug: Fix potential buffer overflow by snprintf() 743dc4377bba iavf: Fix reset error handling dab6b551f5ba iavf: Fix adminq error handling 8af269e5bdf4 nios2: add force_successful_syscall_return() c9f78def8856 nios2: restarts apply only to the first sigframe we build... 3bee7b77d917 nios2: fix syscall restart checks f794d1fe6e52 nios2: traced syscall does need to check the syscall number 80cae5d810d2 nios2: don't leave NULLs in sys_call_table[] 35d5fd70e8c8 nios2: page fault et.al. are *not* restartable syscalls... c293e8abc09e fs/ntfs3: Fix missing i_op in ntfs_read_mft efdcf4df7a36 fs/ntfs3: Do not change mode if ntfs_set_ea failed 78e4aebc35b3 fs/ntfs3: Fix double free on remount 8feb84857915 fs/ntfs3: Don't clear upper bits accidentally in log_replay() 8e8e1a84dac7 fs/ntfs3: Fix NULL deref in ntfs_update_mftmirr ecda80a345ca fs/ntfs3: Fix using uninitialized value n when calling indx_read 69979b5e308f dpaa2-eth: trace the allocated address instead of page struct f39b424b4301 perf tests: Fix Track with sched_switch test for hybrid case 5958ef867b9d perf parse-events: Fix segfault when event parser gets an error e8ab87549bbe perf probe: Fix an error handling path in 'parse_perf_probe_command()' 51471b697303 geneve: fix TOS inheriting for ipv4 a5d7ce086fe9 atm: idt77252: fix use-after-free bugs caused by tst_timer 75b810104e40 xen/xenbus: fix return type in xenbus_file_read() d98b50d5b72d nfp: ethtool: fix the display error of `ethtool -m DEVNAME` 5c21186c5f3a NTB: ntb_tool: uninitialized heap data in tool_fn_write() cffd1cefcdd7 tools build: Switch to new openssl API for test-libcrypto 86ff5446b4da kbuild: dummy-tools: avoid tmpdir leak in dummy gcc f546faa216d0 ceph: don't leak snap_rwsem in handle_cap_grant 3e7ee4dd1ea4 tools/vm/slabinfo: use alphabetic order when two values are equal d27e1834dee2 ceph: use correct index when encoding client supported features e49c17867c61 spi: dt-bindings: zynqmp-qspi: add missing 'required' b847ea541b1f spi: dt-bindings: cadence: add missing 'required' 506fc3cab986 dt-bindings: clock: qcom,gcc-msm8996: add more GCC clock sources 4e96aa5b46d4 dt-bindings: arm: qcom: fix MSM8994 boards compatibles 5aa6548c0803 dt-bindings: arm: qcom: fix MSM8916 MTP compatibles e7a0e9ee5b12 dt-bindings: arm: qcom: fix Longcheer L8150 compatibles 3632c642cacc dt-bindings: gpio: zynq: Add missing compatible strings 52d8f48f85f7 vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() e4c0428f8a6f vsock: Fix memory leak in vsock_connect() 38b2ab9adf50 plip: avoid rcu debug splat 133a08a3093b ipv6: do not use RT_TOS for IPv6 flowlabel 5c9e5c44f89d mlx5: do not use RT_TOS for IPv6 flowlabel 02b2b7372727 geneve: do not use RT_TOS for IPv6 flowlabel f150c1f84775 ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool 06337b9c255d octeontx2-af: Fix key checking for source mac dc5be2d4f928 octeontx2-af: Fix mcam entry resource leak f9a36fa5367e octeontx2-af: suppress external profile loading warning e0fe6aa19a80 octeontx2-af: Apply tx nibble fixup always 17c3ea739979 octeontx2-pf: Fix NIX_AF_TL3_TL2X_LINKX_CFG register configuration 0a02159ae636 Input: exc3000 - fix return value check of wait_for_completion_timeout a4a945641aca pinctrl: qcom: sm8250: Fix PDC map fed2247253dc pinctrl: sunxi: Add I/O bias setting for H6 R-PIO be82dc052155 pinctrl: amd: Don't save/restore interrupt status and wake status bits c1c7a7c950e6 pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed 9272265f2f76 pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map 79eb8e9e38f3 dt-bindings: arm: qcom: fix Alcatel OneTouch Idol 3 compatibles 8b7bf35d301d selftests: forwarding: Fix failing tests with old libnet c506c9a97120 net: bgmac: Fix a BUG triggered by wrong bytes_compl eb2d9dc79f5f net: bcmgenet: Indicate MAC is in charge of PHY PM 47ac7b2f6a1f net: phy: Warn about incorrect mdio_bus_phy_resume() state c4d09fd1e18b devlink: Fix use-after-free after a failed reload d3723eab1119 virtio_net: fix memory leak inside XPD_TX with mergeable 9721e238c24c SUNRPC: Reinitialise the backchannel request buffers before reuse d3c262f584df SUNRPC: Fix xdr_encode_bool() 63e921d4edb3 sunrpc: fix expiry of auth creds 3f16630fa23b m68k: coldfire/device.c: protect FLEXCAN blocks 422a02a77159 net: atlantic: fix aq_vec index out of range error 98dc8fb08299 can: j1939: j1939_session_destroy(): fix memory leak of skbs 890aba507802 can: mcp251x: Fix race condition on receive interrupt 6648647599e0 bpf: Check the validity of max_rdwr_access for sock local storage map iterator 03ca12e583f1 bpf: Acquire map uref in .init_seq_private for sock{map,hash} iterator e51b568ea2c8 bpf: Acquire map uref in .init_seq_private for sock local storage map iterator 2f56304a0cf9 bpf: Acquire map uref in .init_seq_private for hash map iterator 370805f0e72b bpf: Acquire map uref in .init_seq_private for array map iterator 18a994e0661c bpf: Don't reinit map value in prealloc_lru_pop 41fd6cc88aaf BPF: Fix potential bad pointer dereference in bpf_sys_bpf() a4cf3dadd1fa NFSv4/pnfs: Fix a use-after-free bug in open 1e9fd95c27d8 NFSv4.1: RECLAIM_COMPLETE must handle EACCES 281c6a47416b NFSv4: Fix races in the legacy idmapper upcall b32780cda567 NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly 0696115a3230 NFSv4.1: Don't decrease the value of seq_nr_highest_sent 6aea903916c1 Documentation: ACPI: EINJ: Fix obsolete example bf7ebebce2c2 apparmor: Fix memleak in aa_simple_write_to_buffer() 64103ea35773 apparmor: fix reference count leak in aa_pivotroot() c62f2f56e086 apparmor: fix overlapping attachment computation e89b95f91e63 apparmor: fix setting unconfined mode on a loaded profile 3104c8a0dc5f apparmor: fix aa_label_asxprint return check a683a0d87a22 apparmor: Fix failed mount permission check error message 31b35b689123 apparmor: fix absroot causing audited secids to begin with = 017b0ea49262 apparmor: fix quiet_denied for file rules 8bc5ed70ef58 can: ems_usb: fix clang's -Wunaligned-access warning 43ae96645898 dt-bindings: usb: mtk-xhci: Allow wakeup interrupt-names to be optional 2294f43a07ea ALSA: usb-audio: More comprehensive mixer map for ASUS ROG Zenith II 2fb8f62ee335 tracing: Have filter accept "common_cpu" to be consistent dac2b60345ef tracing/probes: Have kprobes and uprobes use $COMM too b489aca082a2 tracing/eprobes: Have event probes be consistent with kprobes and uprobes a11ce7bfbdb7 tracing/eprobes: Do not hardcode $comm as a string ba53c21ce977 tracing/eprobes: Do not allow eprobes to use $stack, or % for regs 0d7970e8702b tracing/perf: Fix double put of trace event when init fails 14674e47ff49 x86/kprobes: Fix JNG/JNLE emulation 860efae12788 cifs: Fix memory leak on the deferred close 6379a9af7cfc btrfs: fix lost error handling when looking up extended ref on log replay 7ac430e319e9 btrfs: reset RO counter on block group if we fail to relocate 78f8c2370e3d btrfs: unset reloc control if transaction commit fails in prepare_to_relocate() d8fc9df94b88 mmc: meson-gx: Fix an error handling path in meson_mmc_probe() 6c4541d6b881 mmc: pxamci: Fix an error handling path in pxamci_probe() 8b7ed38c38e1 mmc: pxamci: Fix another error handling path in pxamci_probe() 23179d5b7c39 ata: libata-eh: Add missing command name 82a27c185544 drm/amd/display: Check correct bounds for stream encoder instances for DCN303 76672cd326c1 drm/ttm: Fix dummy res NULL ptr deref bug 016b71479f46 drm/nouveau: recognise GA103 1b7e0482abd0 locking/atomic: Make test_and_*_bit() ordered on failure 852f6a784a4b rds: add missing barrier to release_refill d26beb910904 x86/mm: Use proper mask when setting PUD mapping 177bf3542009 KVM: Unconditionally get a ref to /dev/kvm module when creating a VM e9a6a3bd97c7 ALSA: hda/realtek: Add quirk for Clevo NS50PU, NS70PU 5d396df4631a ALSA: info: Fix llseek return value when using callback (From OE-Core rev: c9f8710a0f549c5fd9439a7aedf3ae715e3fdd49) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 0b9b7454269bafe33bbbfae324e7ada28f589e0f) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.10: update to v5.10.143Bruce Ashfield2022-09-283-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating to the latest korg -stable release that comprises the following commits: f1101295c145 Linux 5.10.143 71d3adbb2890 arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly 202341395ce3 hwmon: (mr75203) enable polling for all VM channels c9da73ae78cb hwmon: (mr75203) fix multi-channel voltage reading 19841592aea6 hwmon: (mr75203) fix voltage equation for negative source input 8e8dc8fc53a8 hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used sensors 13521c94b9b1 hwmon: (mr75203) fix VM sensor allocation when "intel,vm-map" not defined 5e17967c7ea2 iommu/amd: use full 64-bit value in build_completion_wait() 1a2742552372 swiotlb: avoid potential left shift overflow 586f8c8330b7 MIPS: loongson32: ls1c: Fix hang during startup a9453be390b6 ASoC: mchp-spdiftx: Fix clang -Wbitfield-constant-conversion 9dacdc1d47ed ASoC: mchp-spdiftx: remove references to mchp_i2s_caps 2ead78fbe6b5 sch_sfb: Also store skb len before calling child enqueue d47475d4e502 tcp: fix early ETIMEDOUT after spurious non-SACK RTO 6a2a34484462 nvme-tcp: fix regression that causes sporadic requests to time out 5914fa32ef1b nvme-tcp: fix UAF when detecting digest errors a00b1b10e0a6 RDMA/mlx5: Set local port to one when accessing counters e8de6cb5755e IB/core: Fix a nested dead lock as part of ODP flow 076f2479fc5a ipv6: sr: fix out-of-bounds read when setting HMAC data. 047e66867eb6 RDMA/siw: Pass a pointer to virt_to_page() 0f1e7977e1f2 xen-netback: only remove 'hotplug-status' when the vif is actually destroyed 342d77769a6c i40e: Fix kernel crash during module removal 9d11d06e50bb ice: use bitmap_free instead of devm_kfree 22922da7373c tipc: fix shift wrapping bug in map_get() 2ee85ac1b29d sch_sfb: Don't assume the skb is still around after enqueueing to child 63677a09238a afs: Use the operation issue time instead of the reply time for callbacks fbbd5d05ea63 rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() 6ccbb74801bb ALSA: usb-audio: Register card again for iface over delayed_register option 1d29a63585b3 ALSA: usb-audio: Inform the delayed registration more properly e12ce30fe593 netfilter: nf_conntrack_irc: Fix forged IP logic 910891a2a44c netfilter: nf_tables: clean up hook list when offload flags check fails 908180f633d0 netfilter: br_netfilter: Drop dst references before setting. 7d29f2bdd167 ARM: dts: at91: sama5d2_icp: don't keep vdd_other enabled all the time 0796953300f5 ARM: dts: at91: sama5d27_wlsom1: don't keep ldo2 enabled all the time 360dd120eb11 ARM: dts: at91: sama5d2_icp: specify proper regulator output ranges 6bbef2694a06 ARM: dts: at91: sama5d27_wlsom1: specify proper regulator output ranges e198c0857032 RDMA/hns: Fix wrong fixed value of qp->rq.wqe_shift b2e82e325a84 RDMA/hns: Fix supported page size 6dc0251638a4 soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs e9ea271c2e43 RDMA/cma: Fix arguments order in net device validation 465eecd2b3a4 tee: fix compiler warning in tee_shm_register() 75c961d01199 regulator: core: Clean up on enable failure bb4bee3eca78 ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node 015c2ec053f3 smb3: missing inode locks in punch hole 98127f140bc4 cifs: remove useless parameter 'is_fsctl' from SMB2_ioctl() dee1e2b18cf5 cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock bfbacc2ef7b5 cgroup: Elide write-locking threadgroup_rwsem when updating csses on an empty subtree a5620d3e0cf9 scsi: lpfc: Add missing destroy_workqueue() in error path ea10a652ad2a scsi: mpt3sas: Fix use-after-free warning de572edecc29 drm/i915: Implement WaEdpLinkRateDataReload be01f1c98875 nvmet: fix a use-after-free 68f22c80c181 debugfs: add debugfs_lookup_and_remove() ab60010225ce kprobes: Prohibit probes in gate area 6123bec8480d ALSA: usb-audio: Fix an out-of-bounds bug in __snd_usb_parse_audio_interface() ab730d3c4491 ALSA: aloop: Fix random zeros in capture data when using jiffies timer 39a90720f3ab ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() dfb27648eea5 drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly 2078e326b64e fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() 9d040a629e7e net/core/skbuff: Check the return value of skb_copy_bits() 43b9af72751a arm64: cacheinfo: Fix incorrect assignment of signed error value to unsigned fw_level 96d206d0a14e parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines 44739b5aae3a parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() 826b46fd5974 drm/radeon: add a force flush to delay work when radeon 04102568671e drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. c19656cd951a drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to psp_hw_fini 67bf86ff81fe drm/gem: Fix GEM handle release errors a175aed83eb4 scsi: megaraid_sas: Fix double kfree() 004e26ef056c scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX a14f1799ce37 Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" 13c8f561be38 fs: only do a memory barrier for the first set_buffer_uptodate() 2946d2ae5ace wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in il4965_rs_fill_link_cmd() 918d9c4a4bdf efi: capsule-loader: Fix use-after-free in efi_capsule_write 94f0f30b2d9d efi: libstub: Disable struct randomization eb75efdec8dd tty: n_gsm: avoid call of sleeping functions from atomic context fb6cadd2a30f tty: n_gsm: initialize more members at gsm_alloc_mux() 186cb020bd3a xen-blkfront: Cache feature_persistent value before advertisement d3d885507b52 NFSD: Fix verifier returned in stable WRITEs 281e81a5e2b2 Linux 5.10.142 2058aab4e306 USB: serial: ch341: fix disabled rx timer on older devices 2a4c619a87dd USB: serial: ch341: fix lost character on LCR updates 06a84bda0a08 usb: dwc3: disable USB core PHY management 451fa90150f2 usb: dwc3: qcom: fix use-after-free on runtime-PM wakeup 8984ca41de16 usb: dwc3: fix PHY disable sequence cb2718936022 mmc: core: Fix UHS-I SD 1.8V workaround branch 7f73a9dea009 btrfs: harden identification of a stale device 3c63a22d0243 drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk 1079d095725a ALSA: seq: Fix data-race at module auto-loading f19a209f6156 ALSA: seq: oss: Fix data-race for max_midi_devs access 7565c1503074 ALSA: hda/realtek: Add speaker AMP init for Samsung laptops with ALC298 ab9f890377d1 net: mac802154: Fix a condition in the receive path d71a1c9fce18 net: Use u64_stats_fetch_begin_irq() for stats fetch. 685f4e56717e ip: fix triggering of 'icmp redirect' 4abc8c07a065 wifi: mac80211: Fix UAF in ieee80211_scan_rx() dd649b49219a wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected 742e222dd556 driver core: Don't probe devices after bus_type.match() probe deferral 6202637fdef0 usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS abe3cfb7a7c8 USB: core: Prevent nested device-reset calls b0d4993c4baa s390: fix nospec table alignments 0361d50e86c0 s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages b9097c5e107d usb-storage: Add ignore-residue quirk for NXP PN7462AU 5f0d11796aa5 USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) d608c131df99 usb: dwc2: fix wrong order of phy_power_on and phy_init 95791d51f7af usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles 89b01a88ef7d USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode 7f1f17671517 USB: serial: option: add Quectel EM060K modem efcc3e1e6a5a USB: serial: option: add support for OPPO R11 diag port e547c07c2848 USB: serial: cp210x: add Decagon UCA device id 5a603f4c1273 xhci: Add grace period after xHC start to prevent premature runtime suspend. 587f793c64d9 media: mceusb: Use new usb_control_msg_*() routines 07fb6b10b64a thunderbolt: Use the actual buffer in tb_async_error() f210912d1aa9 xen-blkfront: Advertise feature-persistent as user requested aa45c507037a xen-blkback: Advertise feature-persistent as user requested 47a73e5e6ba4 mm: pagewalk: Fix race between unmap and page walker 5d0d46e6255a xen/grants: prevent integer overflow in gnttab_dma_alloc_pages() eb0c614c426c KVM: x86: Mask off unsupported and unknown bits of IA32_ARCH_CAPABILITIES 7efcbac55aad gpio: pca953x: Add mutex_lock for regcache sync in PM 517dba798793 hwmon: (gpio-fan) Fix array out of bounds access a971343557ff clk: bcm: rpi: Add missing newline fcae47b2d23c clk: bcm: rpi: Prevent out-of-bounds access 8c90a3e0d382 clk: bcm: rpi: Use correct order for the parameters of devm_kcalloc() 00d8bc0c16ed clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate e32982115d48 Input: rk805-pwrkey - fix module autoloading e2945f936cc4 clk: core: Fix runtime PM sequence in clk_core_unprepare() 4ff599df312f Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" c0f0ed9ef9b6 clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops 5f1aee7f05d8 drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" 9629f2dfdb1d binder: fix UAF of ref->proc caused by race condition 08fa8cb6df88 USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id 5cf2a57c7a01 misc: fastrpc: fix memory corruption on open c99bc901d5eb misc: fastrpc: fix memory corruption on probe 30fd0e23e373 iio: adc: mcp3911: use correct formula for AD conversion 89aa443437c6 iio: ad7292: Prevent regulator double disable b271090eea38 Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag b202400c9c9e tty: serial: lpuart: disable flow control while waiting for the transmit engine to complete 989201bb8c00 vt: Clear selection before changing the font 7fd8d33adbba powerpc: align syscall table for ppc32 19e3f69d1980 staging: rtl8712: fix use after free bugs 6ccd69141b9f serial: fsl_lpuart: RS485 RTS polariy is inverse e416fe7f16c1 net/smc: Remove redundant refcount increase d73b89c3b3f7 Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" f3d1554d0f67 tcp: annotate data-race around challenge_timestamp 870b6a15619c sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb 1b6666964ca1 kcm: fix strp_init() order and cleanup 406d554844cc ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler 44dfa645895a net/sched: fix netdevice reference leaks in attach_default_qdiscs() 699d82e9a6db net: sched: tbf: don't call qdisc_put() while holding tree lock c0cb63ee2e22 Revert "xhci: turn off port power in shutdown" 6855efbaf54a wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() ddcb56e84130 ALSA: hda: intel-nhlt: Correct the handling of fmt_config flexible array 9276eb98cd08 ALSA: hda: intel-nhlt: remove use of __func__ in dev_dbg 23a29932715c ieee802154/adf7242: defer destroy_workqueue call c5f975e3ebfa bpf, cgroup: Fix kernel BUG in purge_effective_progs e6aeb8be8571 iio: adc: mcp3911: make use of the sign bit b69e05b1e830 platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask f040abf62e62 drm/msm/dsi: Fix number of regulators for SDM660 43e523a4070e drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg 1487e8fc16f7 drm/msm/dp: delete DP_RECOVERED_CLOCK_OUT_EN to fix tps4 631fbefd8777 drm/msm/dsi: fix the inconsistent indenting (From OE-Core rev: eee473e1442b427ca49e7717991cdf4cc6b2fd87) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/5.10: update to v5.10.141Bruce Ashfield2022-09-283-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating to the latest korg -stable release that comprises the following commits: 0b8e37cbaa76 Linux 5.10.141 bdc786d737ec net: neigh: don't call kfree_skb() under spin_lock_irqsave() 4931af31c402 net/af_packet: check len when min_header_len equals to 0 64f6da455b66 xfs: revert "xfs: actually bump warning counts when we send warnings" d34798d846d7 xfs: fix soft lockup via spinning in filestream ag selection loop f168801da95f xfs: fix overfilling of reserve pool 72a259bdd50d xfs: always succeed at setting the reserve pool size cb41f22df3ec xfs: remove infinite loop when reserving free block pool 28d8d2737e82 io_uring: disable polling pollfree files 744b0d308070 kprobes: don't call disarm_kprobe() for disabled kprobes 8c70cce89231 lib/vdso: Mark do_hres_timens() and do_coarse_timens() __always_inline() 6ba9e8fb47f6 netfilter: conntrack: NF_CONNTRACK_PROCFS should no longer default to y afa169f79d47 drm/amdgpu: Increase tlb flush timeout for sriov f08a3712bac8 drm/amd/display: Fix pixel clock programming 60d522f31707 drm/amd/pm: add missing ->fini_microcode interface for Sienna Cichlid f2b7b8b1c413 s390/hypfs: avoid error message under KVM c35adafe42bd neigh: fix possible DoS due to net iface start/stop loop 3c1dfeaeb3b4 drm/amd/display: clear optc underflow before turn off odm clock 4e5e67b13a04 drm/amd/display: For stereo keep "FLIP_ANY_FRAME" 828b2a5399aa drm/amd/display: Avoid MPC infinite loop 9d36e2c264f7 mmc: mtk-sd: Clear interrupts when cqe off/disable 98f401d36396 mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse 6204bf78b2a9 bpf: Don't redirect packets with invalid pkt_len dbd8c8fc6048 ftrace: Fix NULL pointer dereference in is_ftrace_trampoline when ftrace is dead 8fc778ee2fb2 fbdev: fb_pm2fb: Avoid potential divide by zero error 61cc798591a3 net: fix refcount bug in sk_psock_get (2) 7e2fa7922658 HID: hidraw: fix memory leak in hidraw_release() bacb37bdc2a2 media: pvrusb2: fix memory leak in pvr_probe 872875c9ecf8 udmabuf: Set the DMA mask for the udmabuf device (v2) dc815761948a HID: steam: Prevent NULL pointer dereference in steam_{recv,send}_report 412b844143e3 Revert "PCI/portdrv: Don't disable AER reporting in get_port_device_capability()" 38267d266336 Bluetooth: L2CAP: Fix build errors in some archs ad697ade5939 kbuild: Fix include path in scripts/Makefile.modpost b9feeb610099 s390/mm: do not trigger write fault when vma does not allow VM_WRITE 0dea6b3e22c6 crypto: lib - remove unneeded selection of XOR_BLOCKS e5796ff9acc5 x86/nospec: Fix i386 RSB stuffing adee8f3082b0 x86/nospec: Unwreck the RSB stuffing 895428ee124a mm: Force TLB flush for PFNMAP mappings before unlink_file_vma() 18ed766f3642 Linux 5.10.140 e89798071784 bpf: Don't use tnum_range on array range checking for poke descriptors 46fcb0fc884d scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq 8d5c106fe216 scsi: ufs: core: Enable link lost interrupt c0ba9aa95bf7 perf/x86/intel/uncore: Fix broken read_counter() for SNB IMC PMU 5a768c977085 perf python: Fix build when PYTHON_CONFIG is user supplied 3ddbd0907f6d blk-mq: fix io hung due to missing commit_rqs 7ca73d0a16e3 Documentation/ABI: Mention retbleed vulnerability info file for sysfs 189623261994 arm64: Fix match_list for erratum 1286807 on Arm Cortex-A76 a5a58fab556b md: call __md_stop_writes in md_stop f68f025c7e69 Revert "md-raid: destroy the bitmap after destroying the thread" 62af37c5cd7f mm/hugetlb: fix hugetlb not supporting softdirty tracking 6de50db104af xen/privcmd: fix error exit of privcmd_ioctl_dm_op() 8d5f8a4f25b1 ACPI: processor: Remove freq Qos request for all CPUs 297ae7e87a87 s390: fix double free of GS and RI CBs on fork() failure c60ae878782d asm-generic: sections: refactor memory_intersects 6858933131d0 loop: Check for overflow while configuring loop 14cbbb9c9914 x86/bugs: Add "unknown" reporting for MMIO Stale Data e3e0d117294d x86/unwind/orc: Unwind ftrace trampolines with correct ORC entry 090f0ac167a0 perf/x86/lbr: Enable the branch type for the Arch LBR by default d2bd18d50c1e btrfs: check if root is readonly while setting security xattr dcac6293f571 btrfs: add info when mount fails due to stale replace target b2d352ed4d48 btrfs: replace: drop assert for suspended replace 2fc3c168d5b6 btrfs: fix silent failure when deleting root reference 3a351b567e20 ionic: fix up issues with handling EAGAIN on FW cmds 79e2ca7aa96e rxrpc: Fix locking in rxrpc's sendmsg c3a6e863d51b ixgbe: stop resetting SYSTIME in ixgbe_ptp_start_cyclecounter 23cf93bb32e5 net: Fix a data-race around sysctl_somaxconn. 9fcc4f406620 net: Fix data-races around sysctl_devconf_inherit_init_net. 371a3bcf3144 net: Fix data-races around sysctl_fb_tunnels_only_for_init_net. c3bda708e9c4 net: Fix a data-race around netdev_budget_usecs. 12a34d7f0463 net: Fix a data-race around netdev_budget. 410c88314ce3 net: Fix a data-race around sysctl_net_busy_read. 2c7dae6c4511 net: Fix a data-race around sysctl_net_busy_poll. 8db070463e3e net: Fix a data-race around sysctl_tstamp_allow_data. ed48223f87c5 net: Fix data-races around sysctl_optmem_max. 27e8ade79265 bpf: Folding omem_charge() into sk_storage_charge() 4d4e39245dd5 ratelimit: Fix data-races in ___ratelimit(). e73009ebc123 net: Fix data-races around netdev_tstamp_prequeue. 3850060352f4 net: Fix data-races around netdev_max_backlog. b498a1b0171e net: Fix data-races around weight_p and dev_weight_[rt]x_bias. fb442c72db38 net: Fix data-races around sysctl_[rw]mem_(max|default). 613fd026209e net: Fix data-races around sysctl_[rw]mem(_offset)?. e73a29554f0b tcp: tweak len/truesize ratio for coalesce candidates c08a104a8bce netfilter: nf_tables: disallow binding to already bound chain 6301a73bd83d netfilter: nf_tables: disallow jump to implicit chain from set element 98827687593b netfilter: nf_tables: upfront validation of data via nft_data_init() 8790eecdea01 netfilter: bitwise: improve error goto labels 2267d38520c4 netfilter: nft_cmp: optimize comparison for 16-bytes 1d7d74a8240e netfilter: nf_tables: consolidate rule verdict trace call cd962806c449 netfilter: nftables: remove redundant assignment of variable err 35519ce7bac9 netfilter: nft_tunnel: restrict it to netdev family 9a67c2c89c32 netfilter: nft_osf: restrict osf to ipv4, ipv6 and inet families c907dfe4eaca netfilter: nf_tables: do not leave chain stats enabled on error ea358cfc8e25 netfilter: nft_payload: do not truncate csum_offset and csum_type 93a46d6c72b1 netfilter: nft_payload: report ERANGE for too long offset and length e0f8cf01927d bnxt_en: fix NQ resource accounting during vf creation on 57500 chips 624c30521233 netfilter: ebtables: reject blobs that don't provide all entry points f82a6b85e0ae net: ipvtap - add __init/__exit annotations to module init/exit funcs 7e7e88e8b5b4 bonding: 802.3ad: fix no transmission of LACPDUs 14ef913a9582 net: moxa: get rid of asymmetry in DMA mapping/unmapping faa8bf845106 net: ipa: don't assume SMEM is page-aligned 29accb2d96e6 net/mlx5e: Properly disable vlan strip on non-UL reps 1bfdcde723d8 ice: xsk: prohibit usage of non-balanced queue id d29d7108e19e ice: xsk: Force rings to be sized to power of 2 50403ee6dadd nfc: pn533: Fix use-after-free bugs caused by pn532_cmd_timeout de3deadd1198 rose: check NULL rose_loopback_neigh->loopback e9fe1283a88c mm/smaps: don't access young/dirty bit if pte unpresent c7c77185fa3e mm/huge_memory.c: use helper function migration_entry_to_page() 8be096f018e4 SUNRPC: RPC level errors should set task->tk_rpc_status 5e49ea099850 NFSv4.2 fix problems with __nfs42_ssc_open 23c6f25a6043 NFS: Don't allocate nfs_fattr on the stack in __nfs42_ssc_open() 2761612bcde9 xfrm: policy: fix metadata dst->dev xmit null pointer dereference c5c4d4c9806d af_key: Do not call xfrm_probe_algs in parallel 4379a10c1db7 xfrm: clone missing x->lastused in xfrm_do_migrate 1305d7d4f35c xfrm: fix refcount leak in __xfrm_policy_check() c30c0f720533 kernel/sched: Remove dl_boosted flag comment 70d560e2fb5e xfs: only bother with sync_filesystem during readonly remount 37837bc3ef31 xfs: return errors in xfs_fs_sync_fs 76a51e49da9c vfs: make sync_filesystem return errors from ->sync_fs 9255a42fe7ab fs: remove __sync_filesystem 1b9b4139d794 xfs: reject crazy array sizes being fed to XFS_IOC_GETBMAP* 6a564bad3a64 xfs: prevent a WARN_ONCE() in xfs_ioc_attr_list() a5757df6128b pinctrl: amd: Don't save/restore interrupt status and wake status bits 665433b5ddc2 kernel/sys_ni: add compat entry for fadvise64_64 df1d445e7fcf parisc: Fix exception handler for fldw and fstw instructions e10bb2f2e99b audit: fix potential double free on error path from fsnotify_add_inode_mark 665ee746071b Linux 5.10.139 37c7f25fe2b7 kbuild: dummy-tools: avoid tmpdir leak in dummy gcc fa3303d70b42 Linux 5.10.138 606fe84a4185 tee: fix memory leak in tee_shm_register() 3527e3cbb84d bpf: Fix KASAN use-after-free Read in compute_effective_progs 4f7286422a78 qrtr: Convert qrtr_ports from IDR to XArray 1daa7629d2a2 PCI/ERR: Retain status from error notification a220ff343396 can: j1939: j1939_session_destroy(): fix memory leak of skbs 05b9b0a7a7cd can: j1939: j1939_sk_queue_activate_next_locked(): replace WARN_ON_ONCE with netdev_warn_once() 184e73f12cba tracing/probes: Have kprobes and uprobes use $COMM too 3debec96cae1 netfilter: nf_tables: fix audit memory leak in nf_tables_commit f3d0db3b435a netfilter: nftables: fix a warning message in nf_tables_commit_audit_collect() 059f47b3a433 MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 4b20c6136514 video: fbdev: i740fb: Check the argument of i740_calc_vclk() dac28dff9084 powerpc/64: Init jump labels before parse_early_param() 52a408548ab3 smb3: check xattr value length earlier 336936f72ab3 f2fs: fix to do sanity check on segment type in build_sit_entries() 800ba8979111 f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() 857ccedcf569 ALSA: control: Use deferred fasync helper 658bc550a4ec ALSA: timer: Use deferred fasync helper be094c417a0e ALSA: core: Add async signal helpers 6ed3e280c7a1 powerpc/32: Don't always pass -mcpu=powerpc to the compiler 63671b2bdf5f watchdog: export lockup_detector_reconfigure 399d24577567 RISC-V: Add fast call path of crash_kexec() d881c98d0a49 riscv: mmap with PROT_WRITE but no PROT_READ is invalid 333bdb72be13 modules: Ensure natural alignment for .altinstructions and __bug_table sections 1e39037e44d7 mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start 5e034e03f416 vfio: Clear the caps->buf to NULL after free 81939c4fbc2d tty: serial: Fix refcount leak bug in ucc_uart.c 58275db3c7d2 lib/list_debug.c: Detect uninitialized lists 80288883294c ext4: avoid resizing to a partial cluster size 285447b81925 ext4: avoid remove directory when directory is corrupted 5d8325fd1589 drivers:md:fix a potential use-after-free bug 534e96302ad2 nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown 6d7aabdba60c md: Notify sysfs sync_completed in md_reap_sync_thread() f43a72d4da91 dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed b30aa4ff11a1 selftests/kprobe: Do not test for GRP/ without event failures fa45327d8c52 csky/kprobe: reclaim insn_slot on kprobe unregistration 18f62a453b72 RDMA/rxe: Limit the number of calls to each tasklet 9a6178c225e9 um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups e4c9f162193a PCI/ACPI: Guard ARM64-specific mcfg_quirks 4be138bcd6d6 cxl: Fix a memory leak in an error handling path 84d94619c7cf pinctrl: intel: Check against matching data instead of ACPI companion 9ac14f973cb9 gadgetfs: ep_io - wait until IRQ finishes c29a4baaad38 scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user input eb01065fd337 clk: qcom: clk-alpha-pll: fix clk_trion_pll_configure description 56a4bccab9c8 zram: do not lookup algorithm in backends table 09c90f89b2e6 uacce: Handle parent device removal or parent driver module rmmod 6b90ab952401 clk: qcom: ipq8074: dont disable gcc_sleep_clk_src eddb352a807d vboxguest: Do not use devm for irq 9a87f33f1dd0 usb: dwc2: gadget: remove D+ pull-up while no vbus with usb-role-switch 9790a5a4f07f usb: renesas: Fix refcount leak bug cb5dd65e8891 usb: host: ohci-ppc-of: Fix refcount leak bug d86c6447ee25 clk: ti: Stop using legacy clkctrl names for omap4 and 5 152c94c10bc4 drm/meson: Fix overflow implicit truncation warnings da6b37983a39 irqchip/tegra: Fix overflow implicit truncation warnings 24304c6f9c11 usb: gadget: uvc: call uvc uvcg_warn on completed status instead of uvcg_info 6d7ac60098b2 usb: cdns3 fix use-after-free at workaround 2 0a0da5ef5b4e platform/chrome: cros_ec_proto: don't show MKBP version if unsupported e2ab7afe6665 PCI: Add ACS quirk for Broadcom BCM5750x NICs a1e7908f78f5 drm/sun4i: dsi: Prevent underflow when computing packet sizes bd6165b80232 netfilter: add helper function to set up the nfnetlink header and use it 06fde3cd0b53 netfilter: nftables: add helper function to set the base sequence number e2a49009ba03 audit: log nftables configuration change events once per table 3aa710e96747 drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() 1bfdb1912cb3 ASoC: SOF: intel: move sof_intel_dsp_desc() forward 823280a8fba3 locking/atomic: Make test_and_*_bit() ordered on failure 0bd35968bcd0 gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file 9112826f28ee kbuild: fix the modules order between drivers and libs 0f516dcd1456 igb: Add lock to avoid data race 02f3642d8e65 stmmac: intel: Add a missing clk_disable_unprepare() call in intel_eth_pci_remove() efae1735ff15 fec: Fix timer capture timing in `fec_ptp_enable_pps()` 668f38fb9a8c i40e: Fix to stop tx_timeout recovery if GLOBR fails bbd6723d7584 regulator: pca9450: Remove restrictions for regulator-name b5ba5c36694d i2c: imx: Make sure to unregister adapter on remove() 19cb691faf47 ice: Ignore EEXIST when setting promisc mode 7983e1e44cb3 net: dsa: sja1105: fix buffer overflow in sja1105_setup_devlink_regions() 83411c9f05d5 net: genl: fix error path memory leak in policy dumping af1748ee51b3 net: dsa: felix: fix ethtool 256-511 and 512-1023 TX packet counters 9900af65f2d1 net: dsa: microchip: ksz9477: fix fdb_dump last invalid entry 7d51385ae019 net: moxa: pass pdev instead of ndev to DMA functions 92dc64e8f591 net: dsa: mv88e6060: prevent crash on an unused port aa16c8c4e830 spi: meson-spicc: add local pow2 clock ops to preserve rate between messages a868f771ee41 powerpc/pci: Fix get_phb_number() locking 3561f4d12fb9 netfilter: nf_tables: check NFT_SET_CONCAT flag if field_count is specified 01b0cae6b74f netfilter: nf_tables: validate NFTA_SET_ELEM_OBJREF based on NFT_SET_OBJECT flag 8d2fe4b9ed4e netfilter: nf_tables: really skip inactive sets when allocating name 330f0a552bcf ASoC: tas2770: Fix handling of mute/unmute 353cc4cb97d9 ASoC: tas2770: Drop conflicting set_bias_level power setting dffe1c4780e0 ASoC: tas2770: Allow mono streams fc57e3fde219 ASoC: tas2770: Set correct FSYNC polarity 4fe80492d539 iavf: Fix adminq error handling 63684e467b19 nios2: add force_successful_syscall_return() 600ff4b13b0e nios2: restarts apply only to the first sigframe we build... f20bc59ccf9e nios2: fix syscall restart checks 8d0118a027e3 nios2: traced syscall does need to check the syscall number 1d2c89dc4837 nios2: don't leave NULLs in sys_call_table[] d29cdf865ae1 nios2: page fault et.al. are *not* restartable syscalls... 76be98188203 dpaa2-eth: trace the allocated address instead of page struct 787511c768b5 perf probe: Fix an error handling path in 'parse_perf_probe_command()' 2c746ec91de7 geneve: fix TOS inheriting for ipv4 a0ae122e9aec atm: idt77252: fix use-after-free bugs caused by tst_timer 291cba960bb8 xen/xenbus: fix return type in xenbus_file_read() 3c555a0599bf nfp: ethtool: fix the display error of `ethtool -m DEVNAME` 76f3b97e56c6 NTB: ntb_tool: uninitialized heap data in tool_fn_write() 7ef9f0efbeb1 tools build: Switch to new openssl API for test-libcrypto 7ef0645ebecf kbuild: dummy-tools: avoid tmpdir leak in dummy gcc aee18421bda6 ceph: don't leak snap_rwsem in handle_cap_grant eea0d84a4fc7 tools/vm/slabinfo: use alphabetic order when two values are equal 97cea2cb7c86 ceph: use correct index when encoding client supported features 7a327285a7b0 dt-bindings: clock: qcom,gcc-msm8996: add more GCC clock sources 87c4b359e343 dt-bindings: arm: qcom: fix MSM8916 MTP compatibles 55fdefcb52c5 vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() 38ddccbda5e8 vsock: Fix memory leak in vsock_connect() 549822e0dc9e plip: avoid rcu debug splat 0c4542cb6ac8 ipv6: do not use RT_TOS for IPv6 flowlabel 38b83883ce4e geneve: do not use RT_TOS for IPv6 flowlabel b0c3eec4ac69 ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool cc0bfd933c81 pinctrl: qcom: sm8250: Fix PDC map d35d9bba2940 pinctrl: sunxi: Add I/O bias setting for H6 R-PIO e8f5699a82f2 pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed 78d05103891d pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map ab2b55bb25db net: bgmac: Fix a BUG triggered by wrong bytes_compl 0e28678a770d devlink: Fix use-after-free after a failed reload faafa2a87f69 virtio_net: fix memory leak inside XPD_TX with mergeable fd70ebf2999b SUNRPC: Reinitialise the backchannel request buffers before reuse 59d2e8fa4127 sunrpc: fix expiry of auth creds df60c534d4c5 net: atlantic: fix aq_vec index out of range error cc25abcec82c can: mcp251x: Fix race condition on receive interrupt b9d9cf88c828 bpf: Check the validity of max_rdwr_access for sock local storage map iterator f7d844df5e20 bpf: Acquire map uref in .init_seq_private for sock{map,hash} iterator d7ad7e65aa2f bpf: Acquire map uref in .init_seq_private for sock local storage map iterator bda6fe3ea893 bpf: Acquire map uref in .init_seq_private for hash map iterator 30d7198da84f bpf: Acquire map uref in .init_seq_private for array map iterator 76ffd2042438 NFSv4/pnfs: Fix a use-after-free bug in open f2bd1cc1fe7a NFSv4.1: RECLAIM_COMPLETE must handle EACCES cfde64bd315d NFSv4: Fix races in the legacy idmapper upcall 060c111373ee NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly a351a73d9064 NFSv4.1: Don't decrease the value of seq_nr_highest_sent a408f135c4c2 Documentation: ACPI: EINJ: Fix obsolete example 8aab4295582e apparmor: Fix memleak in aa_simple_write_to_buffer() 2ceeb3296e9d apparmor: fix reference count leak in aa_pivotroot() 2672f3eb7a7f apparmor: fix overlapping attachment computation 1ac89741a2e7 apparmor: fix setting unconfined mode on a loaded profile 4188f91c82e3 apparmor: fix aa_label_asxprint return check e0ca0156a786 apparmor: Fix failed mount permission check error message 08f8128bc9f2 apparmor: fix absroot causing audited secids to begin with = bca03f0bbc3b apparmor: fix quiet_denied for file rules 2b74344135fc can: ems_usb: fix clang's -Wunaligned-access warning 7f06c7821187 ALSA: usb-audio: More comprehensive mixer map for ASUS ROG Zenith II 5d3b02b80d93 tracing: Have filter accept "common_cpu" to be consistent 6359850f9d8f btrfs: fix lost error handling when looking up extended ref on log replay 79895cefa4c6 mmc: meson-gx: Fix an error handling path in meson_mmc_probe() 13a497c3c598 mmc: pxamci: Fix an error handling path in pxamci_probe() 4a211dd4856e mmc: pxamci: Fix another error handling path in pxamci_probe() a785d8417812 ata: libata-eh: Add missing command name fb1857c2e41a rds: add missing barrier to release_refill 6876b4804b04 x86/mm: Use proper mask when setting PUD mapping b68e40b52f17 ALSA: hda/realtek: Add quirk for Clevo NS50PU, NS70PU e14e2fec35d3 ALSA: info: Fix llseek return value when using callback (From OE-Core rev: 6dceeaf73b7e5c2fc58f3f5d17480ed37d64c6cc) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vim: Upgrade 9.0.453 -> 9.0.541Richard Purdie2022-09-281-2/+2
| | | | | | | | | | | Includes a fix for CVE-2022-3234. (From OE-Core rev: 650ae29fc567e033205558fa85cc1c156d9f72a7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit d6b54f37aa4db1457296b8981b630a49d251ceb5) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>