Commit Graph

69345 Commits

Author SHA1 Message Date
Paul Barker
cf615e1d3b build-appliance-image: Update to kirkstone head revision
(From OE-Core rev: c4194cadb1180da37514c55cd97827eb0269c8e2)

Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:59:25 +00:00
Yoann Congal
1aee6e9648 createrepo-c: Fix createrepo-c-native build on GCC14 hosts (e.g. Fedora 41)
This version of createrepo-c does a wrong pointer assignment, and on GCC14[0]
hosts (e.g. Fedora 41), this fails to build with:
  FAILED: src/python/CMakeFiles/_createrepo_c.dir/createrepo_cmodule.c.o
  build/tmp-glibc/hosttools/gcc [...] python/createrepo_cmodule.c
  python/createrepo_cmodule.c:82:41: error: initialization of ‘PyObject * (*)(PyObject *, PyObject *)’ {aka ‘struct _object * (*)(struct _object *, struct _object *)’} from incompatible pointer type ‘PyObject * (*)(PyObject *, PyObject *, PyObject *)’ {aka ‘struct _object * (*)(struct _object *, struct _object *, struct _object *)’} [-Wincompatible-pointer-types]
     82 |     {"xml_parse_main_metadata_together",(PyCFunctionWithKeywords)py_xml_parse_main_metadata_together,
        |                                         ^
  src/python/createrepo_cmodule.c:82:41: note: (near initialization for ‘createrepo_c_methods[15].ml_meth’)

Add a patch to fix the pointer assignment. The patched code has since
been removed by upstream.

[0]: https://gcc.gnu.org/gcc-14/porting_to.html#incompatible-pointer-types

(From OE-Core rev: 17b1a1cd097c2bd6d690a3cd44561c2d40844088)

Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:33 +00:00
Yoann Congal
3a4d4d66ba libcomps: Fix libcomps-native build on GCC14 hosts (e.g. Fedora 41)
This version of libcomps does wrong pointer assignment, and on GCC14
hosts (e.g. Fedora 41), this fails to build with:
| build/tmp-glibc/work/x86_64-linux/libcomps-native/0.1.18-r0/git/libcomps/tests/check_parse.c:588:11: error: assignment to ‘COMPS_DocGroup *’ from incompatible pointer type ‘COMPS_DocCategory *’ [-Wincompatible-pointer-types]
|   588 |         g = (COMPS_DocCategory*)it->comps_obj;

Backport a patch making the assignment correct.

(From OE-Core rev: 1853a4b2e22aaa1e8e7929bb13eaddbdd4542c71)

Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:33 +00:00
Aleksandar Nikolic
77a8ab27c4 scripts/install-buildtools: Update to 4.0.33
Update to the 4.0.33 release of the 4.0 series for buildtools

(From OE-Core rev: a082e65235520a888c1413d33f08c9966f3e0e43)

Signed-off-by: Aleksandar Nikolic <aleksandar.nikolic22@pm.me>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:33 +00:00
Vijay Anusuri
b0c2d6dfec python3-pip: Fix CVE-2026-1703
Pick patch according to [1]

[1] https://security-tracker.debian.org/tracker/CVE-2026-1703
[2] https://nvd.nist.gov/vuln/detail/CVE-2026-1703
[3] https://github.com/pypa/pip/pull/13777

(From OE-Core rev: 0535436a9ceedcf690001cd705be753de4e4915f)

Signed-off-by: Vijay Anusuri <vanusuri@mvista.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:33 +00:00
Martin Jansa
dde51fb77f lsb.py: strip ' from os-release file
In gentoo the file looks like this:

NAME='Gentoo'
ID='gentoo'
PRETTY_NAME='Gentoo Linux'
VERSION='2.18'
VERSION_ID='2.18'
HOME_URL='https://www.gentoo.org/'
SUPPORT_URL='https://www.gentoo.org/support/'
BUG_REPORT_URL='https://bugs.gentoo.org/'
ANSI_COLOR='1;32'

' were added with:
2f590e35c9

before that the os-release file looked like this:

NAME=Gentoo
ID=gentoo
PRETTY_NAME="Gentoo Linux"
ANSI_COLOR="1;32"
HOME_URL="https://www.gentoo.org/"
SUPPORT_URL="https://www.gentoo.org/support/"
BUG_REPORT_URL="https://bugs.gentoo.org/"
VERSION_ID="2.18"

The ' is stripped from the ID later in distro_identifier with:
    # Filter out any non-alphanumerics and convert to lowercase
    distro_id = re.sub(r'\W', '', distro_id).lower()
but not from version which results in a weird NATIVELSBSTRING like:
    NATIVELSBSTRING      = "gentoo-'2.18'"

And similarly the directory name in sstate-cache:

oe-core $ ls -d sstate-cache/gentoo-*
"sstate-cache/gentoo-'2.18'"   sstate-cache/gentoo-2.18

(From OE-Core rev: 5786749670fc1fa17e32b9eed286630739ddbc16)

Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:33 +00:00
Martin Jansa
bfb2f38e30 libpam: re-add missing libgen include
It was added by original commit for CVE-2025-6020-01.patch
475bd60c55 (diff-05f443e6acbe32a148a45648148739bf6f02f13acc5c20c6037bf933223d4d77)
but removed here in the rebase, causing:

../../../Linux-PAM-1.5.3/modules/pam_namespace/pam_namespace.c:326:11: error: call to undeclared function 'dirname'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
  326 |         parent = dirname(buf);
      |                  ^
../../../Linux-PAM-1.5.3/modules/pam_namespace/pam_namespace.c:326:9: error: incompatible integer to pointer conversion assigning to 'char*' from 'int' [-Wint-conversion]
  326 |         parent = dirname(buf);
      |                ^ ~~~~~~~~~~~~

Backport 6d88a28ac7b6ff61808eb46e5c85dabd17c77f2e from scarthgap.
It's reproducible with clang-18 from kirkstone-clang18 branch of
meta-clang.

(From OE-Core rev: 6888cb09ad069cd937ac4498640fdd5bed2e7a51)

Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:33 +00:00
Hitendra Prajapati
2e426aeb73 libpam: fix CVE-2024-10963
Pick up "Mitigated by" patch from Debian security tracker.
[0]: https://security-tracker.debian.org/tracker/CVE-2024-10963

patch[1] which fixes this vulnerability as mentioned in Debian report.

[1] 940747f88c

(From OE-Core rev: 5a9c3998d4924360e0c6a967adfc4b7628a6fa4e)

Signed-off-by: Hitendra Prajapati <hprajapati@mvista.com>
[YC: Debian security tracker: "The vulnerable code was introduced in
1.5.3" but the vulnerable code was backported in commit 399d4986a7
(libpam: fix CVE-2022-28321, 2022-10-28)]
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Yoann Congal
d8712ea143 gtk+3: fix incompatible-pointer-types errors for native build on Fedora 41
Backport 2 patchs to fix incompatible-pointer-types error when building
gtk+3-native on Fedora 41 host:
  tests/testinput.c:197:79: error: passing argument 1 of ‘gdk_event_get_source_device’ from incompatible pointer type [-Wincompatible-pointer-types]
  gtk/gtklabel.c:4235:32: error: passing argument 1 of ‘gtk_widget_queue_resize’ from incompatible pointer type [-Wincompatible-pointer-types]

On autobuilder: fedora41-vk-1:~$ gcc --version
gcc (GCC) 14.3.1 20251022 (Red Hat 14.3.1-4)

GCC 14 notoriously restricted how pointer types are converted:
https://gcc.gnu.org/gcc-14/porting_to.html#incompatible-pointer-types

Suggested-by: Fabien Thomas <fabien.thomas@smile.fr>
(From OE-Core rev: 99c8e2def939f0801a67fb8384c57d08732dd020)

Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Peter Marko
53045adf7b tiff: set status of CVE-2025-61145 as fixed by patch for CVE-2025-8961
Gitlab issues for these two CVEs mentioned in NVD inks lead to the same
merge request.

(From OE-Core rev: 5c1ca090597aefa55f23ce714409137461dd7dab)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Fabien Thomas <fabien.thomas@smile.fr>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Peter Marko
28f7821cc4 tiff: patch CVE-2025-61144
Pick patch from merge request mentioned in NVD report.

(From OE-Core rev: de9ef3f41dc00ef53231d76560d8d5face7f9a3e)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Fabien Thomas <fabien.thomas@smile.fr>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Peter Marko
20c48403c1 tiff: patch CVE-2025-61143
Pick patch from merge request mentioned in NVD report.

(From OE-Core rev: 7a02f5d41c9fdde4dbec9e35d2535a58d727b8f7)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Fabien Thomas <fabien.thomas@smile.fr>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Peter Marko
06f1750ad5 busybox: patch CVE-2025-60876
Although the patch was not merged yet, Debian already took it ([1]).
Since busybox CVE handling is slow, follow Debian decision.

[1] https://sources.debian.org/src/busybox/1:1.37.0-10.1/debian/patches/wget-disallow-control-chars-in-URLs-CVE-2025-60876.patch

(From OE-Core rev: 6274e354680db9521d188309cb32d90996ebb3e5)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Fabien Thomas <fabien.thomas@smile.fr>
[YC: fixed weird encoding in URL, added "CVE-" to subject]
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Peter Marko
104fe45d36 inetutils: patch CVE-2026-28372
Pick patch according to [1] (equivalent to patch from [2]).

This CVE is needed if util-linux >= 2.40 is used which is not the case
in Yocto kirkstone, however it's always possible that users update
packages in their layers.

[1] https://security-tracker.debian.org/tracker/CVE-2026-28372
[2] https://nvd.nist.gov/vuln/detail/CVE-2026-28372

(From OE-Core rev: 46bceb9c66068f6aa9489ef6a7f1a8eafca690a9)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Fabien Thomas <fabien.thomas@smile.fr>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Peter Marko
3f17dff885 ffmpeg: patch CVE-2025-10256
Pick patch metioned in NVD report.

(From OE-Core rev: d02ce6f66ee2a842ef9a27f481ce7f0ac411673b)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Fabien Thomas <fabien.thomas@smile.fr>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Shaik Moin
101fc59b73 gdk-pixbuf: Fix CVE-2025-6199
Backport the fix for CVE-2025-6199
Add below patch to fix
CVE-2025-6199.patch

Reference: In Ubuntu and debian, fixed patch is given -> [c4986342b2]

(From OE-Core rev: 214b7bc0d2325ab1f8a5c567abd2851c07f45942)

Signed-off-by: Shaik Moin <moins@kpit.com>
Signed-off-by: Fabien Thomas <fabien.thomas@smile.fr>
[YC: removed the extra ".patch" in patches Backport URL]
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Peter Marko
66d06f3bde alsa-lib: patch CVE-2026-25068
Pick patch mentioned in NVD report.
It also includes CVE ID in commit message.

Use older SNDERR funtion as new one is not yet available.
This was copied from Debian patch.

(From OE-Core rev: 2bcdcd8471d9769eaf9304809d9b8e0893cae8e0)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Fabien Thomas <fabien.thomas@smile.fr>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Ken Kurematsu
91495b0f53 libtheora: set CVE_PRODUCT
In the NVD database, the product name of libtheora is theora.
This was set to ensure that cve-check works correctly.

(From OE-Core rev: 0c30af4d17c4619e42c84e7f015e27ada5777ff7)

Signed-off-by: Ken Kurematsu <k.kurematsu@nskint.co.jp>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a8ddda60332e2a3219e905c1545b5da917f855c6)
Signed-off-by: Fabien Thomas <fabien.thomas@smile.fr>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-03-20 09:55:32 +00:00
Kristiyan Chakarov
02c15addea overview-manual: escape wildcard in inline markup
This change escapes the wildcard in 'recipes-*' to properly italicize
the string

(From yocto-docs rev: 025ef10f4472082069a3237e21aa773354fa5ad9)

Signed-off-by: Kristiyan Chakarov <kichakarov0@gmail.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit b5a4dca823bcc04c0254a0f53a28f61969fb6c31)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2026-03-16 10:25:59 +00:00
Antonin Godard
ed80e89d57 ref-manual/system-requirements.rst: update end-of-life distros
Fedora 41 was made obsolete on 2025-12-15 [1].

[1]: https://docs.fedoraproject.org/en-US/releases/eol/

(From yocto-docs rev: 244e1f73d6c402ecb7872337f9850ded87f0154c)

Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2026-03-16 10:25:59 +00:00
Yoann Congal
8334e82e1d poky.conf: add fedora-41, debian-12, rocky-8&9 to SANITY_TESTED_DISTROS
Those are already documented as supported:
https://git.yoctoproject.org/yocto-docs/tree/documentation/ref-manual/system-requirements.rst?h=kirkstone#n65

Actually support them in sanity check.

(From meta-yocto rev: 1d3874a383023a5e2433e0fcfd87ac5d1e6d341d)

Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2026-02-28 10:22:50 +00:00
Paul Barker
3f5e203cbf build-appliance-image: Update to kirkstone head revision
(From OE-Core rev: 7b6c9faa301a6d058ca34e230586f6a81ffa3ffb)

Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 16:00:35 +00:00
Paul Barker
974e67818b poky.conf: Bump version for 4.0.34 release
(From meta-yocto rev: 30367a5e4c0bf2d5c1b335efd252036ee131a154)

Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:03 +00:00
Antonin Godard
79851c1eb5 what-i-wish-id-known.rst: replace figure by the new SVG
We have a new SVG figure for the Yocto Project workflow figure, which
was updated with d2aaf54bee49 ("overview-manual: convert
YP-flow-diagram.png to SVG"). The one in the "What I wish I’d known
about Yocto Project" is the same. Remove the PNG and make a reference to
the new one.

(From yocto-docs rev: 7c348dd67cfd169b1a56bf969606b03dccb76c56)

Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 4023c47cb6628971b0a142067c4a910420408bb9)
[Antonin Godard: fix conflicts]
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:03 +00:00
Michael Opdenacker
5479a272a7 ref-manual/classes.rst: fix broken links to U-Boot documentation
In the chapter describing the "uboot-sign" class

(From yocto-docs rev: 72024530cefd4265036f83ead61030862a13b245)

Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 7d1caa1d3229fb49d6d08ca4952b046c3164e628)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:03 +00:00
Yoann Congal
3588c550b1 ref-manual/system-requirements.rst: update untested distros
Some distros were removed from the autobuilder 5 months ago:
* 070e6bf (config.py: Drop ubuntu2004 workers, 2025-10-01)
* 8238327 (config.py: ubuntu24010 was replaced with ubuntu2504, 2025-10-01)

Update their status in the supported distros list.

(From yocto-docs rev: cca4e1c6127f06d63124c67a14a8921dbb3a5409)

Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 2c9de0d74659fef6d7b0054dfd76905fba6ef81d)
[AG: fix cherry-pick conflicts]
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:03 +00:00
Scott Murray
3255405278 u-boot: move CVE patch out of u-boot-common.inc
Commit f5b980ad added CVE-2024-42040.patch to the base U-Boot
SRC_URI in u-boot-common.inc as opposed to adding it in the
u-boot recipe where all the other patch additions are. This
breaks at least one downstream BSP that reuses u-boot-common.inc
(meta-sifive), so move that patch addition to the recipe file
with all the others.

(From OE-Core rev: 5db1bffe13ec881b7fa4ebf4ed30493e8714d7f2)

Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:03 +00:00
Hugo SIMELIERE
fd88d8cc35 libtasn1: Fix CVE-2025-13151
Upstream-Status: Backport from d276cc495a

(From OE-Core rev: 9ec3d69433e1c9d01fc0a140322e5e3cb1496483)

Signed-off-by: Bruno VERNAY <bruno.vernay@se.com>
Signed-off-by: Hugo SIMELIERE <hsimeliere.opensource@witekio.com>
[YC: pick the merged commit from the MR linked from the NVD report]
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:03 +00:00
Peter Marko
caac6c06bb glibc: stable 2.35 branch updates
git log --oneline 4e50046821f05ada5f14c76803845125ddb3ed7d..bb59339d02faebac534a87eea50c83c948f35b77
bb59339d02 (HEAD -> release/2.35/master, origin/release/2.35/master) posix: Reset wordexp_t fields with WRDE_REUSE (CVE-2025-15281 / BZ 33814)
66f0cb057c resolv: Fix NSS DNS backend for getnetbyaddr (CVE-2026-0915)
499d1ccafc memalign: reinstate alignment overflow check (CVE-2026-0861)
9e1a305028 nptl: Optimize trylock for high cache contention workloads (BZ #33704)
a94467ce05 ppc64le: Power 10 rawmemchr clobbers v20 (bug #33091)

Testing Results:
             Before     After   Diff
PASS         4774      4770     -4
XPASS        6         6         0
FAIL         149       154      +5
XFAIL        16        16        0
UNSUPPORTED  246       246       0

Changes in failed testcases:

testcase-name                                    before  after
malloc/tst-malloc-fork-deadlock-malloc-hugetlb2  FAIL    PASS
posix/tst-wait4                                  FAIL    PASS
malloc/tst-malloc-too-large                      PASS    FAIL
malloc/tst-malloc-too-large-malloc-check         PASS    FAIL
malloc/tst-malloc-too-large-malloc-hugetlb1      PASS    FAIL
malloc/tst-malloc-too-large-malloc-hugetlb2      PASS    FAIL
malloc/tst-malloc-too-large-mcheck               PASS    FAIL
malloc/tst-mallocfork2                           PASS    FAIL
malloc/tst-mallocfork3                           PASS    FAIL

(From OE-Core rev: 8102d2252d50a52fbf48810226bcff92a925a39e)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:03 +00:00
Peter Marko
822c6db93e harfbuzz: ignore CVE-2026-22693
Patch [1] linked in NVD report fixes issue in cache code introduced only
in v6.0.0 (as can be seen in tags containind that commit).

[1] 1265ff8d99
[2] 7a004a7ac2

(From OE-Core rev: 1d7c87fa2e499927cb6a26e4b2ad99e6127b6e33)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:03 +00:00
Yoann Congal
b5f43fb19e pseudo: Update to include a fix for systems with kernel <5.6
$ git log --oneline --no-decorate  9ab513512d8b5180a430ae4fa738cb531154cdef..43cbd8fb4914328094ccdb4bb827d74b1bac2046
43cbd8f ports/linux: define __NR_openat2 if missing

(From OE-Core rev: 61c7d9337d63fa6e022c047bc7c21004b038f697)

Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e9a35f32b983de724d2c2e436c017b49d5b70469)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Richard Purdie
56e5f34c39 pseudo: Update to include an openat2 fix
We're seeing occasional autobuilder failures with tar issues related to openat2.
It appears there are definitions missing on debian 11 and opensuse 15.5 systems
which mean the openat2 syscall intercept isn't compiled in. This then triggers
on systems using the openat2 syscall, such as alma9 where it is used in a tar
CVE fix.

This updates to include the fix from upstream pseudo (along with a compile warning
fix).

This was tested by taking sstate for pseudo-native from a debian 11 system and using
it in a build of "bitbake nativesdk-git -c install" on a alma9 system where that task
failed. After this fix, it completes.

(From OE-Core rev: 2759db87db7529d60a5b2344dc1db7720e3518d6)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2c20c05b324e5d6564c8554381019170839509bb)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Richard Purdie
c129bb9b7e pseudo: Update to 1.9.3 release
Pulls in the following changes:

  Makefile.in: Bump version to 1.9.3
  configure: Minor code quality changes
  pseudo: code quality scan - resolved various potential issues
  makewrappers: improve error handling and robustness
  Update COPYRIGHT files
  ports/linux/pseudo_wrappers.c: Call the wrappers where possible
  ports/linux/pseudo_wrappers.c: Workaround compile error on Debian 11
  ports/linux/pseudo_wrappers.c: Reorder the syscall operations
  ports/unix/guts/realpath.c: Fix indents
  pseudo_util.c: Skip realpath like expansion for /proc on Linux
  test/test-proc-pipe.sh: Add test case for proc pipes
  ports/unix/guts/realpath.c: realpath fails if the resolved path doesn't exist

(From OE-Core rev: 322ce7900cf25f3a8d96a75360af56815e32ad7e)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 524f4bbb11f9c7e0126e8bd46af217b452d48f5e)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Ankur Tyagi
b600216fd2 avahi: patch CVE-2026-24401
Details https://nvd.nist.gov/vuln/detail/CVE-2026-24401

(From OE-Core rev: 6930162c44ae94824ff66b0a0fcb02a0a92c02e8)

Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 183d0ee54f1c194e245a7bbf243c19b3c2acf4f5)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Amaury Couderc
e7763a1e0a avahi: patch CVE-2025-68471
(From OE-Core rev: 1786f154563c68739d7dc306b0e332d058ccd3f0)

Signed-off-by: Amaury Couderc <amaury.couderc@est.tech>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5ec4156330c765bc52dbce28dbba6def9868d30f)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Amaury Couderc
8b83d6e2f9 avahi: patch CVE-2025-68468
(From OE-Core rev: 7bb3001ce034af29b3b09624cf692d8c0e3346f9)

Signed-off-by: Amaury Couderc <amaury.couderc@est.tech>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9f2ed8adc37a42b561b3c4853cf8106fba39889e)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Ankur Tyagi
c63dd35b57 avahi: patch CVE-2025-68276
Backport the patch[1] from the PR[2] mentioned in the nvd[3].

[1] 2d48e42d44
[2] https://github.com/avahi/avahi/pull/806
[3] https://nvd.nist.gov/vuln/detail/CVE-2025-68276

Dropped CI changes from the original PR during backport.

(From OE-Core rev: a0768998acf23a7d00a5fdbc6fa5302eb144a850)

Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Peter Marko
e19fc15027 vim: ignore CVE-2025-66476
Details https://nvd.nist.gov/vuln/detail/CVE-2025-66476

(From OE-Core rev: a94b793da4e41bd5a31d6ce32860d01e00ca05b0)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Peter Marko
f61eb0f68d ffmpeg: set status of CVE-2025-25468 and CVE-2025-25469
These CVEs have the same fix commit per NVD report [3].
Blaming the fix [1] is showing that the return without freeing memory
was introduced in [2].

[1] d5873be583
[2] d38fc25519
[3] https://nvd.nist.gov/vuln/detail/CVE-2025-25468

(From OE-Core rev: 67d722ea17ef92e70bfcffbeaba52ddf55d5888a)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Peter Marko
2c14074be7 glib-2.0: patch CVE-2026-1489
Pick patch from [1] linked from [2].

[1] https://gitlab.gnome.org/GNOME/glib/-/issues/3872
[2] https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4984

(From OE-Core rev: ad9c57c36f6afa675468426da4ba1263eaeee2c5)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Peter Marko
ad4c2759f0 glib-2.0: patch CVE-2026-1485
Pick patch from [1] linked from [2].

[1] https://gitlab.gnome.org/GNOME/glib/-/issues/3871
[2] https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4981

(From OE-Core rev: 1996441fcebaa2e08eecceb3cf00d39fda8cff35)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Peter Marko
69d100e7f0 glib-2.0: patch CVE-2026-1484
Pick patches from [1] linked from [2].

[1] https://gitlab.gnome.org/GNOME/glib/-/issues/3870
[2] https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4979

(From OE-Core rev: 045f902fd570df65f6ed2534d8885cee26fb6ef1)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Peter Marko
3825d4306a glib-2.0: patch CVE-2026-0988
Pick relevant commit from [2] linked from [1].

[1] https://gitlab.gnome.org/GNOME/glib/-/issues/3851
[2] https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4944

(From OE-Core rev: bb6a6ab6d948ce5a8a86479c68af43f7f86b98a5)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Fabio Berton
b249264a0c classes/buildhistory: Do not sign buildhistory commits
This change adds the --no-gpg-sign option to prevent buildhistory
commits from failing due to GPG signing issues. Depending on the setup,
buildhistory may fail to create a commit if the user has the
commit.gpgsign option enabled.

For example, if the user creates a signing key that requires a password,
the commit won't be created and will fail with the following error:

/
|error: Enter passphrase: Load key "/home/<user>/.ssh/id_ed25519":
|incorrect passphrase supplied to decrypt private key?
|fatal: failed to write commit object
\

The bitbake command won't fail, but buildhistory won't have a commit.
Also, the commit may silently fail when building inside a container due
to missing packages or issues with accessing the GPG agent.

This is similar to [1], and signing the buildhistory commit
should be avoided to prevent such issues.

1 - https://git.openembedded.org/openembedded-core/commit/?id=7595a0a63a933af9dd9d1e458dc34a4ba80d9eae

(From OE-Core rev: 5294d15737e176ee96d9b590808ded2164386362)

Signed-off-by: Fabio Berton <fabio.berton@ctw.bmwgroup.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a5e18714aee52db898aaf9d222fb5a4168bde96e)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Peter Marko
f210d0fc05 libpng: patch CVE-2026-25646
Backport patch mentioned in NVD CVE report.

(From OE-Core rev: 4d628c57c60dd53b71bb63d00225a7a6e2259442)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Peter Marko
67e8e2cc2f libpng: patch CVE-2026-22801
Pick comit per [1].

[1] https://github.com/pnggroup/libpng/security/advisories/GHSA-vgjq-8cw5-ggw8

(From OE-Core rev: e7e48abaee6e6e566ef4e5f075b89038bf284714)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Peter Marko
4597dd50ee libpng: patch CVE-2026-22695
Pick commit per [1].
This CVE is regression of fix for CVE-2025-65018.

[1] https://security-tracker.debian.org/tracker/CVE-2026-22695

(From OE-Core rev: 078627f4a208623bc236887682f8a1f0c88f2626)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Vijay Anusuri
a3d6476e85 bind: Upgrade 9.18.41 -> 9.18.44
This upgrade fixes CVE-2025-13878

Changelog
==========
https://downloads.isc.org/isc/bind9/9.18.44/doc/arm/html/notes.html

(From OE-Core rev: d8e70bd838c3b399a2b7a0a7672d8f57a0315e5a)

Signed-off-by: Vijay Anusuri <vanusuri@mvista.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Bruce Ashfield
82329c1ced linux-yocto/5.15: update to v5.15.199
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:

    7b232985052fc Linux 5.15.199
    7e6040853f5b5 wifi: cfg80211: init wiphy_work before allocating rfkill fails
    c6d143fc945f7 wifi: cfg80211: fully move wiphy work to unbound workqueue
    8930a3e1568cf wifi: cfg80211: cancel wiphy_work before freeing wiphy
    d81ebee178731 wifi: cfg80211: fix wiphy delayed work queueing
    4737cc74b2fd8 wifi: cfg80211: use system_unbound_wq for wiphy work
    c8b15b0d2eec3 team: Move team device type change at the end of team_port_add
    9b32d72687cfb pinctrl: meson: mark the GPIO controller as sleeping
    2ccfb37ef544f mptcp: avoid dup SUB_CLOSED events after disconnect
    e69e435ec6e68 writeback: fix 100% CPU usage when dirtytime_expire_interval is 0
    52755c5680ce3 drm/imx/tve: fix probe device leak
    28f5cbcce5d9d pinctrl: lpass-lpi: implement .get_direction() for the GPIO driver
    46933b9bc76f4 net/sched: act_ife: convert comma to semicolon
    ffac9893ce8d0 btrfs: prevent use-after-free on page private data in btrfs_subpage_clear_uptodate()
    e11e8a29b304c drm/amdkfd: fix a memory leak in device_queue_manager_init()
    dc934d9667399 can: esd_usb: esd_usb_read_bulk_callback(): fix URB memory leak
    186df821de0f3 genirq/irq_sim: Initialize work context pointers properly
    00d52b2fa6083 HID: uclogic: Add NULL check in uclogic_input_configured()
    51f49e3927ad5 HID: uclogic: Correct devm device reference for hidinput input_dev name
    c3a2e803b24eb wifi: mac80211: move TDLS work to wiphy work
    9ac16e7b0b828 wifi: mac80211: use wiphy work for sdata->work
    ddb1bfbf4ab5c wifi: cfg80211: add a work abstraction with special semantics
    e1fa25a91091b Bluetooth: Fix hci_suspend_sync crash
    b15c9a21950e1 net: stmmac: make sure that ptp_rate is not 0 before configuring EST
    65d04291adf7c usbnet: Fix using smp_processor_id() in preemptible code warnings
    49b57b98fa601 NFSD: fix race between nfsd registration and exports_proc
    98fc9c2cc45cf ext4: fix memory leaks in ext4_fname_{setup_filename,prepare_lookup}
    05db2b850a2b8 espintcp: fix skb leaks
    0561aa6033dd1 blk-cgroup: Reinit blkg_iostat_set after clearing in blkcg_reset_stats()
    bdf38063fd15f fs/ntfs3: Initialize allocated memory before use
    446beed646b2e ksmbd: fix use-after-free in ksmbd_tree_connect_put under concurrency
    c4079a34c0ade drm/ttm: fix undefined behavior in bit shift for TTM_TT_FLAG_PRIV_POPULATED
    10644e8839544 ksm: use range-walk function to jump over holes in scan_get_next_rmap_item
    f87f4de092c7a mm/pagewalk: add walk_page_range_vma()
    f569f5b8bfd51 ksmbd: smbd: fix dma_unmap_sg() nents
    2c34622d9c724 mei: trace: treat reg parameter as string
    d5e80d1f97ae5 ALSA: scarlett2: Fix buffer overflow in config retrieval
    95ab26bc462d7 nvme: fix PCIe subsystem reset controller state transition
    886d98fa48580 nvme-pci: do not directly handle subsys reset fallout
    25c6804cbde4b nvme-fc: rename free_ctrl callback to match name pattern
    937309b52ca26 xfs: set max_agbno to allow sparse alloc of last full inode chunk
    6393da54dcb34 dmaengine: stm32: dmamux: fix device leak on route allocation
    7ff0a6402741e dmaengine: stm32: dmamux: fix OF node leak on route allocation failure
    060b08d72a38b w1: therm: Fix off-by-one buffer overflow in alarms_store
    fb6fcdc03fce4 w1: w1_therm: use swap() to make code cleaner
    7b94e4650020e arm64: dts: rockchip: remove redundant max-link-speed from nanopi-r4s
    427b0fb30ddec scsi: xen: scsiback: Fix potential memory leak in scsiback_remove()
    600894c7a2363 iio: adc: exynos_adc: fix OF populate on driver rebind
    f6b672daaca1c of: platform: Use default match table for /firmware
    16c806d04be13 comedi: Fix getting range information for subdevices 16 to 255
    2b1bef126bbb8 tls: Use __sk_dst_get() and dst_dev_rcu() in get_netdev_for_sock().
    10d1b3cf657d5 net: Add locking to protect skb->dev access in ip_output
    aade7df55e12e mptcp: only reset subflow errors when propagated
    461f1832a6d1c scsi: qla2xxx: edif: Fix dma_free_coherent() size
    f8cd47294b4bf scsi: be2iscsi: Fix a memory leak in beiscsi_boot_get_sinfo()
    df13548c0a94f ASoC: fsl: imx-card: Do not force slot width to sample width
    a4181b228db3b dma/pool: distinguish between missing and exhausted atomic pools
    1dd15630fc633 gpiolib: acpi: use BIT_ULL() for u64 mask in address space handler
    65ba13a5b3d05 scsi: firewire: sbp-target: Fix overflow in sbp_make_tpg()
    478873f7324f7 net: bridge: fix static key check
    eaa5da5130ded nfc: nci: Fix race between rfkill and nci_unregister_device().
    1d8ae83e1c61b net/mlx5e: Account for netdev stats in ndo_get_stats64
    138dbe22d8854 net/mlx5e: Report rx_discards_phy via rx_dropped
    ba253d322e536 net/mlx5e: Expose rx_oversize_pkts_buffer counter
    b3f0dab4f9682 net/mlx5: Add HW definitions of vport debug counters
    5b47b402f5833 ice: stop counting UDP csum mismatch as rx_errors
    65e976e1f474a nfc: llcp: Fix memleak in nfc_llcp_send_ui_frame().
    b11e6f926480a rocker: fix memory leak in rocker_world_port_post_fini()
    9fe793a779ce8 ipv6: use the right ifindex when replying to icmpv6 from localhost
    94ae00a809c07 net: mvpp2: cls: Fix memory leak in mvpp2_ethtool_cls_rule_ins()
    2b65e3ae33818 net/mlx5: Fix memory leak in esw_acl_ingress_lgcy_setup()
    ccc683f597ceb Bluetooth: hci_uart: fix null-ptr-deref in hci_uart_write_work
    feae34c992eb7 bpf: Reject narrower access to pointer ctx fields
    e0ffb64a2d72c bpf: Do not let BPF test infra emit invalid GSO types to stack
    ad97b9a55246e migrate: correct lock ordering for hugetlb file folios
    ef6e608e5ee71 can: usb_8dev: usb_8dev_read_bulk_callback(): fix URB memory leak
    b5a1ccdc63b71 can: mcba_usb: mcba_usb_read_bulk_callback(): fix URB memory leak
    40a3334ffda47 can: kvaser_usb: kvaser_usb_read_bulk_callback(): fix URB memory leak
    f48eabd15194b can: ems_usb: ems_usb_read_bulk_callback(): fix URB memory leak
    e2f9c751f73a2 irqchip/gic-v3-its: Avoid truncating memory addresses
    ede8ce83c2184 perf/x86/intel: Do not enable BTS for guests
    6e0110ea90313 netrom: fix double-free in nr_route_frame()
    8b57bf1d3b1db uacce: ensure safe queue release with state management
    ebfa85658a39b uacce: implement mremap in uacce_vm_ops to return -EPERM
    1bc3e51367c42 uacce: fix cdev handling in the cleanup path
    64015cbf06e8b intel_th: fix device leak on output open()
    948615429c9f2 slimbus: core: fix device reference leak on report present
    00cf6f7478c9f slimbus: core: fix runtime PM imbalance on report present
    6c77ce4da447a octeontx2: Fix otx2_dma_map_page() error return code
    361df59ad0130 arm64: Set __nocfi on swsusp_arch_resume()
    0d7c9e793e351 wifi: rsi: Fix memory corruption due to not set vif driver data size
    de34a80e0d6ec wifi: mwifiex: Fix a loop in mwifiex_update_ampdu_rxwinsize()
    fc8da65f9fe1b wifi: ath10k: fix dma_free_coherent() pointer
    c1c758ecd68bf mmc: rtsx_pci_sdmmc: implement sdmmc_card_busy function
    56fb6efd5d04c ALSA: usb-audio: Fix use-after-free in snd_usb_mixer_free()
    afca7ff5d5d4d ALSA: ctxfi: Fix potential OOB access in audio mixer handling
    029efb5adffb1 iio: dac: ad5686: add AD5695R to ad5686_chip_info_tbl
    fdc8c835c637a iio: adc: at91-sama5d2_adc: Fix potential use-after-free in sama5d2_adc driver
    92a2745aa0f66 iio: adc: ad9467: fix ad9434 vref mask
    fb396ee1bc53a of: fix reference count leak in of_alias_scan()
    d117fdcb21b05 leds: led-class: Only Add LED to leds_list when it is fully ready
    f775881f99fa7 x86: make page fault handling disable interrupts properly
    dd9442aedbeae net/sched: act_ife: avoid possible NULL deref
    669bd7a54e626 octeontx2-af: Fix error handling
    3be945abdd228 bonding: provide a net pointer to __skb_flow_dissect()
    92c6dc181a18e be2net: Fix NULL pointer dereference in be_cmd_get_mac_from_list
    9d02de4b2fd6d drm/amd/pm: Workaround SI powertune issue on Radeon 430 (v2)
    078c6eef1db5f drm/amd/pm: Don't clear SI SMC table when setting power limit
    b339601c238af usbnet: limit max_mtu based on device's hard_mtu
    4630897eb1a03 ipv6: annotate data-race in ndisc_router_discovery()
    13f3b3b870688 mISDN: annotate data-race around dev->work
    bd495244dec6e net: hns3: fix the HCLGE_FD_AD_NXT_KEY error setting issue
    7d203254f04ff net: hns3: fix wrong GENMASK() for HCLGE_FD_AD_COUNTER_NUM_M
    435c3bd709642 ALSA: usb: Increase volume range that triggers a warning
    766e243ae8c8b regmap: Fix race condition in hwspinlock irqsave routine
    e18ce45f5c809 iio: adc: ad7280a: handle spi_setup() errors in probe()
    bea5c8df16866 staging:iio:adc:ad7280a: Register define cleanup.
    7023a74cdb01d x86/kfence: avoid writing L1TF-vulnerable PTEs
    4daf82511496a scsi: storvsc: Process unsupported MODE_SENSE_10
    e85531cefe175 Input: i8042 - add quirk for ASUS Zenbook UX425QA_UM425QA
    d303e5d338672 Input: i8042 - add quirks for MECHREVO Wujie 15X Pro
    7b673faac4784 Revert "nfc/nci: Add the inconsistency check between the input data length and count"
    c49b1646cc50f w1: fix redundant counter decrement in w1_attach_slave_device()
    2081f7ba69c7b comedi: dmm32at: serialize use of paged registers
    fee86edf5803f crypto: authencesn - reject too-short AAD (assoclen<8) to match ESP/ESN spec
    b8c24cf5268fb net/sched: qfq: Use cl_is_active to determine whether class is active in qfq_rm_from_ag
    ae810e6a8ac4f net/sched: Enforce that teql can only be used as root qdisc
    70feb16e3fbfb ipvlan: Make the addrs_lock be per port
    36c40a80109f1 l2tp: avoid one data-race in l2tp_tunnel_del_work()
    611ef4bd9c73d fou: Don't allow 0 for FOU_ATTR_IPPROTO.
    8568171dec862 net: fou: use policy and operation tables generated from the spec
    9e470606c4448 net: fou: rename the source for linking
    cef28f55a515b netlink: add a proto specification for FOU
    380a82d36e37d gue: Fix skb memleak with inner IP protocol 0.
    8f4e8887d43d4 amd-xgbe: avoid misleading per-packet error log
    784428ab1889e sctp: move SCTP_CMD_ASSOC_SHKEY right after SCTP_CMD_PEER_INIT
    72925dbb0c8c7 bonding: limit BOND_MODE_8023AD to Ethernet devices
    e85cf62f75505 net: usb: dm9601: remove broken SR9700 support
    bef3a83a9a67c testptp: Add option to open PHC in readonly mode
    6b32d042aa825 selftest/ptp: update ptp selftest to exercise the gettimex options
    8510559c0fa1e ptp: add testptp mask test
    3d4f2eda35897 selftests/ptp: Add -X option for testing PTP_SYS_OFFSET_PRECISE
    3d58f0709a292 selftests/ptp: Add -x option for testing PTP_SYS_OFFSET_EXTENDED
    3cc43c9b568a5 testptp: Add support for testing ptp_clock_info .adjphase callback
    f33c4d3f4b3f3 testptp: add option to shift clock by nanoseconds
    7d9aa9032d0a9 ptp: Add PHC file mode checks. Allow RO adjtime() without FMODE_WRITE.
    9c46bf50b676f posix-clock: Store file pointer in struct posix_clock_context
    62a5adf57b56e Fix memory leak in posix_clock_open()
    a006fc4485159 posix-clock: introduce posix_clock_context concept
    dc84036c173cf btrfs: fix deadlock in wait_current_trans() due to ignored transaction type
    41aac90212612 dmaengine: ti: k3-udma: fix device leak on udma lookup
    c933aa74d9f8d dmaengine: ti: dma-crossbar: fix device leak on am335x route allocation
    1d8478b31a3da dmaengine: ti: dma-crossbar: fix device leak on dra7x route allocation
    68ed0d88d1a70 dmaengine: sh: rz-dmac: Fix rz_dmac_terminate_all()
    4532f18e4ab36 dmaengine: qcom: gpi: Fix memory leak in gpi_peripheral_config()
    499ddae78c4ba dmaengine: lpc18xx-dmamux: fix device leak on route allocation
    b7bd948f89271 dmaengine: idxd: fix device leaks on compat bind and unbind
    4730f12a192d7 dmaengine: bcm-sba-raid: fix device leak on probe
    4c67b4f45c854 dmaengine: at_hdmac: fix device leak on of_dma_xlate()
    e8758f114a922 drm/vmwgfx: Fix an error return check in vmw_compat_shader_add()
    bb309377eece5 drm/panel-simple: fix connector type for DataImage SCF0700C48GGU18 panel
    c775abb6cd82a drm/nouveau/disp/nv50-: Set lock_core in curs507a_prepare
    eda99622e6f39 mm/page_alloc: make percpu_pagelist_high_fraction reads lock-free
    c85c550eff812 x86/resctrl: Fix memory bandwidth counter width for Hygon
    fa226f722e2fe x86/resctrl: Add missing resctrl initialization for Hygon
    d35365d8f8888 EDAC/i3200: Fix a resource leak in i3200_probe1()
    123a6bbe87cc1 EDAC/x38: Fix a resource leak in x38_probe1()
    6cf35964a8150 hrtimer: Fix softirq base check in update_needs_ipi()
    6241cd1d0acc2 ext4: fix iloc.bh leak in ext4_xattr_inode_update_ref
    e306c64bd2c56 nvme-pci: disable secondary temp for Wodposit WPBSNM8
    2e8ea7257c5fd USB: serial: ftdi_sio: add support for PICAXE AXE027 cable
    7e4c68838c605 USB: serial: option: add Telit LE910 MBIM composition
    23defd20f98f3 USB: OHCI/UHCI: Add soft dependencies on ehci_platform
    14739a3543c8d usb: dwc3: Check for USB4 IP_NAME
    742ff37b51270 phy: tegra: xusb: Explicitly configure HS_DISCON_LEVEL to 0x7
    e7e87af627449 phy: rockchip: inno-usb2: fix communication disruption in gadget mode
    53b1ed2f400ee phy: rockchip: inno-usb2: fix disconnection in gadget mode
    b6923f0ffb981 x86/kaslr: Recognize all ZONE_DEVICE users as physaddr consumers
    adabf01c19561 net: can: j1939: j1939_xtp_rx_rts_session_active(): deactivate session upon receiving the second rts
    aab3a76c03b7c ALSA: pcm: Improve the fix for race of buffer access at PCM OSS layer
    7d76380e98bfa HID: usbhid: paper over wrong bNumDescriptor field
    2b29f38f4f966 dmaengine: omap-dma: fix dma_pool resource leak in error paths
    23a52bffe415f phy: broadcom: ns-usb3: Fix Wvoid-pointer-to-enum-cast warning (again)
    fb9d513cdf161 phy: stm32-usphyc: Fix off by one in probe()
    d8f1e61238799 dmaengine: xilinx_dma: Fix uninitialized addr_width when "xlnx,addrwidth" property is missing
    76992310f8077 dmaengine: tegra-adma: Fix use-after-free
    b36b4c0dd281b mm, kfence: describe @slab parameter in __kfence_obj_info()
    ea46adfe5cc03 textsearch: describe @list member in ts_ops search
    209f350326c8d ASoC: tlv320adcx140: fix word length
    cff6cd703f41d net/sched: sch_qfq: do not free existing class in qfq_change_class()
    0badf6ffd2c39 selftests: drv-net: fix RPS mask handling for high CPU numbers
    bf1dfd389b6ae net/mlx5e: Restore destroying state bit after profile cleanup
    014ba8f2953c0 vsock/test: add a final full barrier after run all tests
    8d5b6b2d79c1c ipv4: ip_gre: make ipgre_header() robust
    484919832e2db macvlan: fix possible UAF in macvlan_forward_source()
    45126b1249757 net: update netdev_lock_{type,name}
    64c71d60a21a9 ip6_tunnel: use skb_vlan_inet_prepare() in __ip6_tnl_rcv()
    76abc83a9d255 nvme-tcp: fix NULL pointer dereferences in nvmet_tcp_build_pdu_iovec
    4fcde4590de2d nvmet-tcp: remove boilerplate code
    97250eb05e4b6 can: etas_es58x: allow partial RX URB allocation to succeed
    27c90d8ed81e7 pnfs/flexfiles: Fix memory leak in nfs4_ff_alloc_deviceid_node()

(From OE-Core rev: 79dfd0a547e1c56e11360c774489bae39ae0c3c1)

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00
Bruce Ashfield
b232dd23d6 linux-yocto/5.15: update to v5.15.198
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:

    9eec9a14ee10 Linux 5.15.198
    72d750886b21 NFS: add barriers when testing for NFS_FSDATA_BLOCKED
    7981cff2bee1 NFS: unlink/rmdir shouldn't call d_delete() twice on ENOENT
    220a5ee395e0 efi/cper: Fix cper_bits_to_str buffer handling and return value
    b82594248af1 firmware: imx: scu-irq: Set mu_resource_id before get handle
    bbd35608330d scsi: sg: Fix occasional bogus elapsed time that exceeds timeout
    5517e2497d11 ASoC: fsl_sai: Add missing registers to cache default
    c3a4316e3c74 can: j1939: make j1939_session_activate() fail if device is no longer registered
    c618c4ccb79b powercap: fix sscanf() error return value handling
    7b78832aa94f powercap: fix race condition in register_control_type()
    047ea38d41d9 blk-throttle: Set BIO_THROTTLED when bio has been throttled
    7f7080c51410 pinctrl: qcom: lpass-lpi: mark the GPIO controller as sleeping
    3dc4b3bb4e0a pinctrl: qcom: lpass-lpi: Remove duplicate assignment of of_gpio_n_cells
    ef668c9a2261 counter: interrupt-cnt: Drop IRQF_NO_THREAD flag
    e8bfa2401d4c nfsd: provide locking for v4_end_grace
    061158d27c46 NFSD: Remove NFSERR_EAGAIN
    530476199947 nfs_common: factor out nfs_errtbl and nfs_stat_to_errno
    eb204a6d8bad NFS: trace: show TIMEDOUT instead of 0x6e
    393525dee5c3 arp: do not assume dev_hard_header() does not change skb->head
    2caa31d02c73 net: enetc: fix build warning when PAGE_SIZE is greater than 128K
    a40af9a2904a net: usb: pegasus: fix memory leak in update_eth_regs_async()
    0809c4bc06c9 net/sched: sch_qfq: Fix NULL deref when deactivating inactive aggregate in qfq_reset
    303987beb595 HID: quirks: work around VID/PID conflict for appledisplay
    b4bfc8d26b96 bnxt_en: Fix potential data corruption with HW GRO/LRO
    4248fb36df8d eth: bnxt: move and rename reset helpers
    0e9a7c61978e net/mlx5e: Don't print error message due to invalid module
    ac1fd8362346 netdev: preserve NETIF_F_ALL_FOR_ALL across TSO updates
    c655d2167bf0 net: sock: fix hardened usercopy panic in sock_recv_errqueue
    bee569f5fcf7 inet: ping: Fix icmp out counting
    8767f238b0e6 net: mscc: ocelot: Fix crash when adding interface under a lag
    bf1ffe5e95bd bridge: fix C-VLAN preservation in 802.1ad vlan_tunnel egress
    8a4333b2818f net: marvell: prestera: fix NULL dereference on devlink_alloc() failure
    c4cde57c8aff netfilter: nf_conncount: update last_gc only when GC has been performed
    92d17b97479c netfilter: nf_tables: fix memory leak in nf_tables_newrule()
    d65b19f34c2a netfilter: nft_synproxy: avoid possible data-race on update operation
    ddd097698d8b ARM: dts: imx6q-ba16: fix RTC interrupt level
    e91cffed1c58 arm64: dts: add off-on-delay-us for usdhc2 regulator
    274dfe3b1801 scsi: Revert "scsi: libsas: Fix exp-attached device scan after probe failure scanned in again after probe failed"
    ebabaddab72c scsi: ipr: Enable/disable IRQD_NO_BALANCING during reset
    5ef4392495a8 NFS: Fix up the automount fs_context to use the correct cred
    f269abad66bd NFSv4: ensure the open stateid seqid doesn't go backwards
    d4d09d18059a alpha: don't reference obsolete termio struct for TC* constants
    8c97b0183923 ARM: 9461/1: Disable HIGHPTE on PREEMPT_RT kernels
    df9967c3b757 csky: fix csky_cmpxchg_fixup not working
    b374e9ecc92a ext4: fix out-of-bound read in ext4_xattr_inode_dec_ref_all()
    6c94fd068ba2 ext4: introduce ITAIL helper
    5d0dc83cb9a6 libceph: make calc_target() set t->paused, not just clear it
    77229551f2cf libceph: return the handler error from mon_handle_auth_done()
    851241d3f78a libceph: make free_choose_arg_map() resilient to partial allocation
    4b106fbb1c7b libceph: replace overzealous BUG_ON in osdmap_apply_incremental()
    194cfe2af4d2 libceph: prevent potential out-of-bounds reads in handle_auth_done()
    a3827e310b5a wifi: avoid kernel-infoleak from struct iw_point
    6a0cceb1a8b9 drm/pl111: Fix error handling in pl111_amba_probe
    250e1f9f911d lib/crypto: aes: Fix missing MMU protection for AES S-box
    e57137354d85 mei: me: add nova lake point S DID
    6cff14b831db net: 3com: 3c59x: fix possible null dereference in vortex_probe1()
    02b79361cf97 atm: Fix dma_free_coherent() size
    7f696f15c18b usb: gadget: lpc32xx_udc: fix clock imbalance in error path
    c3ba0557ab2e net: ethtool: fix the error condition in ethtool_get_phy_stats_ethtool()
    f3cc921c237c Revert "iommu/amd: Skip enabling command/event buffers for kdump"
    0b956f79b2f8 firmware: arm_scmi: Fix unused notifier-block in unregister
    3079bf04d35f ext4: fix error message when rejecting the default hash
    bfac7e3ff587 ext4: factor out ext4_hash_info_init()
    86b81d4eab1c ext4: filesystems without casefold feature cannot be mounted with siphash
    e1b826e10ff9 pwm: stm32: Always program polarity
    69e4c711d3f5 x86: remove __range_not_ok()
    dd6d10e00cf4 selftests: net: test_vxlan_under_vrf: fix HV connectivity test
    20d3eb00ab81 ipv4: Fix uninit-value access in __ip_make_skb()
    40e5444a3ac3 ipv6: Fix potential uninit-value access in __ip6_make_skb()
    ef2fe0c6353b KVM: arm64: sys_regs: disable -Wuninitialized-const-pointer warning
    eeeaba737919 HID: core: Harden s32ton() against conversion to 0 bits
    5f35099fa3d5 KVM: x86: Acquire kvm->srcu when handling KVM_SET_VCPU_EVENTS
    d69f28ef7cda page_pool: Fix use-after-free in page_pool_recycle_in_ring
    aec6a1be0be1 drm/i915/selftests: fix subtraction overflow bug
    0f55ac683b27 mmc: core: use sysfs_emit() instead of sprintf()
    f51e471cb157 net: Remove RTNL dance for SIOCBRADDIF and SIOCBRDELIF.
    32ffca069d20 drm/gma500: Remove unused helper psb_fbdev_fb_setcolreg()
    0a59a3895f80 wifi: mac80211: Discard Beacon frames to non-broadcast address
    7daa50a2157e ASoC: stm32: sai: fix OF node leak on probe
    ecd91855dd4f lockd: fix vfs_test_lock() calls
    86d91420bbe3 powerpc/pseries/cmm: adjust BALLOON_MIGRATE when migrating pages
    325fd00621d5 mm/balloon_compaction: convert balloon_page_delete() to balloon_page_finalize()
    ed920d0feafb mm/balloon_compaction: we cannot have isolated pages in the balloon list
    f16e78225eda mm/balloon_compaction: make balloon page compaction callbacks static
    1e3a5fec4917 ASoC: stm32: sai: fix clk prepare imbalance on probe failure
    a93887d284a6 ASoC: stm32: sai: Use the devm_clk_get_optional() helper
    39e5b2de0207 ASoC: stm: Use dev_err_probe() helper
    6009167915d5 r8169: fix RTL8117 Wake-on-Lan in DASH mode
    4c0278938c36 iommu/qcom: fix device leak on of_xlate()
    2e9a95d60f1d powerpc/64s/slb: Fix SLB multihit issue during SLB preload
    374f9984edc8 PCI: brcmstb: Fix disabling L0s capability
    bf03a56d6af9 powerpc/pseries/cmm: call balloon_devinfo_init() also without CONFIG_BALLOON_COMPACTION
    4141049144b3 media: renesas: rcar_drif: fix device node reference leak in rcar_drif_bond_enabled
    3ccce30e5919 media: samsung: exynos4-is: fix potential ABBA deadlock on init
    75f91534f9ac NFSD: NFSv4 file creation neglects setting ACL
    2e6f384b4e6c media: verisilicon: Protect G2 HEVC decoder against invalid DPB index
    b425cd5bc54e media: vpif_capture: fix section mismatch
    61d19d81485d media: mediatek: vcodec: Fix a reference leak in mtk_vcodec_fw_vpu_init()
    4dedb6a11243 SUNRPC: svcauth_gss: avoid NULL deref on zero length gss_token in gss_read_proxy_verf
    610ef5893628 KVM: SVM: Mark VMCB_NPT as dirty on nested VMRUN
    543bf004e4ea crypto: af_alg - zero initialize memory allocated via sock_kmalloc
    a22316f5e9a2 svcrdma: bound check rq_pages index in inline path
    c80b58581fad ARM: dts: microchip: sama7g5: fix uart fifo size to 32
    cbbf3f1bb9f8 fuse: fix readahead reclaim deadlock
    a6c208695220 usb: ohci-nxp: fix device leak on probe failure
    0928573aeccb usb: ohci-nxp: Use helper function devm_clk_get_enabled()
    50ee04e0ae62 mptcp: pm: ignore unknown endpoint flags
    2cf9e72ec9a4 usb: dwc3: keep susphy enabled during exit to avoid controller faults
    72c58a82e6fb f2fs: fix to avoid updating zero-sized extent in extent cache
    671910d2e5b8 f2fs: fix to propagate error from f2fs_enable_checkpoint()
    474cc3ed3743 f2fs: use global inline_xattr_slab instead of per-sb slab cache
    f30ea4a9e793 f2fs: fix to detect recoverable inode during dryrun of find_fsync_dnodes()
    0e8bddb3e081 xfs: fix a memory leak in xfs_buf_item_init()
    06cad7ba5c7b KVM: nVMX: Immediately refresh APICv controls as needed on nested VM-Exit
    fa2dd45ce8ae NFSD: Clear SECLABEL in the suppattr_exclcreat bitmap
    d2f5d8cf1ead ALSA: wavefront: Fix integer overflow in sample size validation
    73d7bfacc5ca ALSA: wavefront: Use standard print API
    151c632b9162 ALSA: wavefront: Clear substream pointers on close
    214a854d0d99 wifi: mt76: Fix DTS power-limits on little endian systems
    8a589c56b0d6 btrfs: don't rewrite ret from inode_permission
    275c686f1e3c tpm: Cap the number of PCR banks
    ed7441ffe3fd jbd2: fix the inconsistency between checksum and data in memory for journal sb
    ee199d259349 xhci: dbgtty: fix device unregister
    4b4315ab4a14 xhci: dbgtty: use IDR to support several dbc instances.
    eee16f3ff08e usb: gadget: udc: fix use-after-free in usb_gadget_state_work
    8b586de6f03c usb: xhci: Apply the link chain quirk on NEC isoc endpoints
    d16a2857ad17 usb: xhci: move link chain bit quirk checks into one helper function.
    86aae7053d2d drm/vmwgfx: Fix a null-ptr access in the cursor snooper
    cfb82ea9cccc virtio_console: fix order of fields cols and rows
    6161d0d62351 kbuild: Use CRC32 and a 1MiB dictionary for XZ compressed modules
    94b45fddc261 mm/damon/tests/core-kunit: handle memory alloc failure from damon_test_aggregate()
    554b17dc14d0 mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_regions_of()
    77ec39ad0ceb mm/damon/tests/core-kunit: handle memory failure from damon_test_target()
    233409d46dc5 mm/damon/tests/core-kunit: handle alloc failures on damon_test_merge_two()
    3f7668f4ffd5 mm/damon/tests/core-kunit: handle alloc failures on dasmon_test_merge_regions_of()
    db10496b2797 mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_at()
    df458acf79c6 mm/damon/tests/core-kunit: handle allocation failures in damon_test_regions()
    c6895612b1e4 mm/damon/tests/vaddr-kunit: handle alloc failures on damon_test_split_evenly_succ()
    5629064f92f0 RDMA/core: Fix "KASAN: slab-use-after-free Read in ib_register_device" problem
    483b541b7ee3 mm/damon/tests/vaddr-kunit: handle alloc failures on damon_do_test_apply_three_regions()
    5ff02cf6c74d mm/damon/tests/vaddr-kunit: handle alloc failures in damon_test_split_evenly_fail()
    87caa0d35aab drm/nouveau/dispnv50: Don't call drm_atomic_get_crtc_state() in prepare_fb
    47a85604a761 drm/ttm: Avoid NULL pointer deref for evicted BOs
    d376aea5f101 drm/msm/a6xx: Fix out of bound IO access in a6xx_get_gmu_registers
    e02a1c33f10a net: nfc: fix deadlock between nfc_unregister_device and rfkill_fop_write
    66d3d821a27f net: usb: sr9700: fix incorrect command used to write single register
    02a02eb93cec nfsd: Drop the client reference in client_states_open()
    96e9b4b4eebe fjes: Add missing iounmap in fjes_hw_init()
    278b7cfe0d4d e1000: fix OOB in e1000_tbi_should_accept()
    abf38398724e RDMA/cm: Fix leaking the multicast GID table reference
    bfe10318fc23 RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly
    adca36b7312f idr: fix idr_alloc() returning an ID out of range
    ec9fd10b4803 media: i2c: adv7842: Remove redundant cancel_delayed_work in probe
    d80c606877e3 media: i2c: ADV7604: Remove redundant cancel_delayed_work in probe
    3de6afefd37e media: TDA1997x: Remove redundant cancel_delayed_work in probe
    faf38cced019 media: msp3400: Avoid possible out-of-bounds array accesses in msp3400c_thread()
    718fd69207b6 media: cec: Fix debugfs leak on bus_register() failure
    c3548c44c3c2 fbdev: tcx.c fix mem_map to correct smem_start offset
    37fa1e7e4884 fbdev: pxafb: Fix multiple clamped values in pxafb_adjust_timing
    51fd9c20a530 fbdev: gbefb: fix to use physical address instead of dma address
    c9d6fc7d60c6 dm-ebs: Mark full buffer dirty even on partial write
    f913b9a2ccd6 media: adv7842: Avoid possible out-of-bounds array accesses in adv7842_cp_log_status()
    6a483e56c1ad parisc: entry: set W bit for !compat tasks in syscall_restore_rfi()
    0a476ed7bc87 parisc: entry.S: fix space adjustment on interruption for 64-bit userspace
    76bbb99a030f media: rc: st_rc: Fix reset control resource leak
    f69506115f61 mfd: max77620: Fix potential IRQ chip conflict when probing two devices
    ef97d93d0775 mfd: altera-sysmgr: Fix device leak on sysmgr regmap lookup
    a357f04e6c47 leds: leds-lp50xx: LP5009 supports 3 modules for a total of 9 LEDs
    e24cad510abc leds: leds-lp50xx: Allow LED 0 to be added to module bank
    c9f0eac5745d PCI/PM: Reinstate clearing state_saved in legacy and !PM codepaths
    f0ae659c9652 HID: logitech-dj: Remove duplicate error logging
    3f50e9dbfe9d iommu/tegra: fix device leak on probe_device()
    157b01742a68 iommu/sun50i: fix device leak on of_xlate()
    fa4e003b8fcf iommu/omap: fix device leaks on probe_device()
    6705d63820c6 iommu/mediatek: fix device leak on of_xlate()
    e6b0e3882ab0 iommu/mediatek-v1: fix device leak on probe_device()
    cadf7c83302f iommu/ipmmu-vmsa: fix device leak on of_xlate()
    f62661f577b3 iommu/exynos: fix device leak on of_xlate()
    ac0c50cc85ed iommu/apple-dart: fix device leak on of_xlate()
    fdb64bba6a46 ASoC: qcom: qdsp6: q6asm-dai: set 10 ms period and buffer alignment.
    d543ddcecc93 ASoC: qcom: q6adm: the the copp device only during last instance
    47587d958185 ASoC: qcom: q6asm-dai: perform correct state check before closing
    938117827bca ASoC: stm32: sai: fix device leak on probe
    d739270d09e0 selftests/ftrace: traceonoff_triggers: strip off names
    1f29db2cfb01 RDMA/bnxt_re: fix dma_free_coherent() pointer
    2d34cffaf8c9 RDMA/rtrs: Fix clt_path::max_pages_per_mr calculation
    19682d51e1b6 RDMA/bnxt_re: Fix to use correct page size for PDE table
    b299f01e464d RDMA/bnxt_re: Fix IB_SEND_IP_CSUM handling in post_send
    8165f064641c RDMA/bnxt_re: Fix incorrect BAR check in bnxt_qplib_map_creq_db()
    af9a938b087d RDMA/core: Fix logic error in ib_get_gids_from_rdma_hdr()
    c8002b3a098a RDMA/efa: Remove possible negative shift
    db93ae6fa66f RDMA/irdma: avoid invalid read in irdma_net_event
    ed2639414d43 net: rose: fix invalid array index in rose_kill_by_device()
    33ff5c207c87 ipv4: Fix reference count leak when using error routes with nexthop objects
    6b7522424529 ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr()
    4cc4cfe4d23c octeontx2-pf: fix "UBSAN: shift-out-of-bounds error"
    6b3a6cb3493f net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group struct
    fc96018f09f8 net: usb: asix: validate PHY address before use
    b3c214ac512e net: dsa: b53: skip multicast entries for fdb_dump()
    d55b060b6c56 firewire: nosy: Fix dma_free_coherent() size
    1fc0c943e445 genalloc.h: fix htmldocs warning
    1c4cb705e733 smc91x: fix broken irq-context in PREEMPT_RT
    2f966186b995 net: usb: rtl8150: fix memory leak on usb_submit_urb() failure
    f820e438b8ec team: fix check for port enabled in team_queue_override_port_prio_changed()
    6f935c0f549f platform/x86: ibm_rtl: fix EBDA signature search pointer arithmetic
    1c423f0fcb08 platform/x86: msi-laptop: add missing sysfs_remove_group()
    41a1a3140aff ip6_gre: make ip6gre_header() robust
    052e5db5be45 net: openvswitch: Avoid needlessly taking the RTNL on vport destroy
    214802e4caaa net: mdio: aspeed: add dummy read to avoid read-after-write issue
    6ff75a5132df net: mdio: aspeed: move reg accessing part into separate functions
    fff9206b0907 Bluetooth: btusb: revert use of devm_kzalloc in btusb
    baf0e2d1e03d crypto: seqiv - Do not use req->iv after crypto_aead_encrypt
    5bb18bfd505c iavf: fix off-by-one issues in iavf_config_rss_reg()
    cfddf4af22a3 i40e: validate ring_len parameter against hardware-specific values
    0daf39ee1e4e i40e: Refactor argument of i40e_detect_recover_hung()
    3fec9e1bad69 i40e: Refactor argument of several client notification functions
    4f28b415a483 i40e: fix scheduling in set_rx_mode
    f7455c5f9218 hwmon: (w83l786ng) Convert macros to functions to avoid TOCTOU
    bf5b03227f2e hwmon: (w83791d) Convert macros to functions to avoid TOCTOU
    5082cdce4344 hwmon: (max16065) Use local variable to avoid TOCTOU
    ac45b270ea28 i2c: amd-mp2: fix reference leak in MP2 PCI device
    24fd02c3a479 rpmsg: glink: fix rpmsg device leak
    dd86de8f8573 soc: amlogic: canvas: fix device leak on lookup
    5527dde9ff12 soc: qcom: ocmem: fix device leak on lookup
    53693b3268c2 amba: tegra-ahb: Fix device leak on SMMU enable
    5ba8ba12920c drm/amd/display: Use GFP_ATOMIC in dc_create_plane_state()
    2420ef01b2e8 io_uring: fix filename leak in __io_openat_prep()
    685889472f29 svcrdma: return 0 on success from svc_rdma_copy_inline_range
    8564deae5375 nfsd: Mark variable __maybe_unused to avoid W=1 build break
    859bdf438f01 fsnotify: do not generate ACCESS/MODIFY events on child for special files
    323e203a944b PM: runtime: Do not clear needs_force_resume with enabled runtime PM
    6d15f08e6d8d tracing: Do not register unsupported perf events
    fd4c14c7b772 KVM: nSVM: Clear exit_code_hi in VMCB when synthesizing nested VM-Exits
    d8c44d566187 KVM: nSVM: Set exit_code_hi to -1 when synthesizing SVM_EXIT_ERR (failed VMRUN)
    30c71d9b4d76 KVM: nSVM: Propagate SVM_EXIT_CR0_SEL_WRITE correctly for LMSW emulation
    d2da0df7bbc4 KVM: x86: Fix VM hard lockup after prolonged inactivity with periodic HV timer
    6ae727f72be0 KVM: x86: Explicitly set new periodic hrtimer expiration in apic_timer_fn()
    fa0c3fbc4bb5 KVM: x86: WARN if hrtimer callback for periodic APIC timer fires with period=0
    145d140abda8 libceph: make decode_pool() more resilient against corrupted osdmaps
    7a146f34e5be parisc: Do not reprogram affinitiy on ASP chip
    cfdf6250b63b scs: fix a wrong parameter in __scs_magic
    e1da6e399df9 platform/chrome: cros_ec_ishtp: Fix UAF after unbinding driver
    d0fd1f732ea8 ocfs2: fix kernel BUG in ocfs2_find_victim_chain
    12ab6ebb3778 media: vidtv: initialize local pointers upon transfer of memory ownership
    04e5abccf5a3 tools/testing/nvdimm: Use per-DIMM device handle
    0de4977a1eea f2fs: fix return value of f2fs_recover_fsync_data()
    3d95ed8cf980 f2fs: invalidate dentry cache on failed whiteout creation
    45fd86b44410 scsi: target: Reset t_task_cdb pointer in error case
    fc3ab9b2cce5 NFSD: use correct reservation type in nfsd4_scsi_fence_client
    278455a82245 scsi: aic94xx: fix use-after-free in device removal path
    50b097d92c99 scsi: Revert "scsi: qla2xxx: Perform lockless command completion in abort path"
    47e7c7496f5a cpufreq: nforce2: fix reference count leak in nforce2
    4f3e0af0d9a8 intel_th: Fix error handling in intel_th_output_open
    d1b045228002 char: applicom: fix NULL pointer dereference in ac_ioctl
    677f382acab1 usb: renesas_usbhs: Fix a resource leak in usbhs_pipe_malloc()
    439c8d0425bb usb: dwc3: of-simple: fix clock resource leak in dwc3_of_simple_probe
    43e58abad6c0 usb: phy: isp1301: fix non-OF device reference imbalance
    0c2b0e747010 USB: lpc32xx_udc: Fix error handling in probe
    76b52ed875d5 phy: broadcom: bcm63xx-usbh: fix section mismatches
    424dd7ef4109 media: pvrusb2: Fix incorrect variable used in trace message
    c2305b4c5fc1 media: dvb-usb: dtv5100: fix out-of-bounds in dtv5100_i2c_msg()
    d14c800ec300 usb: usb-storage: Maintain minimal modifications to the bcdDevice range.
    0ea5763a6ced media: v4l2-mem2mem: Fix outdated documentation
    048f29c90275 jbd2: use a weaker annotation in journal handling
    a973d037229b ext4: align max orphan file size with e2fsprogs limit
    2930d9cb9cd3 ext4: fix incorrect group number assertion in mb_check_buddy
    331d6f52201b ext4: clear i_state_flags when alloc inode
    3d8d22e75f7e ext4: xattr: fix null pointer deref in ext4_raw_inode()
    ea4e2ad6f612 ktest.pl: Fix uninitialized var in config-bisect.pl
    1c0e2617b51c fs/ntfs3: fix mount failure for sparse runs in run_unpack()
    7f24094db7af floppy: fix for PAGE_SIZE != 4KB
    2f945c9892b0 block: rate-limit capacity change info log
    3c35608d6577 lib/crypto: x86/blake2s: Fix 32-bit arg treated as 64-bit
    d685237855bf mmc: sdhci-msm: Avoid early clock doubling during HS400 transition
    3fd7df4636d8 KEYS: trusted: Fix a memory leak in tpm2_load_cmd
    8a69b95bc8c4 vhost/vsock: improve RCU read sections around vhost_vsock_get()
    94476ed97e38 platform/x86/intel/hid: Add Dell Pro Rugged 10/12 tablet to VGBS DMI quirks
    4099d8f057f2 nvme-fc: don't hold rport lock when putting ctrl
    8cb8a84f7af3 serial: sprd: Return -EPROBE_DEFER when uart clock is not ready
    db963adebdf5 usb: usb-storage: No additional quirks need to be added to the EL-R12 optical drive.
    6ddc1cf758b2 usb: xhci: limit run_graceperiod for only usb 3.0 devices
    58941bbb0050 usb: typec: ucsi: Handle incorrect num_connectors capability
    f3f0303b5330 usbip: Fix locking bug in RT-enabled kernels
    c4034574f87a exfat: fix remount failure in different process environments
    c7b986adc9e9 via_wdt: fix critical boot hang due to unnamed resource allocation
    36fe06f5a292 scsi: qla2xxx: Use reinit_completion on mbx_intr_comp
    8416236b992f scsi: qla2xxx: Fix initiator mode with qlini_mode=exclusive
    80e898a3c614 scsi: qla2xxx: Fix lost interrupts with qlini_mode=disabled
    46778b34e021 powerpc/addnote: Fix overflow on 32-bit builds
    c49300043e7b clk: mvebu: cp110 add CLK_IGNORE_UNUSED to pcie_x10, pcie_x11 & pcie_x4
    a5622f46f4fc ti-sysc: allow OMAP2 and OMAP4 timers to be reserved on AM33xx
    92f285834099 firmware: imx: scu-irq: Init workqueue before request mbox channel
    22292508e1c9 ipmi: Fix __scan_channels() failing to rescan channels
    5c7d972756d4 ipmi: Fix the race between __scan_channels() and deliver_response()
    2168866396bd ALSA: usb-mixer: us16x08: validate meter packet indices
    19b626d36aed ALSA: pcmcia: Fix resource leak in snd_pdacf_probe error path
    9f490d2f5dc9 ALSA: vxpocket: Fix resource leak in vxpocket_probe error path
    c851e43b88b4 net/hsr: fix NULL pointer dereference in prp_get_untagged_frame()
    2b4aa7f24820 mmc: sdhci-esdhc-imx: add alternate ARCH_S32 dependency to Kconfig
    9c34a4a2ead0 spi: fsl-cpm: Check length parity before switching to 16 bit mode
    b5e70e7fa904 ACPI: CPPC: Fix missing PCC check for guaranteed_perf
    d16cc7a2b3ed Input: i8042 - add TUXEDO InfinityBook Max Gen10 AMD to i8042 quirk table
    136abe173a3c Input: ti_am335x_tsc - fix off-by-one error in wire_order validation
    ac6b3033d1e5 HID: input: map HID_GD_Z to ABS_DISTANCE for stylus/pen
    42c91dfa772c net: hns3: add VLAN id validation before using
    c9bbeca124e9 net: hns3: using the num_tqps to check whether tqp_index is out of range when vf get ring info from mbx
    de631a0f9872 net: hns3: Align type of some variables with their print type
    bcefdb288eed net: hns3: using the num_tqps in the vf driver to apply for resources
    42406760b28c net/mlx5: fw_tracer, Handle escaped percent properly
    768d559f466c net/mlx5: fw_tracer, Validate format string parameters
    a59e9812aca1 net/mlx5: fw_tracer, Add support for unrecognized string
    f9dc0f45d2cd ethtool: Avoid overflowing userspace buffer on stats query
    72d1c4a07780 net/ethtool/ioctl: split ethtool_get_phy_stats into multiple helpers
    c8666be7c338 net/ethtool/ioctl: remove if n_stats checks from ethtool_get_phy_stats
    78f0d7353bdf ethtool: use phydev variable
    7bf3910b82f6 nfc: pn533: Fix error code in pn533_acr122_poweron_rdr()
    02783a37cb1c net/sched: ets: Remove drr class from the active list if it changes to strict
    c54091eec6fe caif: fix integer underflow in cffrml_receive()
    312d7cd88882 ipvs: fix ipv4 null-ptr-deref in route error path
    e1ac8dce3a89 netfilter: nf_conncount: fix leaked ct in error paths
    a94493dd78b4 broadcom: b44: prevent uninitialized value usage
    3bc2efff20a3 net: openvswitch: fix middle attribute validation in push_nsh() action
    6e367c361a52 mlxsw: spectrum_mr: Fix use-after-free when updating multicast route stats
    9e0a0d9eeb0d mlxsw: spectrum_router: Fix neighbour use-after-free
    194cd36ec05d ipvlan: Ignore PACKET_LOOPBACK in handle_mode_l2()
    c7f6e7cc14df net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change
    09efbf54eeae netrom: Fix memory leak in nr_sendmsg()
    e0f859d5035a Bluetooth: btusb: Add new VID/PID 13d3/3533 for RTL8821CE
    ca91db4f8979 btrfs: scrub: always update btrfs_scrub_progress::last_physical
    eb6a4e7e3d04 hfsplus: fix volume corruption issue for generic/073
    d92333c7a358 hfsplus: Verify inode mode when loading from disk
    39e149d58ef4 hfsplus: fix missing hfs_bnode_get() in __hfs_bnode_create
    1432a4819917 hfsplus: fix volume corruption issue for generic/070
    f6ca2faa3f3e fs/ntfs3: Support timestamps prior to epoch
    3d4e15ef5ccb livepatch: Match old_sympos 0 and 1 in klp_find_func()
    a0f5ffc01af5 cpufreq: s5pv210: fix refcount leak
    08ba2b9983ad ACPI: property: Use ACPI functions in acpi_graph_get_next_endpoint() only
    ecb296286c87 ACPICA: Avoid walking the Namespace if start_node is NULL
    0144d18dd96d x86/ptrace: Always inline trivial accessors
    9019e399684e sched/deadline: only set free_cpus for online runqueues
    fe293b7b0759 btrfs: fix memory leak of fs_devices in degraded seed device path
    b3f937e8912d bpf, arm64: Do not audit capability check in do_jit()
    2ed5e0ca5d9a spi: tegra210-quad: Fix X1_X2_X4 encoding and support x4 transfers
    36cb73c557d1 spi: tegra210-quad: Fix validate combined sequence
    fcf4ad3208e9 coresight: etm4x: Correct polling IDLE bit
    754512b096b9 netfilter: nf_conncount: garbage collection is not skipped when jiffies wrap around
    460fd9a9e820 NFS: Fix missing unlock in nfs_unlink()
    434b84ecb8ff ASoC: fsl_xcvr: get channel status data when PHY is not exists
    3cf854cec0eb ALSA: dice: fix buffer overflow in detect_stream_formats()
    ce205e480799 usb: phy: Initialize struct usb_phy list_head
    b3c4465f2519 usb: gadget: tegra-xudc: Always reinitialize data toggle when clear halt
    8877bbb620a9 ocfs2: fix memory leak in ocfs2_merge_rec_left()
    c5a352071f83 efi/cper: align ARM CPER type with UEFI 2.9A/2.10 specs
    ec7b34401123 efi/cper: Adjust infopfx size to accept an extra space
    095ebf8277b5 efi/cper: Add a new helper function to print bitmasks
    de9f85fdf7eb dm log-writes: Add missing set_freezable() for freezable kthread
    8d656002fa38 dm-raid: fix possible NULL dereference with undefined raid type
    a9bfe4eb0103 ARM: 9464/1: fix input-only operand modification in load_unaligned_zeropad()
    ceb5dff91c86 ALSA: uapi: Fix typo in asound.h comment
    7f031777be02 dma/pool: eliminate alloc_pages warning in atomic_pool_expand
    d8b52fa40fc8 block: fix comment for op_is_zone_mgmt() to include RESET_ALL
    8fe7de5d1c7f blk-mq: Abort suspend when wakeup events are pending
    f123e1fad3a8 ASoC: ak5558: Disable regulator when error happens
    8cb3ed1b5669 ASoC: ak4458: Disable regulator when error happens
    5a38a44815e0 ASoC: bcm: bcm63xx-pcm-whistler: Check return value of of_dma_configure()
    97044043d531 platform/x86: asus-wmi: use brightness_set_blocking() for kbd led
    680f72890147 fs/nls: Fix inconsistency between utf8_to_utf32() and utf32_to_utf8()
    ba1495aefd22 NFS: Automounted filesystems should inherit ro,noexec,nodev,sync flags
    1b44528bf4a1 fs_context: drop the unused lsm_flags member
    ce578fbf8e83 Revert "nfs: ignore SB_RDONLY when mounting nfs"
    8e921550cc85 Revert "nfs: clear SB_RDONLY before getting superblock"
    dca481c17f81 Revert "nfs: ignore SB_RDONLY when remounting nfs"
    b6e4e3a08c03 NFSv4/pNFS: Clear NFS_INO_LAYOUTCOMMIT in pnfs_mark_layout_stateid_invalid
    3dc5156ad61a NFS: Initialise verifiers for visible dentries in nfs_atomic_open()
    e77419cbb547 NFS: Fix the verifier for case sensitive filesystem in nfs_atomic_open()
    19bac87dd821 NFSv4: Add some support for case insensitive filesystems
    3e367777b69c fs/nls: Fix utf16 to utf8 conversion
    2093051b4698 NFS: Avoid changing nlink when file removes and attribute updates race
    777564417810 NFS: don't unhash dentry during unlink/rename
    186072b7a23c NFS: Label the dentry with a verifier in nfs_rmdir() and nfs_unlink()
    5f1bc99ea831 fbdev: ssd1307fb: fix potential page leak in ssd1307fb_probe()
    007408ab8449 pinctrl: single: Fix incorrect type for error return variable
    184146300f78 pinctrl: single: Fix PIN_CONFIG_BIAS_DISABLE handling
    8609287a2646 perf tools: Fix split kallsyms DSO counting
    38abf6e931b1 net/sched: sch_cake: Fix incorrect qlen reduction in cake_drop
    140e6cd7b092 remoteproc: qcom_q6v5_wcss: fix parsing of qcom,halt-regs
    0d39bd3ef77a mtd: lpddr_cmds: fix signed shifts in lpddr_cmds
    1d6155900a69 net: stmmac: fix rx limit check in stmmac_rx_zc()
    53bc0ac47f4f netfilter: nft_connlimit: update the count if add was skipped
    b160895d6bc9 netfilter: nf_conncount: rework API to use sk_buff directly
    be69850b461e netfilter: nf_conncount: reduce unnecessary GC
    aea811b4cf6c netfilter: flowtable: check for maximum number of encapsulations in bridge vlan
    9d041a7ba13f regulator: core: Protect regulator_supply_alias_list with regulator_list_mutex
    4a79a1d496b9 ASoC: Intel: catpt: Fix error path in hw_params()
    c6035886b9d8 virtio: fix virtqueue_set_affinity() docs
    9410895c0e5f virtio_vdpa: fix misleading return in void function
    a9f01f0776f0 vdpa: Sync calls set/get config/status with cf_mutex
    447092100c7e vdpa: Introduce query of device config layout
    3ca8c7a6f9a0 vdpa: Introduce and use vdpa device get, set config helpers
    eed1541ff09d ext4: improve integrity checking in __mb_check_buddy by enhancing order-0 validation
    c082093313c0 ext4: remove unused return value of __mb_check_buddy
    99e011a78210 ACPI: processor_core: fix map_x2apic_id for amd-pstate on am4
    1e8124068c93 drm/amd/display: Fix logical vs bitwise bug in get_embedded_panel_info_v2_1()
    212825c1c8cb ASoC: fsl_xcvr: clear the channel status control memory
    650127b100b1 ASoC: fsl_xcvr: Add support for i.MX93 platform
    c464a9e42def ASoC: fsl_xcvr: Add Counter registers
    9cfb946f51ce RDMA/irdma: Fix data race in irdma_free_pble
    04050bf1a767 RDMA/irdma: Fix data race in irdma_sc_ccq_arm
    5c494997d09e iommu/arm-smmu-qcom: Enable use of all SMR groups when running bare-metal
    342b2c26e5ac backlight: lp855x: Fix lp855x.h kernel-doc warnings
    cd01a24b3e52 backlight: led-bl: Add devlink to supplier LEDs
    d0deba37ac85 backlight: led_bl: Take led_access lock when required
    53072791efe8 wifi: ieee80211: correct FILS status codes
    67d15b5ea082 PCI: dwc: Fix wrong PORT_LOGIC_LTSSM_STATE_MASK definition
    7547755997b3 staging: fbtft: core: fix potential memory leak in fbtft_probe_common()
    d6c91fc73269 mt76: mt7615: Fix memory leak in mt7615_mcu_wtbl_sta_add()
    f57925f0c498 crypto: ccree - Correctly handle return of sg_nents_for_len
    76fc288ce114 selftests/bpf: Improve reliability of test_perf_branches_no_hw()
    1d2e267f4331 selftests/bpf: skip test_perf_branches_hw() on unsupported platforms
    90bb940f1c2f usb: raw-gadget: cap raw_io transfer length to KMALLOC_MAX_SIZE
    7b1766b525da usb: dwc2: fix hang during suspend if set as peripheral
    316a067b2769 usb: dwc2: fix hang during shutdown if set as peripheral
    16514b403f0a usb: dwc2: disable platform lowlevel hw resources during shutdown
    5c94f6e84aec usb: chaoskey: fix locking for O_NONBLOCK
    f2f4627b74c1 ima: Handle error code returned by ima_filter_rule_match()
    6a96bd0d9430 wifi: rtl818x: rtl8187: Fix potential buffer underflow in rtl8187_rx_cb()
    81f087859c97 mfd: mt6358-irq: Fix missing irq_domain_remove() in error path
    68715d885bb6 mfd: mt6397-irq: Fix missing irq_domain_remove() in error path
    d705f1c35080 pwm: bcm2835: Make sure the channel is enabled after pwm_request()
    9a76b3b33e52 drm/mediatek: Fix CCORR mtk_ctm_s31_32_to_s1_n function issue
    e1c7bb405edc fs/ntfs3: Prevent memory leaks in add sub record
    e910114bdbd8 fs/ntfs3: out1 also needs to put mi
    925e825f0c8e fs/ntfs3: Make ni_ins_new_attr return error
    83177ae96486 fs/ntfs3: Add new argument is_mft to ntfs_mark_rec_free
    d29f1ea12adf fs/ntfs3: Remove unused mi_mark_free
    e0a6dcbb8ce5 powerpc/64s/ptdump: Fix kernel_hash_pagetable dump for ISA v3.00 HPTE format
    89caaeee8dd9 wifi: rtl818x: Fix potential memory leaks in rtl8180_init_rx_ring()
    01f1e3015a77 NFSD/blocklayout: Fix minlength check in proc_layoutget
    dbeddfaaa3c0 watchdog: wdat_wdt: Fix ACPI table leak in probe function
    dbe2bb24ac4c watchdog: wdat_wdt: Stop watchdog when uninstalling module
    f93b75779dc0 selftests/bpf: Fix failure paths in send_signal test
    cf31d9fc454f ps3disk: use memcpy_{from,to}_bvec index
    4174c6409e51 PCI: keystone: Exit ks_pcie_probe() for invalid mode
    b6fa2843b30f leds: netxbig: Fix GPIO descriptor leak in error paths
    6682d122e88e scsi: sim710: Fix resource leak by adding missing ioport_unmap() calls
    b9f141eb4182 ACPI: property: Fix fwnode refcount leak in acpi_fwnode_graph_parse_endpoint()
    08b93c1c12c6 ocfs2: relax BUG() to ocfs2_error() in __ocfs2_move_extent()
    3e764e8a055b lib/vsprintf: Check pointer before dereferencing in time_and_date()
    a6189b555ccc clk: renesas: r9a06g032: Fix memory leak in error path
    8368be8a5072 coresight: etm4x: Add context synchronization before enabling trace
    368466234b54 coresight: etm4x: Extract the trace unit controlling
    d4b7290c1b5f coresight-etm4x: add isb() before reading the TRCSTATR
    35d756da2d7e coresight: etm4x: Use Trace Filtering controls dynamically
    53511743c5a8 coresight: etm4x: Save restore TRFCR_EL1
    cd93db1b1b44 nbd: defer config unlock in nbd_genl_connect
    40e6a1ebe430 wifi: cw1200: Fix potential memory leak in cw1200_bh_rx_helper()
    14c209835e47 macintosh/mac_hid: fix race condition in mac_hid_toggle_emumouse
    3061b299fced powerpc/32: Fix unpaired stwcx. on interrupt exit
    79c8a77b1782 ntfs3: init run lock for extend inode
    9794c1a99a3a RDMA/rtrs: server: Fix error handling in get_or_create_srv
    5e9a106883c6 dt-bindings: PCI: amlogic: Fix the register name of the DBI region
    558222badffe dt-bindings: PCI: convert amlogic,meson-pcie.txt to dt-schema
    f0988e776c64 scsi: stex: Fix reboot_notifier leak in probe error path
    d3ba31267591 nbd: defer config put in recv_work
    6b4b2d939537 nbd: partition nbd_read_stat() into nbd_read_reply() and nbd_handle_reply()
    41ecdc2097b1 nbd: clean up return value checking of sock_xmit()
    85db50d9662b regulator: core: disable supply if enabling main regulator fails
    c0763fe31cfe perf/x86/intel: Correct large PEBS flag check
    de33b4593b81 ext4: correct the checking of quota files before moving extents
    8de56b96de2d ext4: minor defrag code improvements
    c23ea1f28855 mfd: da9055: Fix missing regmap_del_irq_chip() in error path
    88db8bb7ed1b spi: tegra210-quad: Fix timeout handling
    f603efe72a28 spi: tegra210-quad: modify chip select (CS) deactivation
    c6d33b46ce13 spi: tegra210-quad: combined sequence mode
    f64a36c44896 spi: tegra210-quad: add new chips to compatible
    036d15dbee1a spi: tegra210-quad: use device_reset method
    5a26b3e8b811 scsi: target: Do not write NUL characters into ASCII configfs output
    43428053153f power: supply: apm_power: only unset own apm_get_power_status
    7158890e3692 power: supply: wm831x: Check wm831x_set_bits() return value
    bf5e04401a10 i3c: master: svc: Prevent incomplete IBI transaction
    763d194b13be i3c: fix refcount inconsistency in i3c_master_register
    fe067c65f760 pinctrl: stm32: fix hwspinlock resource leak in probe function
    9ff4cea267ef x86/dumpstack: Prevent KASAN false positive warnings in __show_regs()
    898581813aaf x86: kmsan: don't instrument stack walking functions
    49c6b5e1e7fa kmsan: introduce __no_sanitize_memory and __no_kmsan_checks
    bd4bcf2d97a8 compiler-gcc.h: Define __SANITIZE_ADDRESS__ under hwaddress sanitizer
    4af48d5cb642 sctp: Defer SCTP_DBG_OBJCNT_DEC() to sctp_destroy_sock().
    59a797709dcb phy: mscc: Fix PTP for VSC8574 and VSC8572
    3c149ffe83d5 firmware: imx: scu-irq: fix OF node leak in
    9c5c10b32f48 s390/ap: Don't leak debug feature files if AP instructions are not available
    fc09726c9213 s390/smp: Fix fallback CPU detection
    0049c460c57c crypto: hisilicon/qm - restore original qos values
    c13c6e9de91d crypto: asymmetric_keys - prevent overflow in asymmetric_key_generate_id
    5c56bbed31e4 uio: uio_fsl_elbc_gpcm:: Add null pointer check to uio_fsl_elbc_gpcm_probe
    d27289e628bf arm64: dts: imx8mm-venice-gw72xx: remove unused sdhc1 pinctrl
    15c09dad9a82 iio: imu: st_lsm6dsx: Fix measurement unit for odr struct member
    5fbae4ee1d2a iio: imu: st_lsm6dsx: discard samples during filters settling time
    830c8336db60 iio: imu: st_lsm6dsx: introduce st_lsm6dsx_device_set_enable routine
    0314de967578 inet: Avoid ehash lookup race in inet_ehash_insert()
    1600b14e3c41 rculist: Add hlist_nulls_replace_rcu() and hlist_nulls_replace_init_rcu()
    90e23db1a859 ntfs3: Fix uninit buffer allocated by __getname()
    afb144bc8e92 ntfs3: fix uninit memory after failed mi_read in mi_format_new
    7bf22893398e irqchip/qcom-irq-combiner: Fix section mismatch
    50fde089fb8a USB: Fix descriptor count when handling invalid MBIM extended descriptor
    489b2158aec9 drm/vgem-fence: Fix potential deadlock on release
    ea0fd5535b0b drm/panel: visionox-rm69299: Don't clear all mode flags
    ca9388fba50d gpu: host1x: Fix race in syncpt alloc/free
    6b1e45e13546 smack: fix bug: unprivileged task can create labels
    c03cb1116289 staging: rtl8723bs: fix out-of-bounds read in OnBeacon ESR IE parsing
    4445adedae77 staging: rtl8723bs: fix stack buffer overflow in OnAssocReq IE parsing
    7141915bf0c4 comedi: check device's attached status in compat ioctls
    4cde9a7e025c comedi: multiq3: sanitize config options in multiq3_attach()
    f7fa1f4670c3 comedi: c6xdigio: Fix invalid PNP driver unregistration
    606f57e57267 HID: elecom: Add support for ELECOM M-XT3URBK (018F)
    2aa1485eff98 platform/x86: huawei-wmi: add keys for HONOR models
    090003de3f6c platform/x86: acer-wmi: Ignore backlight event
    d8dcf8e8852b pinctrl: qcom: msm: Fix deadlock in pinmux configuration
    aeccd6743ee4 bfs: Reconstruct file type when loading from disk
    93536b1d8478 spi: imx: keep dma request disabled before dma transfer setup
    9106a929628f spi: xilinx: increase number of retries before declaring stall
    e86288cb0a8c USB: serial: kobil_sct: fix TIOCMBIS and TIOCMBIC
    5882a3fe61d3 USB: serial: belkin_sa: fix TIOCMBIS and TIOCMBIC
    c032ddd06fe1 serial: add support of CPCI cards
    999138bc35b8 USB: serial: ftdi_sio: match on interface number for jtag
    141ed16ab9b7 USB: serial: option: move Telit 0x10c7 composition in the right place
    2d5855509140 USB: serial: option: add Telit Cinterion FE910C04 new compositions
    97c9ba42d178 USB: serial: option: add Foxconn T99W760
    b2a5b172dc05 comedi: pcl818: fix null-ptr-deref in pcl818_ai_cancel()
    61e03dc3794e ext4: add i_data_sem protection in ext4_destroy_inline_data_nolock()
    c228cb699a07 locking/spinlock/debug: Fix data-race in do_raw_write_lock
    43bf001f0fe4 ext4: refresh inline data size before write operations
    ed62fd8c15d4 jbd2: avoid bug_on in jbd2_journal_get_create_access() when file system corrupted
    5821b648480a Documentation: process: Also mention Sasha Levin as stable tree maintainer
    d76c2063db44 leds: spi-byte: Use devm_led_classdev_register_ext()
    fdcf33b9738c leds: Replace all non-returning strlcpy with strscpy
    799e37e49cb6 drm/i915/selftests: Fix inconsistent IS_ERR and PTR_ERR
    a647db560793 dpaa2-mac: bail if the dpmacs fwnode is not found
    e1d414c5719a xfrm: flush all states in xfrm_state_fini
    1dad653643f2 xfrm: also call xfrm_state_delete_tunnel at destroy time for states that were never added
    9f2d85ead8ff Revert "xfrm: destroy xfrm_state synchronously on net exit path"
    4b2c17d0f9be xfrm: delete x->tunnel as we delete x

(From OE-Core rev: 9d8037c4c28478fb8d3686648db423f0261dfe87)

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
2026-02-27 15:54:02 +00:00