summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix dead links that use the DISTRO macrokirkstoneAntonin Godard10 days9-12/+12
| | | | | | | | | | | | | | | | | | | | After introducing the DISTRO_LATEST_TAG and DISTRO_REL_LATEST_TAG macros, use them in links that currently use DISTRO/DISTRO_REL_TAG. When building for the tip of a branch, this will replace the current A.B.999 in links to the latest existing tag. The links were found across the documentation by running 'grep -r "http.*5\.2\.999"' inside the _build/html output after building the docs. [YOCTO #14802] (From yocto-docs rev: 0d51e553d5f83eea6634e03ddc9c7740bf72fcea) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> (cherry picked from commit 29be069ebbf2c55d72fc51d99ed5a558af37c05e) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* poky.yaml: introduce DISTRO_LATEST_TAGAntonin Godard10 days2-2/+23
| | | | | | | | | | | | | | | | | | | | | | | | | Introduce the DISTRO_LATEST_TAG macro, which should always point to the latest existing tag in the documentation, unlike DISTRO which may point to A.B.999 to represent the tip of a branch. This variable is needed to fix dead links in the documentation that currently use the DISTRO macro. Also, make DISTRO_REL_TAG use the DISTRO macro directly, to avoid repetition, and add a DISTRO_REL_LATEST_TAG macro that has the same role as DISTRO_LATEST_TAG but with "yocto-" prepended to it. In set_versions.py, run the "git describe --abbrev=0 --tags --match='yocto-*'" command to get the latest existing tag on the currently checked out commit. Fallback to ourversion in case we didn't find any. (From yocto-docs rev: 9fabb08405601646fd9b00326442e03d43f68804) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> (cherry picked from commit a85b0e500c94921f77fa7b7dbb877e4945f96d1e) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* manuals: remove repeated wordAndrew Kreimer10 days1-1/+1
| | | | | | | | | | The word "modern" appears twice, remove the extra one. (From yocto-docs rev: db02bc7eb59feaece5d2a07b3586fd41c7a73a1e) Signed-off-by: Andrew Kreimer <algonell@gmail.com> Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ref-manual/variables.rst: document autotools class related variablesAntonin Godard10 days1-0/+17
| | | | | | | | | Document the AUTOTOOLS_SCRIPT_PATH and the CONFIGURE_SCRIPT variables. (From yocto-docs rev: f7721ff5312b1ebf87dd374db22b254913879ff0) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* Revert "cve-update-nvd2-native: Tweak to work better with NFS DL_DIR"Peter Marko10 days1-2/+0
| | | | | | | | | | | | | | This reverts commit 7adaec468d3a61d88c990b1b319b34850bee7e44. It does not seem to fix the issue it was supposed to fix. Additionally it breaks code which decides in full/partial update, because it manipulates timestamp that code is relying on. (From OE-Core rev: 25ba9895b98715adb66a06e50f644aea2e2c9eb6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ebc65fdddd7ce51f0f1008baa30d0ae7918ae0bb) Signed-off-by: Steve Sakoman <steve@sakoman.com>
* systemd: systemd-journald fails to setup LogNamespaceHaitao Liu10 days2-0/+79
| | | | | | | | | | | | | | | | | | | | | A LogNamespace error for systemd v250: """ Apr 28 17:44:00 a-rinline2b systemd[467]: systemd-journald@tester.service: Failed to set up special execution directory in /var/log: Not a directory Apr 28 17:44:00 a-rinline2b systemd[467]: systemd-journald@tester.service: Failed at step LOGS_DIRECTORY spawning /lib/systemd/systemd-journald: Not a directory """ That's because that "/var/log/journal" couldn't be created during program runtime. (From OE-Core rev: 8eb185024f9a9e57a9b710c70f09552729558892) Signed-off-by: Haitao Liu <haitao.liu@windriver.com> Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* systemd: backport patch to fix journal issueChen Qi10 days2-0/+88
| | | | | | | | | | | Backport a patch to fix systemd journal issue about sd_journal_next not behaving correctly after sd_journal_seek_tail. (From OE-Core rev: ea59aed1ff7dbfb28d1e2cd55adca80dad2502e2) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* tzdata/tzcode-native: upgrade 2025a -> 2025bPriyal Doshi10 days1-3/+3
| | | | | | | (From OE-Core rev: 2568f7ce707d63df1f98b3eeec6639d7a5a2d642) Signed-off-by: Priyal Doshi <pdoshi@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* python3-setuptools: Fix CVE-2024-6345Soumya Sambu10 days2-0/+354
| | | | | | | | | | | | | | | | | | | | | A vulnerability in the package_index module of pypa/setuptools versions up to 69.1.1 allows for remote code execution via its download functions. These functions, which are used to download packages from URLs provided by users or retrieved from package index servers, are susceptible to code injection. If these functions are exposed to user-controlled inputs, such as package URLs, they can execute arbitrary commands on the system. The issue is fixed in version 70.0. References: https://nvd.nist.gov/vuln/detail/CVE-2024-6345 https://ubuntu.com/security/CVE-2024-6345 Upstream patch: https://github.com/pypa/setuptools/commit/88807c7062788254f654ea8c03427adc859321f0 (From OE-Core rev: 238c305ba2c513a070818de4b6ad4316b54050a7) Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* binutils: Fix CVE-2025-1178Deepesh Varatharajan10 days2-0/+34
| | | | | | | | | | | | | | | Prevent an abort in the bfd linker when attempting to generate dynamic relocs for a corrupt input file. PR 32638 Backport a patch from upstream to fix CVE-2025-1178 Upstream-Status: Backport from [https://sourceware.org/git/?p=binutils-gdb.git;a=patch;h=75086e9de1707281172cc77f178e7949a4414ed0] (From OE-Core rev: e820e5364c4b3ec52796a77842b480fea8bc7967) Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* glib-2.0: patch CVE-2025-3360Peter Marko10 days7-0/+335
| | | | | | | | | | | | Backport commits from [1] fixing [2] for 2.82.x. [1] https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4499 [2] https://gitlab.gnome.org/GNOME/glib/-/issues/3647x (From OE-Core rev: 606cc539ab19ae2bceb366eda7d4872c3763400f) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* libxml2: patch CVE-2025-32415Peter Marko10 days2-0/+40
| | | | | | | | | Pick commit from 2.13 branch as 2.9 branch is unmaintained now. (From OE-Core rev: 7777cd6b28988a0981b990d9da9d448dcdfe7b8b) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* libxml2: patch CVE-2025-32414Peter Marko10 days2-0/+75
| | | | | | | | | Pick commit from 2.12 branch as 2.9 branch is unmaintained now. (From OE-Core rev: fbd708438aba0381a6c4f3d6cfbbd743f89a4f97) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* libarchive: ignore CVE-2024-48615Peter Marko10 days1-0/+2
| | | | | | | | | | | | | | | Fix for this CVE [1] is patchong code introduced by [2] in v3.7.5. So v3.6.2 is not affected yet and the CVE can be safely ignored. Also Debian tracker [3] contains this statement. [1] https://github.com/libarchive/libarchive/commit/565b5aea491671ae33df1ca63697c10d54c00165 [2] https://github.com/libarchive/libarchive/commit/2d8a5760c5ec553283a95a1aaca746f6eb472d0f [3] https://security-tracker.debian.org/tracker/CVE-2024-48615 (From OE-Core rev: 60390a3a28242efba32360426b0a3be6af5fb54b) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ghostscript: ignore CVE-2025-27833Peter Marko10 days1-1/+2
| | | | | | | | | | | | | | Vulnerable code was introduced in 9.56.0, so 9.55.0 is not affected yet Commit introducing vulnerable feature: * https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/pdf/pdf_fmap.c?id=0a1d08d91a95746f41e8c1d578a4e4af81ee5949 Commit fixing the vulnerability: * https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/?id=477e36cfa1faa0037069a22eeeb4fc750733f120 (From OE-Core rev: e1f3d02e80f6bdd942321d9f6718dcc36afe9df8) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ppp: patch CVE-2024-58250Peter Marko10 days2-1/+186
| | | | | | | | | | | | | | | | Backport patch to remove vulnerable component. This is a breaking change, but there will be no other fix for this CVE as upstream did the deletion without providing a fix first. If someone really needs this feature, which the commit message describes as deprecated, bbappend with patch removal is possible. License-Update: passprompt plugin removed (From OE-Core rev: d04a2b5f4899845429e1c5893535f5df1221fcbf) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* libpam: Update fix for CVE-2024-10041Shubham Kulkarni10 days3-1/+79
| | | | | | | | | | | | | | | Initially, PAM community fixed CVE-2024-10041 in the version v1.6.0 via commit b3020da. But not all cases were covered with this fix and issues were reported after the release. In the v1.6.1 release, PAM community fixed these issues via commit b7b9636. Backport this commit b7b9636, which Fixes: b3020da ("pam_unix/passverify: always run the helper to obtain shadow password file entries") Backport from https://github.com/linux-pam/linux-pam/commit/b7b96362087414e52524d3d9d9b3faa21e1db620 (From OE-Core rev: 71035c8c5907f7103ce40b92490a10bd3dde7226) Signed-off-by: Shubham Kulkarni <skulkarni@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* sqlite3: patch CVE-2025-29088Peter Marko10 days2-0/+180
| | | | | | | | | | | | Pick commit [1] mentioned in [2]. [1] https://github.com/sqlite/sqlite/commit/56d2fd008b108109f489339f5fd55212bb50afd4 [2] https://nvd.nist.gov/vuln/detail/CVE-2025-29088 (From OE-Core rev: 70d2d56f89d6f4589d65a0b4f0cbda20d2172167) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ruby: fix CVE-2024-43398Divya Chellam2025-04-182-0/+82
| | | | | | | | | | | | | | | | | | | | | REXML is an XML toolkit for Ruby. The REXML gem before 3.3.6 has a DoS vulnerability when it parses an XML that has many deep elements that have same local name attributes. If you need to parse untrusted XMLs with tree parser API like REXML::Document.new, you may be impacted to this vulnerability. If you use other parser APIs such as stream parser API and SAX2 parser API, this vulnerability is not affected. The REXML gem 3.3.6 or later include the patch to fix the vulnerability. Reference: https://security-tracker.debian.org/tracker/CVE-2024-43398 Upstream-patch: https://github.com/ruby/rexml/commit/7cb5eaeb221c322b9912f724183294d8ce96bae3 (From OE-Core rev: f23d1bfca0ea57150c397bc2e495191fb61423d0) Signed-off-by: Divya Chellam <divya.chellam@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* go: fix CVE-2025-22871Hitendra Prajapati2025-04-182-0/+173
| | | | | | | | | Upstream-Status: Backport from https://github.com/golang/go/commit/15e01a2e43ecb8c7e15ff7e9d62fe3f10dcac931 (From OE-Core rev: 2a9f47eb507cf57b58c4aa1baf0ef645b699fd6c) Signed-off-by: Hitendra Prajapati <hprajapati@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* systemd: ignore CVEs which reappeared after upgrade to 250.14Peter Marko2025-04-181-0/+3
| | | | | | | | | | | | Upgrade from 250.5 to 250.14 removed patches for these CVEs because they were interated in the new version. However NVD DB does not contain information about these backports to v250 branch, so they need to be ignored. (From OE-Core rev: b86129da823c55a3e08ee72c99675301948949f8) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* cve-update-nvd2-native: add workaround for json5 style listPeter Marko2025-04-181-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NVD responses changed to an invalid json between: * April 5, 2025 at 3:03:44 AM GMT+2 * April 5, 2025 at 4:19:48 AM GMT+2 The last response is since then in format { "resultsPerPage": 625, "startIndex": 288000, "totalResults": 288625, "format": "NVD_CVE", "version": "2.0", "timestamp": "2025-04-07T07:17:17.534", "vulnerabilities": [ {...}, ... {...}, ] } Json does not allow trailing , in responses, that is json5 format. So cve-update-nvd2-native do_Fetch task fails with log backtrace ending: ... File: '/builds/ccp/meta-siemens/projects/ccp/../../poky/meta/recipes-core/meta/cve-update-nvd2-native.bb', lineno: 234, function: update_db_file 0230: if raw_data is None: 0231: # We haven't managed to download data 0232: return False 0233: *** 0234: data = json.loads(raw_data) 0235: 0236: index = data["startIndex"] 0237: total = data["totalResults"] 0238: per_page = data["resultsPerPage"] ... File: '/usr/lib/python3.11/json/decoder.py', lineno: 355, function: raw_decode 0351: """ 0352: try: 0353: obj, end = self.scan_once(s, idx) 0354: except StopIteration as err: *** 0355: raise JSONDecodeError("Expecting value", s, err.value) from None 0356: return obj, end Exception: json.decoder.JSONDecodeError: Expecting value: line 1 column 1442633 (char 1442632) ... There was no announcement about json format of API v2.0 by nvd. Also this happens only if whole database is queried (database update is fine, even when multiple pages as queried). And lastly it's only the cve list, all other lists inside are fine. So this looks like a bug in NVD 2.0 introduced with some update. Patch this with simple character deletion for now and let's monitor the situation and possibly switch to json5 in the future. Note that there is no native json5 support in python, we'd have to use one of external libraries for it. (From OE-Core rev: cee817c0c3653cc96833815bfe2c87d2d85cc19e) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 6e526327f5c9e739ac7981e4a43a4ce53a908945) Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ghostscript: Fix CVE-2025-27836Vijay Anusuri2025-04-113-0/+112
| | | | | | | | | | | | Upstream-Status: Backport [https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/?id=8b6d19b2b4079da6863ef25f2370f25d4b054919 & https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/?id=d84efb73723384a8b7fb3989c824cfa218060085] (From OE-Core rev: 7399cf17590204f8289f356cce4575592d6e3536) Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ghostscript: Fix CVE-2025-27835Vijay Anusuri2025-04-112-0/+35
| | | | | | | | | | Upstream-Status: Backport [https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/?id=de900010a6f2310d1fd54e99eeba466693da0e13] (From OE-Core rev: c30c46c2b4048dd58cf91b1523ddeca6075176ec) Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ghostscript: Fix CVE-2025-27834Vijay Anusuri2025-04-112-0/+58
| | | | | | | | | | Upstream-Status: Backport [https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/?id=ef42ff180a04926e187d40faea40d4a43e304e3b] (From OE-Core rev: 06fb236cabf550ea7c92cda0a725dd3db8a8a38b) Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ghostscript: Fix CVE-2025-27832Vijay Anusuri2025-04-112-0/+46
| | | | | | | | | Upstream-Status: Backport [https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/?id=57291c846334f1585552010faa42d7cb2cbd5c41] (From OE-Core rev: a1cd1e6275cc5ae3c100a3259e24d03937a4b78d) Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ghostscript: Fix CVE-2025-27831Vijay Anusuri2025-04-113-0/+136
| | | | | | | | | | | | Upstream-Status: Backport [https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/?id=bf79b61cb1677d6865c45d397435848a21e8a647 & https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/?id=bf79b61cb1677d6865c45d397435848a21e8a647] (From OE-Core rev: 810795d2f1d7798c52675efd94917bf99fb940d0) Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ghostscript: Fix CVE-2025-27830Vijay Anusuri2025-04-112-0/+80
| | | | | | | | | | Upstream-Status: Backport [https://cgit.ghostscript.com/cgi-bin/cgit.cgi/ghostpdl.git/commit/?id=8474e1d6b896e35741d3c608ea5c21deeec1078f] (From OE-Core rev: bc74ad209b243b131ea5467b871339f1773ba64b) Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* ofono: patch CVE-2024-7537Peter Marko2025-04-112-0/+60
| | | | | | | | | | Pick commit https://web.git.kernel.org/pub/scm/network/ofono/ofono.git/commit/?id=e6d8d526d5077c0b6ab459efeb6b882c28e0fdeb (From OE-Core rev: 7f3a567b8e1446863e6c5c4336b4cb174592f799) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* curl: ignore CVE-2025-0725Yogita Urade2025-04-111-0/+2
| | | | | | | | | | | | | | | CVE-2025-0725 can only trigger for curl when using a runtime zlib version 1.2.0.3 or older and kirkstone supports zlib 1.2.11 version, hence ignore cve for kirkstone. Reference: https://curl.se/docs/CVE-2025-0725.html https://git.openembedded.org/openembedded-core/commit/?h=scarthgap&id=8c3b4a604b40260e7ca9575715dd8017e17d35c0 (From OE-Core rev: 9077246122b1284e8b6430384cccaf6f0b6c80c3) Signed-off-by: Yogita Urade <yogita.urade@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* build-appliance-image: Update to kirkstone head revisionyocto-4.0.26kirkstone-4.0.26Steve Sakoman2025-04-041-1/+1
| | | | | | (From OE-Core rev: 1efbe1004bc82e7c14c1e8bd4ce644f5015c3346) Signed-off-by: Steve Sakoman <steve@sakoman.com>
* poky.conf: bump version for 4.0.26Steve Sakoman2025-04-041-1/+1
| | | | | | (From meta-yocto rev: 3dd438c749099f2a5e808c4690d7ea767263e5b5) Signed-off-by: Steve Sakoman <steve@sakoman.com>
* mesa: Update SRC_URIGuocai He2025-04-042-2/+2
| | | | | | | | | | | | | | Update SRC_URI for mesa. The the tarball of mesa has been changed from: https://mesa.freedesktop.org/archive/ to: https://archive.mesa3d.org/ (From OE-Core rev: 6397cd1ad55927c312051cbd42d5825fa8ed969b) Signed-off-by: Guocai He <guocai.he.cn@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* yocto-uninative: Update to 4.7 for glibc 2.41Michael Halstead2025-04-041-5/+5
| | | | | | | | | (From OE-Core rev: eb89509bfb976cfb62369b05f55534615afaf886) Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* llvm : Fix CVE-2024-0151Deepesh Varatharajan2025-04-042-0/+1088
| | | | | | | | | | Backport a patch from upstream to fix CVE-2024-0151 Upstream-Status: Backport [https://github.com/llvm/llvm-project/commit/78ff617d3f573fb3a9b2fef180fa0fd43d5584ea] (From OE-Core rev: 883754a84accdc8f8418e83d3c54aa763bcdff87) Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* freetype: patch CVE-2025-27363Peter Marko2025-04-042-0/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From [1]: An out of bounds write exists in FreeType versions 2.13.0 and below (newer versions of FreeType are not vulnerable) when attempting to parse font subglyph structures related to TrueType GX and variable font files. The vulnerable code assigns a signed short value to an unsigned long and then adds a static value causing it to wrap around and allocate too small of a heap buffer. The code then writes up to 6 signed long integers out of bounds relative to this buffer. This may result in arbitrary code execution. This vulnerability may have been exploited in the wild. Per [2] patches [3] and [4] are needed. Unfortunately, the code changed since 2.11.1 and it's not possible to do backport without significant changes. Since Debian and Ubuntu have already patched this CVE, take the patch from them - [5]/[6]. The patch is a combination of patch originally proposed in [7] and follow-up patch [4]. [1] https://nvd.nist.gov/vuln/detail/CVE-2025-27363 [2] https://gitlab.freedesktop.org/freetype/freetype/-/issues/1322 [3] https://gitlab.freedesktop.org/freetype/freetype/-/commit/ef636696524b081f1b8819eb0c6a0b932d35757d [4] https://gitlab.freedesktop.org/freetype/freetype/-/commit/73720c7c9958e87b3d134a7574d1720ad2d24442 [5] https://git.launchpad.net/ubuntu/+source/freetype/commit/?h=applied/ubuntu/jammy-devel&id=fc406fb02653852dfa5979672e3d8d56ed329186 [6] https://salsa.debian.org/debian/freetype/-/commit/13295227b5b0d717a343f276d77ad3b89fcc6ed0 [7] https://www.openwall.com/lists/oss-security/2025/03/14/3 (From OE-Core rev: 5a8d4c7a9a0e099da0294141cf5590b55f0503cd) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* perl: ignore CVE-2023-47038Peter Marko2025-04-041-0/+2
| | | | | | | | | | | | | Fix for this CVE was backported to 5.34.2 in https://github.com/Perl/perl5/commit/12c313ce49b36160a7ca2e9b07ad5bd92ee4a010 This commit is listed in https://security-tracker.debian.org/tracker/CVE-2023-47038 (From OE-Core rev: 46fd9acd6b0e418009f4cec747ae82af60acbc6b) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* libarchive: ignore CVE-2025-1632Peter Marko2025-04-041-0/+2
| | | | | | | | | | | | | | As already mentioned in [1] when backporting commit including fix for this CVE, this vulnerability applies only from libarchive 3.7.0 commit [2] which introduced bsdunzip which contains this vulnerability. [1] https://git.openembedded.org/openembedded-core/commit/?h=kirkstone&id=ec837d3b21b4f8b98abac53e2833f1490ba6bf1e [2] https://github.com/libarchive/libarchive/commit/c157e4ce8eb170a92945cc2d292fd7106bdfcce1 (From OE-Core rev: bf7654877ba99f0b18a1cf6f83032af5ecabd01f) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* zlib: fix CVE-2014-9485Divya Chellam2025-04-042-0/+65
| | | | | | | | | | | | | | | | | | Directory traversal vulnerability in the do_extract_currentfile function in miniunz.c in miniunzip in minizip before 1.1-5 might allow remote attackers to write to arbitrary files via a crafted entry in a ZIP archive. Reference: https://security-tracker.debian.org/tracker/CVE-2014-9485 Upstream-patch: https://github.com/madler/zlib/commit/14a5f8f266c16c87ab6c086fc52b770b27701e01 (From OE-Core rev: 32c4b28fc06e39ab8ef86aebc5e1e1ae19934495) Signed-off-by: Divya Chellam <divya.chellam@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* cve-update-nvd2-native: handle missing vulnStatusPeter Marko2025-04-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | There is a new CVE which is missing vulnStatus field: https://services.nvd.nist.gov/rest/json/cves/2.0?cveId=CVE-2025-2682 This leads to: File: '<snip>/poky/meta/recipes-core/meta/cve-update-nvd2-native.bb', lineno: 336, function: update_db 0332: 0333: accessVector = None 0334: vectorString = None 0335: cveId = elt['cve']['id'] *** 0336: if elt['cve']['vulnStatus'] == "Rejected": 0337: c = conn.cursor() 0338: c.execute("delete from PRODUCTS where ID = ?;", [cveId]) 0339: c.execute("delete from NVD where ID = ?;", [cveId]) 0340: c.close() Exception: KeyError: 'vulnStatus' (From OE-Core rev: 453c5c8d9031be2b3a25e2a04e0f5f6325ef7298) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* linux-yocto/5.10: update to v5.10.234Bruce Ashfield2025-04-013-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.10 to the latest korg -stable release that comprises the following commits: 0ef80b084295 Revert "x86/mm: Randomize per-cpu entry area" bcd2efd15975 mt76: mt7915: fix txrate reporting e1e411e59308 x86/mm: Randomize per-cpu entry area ba824e697315 mm: fix mmap kernel hang f0a53361993a Linux 5.10.234 c762b76981fc Partial revert of xhci: use pm_ptr() instead #ifdef for CONFIG_PM conditionals 664760c49d98 xhci: use pm_ptr() instead of #ifdef for CONFIG_PM conditionals 1f66a3a1a516 drm/v3d: Assign job pointer to NULL before signaling the fence d2b550208155 Input: xpad - add support for wooting two he (arm) 098b8808e2e6 Input: xpad - add unofficial Xbox 360 wireless receiver clone 5e9fed31adc8 Input: atkbd - map F23 key to support default copilot shortcut 99c866bea85e Revert "usb: gadget: u_serial: Disable ep before setting port to null to fix the crash caused by port being null" 94770cf7c512 USB: serial: quatech2: fix null-ptr-deref in qt2_process_read_urb() 354aef2ec80a wifi: iwlwifi: add a few rate index validity checks 31bd7378c6fe ipv4: ip_tunnel: Fix suspicious RCU usage warning in ip_tunnel_find() d072ea247481 Bluetooth: RFCOMM: Fix not validating setsockopt user input d19a8650fd3d vfio/platform: check the bounds of read/write syscalls 553df82a8c73 signal/m68k: Use force_sigsegv(SIGSEGV) in fpsp040_die f70103a4355c m68k: Update ->thread.esp0 before calling syscall_trace() in ret_from_signal 03c56665dab1 net: sched: fix ets qdisc OOB Indexing 8c41abc11aa8 gfs2: Truncate address space when flipping GFS2_DIF_JDATA flag 09f698656628 ASoC: samsung: Add missing depends on I2C 20019b1f0040 irqchip/sunxi-nmi: Add missing SKIP_WAKE flag 3ff6ce057622 scsi: iscsi: Fix redundant response for ISCSI_UEVENT_GET_HOST_STATS request d5bd48f16d4a seccomp: Stub for !CONFIG_SECCOMP c269af144a79 ASoC: samsung: Add missing selects for MFD_WM8994 771f8a8a6995 ASoC: wm8994: Add depends on MFD core fe2c0bd6d1e2 net: fix data-races around sk->sk_forward_alloc 285ce1f89f8d scsi: sg: Fix slab-use-after-free read in sg_release() 7ffaf1a16f65 x86/xen: fix SLS mitigation in xen_hypercall_iret() daeac89cdb03 vsock: prevent null-ptr-deref in vsock_*[has_data|has_space] 18a7fc371d1d vsock/virtio: discard packets if the transport changes a925a200299a fou: remove warn in gue_gro_receive on unsupported protocol f9f76ff74dae nfsd: add list_head nf_gc to struct nfsd_file 8a8b83016f06 ipv6: avoid possible NULL deref in rt6_uncached_list_flush_dev() 83f5a87ee8ca blk-cgroup: Fix UAF in blkcg_unpin_online() 605889754ee6 RDMA/hns: Fix deadlock on SRQ async events. 461091c27f55 vmalloc: fix accounting with i915 e8d3c53c6f1c drm/radeon: check bo_va->bo is non-NULL before using it 85a9c98a5e0f iio: adc: rockchip_saradc: fix information leak in triggered buffer 031538ff9c32 iio: imu: inv_icm42600: fix timestamps after suspend if sensor is on 641b4041cb4e iio: imu: inv_icm42600: fix spi burst write not supported da55e7622580 Revert "PCI: Use preserve_config in place of pci_flags" 14984139f1f2 hrtimers: Handle CPU state correctly on hotplug d1099ad23596 irqchip/gic-v3: Handle CPU_PM_ENTER_FAILED correctly 2dfbb920a89b gpiolib: cdev: Fix use after free in lineinfo_changed_notify 80da29deb88a fs/proc: fix softlockup in __read_vmcore (part 2) ae527bd2b537 vsock: reset socket state when de-assigning the transport 3cde51df39c3 vsock/virtio: cancel close work in the destructor f9710a5cbd99 net: ethernet: xgbe: re-add aneg to supported features in PHY quirks 17dcfc0f54b7 x86/asm: Make serialize() always_inline a722df501ba3 nvmet: propagate npwg topology 3f8b360ce0e0 poll_wait: add mb() to fix theoretical race between waitqueue_active() and .poll() 99db426762e1 kheaders: Ignore silly-rename files 95597be4806d fs: fix missing declaration of init_files 2cf7601e1295 hfs: Sanity check the root record 98ea165a2ac2 mac802154: check local interfaces before deleting sdata list 3eb329978997 i2c: rcar: fix NACK handling when being a target 8d037f34385a i2c: mux: demux-pinctrl: check initial mux selection, too a34050f70e79 drm/v3d: Ensure job pointer is set to NULL after job completion 72dc13457e67 net/mlx5: Fix RDMA TX steering prio 47166d31e531 net/mlx5: Refactor mlx5_get_flow_namespace 9f07d9fd6181 net/mlx5: Add priorities for counters in RDMA namespaces faf64fe8915d nfp: bpf: prevent integer overflow in nfp_bpf_event_output() 5f1678346109 gtp: Destroy device along with udp socket's netns dismantle. 66f1864cd0b1 gtp: Use for_each_netdev_rcu() in gtp_genl_dump_pdp(). 320a0dea3b28 gtp: use exit_batch_rtnl() method fae8bd0b07f9 net: add exit_batch_rtnl() method 37fdbeb0e293 net: net_namespace: Optimize the code bb36838dac7b bpf: Fix bpf_sk_select_reuseport() memory leak 9f7ad4eb839d net: ethernet: ti: cpsw_ale: Fix cpsw_ale_get_field() a13d640d8c8e phy: usb: Fix clock imbalance for suspend/resume 3bc29a491192 phy: usb: Use slow clock for wake enabled suspend 246428bfb9e7 sctp: sysctl: rto_min/max: avoid using current->nsproxy acec80d9f126 drm: adv7511: Fix use-after-free in adv7533_attach_dsi() 49881fcef3d4 drm: bridge: adv7511: use dev_err_probe in probe function 3747465c5da7 drm: bridge: adv7511: unregister cec i2c device after cec adapter 09a817549036 drm/bridge: adv7533: Switch to devm MIPI-DSI helpers 2c0106fdd35c drm/mipi-dsi: Create devm device attachment 5ad24956a20e drm/mipi-dsi: Create devm device registration cb3a64b6b449 drm: bridge: adv7511: Remove redundant null check before clk_disable_unprepare 8ff6f635a08c ocfs2: fix slab-use-after-free due to dangling pointer dqi_priv af45819b29bf ocfs2: correct return value of ocfs2_local_free_info() a8d08d9f5e12 phy: usb: Toggle the PHY power during init 5917962b5196 phy: usb: Add "wake on" functionality for newer Synopsis XHCI controllers 5330de58f70d block: remove the update_bdev parameter to set_capacity_revalidate_and_notify afa920d411e9 sd: update the bdev size in sd_revalidate_disk 72224a75c5f6 nvme: let set_capacity_revalidate_and_notify update the bdev size dddf71505857 loop: let set_capacity_revalidate_and_notify update the bdev size 5601c261bbc5 arm64: dts: rockchip: add hevc power domain clock to rk3328 00360f3f3962 arm64: dts: rockchip: add #power-domain-cells to power domain nodes 3528099673ba iio: inkern: call iio_device_put() only on mapped devices ac8d932e3214 iio: adc: at91: call input_free_device() on allocated iio_dev 1b7b9084fad8 iio: adc: ti-ads124s08: Use gpiod_set_value_cansleep() 2d72fc4a1ca6 iio: gyro: fxas21002c: Fix missing data update in trigger handler 3bf8d1e87939 iio: adc: ti-ads8688: fix information leak in triggered buffer a386d9d2dc66 iio: imu: kmx61: fix information leak in triggered buffer b0e9c11c762e iio: light: vcnl4035: fix information leak in triggered buffer e1c1e8c05010 iio: dummy: iio_simply_dummy_buffer: fix information leak in triggered buffer d25f1fc27367 iio: pressure: zpa2326: fix information leak in triggered buffer 3e4d32cc1459 usb: gadget: f_fs: Remove WARN_ON in functionfs_bind 209b72d3c4e1 usb: fix reference leak in usb_new_device() d9f78c900648 USB: core: Disable LPM only for non-suspended ports ee63cb2262e3 USB: usblp: return error when setting unsupported protocol 1062b648bff6 usb: gadget: u_serial: Disable ep before setting port to null to fix the crash caused by port being null 4c51407cb8a4 usb: dwc3: gadget: fix writing NYET threshold 258b3530cfdf USB: serial: cp210x: add Phoenix Contact UPS Device 09d4072aabee usb-storage: Add max sectors quirk for Nokia 208 717b7360ccc1 staging: iio: ad9832: Correct phase range check 38da4bab433c staging: iio: ad9834: Correct phase range check e764b4e18789 USB: serial: option: add Neoway N723-EA support dad372177818 USB: serial: option: add MeiG Smart SRM815 66de7a2541d8 md/raid5: fix atomicity violation in raid5_cache_count 08765d4e44d4 scripts/sorttable: fix orc_sort_cmp() to maintain symmetry and transitivity 88136f799f33 drm/amd/display: increase MAX_SURFACES to the value supported by hw 2f8067b3425c ACPI: resource: Add Asus Vivobook X1504VAP to irq1_level_low_skip_override[] 522ddfb1fb62 ACPI: resource: Add TongFang GM5HG0A to irq1_edge_low_force_override[] 8c38baa03ac8 riscv: Fix sleeping in invalid context in die() 497471baf53b drm/amd/display: Add check for granularity in dml ceil/floor helpers dc583e7e5f85 sctp: sysctl: auth_enable: avoid using current->nsproxy 03ca51faba2b sctp: sysctl: cookie_hmac_alg: avoid using current->nsproxy 2c1a42fbd98e dm-ebs: don't set the flag DM_TARGET_PASSES_INTEGRITY cd30a3960433 dm thin: make get_first_thin use rcu-safe list first function 9340385468d0 afs: Fix the maximum cell name length a965f7f0ea3a netfilter: conntrack: clamp maximum hashtable size to INT_MAX 208929266386 netfilter: nf_tables: imbalance in flowtable binding 72e6ca38ca66 tls: Fix tls_sw_sendmsg error handling 53b7a6762483 cxgb4: Avoid removal of uninserted tid 43658e4a5f27 net_sched: cls_flow: validate TCA_FLOW_RSHIFT attribute 22e3f5ee7317 tcp/dccp: allow a connection when sk_max_ack_backlog is zero 9261b8252473 tcp/dccp: complete lockless accesses to sk->sk_max_ack_backlog c9c0471e29f0 net: 802: LLC+SNAP OID:PID lookup on start of skb data c2da454712f2 ieee802154: ca8210: Add missing check for kfifo_alloc() in ca8210_probe() 4a6167ae75ad netfilter: nft_dynset: honor stateful expressions in set definition 01c4e22c260d ASoC: mediatek: disable buffer pre-allocation d8cfbb8723bd exfat: fix the infinite loop in exfat_readdir() 5c10baed458e dm array: fix cursor index when skipping across block boundaries cb223d9606a3 dm array: fix unreleased btree blocks on closing a faulty array cursor fc1ef07c3522 dm array: fix releasing a faulty array block twice in dm_array_cursor_end 359abf6ca962 jbd2: flush filesystem device before updating tail sequence 0f2b2d9e881c ceph: give up on paths longer than PATH_MAX 70a41e4b4d83 smb: client: fix potential OOB in smb2_dump_detail() e1109eace22a scsi: lpfc: Fix use-after-free in lpfc_unreg_rpi() routine 14c02f4e6920 Linux 5.10.233 d675fefbaec3 mm: vmscan: account for free pages to prevent infinite Loop in throttle_direct_reclaim() 17c3f7988f32 drm: adv7511: Drop dsi single lane support 081bdb3a3167 net/sctp: Prevent autoclose integer overflow in sctp_association_init() 5a1dd20a9d86 sky2: Add device ID 11ab:4373 for Marvell 88E8075 c55d186376a8 pinctrl: mcp23s08: Fix sleeping in atomic context due to regmap locking 42a6eb4ed7a9 RDMA/uverbs: Prevent integer overflow issue 50804bd95f00 modpost: fix the missed iteration for the max bit in do_input() 0cd78baf4dd2 modpost: fix input MODULE_DEVICE_TABLE() built for 64-bit on 32-bit host d5a30a6117ea btrfs: don't set lock_owner when locking extent buffer for reading 51b03b7473a0 btrfs: locking: remove the recursion handling code 20d96aa61607 ARC: build: Try to guess GCC variant of cross compiler 58713417015b irqchip/gic: Correct declaration of *percpu_base pointer in union gic_base af37dc1f017b net: usb: qmi_wwan: add Telit FE910C04 compositions e529b4686038 bpf: fix potential error return 6f3ce0ee5c3c sound: usb: format: don't warn that raw DSD is unsupported a2718ed1eb8c btrfs: flush delalloc workers queue before stopping cleaner kthread during unmount 12a6e304325d wifi: mac80211: wake the queues in case of failure in resume 2558d753df06 tracing: Prevent bad count for tracing_cpumask_write 1bf53a2145fa kernel: Initialize cpumask before parsing ba5120a2fb5f btrfs: fix use-after-free when COWing tree bock and tracing is enabled bf267f2f81bc btrfs: rename and export __btrfs_cow_block() 1817e3e849f6 btrfs: locking: remove all the blocking helpers 4da6be8eb618 btrfs: switch extent buffer tree lock to rw_semaphore 42d7147c9c21 dmaengine: dw: Select only supported masters for ACPI devices d3017895e393 ila: serialize calls to nf_register_net_hooks() 0d3fa6c3c9ca af_packet: fix vlan_get_protocol_dgram() vs MSG_PEEK fa57f07ba062 af_packet: fix vlan_get_tci() vs MSG_PEEK 7eaa71f56a6f RDMA/rtrs: Ensure 'ib_sge list' is accessible 925f2be402f9 eth: bcmsysport: fix call balance of priv->clk handling routines 9c76fb573889 ALSA: usb-audio: US16x08: Initialize array before use 0f67a980f2ae net: llc: reset skb->transport_header 6a14b46052ee netfilter: nft_set_hash: unaligned atomic read on struct nft_set_ext cf6befa7c569 netrom: check buffer length before accessing it 60e64b6261d1 drm/bridge: adv7511_audio: Update Audio InfoFrame properly bbcbb83a7f1f RDMA/bnxt_re: Fix the locking while accessing the QP table 070d214c0183 RDMA/bnxt_re: Fix max_qp_wrs reported cff07807f693 RDMA/bnxt_re: Fix reporting hw_ver in query_device 5684c11d3aec RDMA/bnxt_re: Add check for path mtu in modify_qp aea89a85bc74 RDMA/mlx5: Enforce same type port association for multiport RoCE af3626302040 net/mlx5: Make API mlx5_core_is_ecpf accept const pointer 6531f9c7e518 thunderbolt: Add support for Intel Panther Lake-M/P f8b8c8c83528 thunderbolt: Add support for Intel Lunar Lake e7cca35083b8 thunderbolt: Add Intel Barlow Ridge PCI ID a534e5d47e4f thunderbolt: Add support for Intel Meteor Lake aeb4a70248f5 thunderbolt: Add support for Intel Raptor Lake 21347105ded3 thunderbolt: Add support for Intel Alder Lake 712137b177b4 selinux: ignore unknown extended permissions 36c569dfa724 x86/hyperv: Fix hv tsc page based sched_clock for hibernation c47e02201171 ipv6: prevent possible UAF in ip6_xmit() 3cb8e49178e1 skb_expand_head() adjust skb->truesize incorrectly f67138dd338c nfsd: cancel nfsd_shrinker_work using sync mode in nfs4_state_shutdown_net a1c3a19446a4 btrfs: avoid monopolizing a core when activating a swap file b29c7783ac1f power: supply: gpio-charger: Fix set charge current limits 5c4a141ff09e tracing: Constify string literal data member in struct trace_event_call e3b89e6a6422 arm64: Ensure bits ASID[15:8] are masked out when the kernel uses 8-bit ASIDs de29cb3bdfb2 arm64: mm: Rename asid2idx() to ctxid2asid() 109f91d8b933 drm/dp_mst: Fix MST sideband message body length check 221109ba2127 bpf: fix recursive lock when verdict program return SK_PASS 79f87a6ec39f bpf: Check validity of link->type in bpf_link_show_fdinfo() 1504108cb602 ipv6: fix possible UAF in ip6_finish_output2() ee6b1db17f82 ipv6: use skb_expand_head in ip6_xmit 4132c4ad00dd ipv6: use skb_expand_head in ip6_finish_output2 23f95bbe7250 skbuff: introduce skb_expand_head() 3754c15b9348 MIPS: Probe toolchain support of -msym32 9ca428c6397a virtio-blk: don't keep queue frozen during system suspend bbb55d1cb0b0 scsi: storvsc: Do not flag MAINTENANCE_IN return of SRB_STATUS_DATA_OVERRUN as an error f37f301d84ea scsi: mpt3sas: Diag-Reset when Doorbell-In-Use bit is set during driver load time 3cc9e1a56692 platform/x86: asus-nb-wmi: Ignore unknown event 0xCF c06a5b7f12a4 regmap: Use correct format specifier for logging range errors 1c58d374ca44 ALSA: hda/conexant: fix Z60MR100 startup pop issue f36d024bd15e scsi: megaraid_sas: Fix for a potential deadlock c1d93e7100e5 scsi: qla1280: Fix hw revision numbering for ISP1020/1040 7911ca06b674 watchdog: it87_wdt: add PWRGD enable quirk for Qotom QCML04 7fca949e30c3 tracing/kprobe: Make trace_kprobe's module callback called after jump_label update 1562871ef613 mtd: rawnand: fix double free in atmel_pmecc_create_user() ed1a8aaa3445 dmaengine: at_xdmac: avoid null_prt_deref in at_xdmac_prep_dma_memset e87dbcfdf1c0 dmaengine: mv_xor: fix child node refcount handling in early exit 619a5aeb0f0d phy: core: Fix that API devm_phy_destroy() fails to destroy the phy 8826abb0ae2d phy: core: Fix that API devm_of_phy_provider_unregister() fails to unregister the phy provider 574e5cfae2d8 phy: core: Fix that API devm_phy_put() fails to release the phy 9e21f671b9a9 phy: core: Fix an OF node refcount leakage in of_phy_provider_lookup() 722ece95fcce phy: core: Fix an OF node refcount leakage in _of_phy_get() 36a6523d097d mtd: diskonchip: Cast an operand to prevent potential overflow 9ad478986fd1 nfsd: restore callback functionality for NFSv4.0 d814eeb7faa4 bpf: Check negative offsets in __bpf_skb_min_len() 1b63193b150c tcp_bpf: Charge receive socket buffer in bpf_tcp_ingress() 4e5aab3e4115 mm/vmstat: fix a W=1 clang compiler warning e11778189513 media: dvb-frontends: dib3000mb: fix uninit-value in dib3000_write_reg 4e2e9adaea7d epoll: Add synchronous wakeup support for ep_poll_callback 6e1e991c4017 ceph: validate snapdirname option length when mounting b7f89856c5fc of: Fix refcount leakage for OF node returned by __of_get_dma_parent() c86a40c26857 of: Fix error path in of_parse_phandle_with_args_map() 9416f17809a1 udmabuf: also check for F_SEAL_FUTURE_WRITE 5d4ed71327b0 nilfs2: prevent use of deleted inode 8d42147c83ee of/irq: Fix using uninitialized variable @addr_len in API of_irq_parse_one() 64ee07cfd50f NFS/pnfs: Fix a live lock between recalled layouts and layoutget d81f4e73aff9 Drivers: hv: util: Avoid accessing a ringbuffer not initialized yet 8b53be082fc6 btrfs: tree-checker: reject inline extent items with 0 ref count 98f31cf96f47 zram: refuse to use zero sized block device as backing device df56b6f9b430 sh: clk: Fix clk_enable() to return 0 on NULL clk 6742afdf6171 hwmon: (tmp513) Fix interpretation of values of Temperature Result and Limit Registers 525c3d0595b0 USB: serial: option: add Telit FE910C04 rmnet compositions b38b9456621d USB: serial: option: add MediaTek T7XX compositions 25a5f80417b2 USB: serial: option: add Netprisma LCUK54 modules for WWAN Ready 452c1654c3cd USB: serial: option: add MeiG Smart SLM770A daf09316ddc2 USB: serial: option: add TCL IK512 MBIM & ECM 0e8098cc2538 efivarfs: Fix error on non-existent file de4359fa4f81 i2c: riic: Always round-up when calculating bus period 8eb181aee760 chelsio/chtls: prevent potential integer overflow on 32bit ddfb709c2895 mmc: sdhci-tegra: Remove SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC quirk ad26612c2af9 netfilter: ipset: Fix for recursive locking warning a24ce83a2de1 net: ethernet: bgmac-platform: fix an OF node reference leak 1942218bf95f net: hinic: Fix cleanup in create_rxqs/txqs() 64f3f7388b90 ionic: use ee->offset when returning sprom data 81bdfcd6e6a9 netdevsim: prevent bad user input in nsim_dev_health_break_write() 2fb425f27ee6 netdevsim: switch to memdup_user_nul() 82c7ad9ca099 net/smc: check return value of sock_recvmsg when draining clc data 846bada23bfc net/smc: check iparea_offset and ipv6_prefixes_cnt when receiving proposal msg e18830b7c498 net/smc: check sndbuf_space again after NOSPACE flag is set in smc_poll 7678451d66b8 erofs: fix incorrect symlink detection in fast symlink 0ab621fcdff1 erofs: fix order >= MAX_ORDER warning due to crafted negative i_size 0f851f8c62d0 i2c: pnx: Fix timeout in wait functions e430962901c7 usb: dwc2: gadget: Don't write invalid mapped sg entries into dma_desc with iommu enabled 4ba1ee910938 usb: cdns3: Add quirk flag to enable suspend residency 9339c91863de PCI: Add ACS quirk for Broadcom BCM5760X NIC dab416edff9d ALSA: usb: Fix UBSAN warning in parse_audio_unit() f9869f6772e3 MIPS: Loongson64: DTS: Fix msi node for ls7a 0dde3ae52a0d PCI: Use preserve_config in place of pci_flags 6c7731ad179a PCI/AER: Disable AER service on suspend 5e473f462a16 net: sched: fix ordering of qlen adjustment aaccf3924c7a scsi: dpt_i2o: Remove obsolete driver 0c8ac16c1e2f usb: dwc3: dwc3-qcom: Add missing platform_device_put() in dwc3_qcom_acpi_register_core bfdadc630e33 firmware: arm_scmi: Fix slab-use-after-free in scmi_bus_notifier() abc9475430fd Linux 5.10.232 20ad30bed789 x86/static-call: fix 32-bit build e7c1fcdda47b ALSA: usb-audio: Fix a DMA to stack memory bug b751972c26f6 x86/xen: remove hypercall page b09001da8227 x86/xen: use new hypercall functions instead of hypercall page 76b42b1340ca x86/xen: add central hypercall functions 05df6e6cd9a7 x86/xen: don't do PV iret hypercall through hypercall page bed5b6a6f207 x86/static-call: provide a way to do very early static-call updates 4099bcd87390 objtool/x86: allow syscall instruction e74011db5179 x86: make get_cpu_vendor() accessible from Xen code 1d5354a9182b xen/netfront: fix crash when removing device dac3f7ba392c Revert "clkdev: remove CONFIG_CLKDEV_LOOKUP" 8b7e0d915689 Revert "clocksource/drivers:sp804: Make user selectable" 7f4e1fee0a74 drm/i915: Fix memory leak by correcting cache object name in error handler 47b341f714e6 tracing/kprobes: Skip symbol counting logic for module symbols in create_local_trace_kprobe() dadf82c1b260 bpf: sync_linked_regs() must preserve subreg_def 6fd69b2f2991 blk-iocost: Avoid using clamp() on inuse in __propagate_weights() 32a849c676ea ACPICA: events/evxfregn: don't release the ContextMutex that was never acquired 45af429f76e7 team: Fix feature propagation of NETIF_F_GSO_ENCAP_ALL a1a97584334c bonding: Fix feature propagation of NETIF_F_GSO_ENCAP_ALL 49cb8083c8df net: bonding, dummy, ifb, team: advertise NETIF_F_GSO_SOFTWARE 216509dda290 net/sched: netem: account for backlog updates from child qdisc 0fd8c3179b08 qca_spi: Make driver probing reliable ab891aeb28d1 qca_spi: Fix clock speed for multiple QCA7000 68e6a5f0cdd8 cxgb4: use port number to set mac addr cf604286b70d ACPI: resource: Fix memory resource type union access 76d856f03d02 net: lapb: increase LAPB_HEADER_LEN 4d2b56e2fb1e selftests: mlxsw: sharedbuffer: Remove duplicate test cases 938742593a57 selftests: mlxsw: sharedbuffer: Remove h1 ingress test case a771f349c95d tipc: fix NULL deref in cleanup_bearer() 784fc6707949 batman-adv: Do not let TT changes list grows indefinitely 48e63887c01f batman-adv: Remove uninitialized data in full table TT response 4fb09749f266 batman-adv: Do not send uninitialized TT changes 616aa5f3c86e acpi: nfit: vmalloc-out-of-bounds Read in acpi_nfit_ctl 632fb232b6bb exfat: fix potential deadlock on __exfat_get_dentry_set e26fa236758e virtio/vsock: Fix accept_queue memory leak 7b2e41b2d251 bpf, sockmap: Fix update element with same 7ba7e748bd71 xfs: fix scrub tracepoints when inode-rooted btrees are involved 4e33aedc3026 xfs: don't drop errno values when we fail to ficlone the entire range 28b3c03a6790 usb: gadget: u_serial: Fix the issue that gs_start_io crashed due to accessing null pointer 922142bcff97 usb: ehci-hcd: fix call balance of clocks handling routines 0f6184603ba8 usb: dwc2: hcd: Fix GetPortStatus & SetPortFeature 1e05b5b36aea ata: sata_highbank: fix OF node reference leak in highbank_initialize_phys() ff6f8a29e2a7 usb: host: max3421-hcd: Correctly abort a USB request. bd92492a960c tcp: check space before adding MPTCP SYN options df8d35efada4 Linux 5.10.231 af442dd3e3fc octeontx2-pf: Fix otx2_get_fecparam() ddeef5079c6b octeontx2: Fix condition. bde4e7c15271 media: uvcvideo: Require entities to have a non-zero unique ID 45a92cbc88e4 ALSA: usb-audio: Fix out of bounds reads when finding clock sources 3fc53e46fdc8 scsi: core: Fix scsi_mode_select() buffer length handling a0777b45095f scsi: sd: Fix sd_do_mode_sense() buffer length handling 38283b035c9d PCI: rockchip-ep: Fix address translation unit programming 43c48ad24c03 Revert "drm/amdgpu: add missing size check in amdgpu_debugfs_gprwave_read()" f5e45e9464c7 modpost: Add .irqentry.text to OTHER_SECTIONS 969ee61aa117 ocfs2: Revert "ocfs2: fix the la space leak when unmounting an ocfs2 volume" 4fcd903a5d9e drm/amd/display: Check BIOS images before it is used 7d5f99db8b15 xhci: dbc: Fix STALL transfer event handling 99f0fe6d0191 jffs2: Fix rtime decompressor f6fc251baefc jffs2: Prevent rtime decompress memory corruption dbedf8ddde53 KVM: arm64: vgic-its: Clear ITE when DISCARD frees an ITE c329033f1b72 KVM: arm64: vgic-its: Clear DTE when MAPD unmaps a device f4dbf393bfb4 KVM: arm64: vgic-its: Add a data length check in vgic_its_save_* c3cded0ff622 Revert "unicode: Don't special case ignorable code points" 7522e61c5350 btrfs: fix missing snapshot drew unlock when root is dead during swap activation 354f24382480 sched/core: Prevent wakeup of ksoftirqd during idle load balance a676dbc8af8c sched/fair: Check idle_cpu() before need_resched() to detect ilb CPU turning busy 4aaaf22aa193 sched/fair: Add NOHZ balancer flag for nohz.next_balance updates f8d61ae46cf4 sched/fair: Trigger the update of blocked load on newly idle cpu 0669c671ab36 sched/fair: Merge for each idle cpu loop of ILB 88136224a8f1 sched/fair: Remove unused parameter of update_nohz_stats 1940ddbeb9af sched/fair: Remove update of blocked load from newidle_balance f3794dbff0ed sched/core: Remove the unnecessary need_resched() check in nohz_csd_func() 44624fbc019f misc: eeprom: eeprom_93cx6: Add quirk for extra read clock cycle a79a7e3c03ae powerpc/prom_init: Fixup missing powermac #size-cells 5a2eaa3ad2b8 MIPS: Loongson64: DTS: Really fix PCIe port nodes for ls7a 19bc36c8d4ec usb: chipidea: udc: handle USB Error Interrupt if IOC not set 5ac1dd51aaa0 i3c: Use i3cdev->desc->info instead of calling i3c_device_get_info() to avoid deadlock e5f0e94f95b8 PCI: Add ACS quirk for Wangxun FF5xxx NICs 1af3a54dcea4 PCI: Add 'reset_subordinate' to reset hierarchy below bridge dff561e4060d f2fs: fix f2fs_bug_on when uninstalling filesystem call f2fs_evict_inode. 22169b367563 nvdimm: rectify the illogical code within nd_dax_probe() 38953b4419d1 pinctrl: qcom-pmic-gpio: add support for PM8937 5d552000fe9f scsi: st: Add MTIOCGET and MTLOAD to ioctls allowed after device reset 910f9d22095d scsi: st: Don't modify unknown block number in MTIOCGET ddcfc5708da9 leds: class: Protect brightness_show() with led_cdev->led_access mutex 3dd2c5cb2c69 scsi: hisi_sas: Add cond_resched() for no forced preemption model dd72b3ac2fc0 tracing: Use atomic64_inc_return() in trace_clock_counter() 170b0323b032 pinctrl: freescale: fix COMPILE_TEST error with PINCTRL_IMX_SCU 18347e7e0404 netpoll: Use rcu_access_pointer() in __netpoll_setup 78b13b562206 net/neighbor: clear error in case strict check is not set f795bdf9dbe2 rocker: fix link status detection in rocker_carrier_init() 042da326b0a3 ASoC: hdmi-codec: reorder channel allocation list e07b54b67e9c Bluetooth: btusb: Add RTL8852BE device 0489:e123 to device tables 7522d7d745d1 wifi: brcmfmac: Fix oops due to NULL pointer dereference in brcmf_sdiod_sglist_rw() 856b24b5d92c wifi: ipw2x00: libipw_rx_any(): fix bad alignment 13c3a54f48a6 drm/amdgpu: set the right AMDGPU sg segment limitation 03c4c3e02cf9 drm/amdgpu: skip amdgpu_device_cache_pci_state under sriov 368a53315222 jfs: add a check to prevent array-index-out-of-bounds in dbAdjTree 97e693593162 jfs: fix array-index-out-of-bounds in jfs_readdir df7c76636952 jfs: fix shift-out-of-bounds in dbSplit 8c97a4d5463a jfs: array-index-out-of-bounds fix in dtReadFirst 3ccce34a5c3f dma-debug: fix a possible deadlock on radix_lock 064149161c37 drm/amdgpu: refine error handling in amdgpu_ttm_tt_pin_userptr d28d22728b85 wifi: ath5k: add PCI ID for Arcadyan devices 9400aeb5cd02 wifi: ath5k: add PCI ID for SX76X 35360255ca30 net: inet6: do not leave a dangling sk pointer in inet6_create() 2bc34d8c8898 net: inet: do not leave a dangling sk pointer in inet_create() 14959fd7538b net: ieee802154: do not leave a dangling sk pointer in ieee802154_create() ce39b5576785 net: af_can: do not leave a dangling sk pointer in can_create() daa13175a6de Bluetooth: L2CAP: do not leave dangling sk pointer on error in l2cap_sock_create() 1dc1e1db9270 af_packet: avoid erroring out after sock_init_data() in packet_create() 50a90e5af499 net/sched: cbs: Fix integer overflow in cbs_set_port_rate() a75fe481c42c net: ethernet: fs_enet: Use %pa to format resource_size_t fbc8d9665322 net: fec_mpc52xx_phy: Use %pa to format resource_size_t 00c9f6e82591 samples/bpf: Fix a resource leak 86b66b8091c9 r8169: don't apply UDP padding quirk on RTL8126A 823f4dff6cbd drm/radeon/r600_cs: Fix possible int overflow in r600_packet3_check() 418cf1b2c399 drm/mcde: Enable module autoloading a3c885165d7c drm: panel-orientation-quirks: Add quirk for AYA NEO 2 model c04d1dc54b11 drm/vc4: hvs: Set AXI panic modes for the HVS c5623d7f9f90 media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108 7850ca9a6695 media: uvcvideo: Add a quirk for the Kaiweets KTI-W02 infrared camera f4f2ef66d288 kcsan: Turn report_filterlist_lock into a raw_spinlock 34cd4ec08b89 kselftest/arm64: Don't leak pipe fds in pac.exec_sign_all() 8f855689c164 btrfs: avoid unnecessary device path update for the same device 99192c735ed4 s390/cpum_sf: Handle CPU hotplug remove during sampling c2527d07c7e9 iommu/arm-smmu: Defer probe of clients after smmu device bound 24328b776fb2 ocfs2: update seq_file index in ocfs2_dlm_seq_next d3aeb50fcb12 mmc: core: Further prevent card detect during shutdown af940c0d623d mmc: sdhci-pci: Add DMI quirk for missing CD GPIO on Vexia Edu Atla 10 tablet 287e4952d77b regmap: detach regmap from dev on regmap_exit 7175728f6b2d dma-buf: fix dma_fence_array_signaled v4 70f3de869865 bpf: fix OOB devmap writes when deleting elements 336e30f32ae7 bcache: revert replacing IS_ERR_OR_NULL with IS_ERR again e3732102a9d6 nilfs2: fix potential out-of-bounds memory access in nilfs_find_entry() df43d8da6bac scsi: qla2xxx: Remove check req_sg_cnt should be equal to rsp_sg_cnt 12f04fc8580e scsi: qla2xxx: Fix use after free on unload c87add0d819b scsi: qla2xxx: Supported speed displayed incorrectly for VPorts 406e57325daa scsi: qla2xxx: Fix NVMe and NPIV connect issue d7fd14dd866f ALSA: hda/realtek: Add support for Samsung Galaxy Book3 360 (NP730QFG) a59d39e4770f ALSA: hda/realtek: Enable mute and micmute LED on HP ProBook 430 G8 b3ebf8cbd886 ALSA: usb-audio: add mixer mapping for Corsair HS80 1152dd13845e arm64: ptrace: fix partial SETREGSET for NT_ARM_TAGGED_ADDR_CTRL 4a6f053af119 tracing: Fix cmp_entries_dup() to respect sort() comparison rules 4cbc202f28a5 watchdog: rti: of: honor timeout-sec property 5912a921289e HID: wacom: fix when get product name maybe null pointer 43c6d763569f bpf: Fix exact match conditions in trie_get_next_key() adb4a970bfa9 bpf: Handle BPF_EXIST and BPF_NOEXIST for LPM trie 9c19ea59965e ocfs2: free inode when ocfs2_get_init_inode() fails e0c6ce842409 spi: mpc52xx: Add cancel_work_sync before module remove dbedc7e142df tcp_bpf: Fix the sk_mem_uncharge logic in tcp_bpf_sendmsg 8cd416aaac68 drm/sti: Add __iomem for mixer_dbg_mxn's parameter 7fd09abc4bdd i3c: master: Fix dynamic address leak when 'assigned-address' is present b70ba15c66d5 i3c: master: Extend address status bit to 4 and add I3C_ADDR_SLOT_EXT_DESIRED 1c47272e535d i3c: master: Replace hard code 2 with macro I3C_ADDR_SLOT_STATUS_BITS 3aecd6fd55cf i3c: fix incorrect address slot lookup on 64-bit fbb3aa94fc8d dt-bindings: serial: rs485: Fix rs485-rts-delay property 0da0be3b1d17 dt_bindings: rs485: Correct delay values 4733f68e59bb gpio: grgpio: Add NULL check in grgpio_probe c8e3aa367e71 gpio: grgpio: use a helper variable to store the address of ofdev->dev d9fa09ca004b geneve: do not assume mac header is set in geneve_xmit_skb() d93efe18b49a ethtool: Fix wrong mod state in case of verbose and no_mask bitset e21855091f11 netfilter: nft_set_hash: skip duplicated elements pending gc run 6099b5d3e371 netfilter: ipset: Hold module reference while requesting a module 98ea587a4048 net: sched: fix erspan_opt settings in cls_flower e0155b1b1509 igb: Fix potential invalid memory access in igb_init_module() 9da327f2e6b7 net/qed: allow old cards not supporting "num_images" to work 650ee9a22d7a tipc: Fix use-after-free of kernel socket in cleanup_bearer(). c99507fff94b dccp: Fix memory leak in dccp_feat_change_recv b90d061345bb net/ipv6: release expired exception dst cached in socket b3282c2bebee can: j1939: j1939_session_new(): fix skb reference counting aa632691c722 net: hsr: avoid potential out-of-bound access in fill_frame_info() f9653b00bef2 net/sched: tbf: correct backlog statistic for GSO packets 7f5eda0e315b ptp: Add error handling for adjfine callback in ptp_clock_adjtime ad28612ebae1 netfilter: x_tables: fix LED ID check in led_tg_check() 0b2cbed82b7c ipvs: fix UB due to uninitialized stack access in ip_vs_protocol_init() 273cab979da1 can: sun4i_can: sun4i_can_err(): fix {rx,tx}_errors statistics 265f8341470f can: sun4i_can: sun4i_can_err(): call can_change_state() even if cf is NULL 601ec0003c17 watchdog: mediatek: Make sure system reset gets asserted in mtk_wdt_restart() 05bed96e4cb0 iTCO_wdt: mask NMI_NOW bit for update_no_reboot_bit() call 4715e23b3a7f drm/etnaviv: flush shader L1 cache after user commandstream c1406d8329f5 btrfs: don't BUG_ON on ENOMEM from btrfs_lookup_extent_info() in walk_down_proc() 2d505a801e57 nfsd: fix nfs4_openowner leak when concurrent nfsd4_open occur 7fd29d284b55 nfsd: make sure exp active before svc_export_show 1f53e8400b13 dm thin: Add missing destroy_work_on_stack() c6ac663c92c8 PCI: keystone: Add link up check to ks_pcie_other_map_bus() 093ecc6d82ff i3c: master: Fix miss free init_dyn_addr at i3c_master_put_i3c_addrs() aa10c746e79a scsi: ufs: exynos: Fix hibern8 notify callbacks a1f2aff064ef util_macros.h: fix/rework find_closest() macros afc1e3c00b3f ad7780: fix division by zero in ad7780_write_raw() 6fd018aa168e btrfs: ref-verify: fix use-after-free after invalid ref action 6f3821acd7c3 quota: flush quota_release_work upon quota writeback 366e55e91fe9 octeontx2-pf: Fix out-of-bounds read in otx2_get_fecparam() 442dadf32d1c ASoC: fsl_micfil: fix the naming style for mask definition 971b48934577 sh: intc: Fix use-after-free bug in register_intc_controller() 86a1f9fa2480 sunrpc: clear XPRT_SOCK_UPD_TIMEOUT when reset transport 8c06a00a9be6 SUNRPC: Replace internal use of SOCKWQ_ASYNC_NOSPACE a4b153bdaad5 sunrpc: remove unnecessary test in rpc_task_set_client() 3ccfa8269fae SUNRPC: Convert rpc_client refcount to use refcount_t e2730edfff6b SUNRPC: correct error code comment in xs_tcp_setup_socket() f69fb61c69a0 nfs: ignore SB_RDONLY when mounting nfs bd4624d73373 modpost: remove incorrect code in do_eisa_entry() b0660da68491 rtc: ab-eoz9: don't fail temperature reads on undervoltage notification 7f5a2ed5c181 9p/xen: fix release of IRQ fa365f688014 9p/xen: fix init sequence 57ee79e9c94c block: return unsigned int from bdev_io_min 25ec6cd751c9 jffs2: fix use of uninitialized variable 8d8b3f5f4cbf ubifs: authentication: Fix use-after-free in ubifs_tnc_end_commit 04c0b0f37617 ubi: fastmap: Fix duplicate slab cache names while attaching 36b25baf96b8 ubifs: Correct the total block count by deducting journal reservation 0d68e8514d90 rtc: check if __rtc_read_time was successful in rtc_timer_do_work() cd154812858d rtc: abx80x: Fix WDT bit position of the status register c48db3147c14 rtc: st-lpc: Use IRQF_NO_AUTOEN flag in request_irq() 5237a297ffd3 NFSv4.0: Fix a use-after-free problem in the asynchronous open() 2365f57820c0 um: Always dump trace for specified task in show_stack 634b3c3d0b5c um: Fix the return value of elf_core_copy_task_fpregs e6102b72edc4 um: Fix potential integer overflow during physmem setup 52ee41452527 rpmsg: glink: Propagate TX failures in intentless mode as well 02999e135b01 SUNRPC: make sure cache entry active before cache_show 3c5f545c9a1f NFSD: Prevent a potential integer overflow a44a4260a28c lib: string_helpers: silence snprintf() output truncation warning 8ceb21d76426 usb: dwc3: gadget: Fix looping of queued SG entries a98340265f28 usb: dwc3: gadget: Fix checking for number of TRBs left 3591fe07aa53 ALSA: hda/realtek: Apply quirk for Medion E15433 99af54eb0c96 ALSA: hda/realtek: Fix Internal Speaker and Mic boost of Infinix Y4 Max 820bc3f297e8 ALSA: hda/realtek: Set PCBeep to default value for ALC274 ee68e7bd8022 ALSA: hda/realtek: Update ALC225 depop procedure 03a469024f67 media: v4l2-core: v4l2-dv-timings: check cvt/gtf result d7408a052aa1 media: wl128x: Fix atomicity violation in fmc_send_cmd() f74b360a012a HID: wacom: Interpret tilt data from Intuos Pro BT as signed values 2d2192fd2e6b block: fix ordering between checking BLK_MQ_S_STOPPED request adding dad458e77540 arm64: tls: Fix context-switching of tpidrro_el0 when kpti is enabled 77755dc95ff2 sh: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK 35f8f72b4579 um: vector: Do not use drvdata in release 3997d11fd996 serial: 8250: omap: Move pm_runtime_get_sync 6be99d4c117b um: net: Do not use drvdata in release 509ba8746f81 um: ubd: Do not use drvdata in release 0f6737cad88b ubi: wl: Put source PEB into correct list if trying locking LEB failed fb6d3c6c1218 platform/chrome: cros_ec_typec: fix missing fwnode reference decrement 11b414ff9ab4 spi: Fix acpi deferred irq probe 2e151b8ca316 netfilter: ipset: add missing range check in bitmap_ip_uadt fa0e202e23ff Revert "serial: sh-sci: Clean sci_ports[0] after at earlycon exit" 0ff91b3bf53e serial: sh-sci: Clean sci_ports[0] after at earlycon exit b12869cab514 Revert "usb: gadget: composite: fix OS descriptors w_value logic" 5be4bc1c73ca driver core: bus: Fix double free in driver API bus_register() e844bccad7ee Bluetooth: Fix type of len in rfcomm_sock_getsockopt{,_old}() a26842e4683f exfat: fix uninit-value in __exfat_get_dentry_set 7fc42f249daf locking/lockdep: Avoid creating new name string literals in lockdep_set_subclass() 0b9622163926 tty: ldsic: fix tty_ldisc_autoload sysctl's proc_handler f856246ff6da apparmor: test: Fix memory leak for aa_unpack_strdup() b9322408d83a comedi: Flush partial mappings in error case a4236cc4f952 fsnotify: fix sending inotify event with unexpected filename da6e6ff1f6c5 PCI: Fix use-after-free of slot->bus on hot remove 5442dbd3342a KVM: arm64: Ignore PMCNTENSET_EL0 while checking for overflow status 1a89ef73b510 crypto: x86/aegis128 - access 32-bit arguments as 32-bit e8f728442dd5 perf/x86/intel/pt: Fix buffer full but size is 0 case 626a8b956719 ASoC: codecs: Fix atomicity violation in snd_soc_component_get_drvdata() bbf3f1fd8a0a jfs: xattr: check invalid xattr size more strictly ea0527d5cc61 ext4: fix FS_IOC_GETFSMAP handling 442c6f05d94e ext4: supress data-race warnings in ext4_free_inodes_{count,set}() 62dc01c83fa7 ALSA: usb-audio: Fix potential out-of-bound accesses for Extigy and Mbox devices 03d68e2d244c soc: qcom: socinfo: fix revision check in qcom_socinfo_probe() 4c9fded47888 usb: ehci-spear: fix call balance of sehci clk handling routines 0aa9e30b5b4a xen: Fix the issue of resource not being properly released in xenbus_dev_probe() e47f0e95441b apparmor: fix 'Do simple duplicate message elimination' f89f677adc78 ALSA: hda/realtek: Update ALC256 depop procedure 6e99925d8548 ALSA: hda/realtek - Add type for ALC287 9f26a607d846 staging: greybus: uart: clean up TIOCGSERIAL 7bf3e45ea60b misc: apds990x: Fix missing pm_runtime_disable() 8a960584638f USB: chaoskey: Fix possible deadlock chaoskey_list_lock bb37389d14f4 USB: chaoskey: fail open after removal 2e72f53f740a usb: yurex: make waiting on yurex_write interruptible 30b9a7786c48 usb: using mutex lock and supporting O_NONBLOCK flag in iowarrior_read() 653903e36ca2 iio: light: al3010: Fix an error handling path in al3010_probe() 75e6dc33f16a ipmr: fix tables suspicious RCU usage e5dffbd159ef ipmr: convert /proc handlers to rcu_read_lock() a9615376a999 bnxt_en: Reserve rings after PCIe AER recovery if NIC interface is down 6b41c5627117 net: hsr: fix hsr_init_sk() vs network/transport headers. 1564c7ed9d29 net: introduce a netdev feature for UDP GRO forwarding 4654bcb686ac spi: atmel-quadspi: Fix register name in verbose logging function b58678e3f243 net: stmmac: dwmac-socfpga: Set RX watchdog interrupt as broken 3dbdb3f85b74 marvell: pxa168_eth: fix call balance of pep->clk handling routines 882ea20ce07c net: usb: lan78xx: Fix refcounting and autosuspend on invalid WoL configuration b18ab1198587 tg3: Set coherent DMA mask bits to 31 for BCM57766 chipsets 6728375984cb net: usb: lan78xx: Fix memory leak on device unplug by freeing PHY device c399dd6e7042 power: supply: bq27xxx: Fix registers of bq27426 c5351bfba7b9 power: supply: bq27xxx: Support CHARGE_NOW for bq27z561/bq28z610/bq34z100 da4008a289e1 power: supply: core: Remove might_sleep() from power_supply_put() 70f1bad32127 fs_parser: update mount_api doc to match function signature 0918f5643fc6 vfio/pci: Properly hide first-in-list PCIe extended capability 145482f4c894 vdpa/mlx5: Fix suboptimal range on iotlb iteration eb681998c889 NFSD: Fix nfsd4_shutdown_copy() 9d4f174342a7 NFSD: Cap the number of bytes copied by nfs4_reset_recoverydir() 752a75811f27 NFSD: Prevent NULL dereference in nfsd4_process_cb_update() 9df83cc000ed remoteproc: qcom_q6v5_mss: Re-order writes to the IMEM region b5ba1b37142f rpmsg: glink: use only lower 16-bits of param2 for CMD_OPEN name length 295cb2524309 rpmsg: glink: Fix GLINK command prefix 9761e51e1d43 rpmsg: glink: Send READ_NOTIFY command in FIFO full case 3dd661b963a3 rpmsg: glink: Add TX_DATA_CONT command while sending e72735fcce17 perf trace: Avoid garbage when not printing a syscall's arguments 10eb66d4f295 perf trace: Do not lose last events in a race 68ccc1830e9d m68k: coldfire/device.c: only build FEC when HW macros are defined 2255a994d6f1 m68k: mcfgpio: Fix incorrect register offset for CONFIG_M5441x 10f14161e830 perf trace: avoid garbage when not printing a trace event's arguments af87c2069952 f2fs: check curseg->inited before write_sum_page in change_curseg c6d54485cf81 f2fs: remove the unused flush argument to change_curseg 5bb54d3b377e f2fs: open code allocate_segment_by_default c6ad7333e530 f2fs: remove struct segment_allocation default_salloc_ops a7e306f7c32d f2fs: avoid using native allocate_segment_by_default() 6e5de38f605c f2fs: fix the wrong f2fs_bug_on condition in f2fs_do_replace_block 43b2e068aef4 PCI: cpqphp: Fix PCIBIOS_* return value confusion 1fe390f27875 PCI: cpqphp: Use PCI_POSSIBLE_ERROR() to check config reads edb4833a3838 perf probe: Correct demangled symbols in C++ program 0b04b48e4cc2 perf probe: Fix libdw memory leak 26db806fa23e perf cs-etm: Don't flush when packet_queue fills up c751d28b403f clk: clk-axi-clkgen: make sure to enable the AXI bus clock a68e4f76ee85 clk: axi-clkgen: use devm_platform_ioremap_resource() short-hand 43afa76e6efe dt-bindings: clock: axi-clkgen: include AXI clk fc7ef5873472 dt-bindings: clock: adi,axi-clkgen: convert old binding to yaml format 29216bb390e3 fbdev: sh7760fb: Fix a possible memory leak in sh7760fb_alloc_mem() d161e5ea0ca7 fbdev/sh7760fb: Alloc DMA memory from hardware device 6f1fabc9e331 powerpc/kexec: Fix return of uninitialized variable fd57d992f371 powerpc/sstep: make emulate_vsx_load and emulate_vsx_store static 66b7ddd1804e ocfs2: fix uninitialized value in ocfs2_file_read_iter() bd715e191d44 RDMA/hns: Fix NULL pointer derefernce in hns_roce_map_mr_sg() a4d2011cbe03 scsi: qedi: Fix a possible memory leak in qedi_alloc_and_init_sb() a56777a3ef5b scsi: qedf: Fix a possible memory leak in qedf_alloc_and_init_sb() e3b9ba55c18f scsi: fusion: Remove unused variable 'rc' ef2c2580189e scsi: bfa: Fix use-after-free in bfad_im_module_exit() cc30125eb6b6 mfd: rt5033: Fix missing regmap_del_irq_chip() 896927b0157a RDMA/bnxt_re: Check cqe flags to know imm_data vs inv_irkey 6956c0e7346c powerpc/pseries: Fix dtl_access_lock to be a rw_semaphore 54cb5fa850f9 mtd: rawnand: atmel: Fix possible memory leak c912aae5363a cpufreq: loongson2: Unregister platform_driver on failure 61d590d7076b mfd: intel_soc_pmic_bxtwc: Use IRQ domain for PMIC devices c472b55cc0bc mfd: intel_soc_pmic_bxtwc: Use IRQ domain for TMU device 0b648968bfa4 mfd: intel_soc_pmic_bxtwc: Use IRQ domain for USB Type-C device 48d3964f2bcd mfd: intel_soc_pmic_bxtwc: Use dev_err_probe() 2630b18bed7d mfd: da9052-spi: Change read-mask to write-mask b86340df10b1 mfd: tps65010: Use IRQF_NO_AUTOEN flag in request_irq() to fix race a85e5215609d powerpc/vdso: Flag VDSO64 entry points as functions 62a8d90e3221 trace/trace_event_perf: remove duplicate samples on the first tracepoint event 49e8a0e07b02 wireguard: selftests: load nf_conntrack if not present 63bc9a42a02e netpoll: Use rcu_access_pointer() in netpoll_poll_lock fb91ce37dc9a Bluetooth: fix use-after-free in device_for_each_child() 49de4ac80427 driver core: Introduce device_find_any_child() helper f2d06d4e129e ALSA: 6fire: Release resources at card release 4dd821dcbfce ALSA: caiaq: Use snd_card_free_when_closed() at disconnection bf0aa35a7cb8 ALSA: us122l: Use snd_card_free_when_closed() at disconnection 24fe9f7ca83e ALSA: usx2y: Use snd_card_free_when_closed() at disconnection d5a733ee2624 ALSA: usx2y: Cleanup probe and disconnect callbacks cfb1f6bc2eed ALSA: usx2y: Coding style fixes 9a70db03857a ALSA: usx2y: Fix spaces 5674ae441c89 net: rfkill: gpio: Add check for clk_enable() b751f3423fbd drm/amdkfd: Fix wrong usage of INIT_WORK() 6543a34f34a1 selftests: net: really check for bg process completion 1df5d631ba9e bpf, sockmap: Fix sk_msg_reset_curr d26d977633d1 bpf, sockmap: Several fixes to bpf_msg_pop_data 2b4530ecc018 bpf, sockmap: Several fixes to bpf_msg_push_data 5a0ae8e4f79c selftests/bpf: Add push/pop checking for msg_verify_data in test_sockmap 78eb4af79e8a selftests/bpf: Fix total_bytes in msg_loop_rx in test_sockmap 74d2b00f488f selftests, bpf: Add one test for sockmap with strparser 3e35560e80a9 selftests/bpf: Fix SENDPAGE data logic in test_sockmap a9fa0d2ce890 selftests/bpf: Add txmsg_pass to pull/push/pop in test_sockmap 224b9bc4977c netlink: typographical error in nlmsg_type constants definition 59362f51f4c2 drm/msm/dpu: cast crtc_clk calculation to u64 in _dpu_core_perf_calc_clk() 3fd17a47ee72 wifi: wfx: Fix error handling in wfx_core_init() 67d32d63c058 drm/etnaviv: hold GPU lock across perfmon sampling 02aac657c48e drm/etnaviv: fix power register offset on GC300 17551e3d94b7 drm/etnaviv: dump: fix sparse warnings 04c0cd65a844 drm/etnaviv: Request pages from DMA32 zone on addressing_limited 54163a35fe44 drm/etnaviv: rework linear window offset calculation e5e10c00610d drm/msm/adreno: Use IRQF_NO_AUTOEN flag in request_irq() e44d23fa0dc6 drm/panfrost: Remove unused id_mask from struct panfrost_model 5ff9de1f2712 octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_ethtool.c 2d1648603752 octeontx2-pf: ethtool fec mode support 8cafe71ad0fb octeontx2-af: Add new CGX_CMD to get PHY FEC statistics 9bb714350200 octeontx2-af: forward error correction configuration a5f3aebadcb7 octeontx2-pf: Calculate LBK link instead of hardcoding 4dce1962411f octeontx2-af: Mbox changes for 98xx 50c56b0f5fe3 drm: fsl-dcu: enable PIXCLK on LS1021A b773f406b6de drm/fsl-dcu: Convert to Linux IRQ interfaces 5fa329c44e1e wifi: mwifiex: Fix memcpy() field-spanning write warning in mwifiex_config_scan() 4496d25157c9 selftests/bpf: Fix txmsg_redir of test_txmsg_pull in test_sockmap addabcb1bd37 selftests/bpf: Fix msg_verify_data in test_sockmap d4f54c609d28 drm/bridge: tc358767: Fix link properties discovery e4decf4c8b56 netdevsim: copy addresses for both in and out paths 7fd24ee949bd netdevsim: rely on XFRM state direction instead of flags 76ff31c0113d xfrm: store and rely on direction to construct offload flags 837f37f0cf39 xfrm: rename xfrm_state_offload struct to allow reuse bfdad9de02a3 bpf: Fix the xdp_adjust_tail sample prog issue 7706afc21304 ASoC: dt-bindings: mt6359: Update generic node name and dmic-mode 5e3385bca11a ASoC: fsl_micfil: fix regmap_write_bits usage b2a72a772ef0 ASoC: fsl_micfil: use GENMASK to define register bit fields 226fc91c860b ASoC: fsl_micfil: do not define SHIFT/MASK for single bits fa55ed175c7b ASoC: fsl_micfil: Drop unnecessary register read 78a71b056c2c dt-bindings: vendor-prefixes: Add NeoFidelity, Inc 54550eeb8f86 wifi: ath10k: fix invalid VHT parameters in supported_vht_mcs_rate_nss2 f3749bc13cb3 wifi: ath10k: fix invalid VHT parameters in supported_vht_mcs_rate_nss1 145f3ac8c92e drm/v3d: Address race-condition in MMU flush c992e517c8a6 drm/imx/ipuv3: Use IRQF_NO_AUTOEN flag in request_irq() 0bde5b6e230a drm/imx/dcss: Use IRQF_NO_AUTOEN flag in request_irq() d1ae370b82e9 wifi: mwifiex: Use IRQF_NO_AUTOEN flag in request_irq() 29ee7d6fa18f wifi: p54: Use IRQF_NO_AUTOEN flag in request_irq() 1d602e4b6dcb drm/omap: Fix locking in omap_gem_new_dmabuf() c941af142200 wifi: ath9k: add range check for conn_rsp_epid in htc_connect_service() ba35d3b212fb drm/mm: Mark drm_mm_interval_tree*() functions with __maybe_unused 0c24b82bc4d1 media: atomisp: Add check for rgby_data memory allocation failure 4478f599a283 media: atomisp: remove #ifdef HAS_NO_HMEM 380c0e1d96f3 firmware: arm_scpi: Check the DVFS OPP count returned by the firmware 02dff60d0c99 selftests/resctrl: Protect against array overrun during iMC config parsing 5f0e91a5f4ed regmap: irq: Set lockdep class for hierarchical IRQ domains 409b1e428cf9 pmdomain: ti-sci: Add missing of_node_put() for args.np dd1985f9752f ARM: dts: cubieboard4: Fix DCDC5 regulator constraints 9db3ef898a6e pwm: imx27: Workaround of the pwm output bug when decrease the duty cycle e8174fb173cc cgroup/bpf: only cgroup v2 can be attached by bpf programs 067d0c56630d Revert "cgroup: Fix memory leak caused by missing cgroup_bpf_offline" 2295468c0c20 arm64: dts: mediatek: mt8173-elm-hana: Add vdd-supply to second source trackpad 1b07333bbc3a arm64: dts: mt8183: krane: Fix the address of eeprom at i2c4 839e76cea2ab tpm: fix signed/unsigned bug when checking event logs dad86eb91cf9 mmc: mmc_spi: drop buggy snprintf() 748557ca7dc9 soc: qcom: geni-se: fix array underflow in geni_se_clk_tbl_get() c9c6a62c91e9 soc: ti: smartreflex: Use IRQF_NO_AUTOEN flag in request_irq() f9dc2ae5a2cd spi: spi-fsl-lpspi: Use IRQF_NO_AUTOEN flag in request_irq() 85cf7a3c6f7d spi: spi-fsl-lpspi: downgrade log level for pio mode ef1db3d1d2bf clocksource/drivers:sp804: Make user selectable d08932bb6e38 clkdev: remove CONFIG_CLKDEV_LOOKUP e48e204f364a kcsan, seqlock: Fix incorrect assumption in read_seqbegin() dc684d966f48 time: Fix references to _msecs_to_jiffies() handling of values 069601e4b657 crypto: cavium - Fix an error handling path in cpt_ucode_load_fw() 28f8ffa945f7 crypto: bcm - add error check in the ahash_hmac_init function dead96e1c748 crypto: caam - add error check to caam_rsa_set_priv_key_form a56860294ccd crypto: cavium - Fix the if condition to exit loop after timeout a92ccd3618e4 crypto: pcrypt - Call crypto layer directly when padata_do_parallel() return -EBUSY 99ec5eb5bbf3 EDAC/fsl_ddr: Fix bad bit shift operations e0269ea7a628 EDAC/bluefield: Fix potential integer overflow 29551174590e firmware: google: Unregister driver_info on failure cc386170b331 crypto: caam - Fix the pointer passed to caam_qi_shutdown() e8a2b1c1c2ea hfsplus: don't query the device logical block size multiple times 3cab4bbc6691 s390/syscalls: Avoid creation of arch/arch/ directory cf9efea8c092 acpi/arm64: Adjust error handling procedure in gtdt_parse_timer_block() 6c772871c2e5 arm64: fix .data.rel.ro size assertion when CONFIG_LTO_CLANG ff01ac3e766c m68k: mvme147: Reinstate early console f65ca93b859d m68k: mvme16x: Add and use "mvme16x.h" 21f46b07c20b m68k: mvme147: Fix SCSI controller IRQ numbers 452f9ddd12be nvme-pci: fix freeing of the HMB descriptor table d3df9f26cff9 initramfs: avoid filename buffer overrun 17f35a6c9391 mips: asm: fix warning when disabling MIPS_FP_SUPPORT 72d6dd978f1d x86/xen/pvh: Annotate indirect branch as safe 8ce88918e4d8 kselftest/arm64: mte: fix printf type warnings about longs 8025d65d6242 x86/barrier: Do not serialize MSR accesses on AMD 67be3cd92aa0 nvme: fix metadata handling in nvme-passthrough 73b078e3314d cifs: Fix buffer overflow when parsing NFS reparse points 36741bfcfbff rcu-tasks: Idle tasks on offline CPUs are in quiescent states e01ff1251c77 ipmr: Fix access to mfc_cache_list without lock held e8529cfd7086 ALSA: usb-audio: Fix Yamaha P-125 Quirk Entry e05e8f54d23f proc/softirqs: replace seq_printf with seq_put_decimal_ull_width 444c9d41210c ASoC: stm: Prevent potential division by zero in stm32_sai_get_clk_div() ddd61392263d ASoC: stm: Prevent potential division by zero in stm32_sai_mclk_round_rate() a8ebe0a22527 can: j1939: fix error in J1939 documentation. f6b4294a0249 regulator: rk808: Add apply_bit for BUCK3 on RK809 b070a9e0dbf3 soc: qcom: Add check devm_kasprintf() returned value 6df3ee9073cd net: usb: qmi_wwan: add Quectel RG650V bc014d8d6561 x86/amd_nb: Fix compile-testing without CONFIG_AMD_NB f61da9401963 ALSA: hda/realtek: Add subwoofer quirk for Infinix ZERO BOOK 13 501ac2d1aae6 selftests/watchdog-test: Fix system accidentally reset after watchdog-test 6b5737b14af1 mac80211: fix user-power when emulating chanctx 9347d7c552c8 ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla 10 tablet 43323a4e5b3f mm: resolve faulty mmap_region() error path behaviour a32712d54c61 mm: refactor arch_calc_vm_flag_bits() and arm64 MTE handling 7a450540c82f mm: unconditionally close VMAs on error f68a0236337e mm: avoid unsafe VMA hook invocation when error arises on mmap hook 57cc8d253099 mm: revert "mm: shmem: fix data-race in shmem_getattr()" ed98d26021db NFSD: Never decrement pending_async_copies on error 059434d23c45 NFSD: Initialize struct nfsd4_copy earlier 9e52ff544e0b NFSD: Limit the number of concurrent async COPY operations 4fcb25459430 NFSD: Async COPY result needs to return a write verifier 7f9b91ed15df NFSD: initialize copy->cp_clp early in nfsd4_copy for use by trace point 2e7ce4e50d14 media: dvbdev: fix the logic when DVB_DYNAMIC_MINORS is not set c29a44d9a402 mmc: core: fix return value check in devm_mmc_alloc_host() b22ddca004d3 drm/bridge: tc358768: Fix DSI command tx 938c13740f8b Revert "mmc: dw_mmc: Fix IDMAC operation with pages bigger than 4K" 0a5014ad37c7 nilfs2: fix null-ptr-deref in block_dirty_buffer tracepoint 344558d81c7c ocfs2: fix UBSAN warning in ocfs2_verify_volume() b017697a517f nilfs2: fix null-ptr-deref in block_touch_buffer tracepoint d4b42f926adc KVM: VMX: Bury Intel PT virtualization (guest/host mode) behind CONFIG_BROKEN c96f90911dd1 vdpa/mlx5: Fix PA offset with unaligned starting iotlb map 28d4ed71ae0b ocfs2: uncache inode which has failed entering the group 5fe8bcc82f1d x86/mm: Fix a kdump kernel failure on SME system when CONFIG_IMA_KEXEC=y ffad2ac8c859 net/mlx5e: kTLS, Fix incorrect page refcounting a508c74ceae2 net/mlx5: fs, lock FTE when checking if active 6e3f2c512d2b netlink: terminate outstanding dump on socket close b5214ca796fb clk: qcom: gcc-qcs404: fix initial rate of GPLL3 3e7f845614ee leds: lp55xx: Remove redundant test for invalid channel number 5dabb7af57bc ftrace: Fix regression with module command in stack_trace_filter 5f86e79c0b22 ovl: Filter invalid inodes with missing lookup function 2cc30545dd3a media: uvcvideo: Stop stream during unregister 74a65313578b media: platform: allegro-dvt: Fix possible memory leak in allocate_buffers_internal() da56bb858954 media: gspca: ov534-ov772x: Fix off-by-one error in set_frame_rate() 580d1e5cf2cd media: venus: Fix pm_runtime_set_suspended() with runtime pm enabled 5a53f97cd597 media: ts2020: fix null-ptr-deref in ts2020_probe() 5c9ab34c87af media: i2c: tc358743: Fix crash in the probe error path when using polling b240a0472f8e arm64: dts: allwinner: pinephone: Add mount matrix to accelerometer 711d99f845cd Linux 5.10.230 918326996932 9p: fix slab cache name creation for real d02492863023 mm: krealloc: Fix MTE false alarm in __do_krealloc b17397a0a5c5 io_uring: fix possible deadlock in io_register_iowq_max_workers() dd7a728d5c0d md/raid10: improve code of mrdev in raid10_sync_request 8ea0b8e32bed net: usb: qmi_wwan: add Fibocom FG132 0x0112 composition 9db25c2b41c3 fs: Fix uninitialized value issue in from_kuid and from_kgid 35b4795a7ebf vDPA/ifcvf: Fix pci_read_config_byte() return code handling 7e222d2c7f9a powerpc/powernv: Free name on error in opal_event_init() b718f71747b7 sound: Make CONFIG_SND depend on INDIRECT_IOMEM instead of UML dc834af641d7 crypto: marvell/cesa - Disable hash algorithms 4d8f6679b03a bpf: use kvzmalloc to allocate BPF verifier environment 0bf6971b7d1e HID: multitouch: Add quirk for HONOR MagicBook Art 14 touchpad 2bc339b00fbd 9p: Avoid creating multiple slab caches with the same name 2f4bfcc4c5fa net: phy: ti: take into account all possible interrupt sources 16a8ebc88fe2 ALSA: usb-audio: Add endianness annotations eb1bdcb7dfc3 vsock/virtio: Initialization of the dangling pointer occurring in vsk->trans 414476c4fb11 hv_sock: Initializing vsk->trans to NULL to prevent a dangling pointer 0d71863c19be ALSA: usb-audio: Add quirks for Dell WD19 dock 4dc9c1e83aeb ALSA: usb-audio: Support jack detection on Dell dock 6a7e6dcf90fe ocfs2: remove entry once instead of null-ptr-dereference in ocfs2_xa_remove() e068a87cf25e irqchip/gic-v3: Force propagation of the active state with a read-back bb17f42135f5 USB: serial: option: add Quectel RG650V 6d5bd4bc14d7 USB: serial: option: add Fibocom FG132 0x0112 composition c5748d95608c USB: serial: qcserial: add support for Sierra Wireless EM86xx e567fc8f7a44 USB: serial: io_edgeport: fix use after free in debug printk d76923164705 usb: typec: fix potential out of bounds in ucsi_ccg_update_set_new_cam_cmd() 6e2848d1c8c0 usb: musb: sunxi: Fix accessing an released usb phy 5dd3f5a9244a fs/proc: fix compile warning about variable 'vmcore_mmap_ops' faff5bbb2762 media: uvcvideo: Skip parsing frames of type UVC_VS_UNDEFINED in uvc_parse_format 547087307bc1 net: do not delay dst_entries_add() in dst_release() 83aa0c996417 perf session: Add missing evlist__delete when deleting a session 2297d80a13a6 Revert "perf hist: Add missing puts to hist__account_cycles" 82090f94c723 net: bridge: xmit: make sure we have at least eth header len bytes 11eab327a2a8 spi: fix use-after-free of the add_lock mutex c8dce228db6f spi: Fix deadlock when adding SPI controllers on SPI buses 982a2757e725 splice: don't generate zero-len segement bvecs bf0b0c6d1597 btrfs: reinitialize delayed ref list after deleting it from the list 8fc5ea9231af nfs: Fix KMSAN warning in decode_getfattr_attrs() 485d9232112b io_uring/rw: fix missing NOWAIT check for O_DIRECT start write f336622838e5 io_uring: use kiocb_{start,end}_write() helpers f83a32351efd fs: create kiocb_{start,end}_write() helpers 955089c2403c io_uring: rename kiocb_end_write() local helper 6f383f653d03 dm-unstriped: cast an operand to sector_t to prevent potential uint32_t overflow 483b7261b35a dm cache: fix potential out-of-bounds access on the first resume f136d8d3f26f dm cache: optimize dirty bit checking with find_next_bit when resizing ee1f74925717 dm cache: fix out-of-bounds access to the dirty bitset when resizing 5b975f146d82 dm cache: correct the number of origin blocks to match the target length 2ac7f253dead drm/amdgpu: prevent NULL pointer dereference if ATIF is not supported 17f5f18085ac drm/amdgpu: add missing size check in amdgpu_debugfs_gprwave_read() 1829c36f9329 pwm: imx-tpm: Use correct MODULO value for EPWM mode 054931ca3cfc media: v4l2-tpg: prevent the risk of a division by zero 5a9bd375bf88 media: pulse8-cec: fix data timestamp at pulse8_setup() 828047c70f47 media: cx24116: prevent overflows on SNR calculus f54e8e1e39da media: s5p-jpeg: prevent buffer overflows 3a977b554f66 ASoC: stm32: spdifrx: fix dma channel release in stm32_spdifrx_remove ac40b9dff274 ALSA: firewire-lib: fix return value on fail in amdtp_tscm_init() c1eba9f0e235 scsi: sd_zbc: Use kvzalloc() to allocate REPORT ZONES buffer 8e823ce93cc8 media: adv7604: prevent underflow condition when reporting colorspace e351002b3a7a media: dvb_frontend: don't play tricks with underflow values a4a17210c03a media: dvbdev: prevent the risk of out of memory access ae6fd157eae4 media: stb0899_algo: initialize cfr before using it 63b122f53793 Revert "ALSA: hda/conexant: Mute speakers at suspend / shutdown" 30606ea3fae5 net: arc: fix the device for dma_map_single/dma_unmap_single 71d08334c2cb net: phy: ti: add PHY_RST_AFTER_CLK_EN flag d3f517f904df net: phy: ti: implement generic .handle_interrupt() callback f398d0a5b783 net: phy: export phy_error and phy_trigger_machine 590a4b2d4e0b net: hns3: fix kernel crash when uninstalling driver cf6bae33c5aa can: c_can: fix {rx,tx}_errors statistics 40b283ba7666 sctp: properly validate chunk size in sctp_sf_ootb() 22f4e2f86ad8 net: enetc: set MAC address to the VF net_device 1e4332581cd4 security/keys: fix slab-out-of-bounds in key_task_permission d7dc68d82ab3 HID: core: zero-initialize the report buffer 7830bfc3e7e7 ARM: dts: rockchip: Fix the realtek audio codec on rk3036-kylin 92f5b6978293 ARM: dts: rockchip: Fix the spi controller on rk3036 c34f7b904748 ARM: dts: rockchip: drop grf reference from rk3036 hdmi db87a9fb6a58 ARM: dts: rockchip: fix rk3036 acodec node 7ddbc813ba64 arm64: dts: imx8mp: correct sdhc ipg clk e38f91b78388 arm64: dts: rockchip: Fix LED triggers on rk3308-roc-cc fbccf9647f0f arm64: dts: rockchip: Remove #cooling-cells from fan on Theobroma lion 752c5bfb600f arm64: dts: rockchip: Fix bluetooth properties on Rock960 boards ebb427d5f270 arm64: dts: rockchip: Remove hdmi's 2nd interrupt on rk3328 9d0d15f26b86 arm64: dts: rockchip: Fix rt5651 compatible value on rk3399-sapphire-excavator b874a7e65b4f Linux 5.10.229 7948c22cc70b mac80211: always have ieee80211_sta_restart() 1e5a17dc77d8 vt: prevent kernel-infoleak in con_font_get() a508a102edf8 drm/shmem-helper: Fix BUG_ON() on mmap(PROT_WRITE, MAP_PRIVATE) 1d0d406bfc6b Revert "drm/mipi-dsi: Set the fwnode for mipi_dsi_device" bda1a99a0dd6 mm: shmem: fix data-race in shmem_getattr() aa0cee46c5d3 nilfs2: fix kernel bug due to missing clearing of checked flag bfd1d223d80c x86/bugs: Use code segment selector for VERW operand 70767689ec6e ocfs2: pass u64 to ocfs2_truncate_inline maybe overflow d592b2e9212f riscv: Remove duplicated GET_RM 170ad7e7a662 riscv: Remove unused GENERATING_ASM_OFFSETS 7e6bb3443185 riscv: Use '%u' to format the output of 'cpu' 1e617230b783 riscv: efi: Set NX compat flag in PE/COFF header c345728678df riscv: vdso: Prevent the compiler from inserting calls to memset() 35770ca6180c mm: avoid leaving partial pfn mappings around in error case 69d4e1ce9087 mm: add remap_pfn_range_notrack c72e0df0b56c nilfs2: fix potential deadlock with newly created symlinks edc84c1c1a85 iio: light: veml6030: fix microlux value calculation 442f786c5bff staging: iio: frequency: ad9832: fix division by zero in ad9832_calc_freqreg() d0231f43df47 wifi: iwlegacy: Clear stale interrupts before resuming device 4112450da7d6 wifi: ath10k: Fix memory leak in management tx c21efba8b5a8 wifi: mac80211: do not pass a stopped vif to the driver in .get_txpower 1cfc32930461 Revert "driver core: Fix uevent_show() vs driver detach race" 796df8d64caa xhci: Use pm_runtime_get to prevent RPM on unsupported systems 065789892e37 xhci: Fix Link TRB DMA in command ring stopped completion event efefde4d1b7c usb: phy: Fix API devm_usb_put_phy() can not release the phy 2d4650d2b297 usbip: tools: Fix detach_port() invalid port error path 603342ab037d misc: sgi-gru: Don't disable preemption in GRU driver aae9c5b472d6 NFS: remove revoked delegation from server's delegation list 8395b6096959 net: amd: mvme147: Fix probe banner message 0cac4a2718b2 firmware: arm_sdei: Fix the input parameter of cpuhp_remove_state() 422f1b66b149 kasan: Fix Software Tag-Based KASAN with GCC 8e99d41858eb compiler-gcc: remove attribute support check for `__no_sanitize_address__` 4336f120937d compiler-gcc: be consistent with underscores use for `no_sanitize` e3e608cbad37 netfilter: nft_payload: sanitize offset and length before calling skb_checksum() a27a5c40ee4c net: skip offload for NETIF_F_IPV6_CSUM if ipv6 header contains extension b88262c950c3 net: support ip generic csum processing in skb_csum_hwoffload_help 590976f92172 bpf: Fix out-of-bounds write in trie_get_next_key() ce691c814bc7 net/sched: stop qdisc_tree_reduce_backlog on TC_H_ROOT 9cab53f03263 gtp: allow -1 to be specified as file description from userspace e2742758c9c8 ipv4: ip_tunnel: Fix suspicious RCU usage warning in ip_tunnel_init_flow() 465d3a8eca3f ASoC: cs42l51: Fix some error handling paths in cs42l51_probe() 45a628911d3c wifi: iwlwifi: mvm: Fix response handling in iwl_mvm_send_recovery_cmd() 66e35e42f51e wifi: iwlwifi: mvm: disconnect station vifs if recovery failed 02b121beda58 mac80211: Add support to trigger sta disconnect on hardware restart 89e25a2ec2a2 mac80211: do drv_reconfig_complete() before restarting all 1ac988c6b8ff RDMA/bnxt_re: synchronize the qp-handle table array 8256f6166d02 RDMA/mlx5: Round max_rd_atomic/max_dest_rd_atomic up instead of down f121dee2f907 RDMA/cxgb4: Dump vendor specific QP details 935ca968019f wifi: brcm80211: BRCM_TRACING should depend on TRACING fd3b368769ae wifi: mac80211: skip non-uploaded keys in ieee80211_iter_keys e38ccb226de5 mac80211: MAC80211_MESSAGE_TRACING should depend on TRACING ffbb1f15bae7 cgroup: Fix potential overflow issue when checking max_depth 5b1e461fefb0 selftests/mm: fix incorrect buffer->mirror size in hmm2 double_map test 8df5cd51fd70 xfrm: validate new SA's prefixlen using SA family when sel.family is unset 4abbba710583 arm64/uprobes: change the uprobe_opcode_t typedef to fix the sparse warning 03c9c2c2d2d0 ASoC: qcom: Fix NULL Dereference in asoc_qcom_lpass_cpu_platform_probe() f4b6a6493eb5 net: phy: dp83822: Fix reset pin definitions 2fe399bb8efd serial: protect uart_port_dtr_rts() in uart_shutdown() too 066314b0b76f selinux: improve error checking in sel_write_load() 3eb6aa870057 hv_netvsc: Fix VF namespace also in synthetic NIC NETDEV_REGISTER event 631330f5a635 ALSA: hda/realtek: Add subwoofer quirk for Acer Predator G9-593 76ce386feb14 KVM: nSVM: Ignore nCR3[4:0] when loading PDPTEs from memory 0f0374d09c82 openat2: explicitly return -E2BIG for (usize > PAGE_SIZE) 9f2ab98371c2 nilfs2: fix kernel bug due to missing clearing of buffer delay flag 1f440403be1f ACPI: button: Add DMI quirk for Samsung Galaxy Book2 to fix initial lid detection issue 59a1b38d3a5f ACPI: resource: Add LG 16T90SP to irq1_level_low_skip_override[] 234682910971 drm/amd: Guard against bad data for ATIF ACPI method c9085e2401b8 ALSA: hda/realtek: Update default depop procedure 5e431f85c87b ALSA: firewire-lib: Avoid division by zero in apply_constraint_to_size() c7fcfdba35ab posix-clock: posix-clock: Fix unbalanced locking in pc_clock_settime() 0da93d67da90 r8169: avoid unsolicited interrupts 8a283a19026a net: sched: fix use-after-free in taprio_change() 95b3f3ed5ac6 net: usb: usbnet: fix name regression 77bc881d370e be2net: fix potential memory leak in be_xmit() db755e553490 net/sun3_82586: fix potential memory leak in sun3_82586_send_packet() 9f95de15904a xfrm: respect ip protocols rules criteria when performing dst lookups 6ba07c4a9eac xfrm: extract dst lookup parameters into a struct 02874ca52df2 tracing: Consider the NULL character when validating the event length df848523d6b4 jfs: Fix sanity check in dbMount 8605ca4bd0f4 arm64: Force position-independent veneers 0329056e0730 ASoC: fsl_sai: Enable 'FIFO continue on error' FCONT bit 75f828e944da drm/vboxvideo: Replace fake VLA at end of vbva_mouse_pointer_shape with real VLA 649d64650623 iomap: update ki_pos a little later in iomap_dio_complete c9b77438077d exec: don't WARN for racy path_noexec check 20e27c773945 block, bfq: fix procress reference leakage for bfqq in merge chain bf83ba3c55d4 KVM: s390: gaccess: Check if guest address is in memslot 6e1659b674b6 KVM: s390: gaccess: Cleanup access to guest pages 472088ffb1cc KVM: s390: gaccess: Refactor access address range check 511ca935092a KVM: s390: gaccess: Refactor gpa and length calculation cf9ddf9ed94c arm64: probes: Fix uprobes for big-endian kernels 7f1ef59185d2 arm64:uprobe fix the uprobe SWBP_INSN in big-endian 6c151aeb6dc4 Bluetooth: bnep: fix wild-memory-access in proto_unregister 5c345c47e884 s390: Initialize psw mask in perf_arch_fetch_caller_regs() 6af43ec3bf40 usb: typec: altmode should keep reference to parent ed31aba8ce93 smb: client: fix OOBs when building SMB2_IOCTL request 8c1e6717f60d scsi: target: core: Fix null-ptr-deref in target_alloc_device() 4af714e82379 genetlink: hold RCU in genlmsg_mcast() b6321146773d net: systemport: fix potential memory leak in bcm_sysport_xmit() f48eaf4e88c3 net/smc: Fix searching in list of known pnetids in smc_pnet_add_pnetid aacf6e28aeda net: ethernet: aeroflex: fix potential memory leak in greth_start_xmit_gbit() 56dbb74b6a4b macsec: don't increment counters for an unrelated SA 2c7dd3ca6be9 drm/msm/dsi: fix 32-bit signed integer extension in pclk_rate calculation df6fed0a2a1a RDMA/bnxt_re: Fix a bug while setting up Level-2 PBL pages 78aaf54ad5d7 RDMA/bnxt_re: Return more meaningful error 718609f51866 ipv4: give an IPv4 dev to blackhole_netdev 59df170bdec9 RDMA/cxgb4: Fix RDMA_CM_EVENT_UNREACHABLE error for iWARP 9076d449e77b ARM: dts: bcm2837-rpi-cm3-io3: Fix HDMI hpd-gpio pin dbe51dd516e6 RDMA/bnxt_re: Add a check for memory allocation c17e5cbbb180 RDMA/bnxt_re: Fix incorrect AVID type in WQE structure f141044cc6d3 net: bridge: mcast: wait for previous gc cycles when removing port 7640df3a194c net: atlantic: eliminate double free in error handling logic 3cbcd4752671 RDMA/hns: Fix UAF for cq async event 5a8fa04b2a4d Linux 5.10.228 2abe57d62a45 ALSA: hda/conexant - Use cached pin control for Node 0x1d on HP EliteOne 1000 G2 25e86fb0aeec powerpc/mm: Always update max/min_low_pfn in mem_topology_setup() c1d0476885d7 nilfs2: propagate directory read errors from nilfs_find_entry() c38add9ac0e4 tcp: fix mptcp DSS corruption due to large pmtu xmit fde99e972b8f mptcp: handle consistently DSS corruption 609937aa962a mptcp: track and update contiguous data status b7d7b7fc876f irqchip/gic-v4: Don't allow a VMOVP on a dying VPE 6f44a5fc15b5 x86/entry_32: Clear CPU buffers after register restore in NMI return 9ab38a1cdb66 x86/entry_32: Do not clobber user EFLAGS.ZF 846280578855 x86/apic: Always explicitly disarm TSC-deadline timer e475220d64be x86/resctrl: Annotate get_mem_config() functions as __init 1826b6d69bbb parport: Proper fix for array out-of-bounds access 9f8ddf14fa79 USB: serial: option: add Telit FN920C04 MBIM compositions 0fc55ec9fcac USB: serial: option: add support for Quectel EG916Q-GL 608b626f710d xhci: Fix incorrect stream context type macro fc2cb5e3af53 Bluetooth: btusb: Fix regression with fake CSR controllers 0a12:0001 63d6a3b07838 Bluetooth: Remove debugfs directory on module init failure 516655749a01 iio: adc: ti-ads124s08: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig f80375f275fb iio: proximity: mb1232: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig dc99dfa2ba66 iio: light: opt3001: add missing full-scale range value bf3ab8e1c28f iio: light: veml6030: fix IIO device retrieval from embedded device 2d06787b70d8 iio: light: veml6030: fix ALS sensor resolution ffc4174309a9 iio: hid-sensors: Fix an error handling path in _hid_sensor_set_report_latency() 9504153a480f iio: adc: ti-ads8688: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig c27133637aba iio: dac: stm32-dac-core: add missing select REGMAP_MMIO in Kconfig c4c2211b1202 iio: dac: ltc1660: add missing select REGMAP_SPI in Kconfig 3abc1ebea3fb iio: dac: ad5770r: add missing select REGMAP_SPI in Kconfig 0782809c019b drm/vmwgfx: Handle surface check failure correctly df75c78bfeff drm/radeon: Fix encoder->possible_clones 6ddcaee244ff io_uring/sqpoll: close race on waiting for sqring entries 3bc6d0f8b70a blk-rq-qos: fix crash on rq_qos_wait vs. rq_qos_wake_function race eca3edf87679 x86/bugs: Do not use UNTRAIN_RET with IBPB on entry e7c0f8ca3bdd x86/bugs: Skip RSB fill at VMEXIT 0ab77a47e3ff x86/entry: Have entry_ibpb() invalidate return predictions c5e57863d790 x86/cpufeatures: Add a IBPB_NO_RET BUG flag 77fa26062032 x86/cpufeatures: Define X86_FEATURE_AMD_IBPB_RET dfa4b5d4ba1c KVM: s390: Change virtual to physical address access in diag 0x258 handler d04709509594 s390/sclp_vt220: Convert newlines to CRLF instead of LFCR b12ef2d4dfee io_uring/sqpoll: do not put cpumask on stack 66b98c4f18b0 io_uring/sqpoll: retain test for whether the CPU is valid 54a987b41db3 io_uring/sqpoll: do not allow pinning outside of cpuset 71fbc3af3dac KVM: Fix a data race on last_boosted_vcpu in kvm_vcpu_on_spin() e8e599a63506 wifi: mac80211: fix potential key use-after-free 417d5838ca73 mm/swapfile: skip HugeTLB pages for unuse_vma 043f05526163 fat: fix uninitialized variable bf1a0222229d irqchip/gic-v3-its: Fix VSYNC referencing an unmapped VPE on GIC v4.1 cafa5942bd2d net: macb: Avoid 20s boot delay by skipping MDIO bus registration for fixed-link PHY ce43c48cdc4d arm64: probes: Fix simulate_ldr*_literal() 3728b4eb2791 arm64: probes: Remove broken LDR (literal) uprobe support 673a1c5a2998 posix-clock: Fix missing timespec64 check in pc_clock_settime() dbe055567af8 net: enetc: add missing static descriptor and inline keyword 5f47cdeeefd9 ALSA: hda/conexant - Fix audio routing for HP EliteOne 1000 G2 6c8784a6662b watchdog: cpu5wdt.c: Fix use-after-free bug caused by cpu5wdt_trigger 3b24ef662ec6 gfs2: Fix potential glock use-after-free on unmount 03a85a51f33a fix vfsub build error 12594a0e7118 sock_map: avoid race between sock_map_close and sk_psock_put 7a346798c1e1 sock_map: Fix a potential use-after-free in sock_map_close() 843556a46e16 bpf, sockmap: Don't let sock_map_{close,destroy,unhash} call itself 4af417c06d37 of: module: add buffer overflow check in of_modalias() b29e4b50c556 scripts/gdb: fix SB_* constants parsing 02fd398f5e2b bpf: Reject variable offset alu on PTR_TO_FLOW_KEYS 2bba1cb1487b loop: Select I/O scheduler 'none' from inside add_disk() 027f4dd7c993 blk-mq: Introduce the BLK_MQ_F_NO_SCHED_BY_DEFAULT flag 2214ded26c86 tpm: tis_i2c: Limit write bursts to I2C_SMBUS_BLOCK_MAX (32) bytes 44494049e815 tpm: tis_i2c: Limit read bursts to I2C_SMBUS_BLOCK_MAX (32) bytes 0d7c23009d82 tpm: Add flag to use default cancellation policy 07914bef4e16 tpm: tis_i2c: Fix sanity check interrupt enable mask 35f85f04bd69 tpm: Add tpm_tis_i2c backend for tpm_tis_core 7b04c6c08107 tpm: Add tpm_tis_verify_crc to the tpm_tis_phy_ops protocol layer 4790cb2d1283 tpm: Remove read16/read32/write32 calls from tpm_tis_phy_ops 50f74deaf308 hwmon: Add driver for Texas Instruments TMP464 and TMP468 a4e6e4b7bb08 dt-bindings: hwmon: add tmp464.yaml e0ed2149d7b5 drm/amdkfd: Check for null pointer after calling kmemdup c6ddded89322 ARM: renumber bits related to _TIF_WORK_MASK 35b96a325c1e arm64: make _TIF_WORK_MASK bits contiguous f5a8f06aa595 arm64: uaccess: remove vestigal UAO support 3a330b569301 arm64: uaccess: remove redundant PAN toggling 9cbbb016d6e7 arm64: uaccess: remove addr_limit_user_check() fd83411f5e08 arm64: uaccess: remove set_fs() 15a6dc2f4b53 arm64: uaccess cleanup macro naming 912a6ab683a4 arm64: uaccess: split user/kernel routines d004ab02dae2 arm64: uaccess: refactor __{get,put}_user e1941a8b459e arm64: uaccess: simplify __copy_user_flushcache() dfae822b4c59 arm64: uaccess: rename privileged uaccess routines 1efdb8f0a0c7 arm64: sdei: explicitly simulate PAN/UAO entry b35fec69554c arm64: sdei: move uaccess logic to arch/arm64/ b5a28033fe7b arm64: head.S: always initialize PSTATE 243eb8553513 arm64: head.S: cleanup SCTLR_ELx initialization 74a00405d97f arm64: head.S: rename el2_setup -> init_kernel_el 73c5f386d175 arm64: add C wrappers for SET_PSTATE_*() e17fb7543df1 arm64: ensure ERET from kthread is illegal eff6289cc53b ixgbevf: add disable link state 262595681381 ixgbe: add improvement for MDD response functionality b9d78b06dea8 ixgbe: add the ability for the PF to disable VF link state d829911485da Documentation: arm64: Document PMU counters access from userspace fe5d29bfce20 arm64: perf: Enable PMU counter userspace access for perf event 15ce6d04ed6a arm64: perf: Add userspace counter access disable switch 4f288acbeed8 perf: Add a counter for number of user access events in context 354ba4a8c4b8 x86: perf: Move RDPMC event flag to a common definition d29cec94c49b libperf xyarray: Add bounds checks to xyarray__entry() 8264d2b91841 libperf: Add support for user space counter access 7fd81b678b5f libperf tests: Add support for verbose printing 6029ff53a48f libperf: Add evsel mmap support 28b0c8956369 tools include: Add an initial math64.h 492e532d20f1 perf record: Improve 'Workload failed' message printing events + what was exec'ed d0a1fc61733e perf evlist: Add a method to return the list of evsels as a string 81a77b39be0a perf annotate: Fix sample events lost in stdio mode 2883e69e202d pnmtologo: use relocatable file name 80f5207b5abd tools: use basename to identify file in gen-mach-types 4d201ec392f1 vt/conmakehash: improve reproducibility ae24d013888f lib/build_OID_registry: fix reproducibility issues 5d72da88dbb4 x86/boot: Wrap literal addresses in absolute_pointer() dc0bd7aa2319 ACPI: thermal: drop an always true check 0c4288cceef5 xfs: Fix -Werror=dangling-pointer work-around for older GCC 5509050b3392 xfs: Work around GCC 12 -Werror=dangling-pointer for xfs_attr_remote.o 669827c6e293 virtio-pci: Remove wrong address verification in vp_del_vqs() 1c80d994d3db regulator: consumer: Add missing stubs to regulator/consumer.h 3303d0e2aeff ipv6: Fix stats accounting in ip6_pkt_drop c56e60f665e7 memcg: enable accounting of ipc resources e6c8ebd210a2 tick/nohz: WARN_ON --> WARN_ON_ONCE to prevent console saturation 1655ee30e684 sched/isolation: really align nohz_full with rcu_nocbs 253c752ed120 pstore/ftrace: Add and use ftrace_test_recursion_trylock_safe 356e8a12bd66 pstore/ftrace: Add recursion protection to the ftrace callback 334706a1e873 ftrace: Add ftrace_test_recursion_trylock() helper function 78c260d7f60b ftrace: Move the recursion testing into global headers c0b313d988a1 powerpc/mm: Switch obsolete dssall to .long 1bd813fe8d0e riscv: fix build with binutils 2.38 835a2d1b24c6 powerpc/lib/sstep: fix 'ptesync' build error fd84b99a8ccb drm/amd/display: Don't allow partial copy_from_user 024f4ff63d55 drm/amdgpu: Fix even more out of bound writes from debugfs 0c0ad634e899 e1000e: Serialize TGP e1000e PM ops add88b0536fa e1000e: Make mei_me active when e1000e is in use a8f317c1a17e yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL c8400a2cbe1f iommu/arm-smmu-v3: Ratelimit event dump b8ec7e43e95e regmap: teach regmap to use raw spinlocks if requested in the config 4b7fa7684be7 OF: DT-Overlay configfs interface (v7) d515a5c0e9a9 net: xilinx_emaclite: Do not print real IOMEM pointer 11329e49959b drivers: net: xilinx_emaclite: remove arch limitation 29dc69bf2a07 drivers: net: xilinx_emaclite: Add COMPILE_TEST support ff106eff01f6 drivers: net: xilinx_emaclite: Fix -Wpointer-to-int-cast warnings with W=1 c27462391070 serial: 8250: 8250_omap: Fix possible array out of bounds access 16976d8e307f perf intel-pt: Use aux_watermark d421a2346946 perf: Cap allocation order at aux_watermark 6da8d5f29481 timers: Fix get_next_timer_interrupt() with no timers pending af141841735a eventfd: Enlarge recursion limit to allow vhost to work a125a6102808 iwlwifi: select MAC80211_LEDS conditionally 139fe7d68413 rcu: Fix stall-warning deadlock due to non-release of rcu_node ->lock 8d0c79931235 console: Fix build when CONFIG_BLK_DEV_INITRD is disabled. ea777841e8ea yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name ab49d2db98bd cgroup1: fix leaked context root causing sporadic NULL deref in LTP bdda1b6cf99b aufs5: aufs-core 2fa276071d07 aufs5: aufs-standalone 06ed4d532456 aufs5: aufs-mmap 372857834999 aufs5: aufs-kbuild fd68c9840693 aufs5: aufs-base a673c127156c Revert "aufs5: core" cf62bfcde384 Revert "aufs5: aufs5-base" a644419ec785 Revert "aufs5: aufs5-mmap" b893f9a999bb Revert "aufs5: aufs5-standalone" c60db0819480 Revert "aufs: initial port to v5.10" c66a5900f139 Revert "Revert "aufs: initial port to v5.10"" 1320cf58f5dd Revert "aufs: linux-v5.10-rc1, no more set_fs()" 02349d7738ff Revert "for aufs: linux-v5.10-rc1, no more vfs_(read|write)f_t" f01dab74750c Revert "aufs: linux-v5.10-rc1, no more f_op->read() and ->write()" 3d5de709b676 Revert "aufs5: aufs5-kbuild" a97f1329edf7 tracing/arm: Have max stack tracer handle the case of return address after data 5c54112a05ab net: Treat __napi_schedule_irqoff() as __napi_schedule() on PREEMPT_RT ddac76981cb3 sched/isolation: reconcile rcu_nocbs= and nohz_full= 56fd8c36614e net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) a8808e541750 aufs: linux-v5.10-rc1, no more f_op->read() and ->write() cb1c41dac775 for aufs: linux-v5.10-rc1, no more vfs_(read|write)f_t a5805df6583f aufs: linux-v5.10-rc1, no more set_fs() 64e145dcca8c Revert "aufs: initial port to v5.10" d6e20b2257ec defconfig: add dependency for CONFIG_ACPI_APEI_PCIEAER b237d48208d0 arm64/mm: Drop THP conditionality from FORCE_MAX_ZONEORDER 1209195ed0f7 driver: adc: ltc2497: return directly after reading the adc conversion value a60fe3fcf113 Revert "mfd: syscon: Don't free allocated name for regmap_config" 13d68767aa4a rcutorture: Use "all" and "N" in "nohz_full" and "rcu_nocbs" 54e69571a97d rcu: deprecate "all" option to rcu_nocbs= a605b9d20447 lib: test_bitmap: add tests for "N" alias 8c22517f444e lib: bitmap: support "N" as an alias for size of bitmap 88187167e63a lib: bitmap: move ERANGE check from set_region to check_region ca5429633613 lib: bitmap: fold nbits into region struct 9381134cea8a lib: test_bitmap: add more start-end:offset/len tests c825800730ab lib: test_bitmap: add tests to trigger ERANGE case. 8cc8264dca3f lib: test_bitmap: clearly separate ERANGE from EINVAL tests. 470da7b7f2ff Revert "cpumask: Un-inline cpulist_parse for SMP; prepare for ascii helpers" 28dc1d37602d Revert "cpumask: Make "all" alias global and not just RCU" dbfe0b183fca Revert "cpumask: Add a "none" alias to complement "all"" a57711fcff30 Revert "cpumask: Add "last" alias for cpu list specifications" 34523d7c8476 qemux86: add configuration symbol to select values cdca78778415 objtool: Fix seg fault with Clang non-section symbols d3287798bd88 x86/entry: Emit a symbol for register restoring thunk 2ad99ddaac78 cpumask: Add "last" alias for cpu list specifications c10e9481810b cpumask: Add a "none" alias to complement "all" b00ceed9d388 cpumask: Make "all" alias global and not just RCU 8b215206e797 cpumask: Un-inline cpulist_parse for SMP; prepare for ascii helpers 1b5024caeda8 clear_warn_once: add a clear_warn_once= boot parameter fc0dd76cce0e clear_warn_once: bind a timer to written reset value d64fc2d2b14a clear_warn_once: expand debugfs to include read support 77592e956cc9 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. 6e022759f727 perf: x86-32: explicitly include <errno.h> 22d6bbb947d4 perf: mips64: Convert __u64 to unsigned long long c35f9150001c perf: fix bench numa compilation c4caef513eb1 perf: add SLANG_INC for slang.h 07dfbf9405dd perf: add sgidefs.h to for mips builds 42c5431ad2cf perf: change --root to --prefix for python install af79bfe90143 perf: add 'libperl not found' warning ddfbd9e75f08 perf: force include of <stdbool.h> 0f34e6305176 fat: don't use obsolete random32 call in namei_vfat b5b55eaad1df FAT: Added FAT_NO_83NAME 756b13bfab6e FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option fabad71cb2b5 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 06fd68d75bd1 aufs: initial port to v5.10 c9126877d1f5 aufs5: core f5150173c643 aufs5: aufs5-standalone b57d26b072d9 aufs5: aufs5-mmap 78f128c4b8e5 aufs5: aufs5-base 47aa35171d08 aufs5: aufs5-kbuild 35c480a23c66 yaffs: include blkdev.h 2c64c43540a5 yaffs: fix misplaced variable declaration bde410ee9f59 yaffs2: v5.6 build fixups 414c8e866931 yaffs2: fix memory leak when /proc/yaffs is read c99c1990cf7c yaffs: add strict check when call yaffs_internal_read_super 498f5fafe50a yaffs: repair yaffs_get_mtd_device 7ca3c08ebbf9 yaffs: Fix build failure by handling inode i_version with proper atomic API 0ba47e881bb8 yaffs2: fix memory leak in mount/umount 39a5406665dd yaffs: Avoid setting any ACL releated xattr ca5b43ddc6fd Yaffs:check oob size before auto selecting Yaffs1 c2619c05a53e fs: yaffs2: replace CURRENT_TIME by other appropriate apis 5e08fb7b8ee0 yaffs2: adjust to proper location of MS_RDONLY 5f1a1a9678a8 yaffs2: import git revision b4ce1bb (jan, 2020) fc21f09ae369 initramfs: allow an optional wrapper script around initramfs generation 73887fca03be arm64/perf: Fix wrong cast that may cause wrong truncation a267cafaac44 defconfigs: drop obselete options eb5d1bc00c3f arm64/perf: fix backtrace for AAPCS with FP enabled 062b2c98c087 linux-yocto: Handle /bin/awk issues d3beb253ae71 uvesafb: provide option to specify timeout for task completion 75ccbf377a51 uvesafb: print error message when task timeout occurs 18ffa2e88024 compiler.h: Undef before redefining __attribute_const__ 3ed931201746 vmware: include jiffies.h 938942859596 Resolve jiffies wrapping about arp 069a883d837c nfs: Allow default io size to be configured. 3b568edcd3e9 check console device file on fs when booting 77ec93228920 mount_root: clarify error messages for when no rootfs found 17a15e0f7536 menuconfig,mconf-cfg: Allow specification of ncurses location 8f13b1349a74 modpost: mask trivial warnings b6c9e0fa24e8 kbuild: exclude meta directory from distclean processing 62dbbdbec60a powerpc: serialize image targets 27b8dec5dbb3 arm: serialize build targets fc365512e4c4 Revert "platform/x86: wmi: Destroy on cleanup rather than unregister" 9a6e91d2e691 crtsavres: fixups for 5.4+ 7dbc3cd0398f powerpc/ptrace: Disable array-bounds warning with gcc8 ebe3bcb89cb0 powerpc: Disable attribute-alias warnings from gcc8 65ba0e7de081 powerpc: add crtsavres.o to archprepare for kbuild 6bd3efdce5a9 powerpc: kexec fix for powerpc64 41671522c159 powerpc: Add unwind information for SPE registers of E500 core 8851006b0109 mips: vdso: fix 'jalr $t9' crash in vdso code ed5db62477e8 mips: Kconfig: add QEMUMIPS64 option 2a7ca094fc42 4kc cache tlb hazard: tlbp cache coherency b742d60d3f70 malta uhci quirks: make allowance for slow 4k(e)c 8a160fc86eb6 arm/Makefile: Fix systemtap b9805882353c vexpress: Pass LOADADDR to Makefile 332e618aa7ae arm: ARM EABI socketcall 1ec682cb85f8 ARM: LPAE: Invalidate the TLB for module addresses during translation fault (From OE-Core rev: f95f69b878c9d4e50e1728b300dd00329850f5f8) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* linux-yocto/5.15: update to v5.15.179Bruce Ashfield2025-04-013-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/5.15 to the latest korg -stable release that comprises the following commits: 0c935c049b5c Linux 5.15.179 bf500b0d0cfe net: ipv6: fix dst refleaks in rpl, seg6 and ioam6 lwtunnels 02e43735932d kbuild: userprogs: use correct lld when linking through clang bb0245fa72b7 sched: sch_cake: add bounds checks to host bulk flow fairness counts bab61f41c942 vsock: Orphan socket after transport release e48fcb403c2d vsock: Keep the binding until socket destruction 857428f4acc1 bpf, vsock: Invoke proto::close on close() 117f7a2975ba media: uvcvideo: Remove dangling pointers 0fdd7cc59338 media: uvcvideo: Fix crash during unbind if gpio unit is in use 607dc724b162 nilfs2: handle errors that nilfs_prepare_chunk() may return e5606b783307 nilfs2: eliminate staggered calls to kunmap in nilfs_rename 1fa500f494f1 nilfs2: move page release outside of nilfs_delete_entry and nilfs_set_link 1cd7fd082c78 spi-mxs: Fix chipselect glitch cd0938805875 mtd: rawnand: cadence: fix unchecked dereference 3e9899c12d5a md: select BLOCK_LEGACY_AUTOLOAD 1a7c8039d2ee media: uvcvideo: Avoid returning invalid controls 69b06b05ff94 media: uvcvideo: Avoid invalid memory access 4e15cf870d2c drivers: virt: acrn: hsm: Use kzalloc to avoid info leak in pmcmd_ioctl ade9362dec18 eeprom: digsy_mtc: Make GPIO lookup table match the device 7746f3bb8917 bus: mhi: host: pci_generic: Use pci_try_reset_function() to avoid deadlock 09d34c4cbc38 slimbus: messaging: Free transaction ID in delayed interrupt scenario 1437d13ca83e intel_th: pci: Add Panther Lake-P/U support cebbd798ff25 intel_th: pci: Add Panther Lake-H support 8875af55b825 intel_th: pci: Add Arrow Lake support e1651332291e mei: me: add panther lake P DID cf46f88b92cf Squashfs: check the inode number is not the invalid value of zero ac9a7d4c9007 usb: xhci: Enable the TRB overfetch quirk on VIA VL805 41eae5d6e308 xhci: pci: Fix indentation in the PCI device ID definitions c3a772540220 usb: gadget: Check bmAttributes only if configuration is valid 7e6b36d92dce usb: gadget: Fix setting self-powered state on suspend 2b229d7b8a59 usb: gadget: Set self-powered based on MaxPower and bmAttributes a0dc4a3bdede usb: typec: tcpci_rt1711h: Unmask alert interrupts to fix functionality 3d8b87be73e9 usb: typec: ucsi: increase timeout for PPM reset operations 00ac1ea9c0cd usb: dwc3: gadget: Prevent irq storm when TH re-executes 78669d6f45a5 usb: dwc3: Set SUSPENDENABLE soon after phy init bf4409f84023 usb: atm: cxacru: fix a flaw in existing endpoint checks 3248c1f833f9 usb: renesas_usbhs: Flush the notify_hotplug_work a1ad97347a45 usb: quirks: Add DELAY_INIT and NO_LPM for Prolific Mass Storage Card Reader 894b4c75eadf usb: hub: lack of clearing xHC resources ec4b6f492ea1 usb: renesas_usbhs: Use devm_usb_get_phy() 50b9010da101 usb: renesas_usbhs: Call clk_put() 30e37db26120 Revert "drivers/card_reader/rtsx_usb: Restore interrupt based detection" 329393a0325b gpio: rcar: Fix missing of_node_put() call f185b6d0aeea net: ipv6: fix missing dst ref drop in ila lwtunnel 82043c99801e net: ipv6: fix dst ref loop in ila lwtunnel 5cb300dcdd27 sched/fair: Fix potential memory corruption in child_cfs_rq_on_list 49bf31477184 net-timestamp: support TCP GSO case for a few missing flags 413e908f13ce exfat: fix soft lockup in exfat_clear_bitmap 6d099f3f7b27 x86/sgx: Fix size overflows in sgx_encl_create() a2d112a3b408 x86/sgx: Support VA page allocation without reclaiming 51e5bc6d39d1 x86/sgx: Export sgx_encl_{grow,shrink}() 48fa260f15b6 x86/sgx: Move PTE zap code to new sgx_zap_enclave_ptes() 110a40c51415 x86/sgx: Support loading enclave page without VMA permissions check 0fb7aa04c19e vlan: enforce underlying device type 4e2191b0fd0c ppp: Fix KMSAN uninit-value warning with bpf b7d8d4529984 net: hns3: make sure ptp clock is unregister and freed if hclge_ptp_get_cycle returns an error 671aaa17bd31 be2net: fix sleeping while atomic bugs in be_ndo_bridge_getlink 3f9e7298053c drm/sched: Fix preprocessor guard e9813e0887fe hwmon: fix a NULL vs IS_ERR_OR_NULL() check in xgene_hwmon_probe() 9b6f083db141 llc: do not use skb_get() before dev_queue_xmit() e2eebbb52d15 ALSA: usx2y: validate nrpacks module parameter on probe afa9cd90e765 hwmon: (ad7314) Validate leading zero bits and return error 996340f3db89 hwmon: (ntc_thermistor) Fix the ncpXXxh103 sensor table 13de3056e38c hwmon: (pmbus) Initialise page count in pmbus_identify() 8e4e08ca4cc6 caif_virtio: fix wrong pointer check in cfv_probe() 455217ac9db0 net: gso: fix ownership in __udp_gso_segment 17451b795002 nvmet-tcp: Fix a possible sporadic response drops in weakly ordered arch 01b18a330cda HID: intel-ish-hid: Fix use-after-free issue in ishtp_hid_remove() 4283afde4f8d HID: google: fix unused variable warning under !CONFIG_ACPI 47616b82f2d4 wifi: iwlwifi: limit printed string from FW file b4739de37538 mm: don't skip arch_sync_kernel_mappings() in error paths 955c5a1ddd6e mm/page_alloc: fix uninitialized variable 51e0101ab9e9 block: fix conversion of GPT partition name to 7-bit 03f075d56063 s390/traps: Fix test_monitor_call() inline assembly cdd9f58f7fe4 rapidio: fix an API misues when rio_add_net() fails 181d4daaefb3 rapidio: add check for rio_add_net() in rio_scan_alloc_net() cd1bdcb77fdc wifi: nl80211: reject cooked mode if it is set along with other flags 6a5e3b23054c wifi: cfg80211: regulatory: improve invalid hints checking d8786dfa9f45 x86/cpu: Properly parse CPUID leaf 0x2 TLB descriptor 0x63 61104ea20840 x86/cpu: Validate CPUID leaf 0x2 EDX output dafc649de271 x86/cacheinfo: Validate CPUID leaf 0x2 EDX output 421c91ba9099 platform/x86: thinkpad_acpi: Add battery quirk for ThinkPad X131e 63c2c523f5ca drm/radeon: Fix rs400_gpu_init for ATI mobility radeon Xpress 200M ffcc3f070263 ALSA: hda/realtek: update ALC222 depop optimize 6ea0f0a47640 ALSA: hda: intel: Add Dell ALC3271 to power_save denylist 807789018186 gpio: aggregator: protect driver attr handlers against module unload 7c1f36f9c9ac gpio: rcar: Use raw_spinlock to protect register access b1d95d733cd6 HID: appleir: Fix potential NULL dereference at raw event handle a3325fdbee9b Revert "of: reserved-memory: Fix using wrong number of cells to get property 'alignment'" 6486abfcf891 drm/amdgpu: disable BAR resize on Dell G5 SE 4be891399cdc drm/amdgpu: Check extended configuration space register when system uses large bar f618aeb6cad2 smb: client: Add check for next_buffer in receive_encrypted_standard() a56a6e8589a9 pfifo_tail_enqueue: Drop new packet when sch->limit == 0 e38f9d761b34 intel_idle: Handle older CPUs, which stop the TSC in deeper C states, correctly 288fdb8dcb71 sched/core: Prevent rescheduling when interrupts are disabled 3d67976d304e vmlinux.lds: Ensure that const vars with relocations are mapped R/O 7cca31035c05 mptcp: always handle address removal under msk socket lock b66eb3f54ac3 phy: exynos5-usbdrd: fix MPLL_MULTIPLIER and SSC_REFCLKSEL masks in refclk f07c325f54c4 phy: tegra: xusb: reset VBUS & ID OVERRIDE d20b23a5412c net: enetc: correct the xdp_tx statistics ccce797d9052 net: enetc: update UDP checksum when updating originTimestamp field b68d88b79975 net: enetc: fix the off-by-one issue in enetc_map_tx_buffs() 9bcb8cbc3e5d usbnet: gl620a: fix endpoint checking in genelink_bind() e3aea1dba97d i2c: npcm: disable interrupt enable bit before devm_request_irq c327a355a4ff drm/amd/display: Fix HPD after gpu reset 922e18d67bc0 perf/core: Fix low freq setting via IOC_PERIOD fca3b89abc92 ALSA: usb-audio: Re-add sample rate quirk for Pioneer DJM-900NXS2 3d738b53ed6c ftrace: Avoid potential division by zero in function_stat_show() 7163da88c07b x86/CPU: Fix warm boot hang regression on AMD SC1100 SoC systems 2daabaa55c7c net: ipv6: fix dst ref loop on input in rpl lwt c0b11dc50590 net: ipv6: rpl_iptunnel: mitigate 2-realloc issue dbd4f89a4a58 net: ipv6: fix dst ref loop on input in seg6 lwt 634710a372ba net: ipv6: seg6_iptunnel: mitigate 2-realloc issue 8513e56e31fc include: net: add static inline dst_dev_overhead() to dst.h 3e97606c954f seg6: add support for SRv6 H.L2Encaps.Red behavior 86df97f030be seg6: add support for SRv6 H.Encaps.Red behavior bf5801cc24cc net/mlx5: IRQ, Fix null string in debug print b8e0dd7ff319 net: mvpp2: cls: Fixed Non IP flow, with vlan tag flow defination. 0e70cec1839f tcp: Defer ts_recent changes until req is owned a3c25f8374c2 ipvs: Always clear ipvs_property flag in skb_scrub_packet() eba344580acb ASoC: es8328: fix route from DAC to output 39a26120ad99 net: cadence: macb: Synchronize stats calculations 718725496191 net: loopback: Avoid sending IP packets without an Ethernet header 806fcc99e4c0 afs: Fix the server_list to unuse a displaced server rather than putting it 9055fb0bb4f4 afs: Make it possible to find the volumes that are using a server ba335b157a6a afs: remove variable nr_servers 1154e50e53e4 Bluetooth: L2CAP: Fix L2CAP_ECRED_CONN_RSP response a340768d7311 ALSA: usb-audio: Avoid dropping MIDI events at closing multiple ports a8f4ceb21f65 sunrpc: suppress warnings for unused procfs functions f36cf97e4978 RDMA/mlx5: Fix bind QP error cleanup flow 66fee638e4dd scsi: core: Clear driver private data when retrying request 668ef6c54ca7 scsi: core: Don't memset() the entire scsi_cmnd in scsi_init_command() 4b49d939b5a7 ovl: fix UAF in ovl_dentry_update_reval by moving dput() in ovl_link_up 802d342bf8bc ovl: pass ofs to creation operations be2343e08165 ovl: use wrappers to all vfs_*xattr() calls 1cd7f84c88ae IB/mlx5: Set and get correct qp_num for a DCT QP 9a7fc5641c6f x86/cpu/kvm: SRSO: Fix possible missing IBPB on VM-Exit b0c7cda8d636 mtd: rawnand: cadence: fix incorrect device in dma_unmap_single 099a31651850 mtd: rawnand: cadence: use dma_map_resource for sdma address 0301f9b44877 mtd: rawnand: cadence: fix error code in cadence_nand_init() 29853440da38 acct: block access to kernel internal filesystems 5d5b936cfa4b acct: perform last write from workqueue d97d560f7d36 ALSA: hda/conexant: Add quirk for HP ProBook 450 G4 mute LED 924b239f9704 nfp: bpf: Add check for nfp_app_ctrl_msg_alloc() 872c7c7e57a7 drop_monitor: fix incorrect initialization order c0a9a9481591 tee: optee: Fix supplicant wait loop a3feeb1b4cb2 bpf: skip non exist keys in generic_map_lookup_batch 3bb2204ec30f nvme/ioctl: add missing space in err message 9f3891867e8e power: supply: da9150-fg: fix potential overflow ef305447885e arp: switch to dev_getbyhwaddr() in arp_req_set_public() e860d5103591 net: Add non-RCU dev_getbyhwaddr() helper 2af45b1f2962 flow_dissector: Fix port range key handling in BPF conversion fbb727e4934a flow_dissector: Fix handling of mixed port and port-range keys 65196ee66ec2 net: extract port range fields from fl_flow_key a94e59db1d89 geneve: Suppress list corruption splat in geneve_destroy_tunnels(). cb15bb1bde0b gtp: Suppress list corruption splat in gtp_net_exit_batch_rtnl(). f74f65601467 geneve: Fix use-after-free in geneve_find_dev(). 6847b3e40bb9 powerpc/code-patching: Fix KASAN hit by not flagging text patching area as VM_ALLOC 718d0480ca3a ALSA: hda/realtek: Fixup ALC225 depop procedure 71f427413d2d powerpc/64s: Rewrite __real_pte() and __rpte_to_hidx() as static inline 61a45806db46 powerpc/64s/mm: Move __real_pte stubs into hash-4k.h b09957657d77 USB: gadget: f_midi: f_midi_complete to call queue_work 006a4e9069a1 usb: dwc3: Fix timeout issue during controller enter/exit from halt state 47cc53c3ebe3 usb: dwc3: Increase DWC3 controller halt timeout 3c0e0aecb78c batman-adv: Drop unmanaged ELP metric worker 6ad063461332 batman-adv: Drop initialization of flexible ethtool_link_ksettings d775f9e9e663 media: uvcvideo: Only save async fh if success e0360e009904 media: uvcvideo: Refactor iterators 972f412da53b media: uvcvideo: Set error_idx during ctrl_commit errors c113bccf1f87 soc: mediatek: mtk-devapc: Fix leaking IO map on driver remove c3fa28e6cac8 soc/mediatek: mtk-devapc: Convert to platform remove callback returning void 4dd78251db13 soc: mediatek: mtk-devapc: Fix leaking IO map on error paths 10185d020c8f soc: mediatek: mtk-devapc: Switch to devm_clk_get_enabled() f03ad378249f kfence: skip __GFP_THISNODE allocations on NUMA systems 8e19db074ab3 kfence: enable check kfence canary on panic via boot param b7792fe79fbe kfence: allow use of a deferrable timer 0621d2599d6e tpm: Change to kvalloc() in eventlog/acpi.c 906ac470b16c tpm: Use managed allocation for bios event log 5e8bee0e4914 arm64: dts: mediatek: mt8183: Disable DSI display output by default 4a06ed6b962b ASoC: renesas: rz-ssi: Add a check for negative sample_space 8c4b9b0c3950 drm/rockchip: cdn-dp: Use drm_connector_helper_hpd_irq_event() 5211d75e2cb7 drm/probe-helper: Create a HPD IRQ event helper for a single connector f3b9fb276459 ksmbd: fix integer overflows on 32 bit systems a9042dbc1ed4 memcg: fix soft lockup in the OOM process 4edae3ff6d4e mm: update mark_victim tracepoints fields a32ba399a030 media: imx-jpeg: Fix potential error pointer dereference in detach_pm() e290d1fe37f7 crypto: testmgr - some more fixes to RSA test vectors add54f963938 crypto: testmgr - populate RSA CRT parameters in RSA test vectors 40689219a28b crypto: testmgr - fix version number of RSA tests bd258be9a8be crypto: testmgr - Fix wrong test case of RSA 8fbf27a746c3 crypto: testmgr - fix wrong key length for pkcs1pad 4969dcc05bc3 arm64: mte: Do not allow PROT_MTE on MAP_HUGETLB user mappings c4041b6b0a7a pps: Fix a use-after-free 26f2fdc47fea btrfs: avoid monopolizing a core when activating a swap file dc550af962b7 Revert "btrfs: avoid monopolizing a core when activating a swap file" caae54426402 x86/i8253: Disable PIT timer 0 when not in use 3aa5254d8096 f2fs: fix to wait dio completion 234549fb3db3 ARM: dts: dra7: Add bus_dma_limit for l4 cfg bus c97306464928 selftests: rtnetlink: update netdevsim ipsec output format 28435f5d9d08 netdevsim: print human readable IP address 810109436b28 parport_pc: add support for ASIX AX99100 79cf08014ef3 serial: 8250_pci: add support for ASIX AX99100 1840fb92baf4 can: ems_pci: move ASIX AX99100 ids to pci_ids.h d8ff250e085a nilfs2: protect access to buffers with no active references f51ff43c4c5a nilfs2: do not force clear folio if buffer is referenced 1bf43414ccff nilfs2: do not output warnings when clearing dirty buffers c6ddb3848599 alpha: replace hardcoded stack offsets with autogenerated ones 5fb8cda2fcea x86/static-call: Remove early_boot_irqs_disabled check to fix Xen PVH dom0 9c0a3aab4b8d kdb: Do not assume write() callback available 22e19c8c5f6b drm/v3d: Stop active perfmon if it is being destroyed 37054243cf5d drm/tidss: Clear the interrupt status for interrupts being disabled 2b7db8abf84f drm/tidss: Fix issue in irq handling causing irq-flood issue 29fa42197f26 ipv6: mcast: add RCU protection to mld_newpack() e24d225e4cb8 ndisc: extend RCU protection in ndisc_send_skb() a884f57600e4 openvswitch: use RCU protection in ovs_vport_cmd_fill_info() d9366ac2f956 arp: use RCU protection in arp_xmit() 40d8f2f2a373 neighbour: use RCU protection in __neigh_notify() 44e359552378 neighbour: delete redundant judgment statements b870256dd2a5 ndisc: use RCU protection in ndisc_alloc_skb() 28de355b63ad ipv6: use RCU protection in ip6_default_advmss() ce3c6165fce0 ipv4: use RCU protection in __ip_rt_update_pmtu() fc07a232326a net: ipv4: Cache pmtu for all packet paths if multipath enabled a7246d3949c2 selftest: net: Test IPv4 PMTU exceptions with DSCP and ECN 7385291def47 Namespaceify mtu_expires sysctl 686792179f20 Namespaceify min_pmtu sysctl 4561343d2b6c ipv4: use RCU protection in inet_select_addr() 50d356db0542 ipv4: use RCU protection in rt_is_expired() 6e0d21491686 net: add dev_net_rcu() helper c22b8d77816e net: treat possible_net_t net pointer as an RCU one and add read_pnet_rcu() 0e5ea98edc3b ipv4: add RCU protection to ip4_dst_hoplimit() 60f54f0d4ea5 clocksource: Use migrate_disable() to avoid calling get_random_u32() in atomic context a02540d4401f clocksource: Use pr_info() for "Checking clocksource synchronization" message 4ae5e361537d clocksource: Replace cpumask_weight() with cpumask_empty() acfebfb2abf3 btrfs: fix hole expansion when writing at an offset beyond EOF e4291f26c501 mlxsw: Add return value check for mlxsw_sp_port_get_stats_raw() 9abfb2c8693d arm64: Handle .ARM.attributes section in linker scripts 78be8f779b20 regmap-irq: Add missing kfree() 40a35d14f3c0 partitions: mac: fix handling of bogus partition table 4647cb4e0013 gpio: stmpe: Check return value of stmpe_reg_read in stmpe_gpio_irq_sync_unlock ede3fa7b0cb6 alpha: align stack for page fault and user unaligned trap handlers bf3f395b9c37 serial: 8250: Fix fifo underflow on flush 19f3e16bc9f7 cgroup: fix race between fork and cgroup.kill 4d832459170d efi: Avoid cold plugged memory for placing the kernel b737d6439113 alpha: make stack 16-byte aligned (most cases) f1767d255807 can: j1939: j1939_sk_send_loop(): fix unable to send messages with data length zero f7a43d1563ac can: c_can: fix unbalanced runtime PM disable in error path 9fccb6b65510 USB: serial: option: drop MeiG Smart defines 412458d7e92b USB: serial: option: fix Telit Cinterion FN990A name 60f0765d673b USB: serial: option: add Telit Cinterion FN990B compositions 95fcacb5b9a9 USB: serial: option: add MeiG Smart SLM828 6878c61a3880 usb: cdc-acm: Fix handling of oversized fragments 871619c2b78f usb: cdc-acm: Check control transfer buffer size before access 9ee5bb1938f3 USB: cdc-acm: Fill in Renesas R-Car D3 USB Download mode quirk d3a67adb365c USB: hub: Ignore non-compliant devices with too many configs or interfaces d8e86700c8a8 usb: gadget: f_midi: fix MIDI Streaming descriptor lengths aeda961736f3 USB: Add USB_QUIRK_NO_LPM quirk for sony xperia xz1 smartphone 6afdad04f6c1 USB: quirks: add USB_QUIRK_NO_LPM quirk for Teclast dist b605fd13b832 usb: core: fix pipe creation for get_bMaxPacketSize0 1af4043ec5bc USB: pci-quirks: Fix HCCPARAMS register error for LS7A EHCI ef5e915db375 usb: dwc2: gadget: remove of_node reference upon udc_stop 626ab15ddc4b usb: gadget: udc: renesas_usb3: Fix compiler warning 6a902573f2ca usb: roles: set switch registered flag early on f4ca0cf536b1 perf/x86/intel: Ensure LBRs are disabled when a CPU is starting 45fa526b0f5a KVM: x86: Reject Hyper-V's SEND_IPI hypercalls if local APIC isn't in-kernel 2e8f0f0e0097 batman-adv: Ignore neighbor throughput metrics in error case f0a16c6c7976 batman-adv: fix panic during interface removal 6b7d69806c42 ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla 10 tablet 5V 8725882b0f69 orangefs: fix a oob in orangefs_debug_write 848b58151775 x86/mm/tlb: Only trim the mm_cpumask once a second cd8de1f521d5 Grab mm lock before grabbing pt lock 69b812149b8b vfio/pci: Enable iowrite64 and ioread64 for vfio pci 20b7d9675437 PCI/DPC: Quirk PIO log size for Intel Raptor Lake-P 59a707ad952e media: vidtv: Fix a null-ptr-deref in vidtv_mux_stop_thread d485a8b22794 media: cxd2841er: fix 64-bit division on gcc-9 ba842a609ff8 x86/xen: allow larger contiguous memory regions in PV guests 5b750e76dfd5 xen: remove a confusing comment on auto-translated guest I/O d340047cf29b gpio: bcm-kona: Add missing newline to dev_err format string f66a5da15f14 gpio: bcm-kona: Make sure GPIO bits are unlocked when requesting IRQ 54b0de7b6abe gpio: bcm-kona: Fix GPIO lock/unlock for banks above bank 0 092dc83b9a3c drm/i915/selftests: avoid using uninitialized context 88a3e6afaf00 arm64: cacheinfo: Avoid out-of-bounds write to cacheinfo array f443687ad20c team: better TEAM_OPTION_TYPE_STRING validation 5bb4228c3226 vrf: use RCU protection in l3mdev_l3_out() 80f70686857e ndisc: ndisc_send_redirect() must use dev_get_by_index_rcu() 2052b44cd0a6 HID: multitouch: Add NULL check in mt_input_configured efa8a261c575 NFSD: fix hang in nfsd4_shutdown_callback 6f7cfee1a316 nfsd: clear acl_access/acl_default after releasing them e22a97700901 tty: xilinx_uartps: split sysrq handling 59cf03ddf127 mptcp: prevent excessive coalescing on receive 03b605ac1e5b ocfs2: check dir i_size in ocfs2_find_entry ad73b43e6908 memory: tegra20-emc: Correct memory device mask 12a1cf9db178 gpio: xilinx: remove excess kernel doc 9772e2e15482 net/ncsi: use dev_set_mac_address() for Get MC MAC Address handling 3fec5d194fc9 MIPS: ftrace: Declare ftrace_get_parent_ra_addr() as static 1334c64a5d1d ptp: Ensure info->enable callback is always set 0eda6b12a108 net: phy: c45-tjaxx: add delay between MDIO write and read in soft_reset 83db3d545d39 net/ncsi: wait for the last response to Deselect Package before configuring channel 2ed6d46f8037 misc: fastrpc: Fix registered buffer page address 820603335006 mtd: onenand: Fix uninitialized retlen in do_otp_read() 10b3f947b609 NFC: nci: Add bounds checking in nci_hci_create_pipe() 8f41df5fd4c1 nilfs2: fix possible int overflows in nilfs_fiemap() 8aee4184c5b7 ocfs2: handle a symlink read error correctly 5a1c86066f1b ocfs2: fix incorrect CPU endianness conversion causing mount failure c00e53672d7d pnfs/flexfiles: retry getting layout segment for reads f65ce06387f8 vfio/platform: check the bounds of read/write syscalls 66325de71801 nvmem: core: improve range check for nvmem_cell_write() c897de3d1f4d nvmem: qcom-spmi-sdam: Set size in struct nvmem_config f52f00efd8c0 crypto: qce - unregister previously registered algos in error path efae52c61150 crypto: qce - fix goto jump in error path 14810fb99091 media: uvcvideo: Remove redundant NULL assignment 74512c021525 media: uvcvideo: Fix event flags in uvc_ctrl_send_events 1662c5812b84 media: ccs: Fix cleanup order in ccs_probe() 66a2c461703e media: ccs: Fix CCS static data parsing for large block sizes d6fae50f5eb7 media: ov5640: fix get_light_freq on auto 9a6c627f3fe4 media: mc: fix endpoint iteration 9e6cd5f99496 soc: qcom: smem_state: fix missing of_node_put in error path 1880c45ebe14 iio: light: as73211: fix channel handling in only-color triggered buffer 22d1dcd0b053 media: ccs: Clean up parsed CCS static data on parse failure 6bdbb75ffc6c xfs: Add error handling for xfs_reflink_cancel_cow_range 4e9af1ddbc98 crypto: qce - fix priority to be less than ARMv8 CE 231dfd6bb61e arm64: dts: qcom: sm8350: Fix MPSS memory length e7e06872144e x86/boot: Use '-std=gnu11' to fix build with GCC 15 81a3a0c1a68f kbuild: Move -Wenum-enum-conversion to W=2 2bce0a6a4433 scsi: storvsc: Set correct data length for sending SCSI command without payload 73d3d3c66f10 scsi: qla2xxx: Move FCE Trace buffer allocation to user control ad88fd9ee93a nvme-pci: Add TUXEDO IBP Gen9 to Samsung sleep quirk 662964484f8a nvme-pci: Add TUXEDO InfinityFlex to Samsung sleep quirk d88422ccb97f PCI: endpoint: Finish virtual EP removal in pci_epf_remove_vepf() abe03cd5d5b7 ALSA: hda/realtek: Enable headset mic on Positivo C6400 94e418935e1d Revert "media: uvcvideo: Require entities to have a non-zero unique ID" d24476777e8b mips/math-emu: fix emulation of the prefx instruction 63b759c9680e dm-crypt: track tag_offset in convert_context 84d6db1a7327 dm-crypt: don't update io->sector after kcryptd_crypt_write_io_submit() 453a0a22ceb8 powerpc/pseries/eeh: Fix get PE state translation a3d92e7af72a MIPS: Loongson64: remove ROM Size unit in boardinfo 48a6a4dfa5c8 serial: sh-sci: Do not probe the serial port if its slot in sci_ports[] is in use 6b7947990681 serial: sh-sci: Drop __initdata macro for port_cfg 2d09d3c9afa2 soc: qcom: socinfo: Avoid out of bounds read of serial number 5fa25ae6484b usb: gadget: f_tcm: Don't prepare BOT write request twice d5e48551866e usb: gadget: f_tcm: ep_autoconfig with fullspeed endpoint 45956a34f9a8 usb: gadget: f_tcm: Decrement command ref count on cleanup 93facdc47dc6 usb: gadget: f_tcm: Translate error to sense 61541d9b5a23 wifi: brcmfmac: fix NULL pointer dereference in brcmf_txfinalize() 7f44aa9d3960 wifi: rtlwifi: rtl8821ae: Fix media status report e27d77db198a HID: hid-sensor-hub: don't use stale platform-data on remove c0a158e7634a of: reserved-memory: Fix using wrong number of cells to get property 'alignment' 4f7c0deea1b3 of: Fix of_find_node_opts_by_path() handling of alias+path+options 87141db6d148 of: Correct child specifier used as input of the 2nd nexus node a0d751d2d8ec perf bench: Fix undefined behavior in cmpworker() be042a185cc5 efi: libstub: Use '-std=gnu11' to fix build with GCC 15 38287f779b34 blk-cgroup: Fix class @block_class's subsystem refcount leakage 44bd016cbaa3 clk: qcom: clk-rpmh: prevent integer overflow in recalc_rate 4e2996526679 clk: qcom: gcc-mdm9607: Fix cmd_rcgr offset for blsp1_uart6 rcg 175af15551ed clk: qcom: gcc-sm6350: Add missing parent_map for two clocks 4d8d1f443a6c clk: qcom: clk-alpha-pll: fix alpha mode configuration 45d563356db6 clk: sunxi-ng: a100: enable MMC clock reparenting f26831839566 Bluetooth: L2CAP: accept zero as a special value for MTU auto-selection cf601a24120c Bluetooth: L2CAP: handle NULL sock pointer in l2cap_sock_alloc 250164081da0 drm/i915: Drop 64bpp YUV formats from ICL+ SDR planes 5098970ecc1d drm/komeda: Add check for komeda_get_layer_fourcc_list() e89f74ef6bee drm/amd/pm: Mark MM activity as unsupported 224fa21f00fc KVM: s390: vsie: fix some corner-cases when grabbing vsie pages 7c4899239d0f KVM: Explicitly verify target vCPU is online in kvm_get_vcpu() b0e8b635a331 arm64: dts: rockchip: increase gmac rx_delay on rk3399-puma bc8ca18b8ef4 binfmt_flat: Fix integer overflow bug on 32 bit systems 20ecbadad51a m68k: vga: Fix I/O defines 592ffb238132 s390/futex: Fix FUTEX_OP_ANDN implementation 61b4e072b7e8 drm/modeset: Handle tiled displays in pan_display_atomic. 4e2de62318b9 leds: lp8860: Write full EEPROM, not only half of it fc7da1095247 cpufreq: s3c64xx: Fix compilation warning 4defa9ebef14 tun: revert fix group permission check 98a2c685293a netem: Update sch->q.qlen before qdisc_tree_reduce_backlog() d85d721f3225 x86/xen: add FRAME_END to xen_hypercall_hvm() aaa15fc4291b x86/xen: fix xen_hypercall_hvm() to not clobber %rbx d308661a0f4e net: rose: lock the socket in rose_bind() 5bb48702e946 net: atlantic: fix warning during hot unplug a6f3981d04d1 gpio: pca953x: Improve interrupt support 61e7e18fa64c udp: gso: do not drop small packets when PMTU reduces 540ffff7925b tg3: Disable tg3 PCIe AER on system reboot 712e6ed39e5c gpu: drm_dp_cec: fix broken CEC adapter properties check 256768b17e62 firmware: iscsi_ibft: fix ISCSI_IBFT Kconfig entry 51df156e04e5 nvme: handle connectivity loss in nvme_set_queue_count cf30300a216a usb: xhci: Fix NULL pointer dereference on certain command aborts b27f10764d80 usb: xhci: Add timeout argument in address_device USB HCD callback d31d3dc92775 xfs: don't over-report free space or inodes in statvfs bd015e2e7f26 xfs: report realtime block quota limits on realtime directories d25041d4a3b2 gpio: xilinx: Convert gpio_lock to raw spinlock 4489cce8e4e7 net/ncsi: fix locking in Get MAC Address handling 8930834d1525 net/ncsi: Add NC-SI 1.2 Get MC MAC Address command 3f46fefab962 usb: chipidea: ci_hdrc_imx: decrement device's refcount in .remove() and in the error path of .probe() 998b1fa6c218 usb: chipidea/ci_hdrc_imx: Convert to platform remove callback returning void 9794ea40979b usb: chipidea: ci_hdrc_imx: use dev_err_probe() af431197516a x86/mm: Don't disable PCID when INVLPG has been fixed by microcode c56ea30db33d platform/x86: acer-wmi: Ignore AC events 78a88a1690bc Input: allocate keycode for phone linking b191b2b3b5ad selftests/net/ipsec: Fix Null pointer dereference in rtattr_pack() f213bb330fc6 tipc: re-order conditions in tipc_crypto_key_rcv() c9b80829b001 mmc: sdhci-msm: Correctly set the load for the regulator 4dddb00d0397 net: wwan: iosm: Fix hibernation by re-binding the driver around it 5c60cdcff102 APEI: GHES: Have GHES honor the panic= setting 3fa04850ddac i2c: Force ELAN06FA touchpad I2C bus freq to 100KHz 0bae6625cabc wifi: iwlwifi: avoid memory leak 578845229c4e net/mlx5: use do_aux_work for PHC overflow checks 463f5f6402b9 HID: Wacom: Add PCI Wacom device support c16b96035c48 mfd: lpc_ich: Add another Gemini Lake ISA bridge PCI device-id b2bd5857a0d6 tomoyo: don't emit warning in tomoyo_write_control() d280a12e9b87 wifi: brcmsmac: add gain range check to wlc_phy_iqcal_gainparams_nphy() bafaee99fc23 mmc: core: Respect quirk_max_rate for non-UHS SDIO card 9b560350aa7b tun: fix group permission check ecf6a4a55809 safesetid: check size of policy writes bb8ff054e19f printk: Fix signed integer overflow when defining LOG_BUF_LEN_MAX 99795e62e7a5 x86/amd_nb: Restrict init function to AMD-based systems 23434fcf90b9 lockdep: Fix upper limit for LOCKDEP_*_BITS configs 56135262c1f9 sched: Don't try to catch up excess steal time. 13dae4fa17be btrfs: convert BUG_ON in btrfs_reloc_cow_block() to proper error handling 367b72fa18b0 btrfs: fix data race when accessing the inode's disk_i_size at btrfs_drop_extents() 7e954b6bb95d btrfs: fix use-after-free when attempting to join an aborted transaction 51bcf530c6dc btrfs: output the reason for open_ctree() failure bbb7f49839b5 usb: gadget: f_tcm: Don't free command immediately 3ba8884a56a3 media: uvcvideo: Fix double free in error path 3a7fda57b0f9 mptcp: consolidate suboption status 83a3a5aeb1b1 usb: typec: tcpci: Prevent Sink disconnection before vPpsShutdown in SPR PPS bb52bce4c91c usb: typec: tcpm: set SRC_SEND_CAPABILITIES timeout to PD_T_SENDER_RESPONSE 16d5669ff07f usb: dwc3: core: Defer the probe until USB power supply ready 2cfbf53baeaf usb: gadget: f_tcm: Fix Get/SetInterface return value 3c1f8dfa01b3 drivers/card_reader/rtsx_usb: Restore interrupt based detection d42168f109f9 net: usb: rtl8150: enable basic endpoint checking 10eff770fd16 ALSA: usb-audio: Add delay quirk for iBasso DC07 Pro deec230cb835 ktest.pl: Check kernelrelease return in get_version 5083a7ae4500 netfilter: nf_tables: reject mismatching sum of field_len with set key length d712ca4807ce NFSD: Reset cb_seq_status after NFS4ERR_DELAY b0938ffd39ae f2fs: Introduce linear search for dentries 679bb865c881 hexagon: Fix unbalanced spinlock in die() 8e83dbe9ff32 hexagon: fix using plain integer as NULL pointer warning in cmpxchg 4bd72d9fe11d kconfig: fix memory leak in sym_warn_unmet_dep() 5f45a419bdd1 kconfig: WERROR unmet symbol dependency ccc1287a02ea kconfig: deduplicate code in conf_read_simple() 3e31777acf2d kconfig: remove unused code for S_DEF_AUTO in conf_read_simple() 131f1604fa6b kconfig: require a space after '#' for valid input 6bdf078908c3 kconfig: add warn-unknown-symbols sanity check 4780a614f013 kconfig: fix file name in warnings when loading KCONFIG_DEFCONFIG_LIST c48b8fc7f0a8 genksyms: fix memory leak when the same symbol is read from *.symref file bb28d02726ab genksyms: fix memory leak when the same symbol is added from source 13310513f549 net: hsr: fix fill_frame_info() regression vs VLAN packets df3398504b97 net: sh_eth: Fix missing rtnl lock in suspend/resume path 3ce32a9fb1d2 bgmac: reduce max frame size to support just MTU 1500 ab2df791b1d4 vsock: Allow retrying on connect() failure a48ebcd853a4 perf trace: Fix runtime error of index out of bounds 0dd6c67f6cfe ptp: Properly handle compat ioctls 7d7d201eb3b7 net: davicom: fix UAF in dm9000_drv_remove cfb17f637562 net: netdevsim: try to close UDP port harness races 1409b45d4690 net: rose: fix timer races against user threads c499bd77ca2a PM: hibernate: Add error handling for syscore_suspend() 547ef7e8cbb9 ipmr: do not call mr_mfc_uses_dev() for unres entries 6468f3a9842f net: fec: implement TSO descriptor cleanup 5934bfaeaffe gpio: mxc: remove dead code after switch to DT-only 8c640dd3d900 net: hns3: fix oops when unload drivers paralleling 1787cd67bb94 ubifs: skip dumping tnc tree when zroot is null e5536677da80 rtc: pcf85063: fix potential OOB write in PCF85063 NVMEM read 2943af7d72d7 dmaengine: ti: edma: fix OF node reference leaks in edma_driver c9cc70bca158 xfrm: replay: Fix the update of replay_esn->oseq_hi for GSO 6be3ea508111 tools/bootconfig: Fix the wrong format specifier 26e5c3c8d780 NFSv4.2: mark OFFLOAD_CANCEL MOVEABLE edcaf4156ced NFSv4.2: fix COPY_NOTIFY xdr buf size calculation f6bae8cc42ab module: Extend the preempt disabled section in dereference_symbol_descriptor(). 2e2bb52b8e58 ocfs2: mark dquot as inactive if failed to start trans while releasing dquot fe761befd845 scsi: ufs: bsg: Delete bsg_dev when setting up bsg fails 13186db840b9 scsi: mpt3sas: Set ioc->manu_pg11.EEDPTagMode directly to 1 6987e021b64c PCI: rcar-ep: Fix incorrect variable used when calling devm_request_mem_region() 68ee578e6e31 staging: media: imx: fix OF node leak in imx_media_add_of_subdevs() 6f3c167de057 mtd: hyperbus: hbmc-am654: fix an OF node reference leak 784a7f4a9efb mtd: hyperbus: hbmc-am654: Convert to platform remove callback returning void c1aea4faa984 mtd: hyperbus: Make hyperbus_unregister_device() return void 3b86841430a6 media: uvcvideo: Propagate buf->error to userspace 235ab2be3572 media: camif-core: Add check for clk_enable() cc0d04ae127d media: mipi-csis: Add check for clk_enable() 5bdd8b64153d media: i2c: ov9282: Correct the exposure offset 8ab5c3af1406 media: i2c: imx412: Add missing newline to prints 333f8f9b6667 media: marvell: Add check for clk_enable() a61cd3df84b3 PCI: endpoint: Destroy the EPC device in devm_pci_epc_destroy() 55c326068f6b media: lmedm04: Handle errors for lme2510_int_read 8bea20f4d630 media: rc: iguanair: handle timeouts 0486d65804cc efi: sysfb_efi: fix W=1 warnings when EFI is not set 8049a0845bfc of: reserved-memory: Do not make kmemleak ignore freed address ca36f0848eb8 memblock: drop memblock_free_early_nid() and memblock_free_early() d26e179d2cac xen/x86: free_p2m_page: use memblock_free_ptr() to free a virtual pointer 708ce479ff3c RDMA/mlx5: Fix indirect mkey ODP page count 95b4474c93a0 RDMA/mlx5: Enforce umem boundaries for explicit ODP page faults fe090e183d26 RDMA/mlx5: Remove iova from struct mlx5_core_mkey b9c5f50926e3 fbdev: omapfb: Fix an OF node leak in dss_of_port_get_parent_device() 96cd8661f225 ARM: dts: mediatek: mt7623: fix IR nodename 311afb2be167 arm64: dts: qcom: sdm845: Fix interrupt types of camss interrupts eb3e76baaf1b arm64: dts: qcom: sm8150-microsoft-surface-duo: fix typos in da7280 properties 312e11fc5060 arm64: dts: qcom: sm8350: correct sleep clock frequency 8fbb052b3bd3 arm64: dts: qcom: sm8250: correct sleep clock frequency c990f5e0b2cb arm64: dts: qcom: sm6125: correct sleep clock frequency 88c84e743d4c arm64: dts: qcom: sc7280: correct sleep clock frequency afc66a233ad9 arm64: dts: qcom: msm8994: correct sleep clock frequency 9cc46ab94b61 arm64: dts: qcom: msm8916: correct sleep clock frequency 09153a482e90 arm64: dts: qcom: msm8994: Describe USB interrupts 31952ff5833c arm64: dts: qcom: msm8996: Fix up USB3 interrupts ea7232a05e10 arm64: dts: mediatek: mt8183-kukui-jacuzzi: Drop pp3300_panel voltage settings c3def10c610a memory: tegra20-emc: fix an OF node reference bug in tegra_emc_find_node_by_ram_code() d9f36f957bb2 memory: tegra20-emc: Support matching timings by LPDDR2 configuration 0f3c0d94c815 memory: Add LPDDR2-info helpers 4274acb5b996 arm64: dts: mediatek: mt8183: willow: Support second source touchscreen cba8c5daa9d8 arm64: dts: mediatek: mt8183: kenzo: Support second source touchscreen d098183961e0 arm64: dts: mediatek: mt8173-evb: Fix MT6397 PMIC sub-node names b9a5544dbad5 arm64: dts: mediatek: mt8173-elm: Fix MT6397 PMIC sub-node names 032c92e01aaa arm64: dts: mediatek: mt8173-elm: Drop regulator-compatible property 2a28a21a925f arm64: dts: mediatek: mt8173-evb: Drop regulator-compatible property e53ca458f543 rdma/cxgb4: Prevent potential integer overflow on 32bit 160450e4908b RDMA/mlx4: Avoid false error about access to uninitialized gids array f92f10cdb7fa arm64: dts: mediatek: mt8516: reserve 192 KiB for TF-A 52a976a83dda arm64: dts: mediatek: mt8516: add i2c clock-div property 6047c27de667 arm64: dts: mediatek: mt8516: remove 2 invalid i2c clocks bcc6c817e2ad arm64: dts: mediatek: mt8516: fix wdt irq type 3ad0e4e15581 arm64: dts: mediatek: mt8516: fix GICv2 range 9792f0c9880a arm64: dts: mt8183: set DMIC one-wire mode on Damu abbb15f54a35 ARM: at91: pm: change BU Power Switch to automatic mode 4c6209efea22 padata: avoid UAF for reorder_work 035ed9577b48 padata: add pd get/put refcnt helper f3e0b9f790f8 padata: fix UAF in padata_reorder e306eaaa3d78 bpf: Send signals asynchronously if !preemptible d6becd34dc65 perf report: Fix misleading help message about --demangle 54b587874a7c perf top: Don't complain about lack of vmlinux when not resolving some kernel samples ca0b62b2dc9a padata: fix sysfs store callback check b467ed29b586 crypto: ixp4xx - fix OF node reference leaks in init_ixp_crypto() 778a73f8d38d crypto: hisilicon/sec2 - fix for aead invalid authsize 37e032978e55 crypto: hisilicon/sec2 - fix for aead icv error 017b2680816b crypto: hisilicon/sec2 - optimize the error return process 8f268c476c83 crypto: hisilicon/sec - delete redundant blank lines 0db426905cb4 crypto: hisilicon/sec - add some comments for soft fallback 4086792b8883 ktest.pl: Remove unused declarations in run_bisect_test function 4c45f82e101a ASoC: renesas: rz-ssi: Use only the proper amount of dividers 49c5d851a2bf perf bpf: Fix two memory leakages when calling perf_env__insert_bpf_prog_info() ac026a0ba486 perf header: Fix one memory leakage in process_bpf_prog_info() 11491bb26fd9 perf header: Fix one memory leakage in process_bpf_btf() d79fc69eda73 ASoC: sun4i-spdif: Add clock multiplier settings 6a5d02ae6ff8 libbpf: Fix segfault due to libelf functions not setting errno 3c99e59404f3 tools/testing/selftests/bpf/test_tc_tunnel.sh: Fix wait for server bind b8583b54455c net/rose: prevent integer overflows in rose_setsockopt() 3cfabbb18810 tcp_cubic: fix incorrect HyStart round start detection ed8c0300f302 net: ethernet: ti: am65-cpsw: fix freeing IRQ in am65_cpsw_nuss_remove_tx_chns() 920f736e6c64 netfilter: nft_flow_offload: update tcp state flags under lock 38646749d6e1 net: sched: Disallow replacing of child qdisc from one parent to another 26bc6076798a net: avoid race between device unregistration and ethnl ops f023bf675814 net/mlxfw: Drop hard coded max FW flash image size 0e2f1d93d287 net: let net.core.dev_weight always be non-zero 0cc8fc34df84 selftests/landlock: Fix error message 78eadb30f5ce clk: analogbits: Fix incorrect calculation of vco rate delta 7d07de96990e wifi: cfg80211: adjust allocation of colocated AP data 7427e4afbd16 wifi: cfg80211: Handle specific BSSID in 6GHz scanning 23b54d193a90 selftests: harness: fix printing of mismatch values in __EXPECT() 28063f72460d cpufreq: ACPI: Fix max-frequency computation 965e41a93fce wifi: mt76: mt76u_vendor_request: Do not print error messages when -EPROTO a1fccf6b72b5 landlock: Handle weird files b32a42383c26 landlock: Move filesystem helpers and add a new one ba079f94cb0a net/smc: fix data error when recvmsg with MSG_PEEK flag 9394c1163c20 wifi: wlcore: fix unbalanced pm_runtime calls a7e98a85990a samples/landlock: Fix possible NULL dereference in parse_path() 332ee5fc52e1 regulator: of: Implement the unwind path of of_regulator_match() bd099a2fa9be team: prevent adding a device which is already a team device lower f5072f5c806f clk: imx8mp: Fix clkout1/2 support 68fb4aafe3bb cpufreq: schedutil: Fix superfluous updates caused by need_freq_update 0e833dc042b9 leds: netxbig: Fix an OF node reference leak in netxbig_leds_get_of_pdata() 4efb30e564f2 dt-bindings: mfd: bd71815: Fix rsense and typos 725d01fdde59 cpupower: fix TSC MHz calculation fc1750250f85 ACPI: fan: cleanup resources in the error path of .probe() f575806ef1da regulator: dt-bindings: mt6315: Drop regulator-compatible property a57bce750a52 HID: multitouch: fix support for Goodix PID 0x01e9 25c30f902438 Revert "HID: multitouch: Add support for lenovo Y9000P Touchpad" 8c52d33d88ef HID: multitouch: Add support for lenovo Y9000P Touchpad 4c436e8bd326 wifi: rtlwifi: pci: wait for firmware loading before releasing memory b96371339fd9 wifi: rtlwifi: fix memory leaks and invalid access at probe error path 0eea81f30c6e wifi: rtlwifi: destroy workqueue at rtl_deinit_core 8e2fcc68fbaa wifi: rtlwifi: remove unused check_buddy_priv ed3d742c2204 wifi: rtlwifi: remove unused dualmac control leftovers c8951a13d626 wifi: rtlwifi: remove unused timer and related code 5f945d2595cd rtlwifi: replace usage of found with dedicated list iterator variable 94b4c15bca53 dt-bindings: leds: class-multicolor: Fix path to color definitions f045124251f5 dt-bindings: leds: class-multicolor: reference class directly in multi-led node 594cb8eeac49 dt-bindings: leds: Add multicolor PWM LED bindings 7c09f7ba7ad3 dt-bindings: leds: Optional multi-led unit address e547ede9d118 dt-bindings: leds: Add Qualcomm Light Pulse Generator binding 621600ed2ce5 dt-bindings: Another pass removing cases of 'allOf' containing a '$ref' b220d6b97a8b spi: dt-bindings: add schema listing peripheral-specific properties efb8b60b7990 dt-bindings: mmc: controller: clarify the address-cells description 4960235d6662 spi: zynq-qspi: Add check for clk_enable() 5a80bbc5df58 wifi: rtlwifi: usb: fix workqueue leak when probe fails 643c584528ce wifi: rtlwifi: fix init_sw_vars leak when probe fails 284a6f64f4cf wifi: rtlwifi: wait for firmware loading before releasing memory 949845dfdb9b wifi: rtlwifi: rtl8192se: rise completion of firmware loading as last step 56e84ffaf3d8 wifi: rtlwifi: do not complete firmware loading needlessly eb288ab33fd8 ipmi: ipmb: Add check devm_kasprintf() returned value 62f14b506f5b genirq: Make handle_enforce_irqctx() unconditionally available 2396bc91935c drm/amdgpu: Fix potential NULL pointer dereference in atomctrl_get_smc_sclk_range_table a32ea3f982b3 HID: core: Fix assumption that Resolution Multipliers must be in Logical Collections c589074b64dd drm/etnaviv: Fix page property being used for non writecombine buffers c7971fc03a06 sched/fair: Fix value reported by hot tasks pulled in /proc/schedstat b3a5ff8c4b6e sched/psi: Use task->psi_flags to clear in CPU migration 105ff3024397 afs: Fix the fallback handling for the YFS.RemoveFile2 RPC call 0a60270ee48c select: Fix unbalanced user_access_end() b9ca509e5b7f partitions: ldm: remove the initial kernel-doc notation 8714ecb8fa55 nvme: Add error check for xa_store in nvme_get_effects_log 113563188f22 pstore/blk: trivial typo fixes e3be8862d73c nbd: don't allow reconnect after disconnect 2d43a6fcea0e block: retry call probe after request_module in blk_request_module 6327dacfe6d6 block: deprecate autoloading based on dev_t effcbfb1e5ea fs: fix proc_handler for sysctl_nr_open a3eff27900d0 fs: move fs stat sysctls to file_table.c ca5d118b213e fs: move inode sysctls to its own file 548fae8fb904 sysctl: share unsigned long const values 7584027c80dc sysctl: use const for typically used max/min proc sysctls d96a8f8e86d1 hung_task: move hung_task sysctl interface to hung_task.c f3cfafcdb5bb afs: Fix directory format encoding struct ef5f2706364d afs: Fix EEXIST error returned from afs_rmdir() to be ENOTEMPTY e0bb89c44b56 efi: libstub: Use '-std=gnu11' to fix build with GCC 15 b5d500042eb3 usb: hcd-pci: remove the action of faking interrupt request 6f0605db50e2 clk: imx: Add check for kcalloc 5b837b9e1543 bpf: Fix the indention issue in grow_stack_state() 42b62697634d cifs: Fix the calling of smb_version_operations::calc_smb_size() b14acf729e9d f2fs: Add inline to f2fs_build_fault_attr() stub 7c317bec311f f2fs: check validation of fault attrs in f2fs_build_fault_attr() 81c12119c23f bpf: Fix accesses to uninit stack slots [ Upstream commit 6b4a64bafd107e521c01eec3453ce94a3fb38529 ] c4fa05422d87 smb: client: fix potential OOB in smb2_dump_detail() 299ef3b5b00b of: module: add buffer overflow check in of_modalias() b8086c3c1548 reiserfs: Avoid touching renamed directory if parent does not change ea091017ef62 ipv6: Fix data races around sk->sk_prot. ff8710da80ee ipv6: annotate some data-races around sk->sk_prot e8c2eafaaa6a tcp: Fix data races around icsk->icsk_af_ops. 8d1bab770956 locking/rwsem: Disable preemption while trying for rwsem lock 7c82dac02886 block, loop: support partitions without scanning 45f504f301d4 bpftool: Fix pretty print dump for maps without BTF loaded 1f24338cb789 jbd2: Drop the merge conflicted hunk e1d0e3c51bde tpm: tis_i2c: Limit write bursts to I2C_SMBUS_BLOCK_MAX (32) bytes 1abe841fe331 tpm: tis_i2c: Limit read bursts to I2C_SMBUS_BLOCK_MAX (32) bytes 6224acfc1d56 tpm: Add flag to use default cancellation policy 1cd19d48fb90 tpm: tis_i2c: Fix sanity check interrupt enable mask a883da132fa8 tpm: Add tpm_tis_i2c backend for tpm_tis_core a742ac8a1c51 tpm: Add tpm_tis_verify_crc to the tpm_tis_phy_ops protocol layer ef495c5f45f2 tpm: Remove read16/read32/write32 calls from tpm_tis_phy_ops 1f3be2e23aa6 gcc-plugins: Reorganize gimple includes for GCC 13 24615a3b932a ata: ahci: fix enum constants for gcc-13 5d6cb145541a net: stmmac: Enable mac_managed_pm phylink config fd93aabb4287 tools/resolve_btfids: Use pkg-config to locate libelf 130f9da78406 tools/resolve_btfids: Build with host flags 00f2f1a782f9 tools/resolve_btfids: Support cross-building the kernel with clang 17776a4ba9c2 tools/resolve_btfids: Install libbpf headers when building 7c9808380d70 libbpf: Make libbpf_version.h non-auto-generated 37ae1ba791ac libbpf: Add LIBBPF_DEPRECATED_SINCE macro for scheduling API deprecations a2667e6d7314 drm/radeon: free iio for atombios when driver shutdown f100c753aa1f powerpc: Fix reschedule bug in KUAP-unlocked user copy da5513f30187 libbpf: Fix build warning on ref_ctr_off 4c5a089621a8 perf python: Account for multiple words in CC 1c5699ee85d4 fs: move S_ISGID stripping into the vfs_*() helpers 838f5d0701d8 fs: add mode_strip_sgid() helper d97172683641 squashfs: provide backing_dev_info in order to disable read-ahead ed037d7be40c irq_work: use kasan_record_aux_stack_noalloc() record callstack 1363bd7dbde3 ixgbevf: add disable link state e5601ae2bd24 ixgbe: add improvement for MDD response functionality caa57cd80575 ixgbe: add the ability for the PF to disable VF link state 16a77bfcc7df Check /dev/console using init_stat() 04574fd5579a tracing/arm: Have max stack tracer handle the case of return address after data 0e51e5717018 gpiolib: cdev: Set lineevent_state::irq after IRQ register successfully 1e6b7da6ddba drivers/base: Fix unsigned comparison to -1 in CPUMAP_FILE_MAX_BYTES 493160901320 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition 04224f725aa3 irqchip/gic-v3-its: Skip HP notifier when no ITS is registered 6f6c2996a81c irqchip/gic-v3-its: Postpone LPI pending table freeing and memreserve 1fa94473423f irqchip/gic-v3-its: Give the percpu rdist struct its own flags field 6013d1ae5feb cert host tools: Stop complaining about deprecated OpenSSL functions efe20512212b init/Kconfig: fix CC_HAS_ASM_GOTO_TIED_OUTPUT test with dash a40d2daf2795 pnmtologo: use relocatable file name 3b40d5b41155 of: configfs: remove unused variable overlay_lock 6c085baf1838 tools: use basename to identify file in gen-mach-types 2fca0fd71981 lib/build_OID_registry: fix reproducibility issues 0f586f4ee8ad vt/conmakehash: improve reproducibility a75774679f28 OF: DT-Overlay configfs interface (v8) d179c639b30b x86/boot: Wrap literal addresses in absolute_pointer() 856ec356cf91 ACPI: thermal: drop an always true check 7614af249993 xfs: Fix -Werror=dangling-pointer work-around for older GCC 41470215f97e xfs: Work around GCC 12 -Werror=dangling-pointer for xfs_attr_remote.o 44a445c1922d virtio-pci: Remove wrong address verification in vp_del_vqs() 77aa9e489eaf bpf: Disallow unprivileged bpf by default ebfb1822e9f9 fs/aufs: fixup 5.15.36 fixups 4eba9348d3e2 Revert "Revert "fbdev: Hot-unplug firmware fb devices on forced removal"" 5df6d1b00f95 jbd2: fix use-after-free of transaction_t race 2d83e8196487 jbd2: refactor wait logic for transaction updates into a common function 07a63f760793 netfilter: conntrack: avoid useless indirection during conntrack destruction 4e7122625996 Revert "fbdev: Hot-unplug firmware fb devices on forced removal" 7ba4cb36fd4f rcu: Avoid alloc_pages() when recording stack f78574dee71e kasan: test: silence intentional read overflow warnings d313cb89b6b1 kasan: arm64: fix pcpu_page_first_chunk crash with KASAN_VMALLOC 5e279d5647cc arm64: support page mapping percpu first chunk allocator e5bf16752dca vmalloc: choose a better start address in vm_area_register_early() 660b3d21b46f kasan: test: bypass __alloc_size checks 00aa7573e53a kasan: test: add memcpy test that avoids out-of-bounds write 67becf0b1bd4 kasan: fix tag for large allocations when using CONFIG_SLAB bedf1e033213 workqueue, kasan: avoid alloc_pages() when recording stack 7195b67ce69b kasan: generic: introduce kasan_record_aux_stack_noalloc() bdff763f0e29 kasan: common: provide can_alloc in kasan_save_stack() 51423ebb36ad lib/stackdepot: introduce __stack_depot_save() 85373e66d847 lib/stackdepot: remove unused function argument 5b6cc9b251f3 lib/stackdepot: include gfp.h c9f3902d8069 aufs: reduce overhead for "code present but disabled" use case. b98d189df02c aufs: bugfix, umount passes NULL to ->parse_monolithic() 13b883cbbbd9 aufs standalone: cosmetic, missing copyright sentence 21f8b0d81898 aufs: 5.15.5-20220117 ---> 5.15.5-20220221 6199fd896645 aufs: tiny, headers after fs_context 8ddb40e31c29 aufs: fs_context 7/7, finally remount 69035f71c6fd aufs: fs_context 6/7, now mount bc841b970697 aufs: fs_context 5/7, parse all other mount options 435188053da2 aufs: fs_context 4/7, parse xino options 9af1f1825cbd aufs: fs_context 3/7, parse the branch-management options 1c05eb767f8c aufs: fs_context 2/7, parse "br" mount option a8488f603134 aufs: fs_context 1/7, skelton of the new shceme 8e32e0015564 aufs: pre fs_context, convert a static flag to a macro f90cb4144aec aufs: pre fs_context, support the incomplete sb and sbinfo case 948762ef859c aufs: pre fs_context, convert the type of alloc_sbinfo() 77151a08776b aufs: 5.15.5-20211129 ---> 5.15.5-20220117 2539adbbbe1e aufs: 5.14-20211018 ---> 5.15.5-20211129 7d32b25193c4 aufs: for v5.15-rc1, sync_inode() is gone 66ec0c509225 aufs: for v5.15-rc1, new param 'rcu' for ->get_acl() 69709dc518cd aufs: for v5.15-rc1, no mand-lock anymore ada8fe9543e5 aufs: 5.14-20210906 ---> 5.14-20211018 b77f7f3f394a Revert "aufs: adjust to v5.15 fs changes" 81bdce5b5876 tick/nohz: WARN_ON --> WARN_ON_ONCE to prevent console saturation 97c963889222 sched/isolation: really align nohz_full with rcu_nocbs 871f23ad3627 Revert "ARM: defconfig: Enable ax88796c driver for Exynos boards" ffad0783dd5b ARM: config: multi v7: Regenerate defconifg 5c1e1a1ff2d3 ARM: config: multi v7: Add renamed symbols badaf96564fe ARM: config: multi v7: Clean up enabled by default options 34996040fc9b ARM: config: multi v7: Drop unavailable options 7f685244afb3 powerpc/mm: Switch obsolete dssall to .long 20301aeb1a64 riscv: fix build with binutils 2.38 9df58d070506 powerpc/lib/sstep: fix 'ptesync' build error 720b61fc400b x86_64_defconfig: Fix warnings 02bf23d26bc4 arm64: defconfig: cleanup config options 05914e2c87e5 arm: defconfig: drop unused POWER_AVS option ffb532fa19b9 aufs5: fix build against v5.15.3+ a4b3abf4d96d qemux86: add configuration symbol to select values fee94ee09154 clear_warn_once: add a clear_warn_once= boot parameter 3d8762d900d9 clear_warn_once: bind a timer to written reset value 95faacac47e8 clear_warn_once: expand debugfs to include read support de20c4240018 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. 0e4aacead9c1 perf: x86-32: explicitly include <errno.h> 9ad92c11468e perf: mips64: Convert __u64 to unsigned long long 09e7efe3e68a perf: fix bench numa compilation e79becc44fa6 perf: add SLANG_INC for slang.h b1033b588681 perf: add sgidefs.h to for mips builds cf9db484ac0b perf: change --root to --prefix for python install 7fd052c2c562 perf: add 'libperl not found' warning 27a437cdd469 perf: force include of <stdbool.h> 3b99d21bec2f fat: don't use obsolete random32 call in namei_vfat a7e9293b506b FAT: Added FAT_NO_83NAME 6fd0e71d9e5c FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option c379b0d324ae FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 538be0fdb124 aufs: adjust to v5.15 fs changes f45da75c8759 aufs5: core 047f57e07e01 aufs5: standalone 029fc15574c8 aufs5: mmap 610d0192ee94 aufs5: base d4e428d0ec5f aufs5: kbuild eb067eca251a yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 286af18d0875 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 24d59a4e26a6 yaffs2: v5.12+ build fixups (not runtime tested) 22c73536d5d7 yaffs: include blkdev.h 506b7251bfb8 yaffs: fix misplaced variable declaration a0e26ff364dc yaffs2: v5.6 build fixups b10b1b2d169e yaffs2: fix memory leak when /proc/yaffs is read ad9adccbb214 yaffs: add strict check when call yaffs_internal_read_super 2e3c3aec8279 yaffs: repair yaffs_get_mtd_device d662538516a7 yaffs: Fix build failure by handling inode i_version with proper atomic API 70a6113ee2c7 yaffs2: fix memory leak in mount/umount 3378e4a9e404 yaffs: Avoid setting any ACL releated xattr ec2284edddef Yaffs:check oob size before auto selecting Yaffs1 c2a49874051c fs: yaffs2: replace CURRENT_TIME by other appropriate apis e9a5105a3e73 yaffs2: adjust to proper location of MS_RDONLY 608807406f13 yaffs2: import git revision b4ce1bb (jan, 2020) 89e660ece42c initramfs: allow an optional wrapper script around initramfs generation b179dbc9aa10 iwlwifi: select MAC80211_LEDS conditionally 3fd5ca3673d0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) d1f6edbf0188 arm64/perf: Fix wrong cast that may cause wrong truncation d202fb2caf33 defconfigs: drop obselete options 9a27e3b5f4e7 arm64/perf: fix backtrace for AAPCS with FP enabled e20d8cf019b4 linux-yocto: Handle /bin/awk issues b6d2a3dbbd3a uvesafb: provide option to specify timeout for task completion adb40f1e6a1a uvesafb: print error message when task timeout occurs f280a1ed0962 compiler.h: Undef before redefining __attribute_const__ 4352732f268c vmware: include jiffies.h 7954a677968d Resolve jiffies wrapping about arp 5f28a1035d95 nfs: Allow default io size to be configured. 0d7260ad7106 check console device file on fs when booting 900a12e37e0a mount_root: clarify error messages for when no rootfs found 7b878cbea726 menuconfig,mconf-cfg: Allow specification of ncurses location 6604fc1763b3 modpost: mask trivial warnings 0d294adb09cb kbuild: exclude meta directory from distclean processing a097cdd95a9e powerpc: serialize image targets 5db6ec39a0a3 arm: serialize build targets cbabca27905e crtsavres: fixups for 5.4+ 7fc7656ed403 powerpc/ptrace: Disable array-bounds warning with gcc8 a5faac5a19a2 powerpc: Disable attribute-alias warnings from gcc8 186c54665b67 powerpc: add crtsavres.o to archprepare for kbuild d1ea862964ca powerpc: kexec fix for powerpc64 2ac35b89a0f9 powerpc: Add unwind information for SPE registers of E500 core 2e1c348a28bb mips: vdso: fix 'jalr $t9' crash in vdso code ec57870b303a mips: Kconfig: add QEMUMIPS64 option 6a81b3c08107 4kc cache tlb hazard: tlbp cache coherency 74e3b2a21e54 malta uhci quirks: make allowance for slow 4k(e)c 22e65b63d3b4 arm/Makefile: Fix systemtap b7f1ab59f19e vexpress: Pass LOADADDR to Makefile ce2800c73bf7 arm: ARM EABI socketcall 019d142fd956 ARM: LPAE: Invalidate the TLB for module addresses during translation fault (From OE-Core rev: 8d6940f6a2c5fb81d3ed8dafb95b52a013174a57) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* vim: Upgrade 9.1.1115 -> 9.1.1198Vijay Anusuri2025-04-011-2/+2
| | | | | | | | | | | | | | | | This includes CVE-fix for CVE-2025-27423 and CVE-2025-29768 Changes between 9.1.1115 -> 9.1.1198 ==================================== https://github.com/vim/vim/compare/v9.1.1115...v9.1.1198 (From OE-Core rev: 0ace90f2918496ceae32aebea05bb826d1e3dad6) Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 8e540bd287fd56e3a714f81395b59dd508a6d957) Signed-off-by: Steve Sakoman <steve@sakoman.com>
* python3: patch CVE-2025-0938Peter Marko2025-04-012-0/+132
| | | | | | | | | | | Pick commit mentioned in NDV CVE report https://github.com/python/cpython/commit/b8b4b713c5f8ec0958c7ef8d29d6711889bc94ab which is on 3.10 branch. (From OE-Core rev: 70036b4ea0ab968adab82fc632bb967f95203de2) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* poky.conf: add ubuntu2404 to SANITY_TESTED_DISTROSSteve Sakoman2025-03-271-0/+1
| | | | | | (From meta-yocto rev: af63d6abd596da87881485fcfcfb21e6847f1801) Signed-off-by: Steve Sakoman <steve@sakoman.com>
* libxcrypt-compat: Remove libcrypt.so to fix conflict with libcryptRobert Yang2025-03-271-1/+1
| | | | | | | | | | | | | | | | | | Fixed: IMAGE_INSTALL:append = " libxcrypt-compat" $ bitbake <image> -cpopulate_sdk file /usr/lib/libcrypt.so from install of libxcrypt-compat-dev-4.4.33-r0.0.aarch64 conflicts with file from package libcrypt-dev-4.4.33-r0.2.aarch64 Remove libcrypt.so like other files to fix the error. (From OE-Core rev: dc0c7a8c3d1d4f02869b7f0d42f704fd24bf0dde) (From OE-Core rev: 1172a71f2104454a13e64886adbdb381aa8d6e0e) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* xwayland: fix CVE-2022-49737Yogita Urade2025-03-272-0/+91
| | | | | | | | | | | | | | | | | | | In X.Org X server 20.11 through 21.1.16, when a client application uses easystroke for mouse gestures, the main thread modifies various data structures used by the input thread without acquiring a lock, aka a race condition. In particular, AttachDevice in dix/devices.c does not acquire an input lock. Reference: https://nvd.nist.gov/vuln/detail/CVE-2022-49737 Upstream patch: https://gitlab.freedesktop.org/xorg/xserver/-/commit/dc7cb45482cea6ccec22d117ca0b489500b4d0a0 (From OE-Core rev: 740ea9019cf5cf309c5a4ef380eac17d21078ac8) Signed-off-by: Yogita Urade <yogita.urade@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* xserver-xorg: fix CVE-2022-49737Yogita Urade2025-03-272-0/+91
| | | | | | | | | | | | | | | | | | | In X.Org X server 20.11 through 21.1.16, when a client application uses easystroke for mouse gestures, the main thread modifies various data structures used by the input thread without acquiring a lock, aka a race condition. In particular, AttachDevice in dix/devices.c does not acquire an input lock. Reference: https://nvd.nist.gov/vuln/detail/CVE-2022-49737 Upstream patch: https://gitlab.freedesktop.org/xorg/xserver/-/commit/dc7cb45482cea6ccec22d117ca0b489500b4d0a0 (From OE-Core rev: c6a8ad45174a416c4129deb210eab9b7721ce01d) Signed-off-by: Yogita Urade <yogita.urade@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* libxslt: Fix for CVE-2025-24855Vijay Anusuri2025-03-272-0/+135
| | | | | | | | | Upstream-Commit: https://gitlab.gnome.org/GNOME/libxslt/-/commit/c7c7f1f78dd202a053996fcefe57eb994aec8ef2 (From OE-Core rev: eced74ca3be7d6c47e7c50152a36e0b1e8eba74a) Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
* libxslt: Fix for CVE-2024-55549Vijay Anusuri2025-03-272-1/+52
| | | | | | | | | Upstream-Commit: https://gitlab.gnome.org/GNOME/libxslt/-/commit/46041b65f2fbddf5c284ee1a1332fa2c515c0515 (From OE-Core rev: eae0c33539f302124544373b74bd6883467ff549) Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>