CVE-2024-32002:
Git is a revision control system. Prior to versions 2.45.1, 2.44.1, 2.43.4,
2.42.2, 2.41.1, 2.40.2, and 2.39.4, repositories with submodules can be
crafted in a way that exploits a bug in Git whereby it can be fooled into
writing files not into the submodule's worktree but into a `.git/` directory.
This allows writing a hook that will be executed while the clone operation
is still running, giving the user no opportunity to inspect the code that is
being executed. The problem has been patched in versions 2.45.1, 2.44.1,
2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4. If symbolic link support is
disabled in Git (e.g. via `git config --global core.symlinks false`), the
described attack won't work. As always, it is best to avoid cloning
repositories from untrusted sources.
CVE-2024-32004:
Git is a revision control system. Prior to versions 2.45.1, 2.44.1, 2.43.4,
2.42.2, 2.41.1, 2.40.2, and 2.39.4, an attacker can prepare a local repository
in such a way that, when cloned, will execute arbitrary code during the
operation. The problem has been patched in versions 2.45.1, 2.44.1, 2.43.4,
2.42.2, 2.41.1, 2.40.2, and 2.39.4. As a workaround, avoid cloning repositories
from untrusted sources.
CVE-2024-32020:
Git is a revision control system. Prior to versions 2.45.1, 2.44.1, 2.43.4,
2.42.2, 2.41.1, 2.40.2, and 2.39.4, local clones may end up hardlinking files
into the target repository's object database when source and target repository
reside on the same disk. If the source repository is owned by a different user,
then those hardlinked files may be rewritten at any point in time by the
untrusted user. Cloning local repositories will cause Git to either copy or
hardlink files of the source repository into the target repository. This
significantly speeds up such local clones compared to doing a "proper" clone and
saves both disk space and compute time. When cloning a repository located on the
same disk that is owned by a different user than the current user we also end up
creating such hardlinks. These files will continue to be owned and controlled by
the potentially-untrusted user and can be rewritten by them at will in the
future. The problem has been patched in versions 2.45.1, 2.44.1, 2.43.4, 2.42.2,
2.41.1, 2.40.2, and 2.39.4.
CVE-2024-32021:
Git is a revision control system. Prior to versions 2.45.1, 2.44.1, 2.43.4,
2.42.2, 2.41.1, 2.40.2, and 2.39.4, when cloning a local source repository that
contains symlinks via the filesystem, Git may create hardlinks to arbitrary
user-readable files on the same filesystem as the target repository in the
`objects/` directory. Cloning a local repository over the filesystem may
creating hardlinks to arbitrary user-owned files on the same filesystem in the
target Git repository's `objects/` directory. When cloning a repository over the
filesystem (without explicitly specifying the `file://` protocol or `--no-local`),
the optimizations for local cloning will be used, which include attempting to
hard link the object files instead of copying them. While the code includes checks
against symbolic links in the source repository, which were added during the fix
for CVE-2022-39253, these checks can still be raced because the hard link
operation ultimately follows symlinks. If the object on the filesystem appears as
a file during the check, and then a symlink during the operation, this will allow
the adversary to bypass the check and create hardlinks in the destination objects
directory to arbitrary, user-readable files. The problem has been patched in
versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4.
CVE-2024-32465:
Git is a revision control system. The Git project recommends to avoid working in
untrusted repositories, and instead to clone it first with `git clone --no-local`
to obtain a clean copy. Git has specific protections to make that a safe
operation even with an untrusted source repository, but vulnerabilities allow
those protections to be bypassed. In the context of cloning local repositories
owned by other users, this vulnerability has been covered in CVE-2024-32004. But
there are circumstances where the fixes for CVE-2024-32004 are not enough: For
example, when obtaining a `.zip` file containing a full copy of a Git repository,
it should not be trusted by default to be safe, as e.g. hooks could be configured
to run within the context of that repository. The problem has been patched in
versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4. As a
workaround, avoid using Git in repositories that have been obtained via archives
from untrusted sources.
References:
https://nvd.nist.gov/vuln/detail/CVE-2024-32002https://nvd.nist.gov/vuln/detail/CVE-2024-32004https://nvd.nist.gov/vuln/detail/CVE-2024-32020https://nvd.nist.gov/vuln/detail/CVE-2024-32021https://nvd.nist.gov/vuln/detail/CVE-2024-32465
(From OE-Core rev: 209c41377abf6853455b00af3923f1b244a3766b)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
wall in util-linux through 2.40, often installed with setgid
tty permissions, allows escape sequences to be sent to other
users' terminals through argv. (Specifically, escape sequences
received from stdin are blocked, but escape sequences received
from argv are not blocked.) There may be plausible scenarios
where this leads to account takeover.
CVE-2024-28085-0005 is the CVE fix and CVE-2024-28085-0001,
CVE-2024-28085-0002, CVE-2024-28085-0003, CVE-2024-28085-0004
are dependent commits to fix the CVE.
References:
https://nvd.nist.gov/vuln/detail/CVE-2024-28085
(From OE-Core rev: 28d9f948536dfee2330e4cfd225c932d20d688f1)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Adds bitbake variable to set additional mount flags for the /var/lib
overlayfs or bind mount when using a read-only root filesystem. This
can be used to set additional options like "-o nodev".
(From OE-Core rev: c3109e40e2c2c881996dd3fcc95fca74f098646d)
(From OE-Core rev: e0a1ed7aa1f2b12d985414db9a75d6e151ae8d21)
Signed-off-by: Colin McAllister <colin.mcallister@garmin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
An empty string assignment to WantedBy should clear all prior WantedBy
settings. This matches behavior of the current systemd implementation.
(From OE-Core rev: 8ede0083c28fadf1e83c9256618190b931edd306)
(From OE-Core rev: 9e3a2e143ef2aaab335439ddbe1ab976aeeed35d)
Signed-off-by: Bob Henz <robert_henz@jabil.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c653bfc68b)
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Building native Go tools results in the tool pointing to the wrong
location of dynamic linker (see below). The linker is looked up in the
temporary dir, which can be removed if rm_work is inherited. This
results in being unable to execute the program with the 'No such file or
directory' error. Override linker specificiation for native recipes (and
let Go build environment to pick up a correct one on it's own).
The error is observed in case the distro doesn't use uninative.bbclass.
If uninative.bbclass is used, the binary will be patched automatically
to use the uninative loader instead of the system one.
Without this patch:
$ ldd tmp-rpb-glibc/sysroots-components/x86_64/go-md2man-native/usr/bin/go-md2man
linux-vdso.so.1 (0x00007ffe945ec000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f3a7490e000)
/home/lumag/Projects/RPB/build-rpb/tmp-rpb-glibc/work/x86_64-linux/go-md2man-native/1.0.10+gitAUTOINC+f79a8a8ca6-r0/recipe-sysroot-native/usr/lib/ld-linux-x86-64.so.2 => /lib64/ld-linux-x86-64.so.2 (0x00007f3a74d13000)
$ tmp-rpb-glibc/sysroots-components/x86_64/go-md2man-native/usr/bin/go-md2man --help
-bash: tmp-rpb-glibc/sysroots-components/x86_64/go-md2man-native/usr/bin/go-md2man: No such file or directory
With the patch
$ ldd tmp-rpb-glibc/sysroots-components/x86_64/go-md2man-native/usr/bin/go-md2man
linux-vdso.so.1 (0x00007ffd19dbf000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f2d44181000)
/lib64/ld-linux-x86-64.so.2 (0x00007f2d44586000)
$ tmp-rpb-glibc/sysroots-components/x86_64/go-md2man-native/usr/bin/go-md2man --help
Usage of tmp-rpb-glibc/sysroots-components/x86_64/go-md2man-native/usr/bin/go-md2man:
-in string
Path to file to be processed (default: stdin)
-out string
Path to output processed file (default: stdout)
(From OE-Core rev: b611c77e4883ad81a8f40cbee3fea006500735ed)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 44b397daa68b4d0a461225fe9ff7db8b5fcfdb7b)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When gos internal linker is used, it uses hardcoded paths to the
interpreter (dynamic linker). For x86_64 this hardcoded path is
/lib64/ld-linux-x86-64.so.2, but yocto's default dynamic linker path
is /lib64/ld-linux-x86-64.so.2.
Most of the time, the internal linker is not used and binutils linker
sets the correct path, but sometimes the internal linker is used and
the resulting binary will not work on x86_64.
To ensure the path is always correct, pass it to the linker.
(From OE-Core rev: 69128ca66991b13358f2552fcd5a7cfa6dda4952)
Signed-off-by: Joerg Vehlow <joerg.vehlow@aox.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 6b54215074d7f3dbba07f096f16b9c0acf51527c)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
We have been seeing obscure failures in devtool, particularly on newer
autobuilder workers where it appears the cache is assumed to be valid
when it shouldn't be.
We're using the 'seconds' granulation mtime field which is not really
a good way of telling if a file has changed. We can switch to the "ns"
version which is better however also add in inode number and size as
precautions. We already have all this data and tuples are fast so there
isn't really any cost to do so.
This hopefully fixes [YOCTO #15318].
(Bitbake rev: 5a90927f31c4f9fccbe5d9d07d08e6e69485baa8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d9e5d313c79500e3c70ab9c3239b6b2180194f67)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Adresses CVEs: CVE-2024-33599, CVE-2024-33600, CVE-2024-33601, CVE-2024-33602
Changes:
54a666dc5c elf: Disable some subtests of ifuncmain1, ifuncmain5 for !PIE
3a38600cc7 malloc: Exit early on test failure in tst-realloc
924a98402a nscd: Use time_t for return type of addgetnetgrentX
396f065496 login: structs utmp, utmpx, lastlog _TIME_BITS independence (bug 30701)
77d8f49058 login: Check default sizes of structs utmp, utmpx, lastlog
8e7f0eba01 sparc: Remove 64 bit check on sparc32 wordsize (BZ 27574)
55771aba9d elf: Also compile dl-misc.os with $(rtld-early-cflags)
7a5864cac6 CVE-2024-33601, CVE-2024-33602: nscd: netgroup: Use two buffers in addgetnetgrentX (bug 31680)
bafadc589f CVE-2024-33600: nscd: Avoid null pointer crashes after notfound response (bug 31678)
4370bef52b CVE-2024-33600: nscd: Do not send missing not-found response in addgetnetgrentX (bug 31678)
7a95873543 CVE-2024-33599: nscd: Stack-based buffer overflow in netgroup cache (bug 31677)
Since glibc introduced file sysdeps/arm/bits/wordsize.h
our multilib patch needed to be updated.
(From OE-Core rev: 10b57ae56e6205414a44531728f691fda59a16c7)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
FreeGlyph() function declared in render/glyphstr_priv.h, it is not present in
current recipe version and introduced in later versions, added this change to
render/glyphstr.h
(From OE-Core rev: cc2d9275203ad9489da43ff4e1f0983c00f235fd)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- Make Scarthgap a current release
- Add Styhead
(From yocto-docs rev: 78b8d5b18274a41ffec43ca4e136abc717585f6d)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
They used to be required for qemu graphics support, but neither is being
for anything anymore.
(From yocto-docs rev: 41db85d4d429f06548e14617e05d045958e8566d)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In keeping with the addition of the motd message pointing out that
the poky DISTRO is a reference distribution, adjust the opening of the
Creating Your Own Distribution section to match. Additionally, add a
section on the end pointing out what users need to consider if they just
take a copy of the poky distribution and modify it.
(From yocto-docs rev: 30bdf5a101466acdf63027bbdfb69ee18ed707ab)
Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
ppp package has "RSA Data Security" license text
in Message-Digest Algorithm source file md5.c and md4.c
Add RSA-MD in LICENSE field for ppp package
(From OE-Core rev: 24fd9b6756728a0337100f53a1c6e92aba092f9d)
Signed-off-by: Poonam Jadhav <poonam.jadhav@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There was no CVE assigned but the commit message is clear.
(From OE-Core rev: 3743a82162546eceb8d54b240dc70c521c53bed8)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
If the kernel folder does not exist, find will result in an error.
This can occur if the kernel has no modules but, for example, custom modules are created.
Add check before deleting.
(From OE-Core rev: 4e4681b26e0d88ad219d72b75e598e6b81b430fc)
Signed-off-by: Heiko Thole <heiko.thole@entwicklung.eq-3.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7ef767d84d56b25498e45db83bb8f9d9caebeaf9)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Integrating the following commit(s) to linux-yocto/.:
1/1 [
Author: Bruce Ashfield
Email: bruce.ashfield@gmail.com
Subject: nfsd: drop CONFIG_NFSD_V3
Date: Tue, 2 Aug 2022 10:52:25 -0400
commit 5f9a62ff7d2808c7b56c0ec90f3b7eae5872afe6
Author: Chuck Lever <chuck.lever@oracle.com>
Date: Sun Feb 6 12:25:47 2022 -0500
NFSD: Remove CONFIG_NFSD_V3
Eventually support for NFSv2 in the Linux NFS server is to be
deprecated and then removed.
However, NFSv2 is the "always supported" version that is available
as soon as CONFIG_NFSD is set. Before NFSv2 support can be removed,
we need to choose a different "always supported" version.
This patch removes CONFIG_NFSD_V3 so that NFSv3 is always supported,
as NFSv2 is today. When NFSv2 support is removed, NFSv3 will become
the only "always supported" NFS version.
The defconfigs still need to be updated to remove CONFIG_NFSD_V3=y.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: dcbca1aedd9b41e78e00d6b763b2e99886be0780)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
b925f60c6ee7 Linux 5.15.157
d564809f27ea net: dsa: mt7530: fix enabling EEE on MT7531 switch on all boards
eb6535c6f7c2 net: dsa: mt7530: fix improper frames on all 25MHz and 40MHz XTAL MT7530
63ba7a80d6e2 net: dsa: introduce preferred_default_local_cpu_port and use on MT7530
84b7f50e631a net: dsa: mt7530: set all CPU ports in MT7531_CPU_PMAP
bdbe483da21f nilfs2: fix OOB in nilfs_set_de_type
3ab056814cd8 nouveau: fix instmem race condition around ptr stores
49c9958cf0a2 drm/vmwgfx: Sort primary plane formats by order of preference
8b12fc7b0326 drm/amdgpu: validate the parameters of bo mapping operations more clearly
a2fd6dbc98be binder: check offset alignment in binder_get_object()
0dc727a4e054 init/main.c: Fix potential static_command_line memory overflow
813f5213f2c6 arm64: hibernate: Fix level3 translation fault in swsusp_save()
f5a55db79bf7 KVM: x86/pmu: Do not mask LVTPC when handling a PMI on AMD platforms
7169354120d8 KVM: x86: Snapshot if a vCPU's vendor model is AMD vs. Intel compatible
43f00210cb25 fs: sysfs: Fix reference leak in sysfs_break_active_protection()
0d130158db29 speakup: Avoid crash on very long word
d8a2225f7dfa mei: me: disable RPL-S on SPS and IGN firmwares
7f67c2020cb0 usb: gadget: f_ncm: Fix UAF ncm object at re-bind after usb ep transport error
75ceeadfab1c usb: Disable USB3 LPM at shutdown
8aa5c28ac65c usb: dwc2: host: Fix dereference issue in DDMA completion flow.
7182175f565f Revert "usb: cdc-wdm: close race between read and workqueue"
def039849617 USB: serial: option: add Telit FN920C04 rmnet compositions
cd27cf1ec66d USB: serial: option: add Rolling RW101-GL and RW135-GL support
c48d624bbbad USB: serial: option: support Quectel EM060K sub-models
3338a967ca08 USB: serial: option: add Lonsung U8300/U9300 product
e94566d88701 USB: serial: option: add support for Fibocom FM650/FG650
6b5043463619 USB: serial: option: add Fibocom FM135-GL variants
7a3bbe41efa5 serial/pmac_zilog: Remove flawed mitigation for rx irq flood
b0b268eeb087 comedi: vmk80xx: fix incomplete endpoint checking
e39fae579d17 thunderbolt: Fix wake configurations after device unplug
62e0a5d4d4de thunderbolt: Avoid notify PM core about runtime PM resume
4291a6233ba8 x86/cpufeatures: Fix dependencies for GFNI, VAES, and VPCLMULQDQ
0be237b6b753 x86/bugs: Fix BHI retpoline check
a29ec0465dce clk: Get runtime PM before walking tree during disable_unused
db7c0ef4afea clk: Initialize struct clk_core kref earlier
bc6d766991e1 clk: Print an info line before disabling unused clocks
f3d89bc7dd65 clk: remove extra empty line
bdd70c8b02e7 clk: Mark 'all_lists' as const
3254a1f27952 clk: Remove prepare_lock hold assertion in __clk_release()
ce77f3beed02 drm/panel: visionox-rm69299: don't unregister DSI device
df0991da7db8 drm: nv04: Fix out of bounds access
3076b3c38a70 s390/cio: fix race condition during online processing
498f7b8037da s390/qdio: handle deferred cc1
45d70025006c RDMA/mlx5: Fix port number for counter query in multi-port configuration
8261489de3af RDMA/cm: Print the old state when cm_destroy_id gets timeout
2973b4a5eae7 RDMA/rxe: Fix the problem "mutex_destroy missing"
831157756e3c net: ethernet: ti: am65-cpsw-nuss: cleanup DMA Channels before using them
9495b7a412e3 net: dsa: mt7530: fix mirroring frames received on local port
a50dbeca28ac tun: limit printing rate when illegal packet received by tun dev
ae3f9e1221b3 af_unix: Don't peek OOB data without MSG_OOB.
1738dfe72c52 af_unix: Call manage_oob() for every skb in unix_stream_read_generic().
e719b52d0c56 netfilter: flowtable: incorrect pppoe tuple
d06977b9a410 netfilter: flowtable: validate pppoe header
5345d78ae64d netfilter: nf_flow_table: count pending offload workqueue tasks
7a1679e2d9bf netfilter: nft_set_pipapo: do not free live element
dceb683ab87c netfilter: br_netfilter: skip conntrack input hook for promisc packets
379bf7257bc5 netfilter: nf_tables: Fix potential data-race in __nft_obj_type_get()
0b6de00206ad netfilter: nf_tables: Fix potential data-race in __nft_expr_type_get()
fc1021337e59 Revert "lockd: introduce safe async lock op"
2a3073d58382 Revert "tracing/trigger: Fix to return error if failed to alloc snapshot"
2df2dd27066c kprobes: Fix possible use-after-free issue on kprobe registration
1253e34a548f bpf: Fix ringbuf memory type confusion when passing to helpers
cc9ac419351b bpf: Fix out of bounds access for ringbuf helpers
adc2d11b86ea bpf: Generally fix helper register offset check
0c261cbc29a6 bpf: Generalize check_ctx_reg for reuse with other types
1b661661642d bpf: Extend kfunc with PTR_TO_CTX, PTR_TO_MEM argument support
621bbe924c68 selftests/ftrace: Limit length in subsystem-enable tests
edfaf679b7c3 SUNRPC: Fix rpcgss_context trace event acceptor field
2364d0278fe1 btrfs: record delayed inode root in transaction
747228929b32 ksmbd: do not set SMB2_GLOBAL_CAP_ENCRYPTION for SMB 3.1.1
88b7f1143b15 ksmbd: validate payload size in ipc response
044b3d6c94c6 ksmbd: don't send oplock break if rename fails
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: 9c5ac2918753d3630dcd32673bee8ce72e8fe856)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
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.
c52b9710c83d Linux 5.15.156
88168b947c34 drm/i915/cdclk: Fix CDCLK programming order when pipes are active
b2bf58581baa x86/bugs: Replace CONFIG_SPECTRE_BHI_{ON,OFF} with CONFIG_MITIGATION_SPECTRE_BHI
d315f5eba585 x86/bugs: Remove CONFIG_BHI_MITIGATION_AUTO and spectre_bhi=auto
ebba2270ab74 x86/bugs: Clarify that syscall hardening isn't a BHI mitigation
e47d1cbde759 x86/bugs: Fix BHI handling of RRSBA
b4f2718f3d9b x86/bugs: Rename various 'ia32_cap' variables to 'x86_arch_cap_msr'
c768db14db8e x86/bugs: Cache the value of MSR_IA32_ARCH_CAPABILITIES
145d9930a151 x86/bugs: Fix BHI documentation
2c761457ef18 x86/bugs: Fix return type of spectre_bhi_state()
c6fd0e4f0069 irqflags: Explicitly ignore lockdep_hrtimer_exit() argument
69843741d64f x86/apic: Force native_apic_mem_read() to use the MOV instruction
c2981e32cf46 selftests: timers: Fix abs() warning in posix_timers test
70688450ddda x86/cpu: Actually turn off mitigations by default for SPECULATION_MITIGATIONS=n
e8f4a290abe9 perf/x86: Fix out of range data
acf9b01d344f vhost: Add smp_rmb() in vhost_vq_avail_empty()
d2dc6600d4e3 drm/client: Fully protect modes[] with dev->mode_config.mutex
773d38f42bbe btrfs: qgroup: correctly model root qgroup rsv in convert
23b57c556609 iommu/vt-d: Allocate local memory for page request queue
81f3ad644fbf tracing: hide unused ftrace_event_id_fops
fdfbf54d128a net: ena: Fix incorrect descriptor free behavior
ec25a9ce095a net: ena: Wrong missing IO completions check order
e667a05cbb39 net: ena: Fix potential sign extension issue
e76c2678228f af_unix: Fix garbage collector racing against connect()
37120fa8d92a af_unix: Do not use atomic ops for unix_sk(sk)->inflight.
22641478d80f net: dsa: mt7530: trap link-local frames regardless of ST Port State
26515606ecb5 net: sparx5: fix wrong config being used when reconfiguring PCS
7aaee12b804c net/mlx5: Properly link new fs rules into the tree
97dab36e57c6 netfilter: complete validation of user input
4b19e9507c27 ipv6: fix race condition between ipv6_get_ifaddr and ipv6_del_addr
6179cdbfe05d ipv4/route: avoid unused-but-set-variable warning
ed94af8d07d5 ipv6: fib: hide unused 'pn' variable
98b3e282623f octeontx2-af: Fix NIX SQ mode and BP config
b4bc99d04c68 af_unix: Clear stale u->oob_skb.
3c1ae6de74e3 geneve: fix header validation in geneve[6]_xmit_skb
f0a068de65d5 xsk: validate user input for XDP_{UMEM|COMPLETION}_FILL_RING
a9dca26b745e u64_stats: Disable preemption on 32bit UP+SMP PREEMPT_RT during updates.
11e04135b087 net: openvswitch: fix unwanted error log on timeout policy probing
8c820f7c8e9b scsi: qla2xxx: Fix off by one in qla_edif_app_getstats()
5562dbfcf59b nouveau: fix function cast warning
8d278fc34cdd Revert "drm/qxl: simplify qxl_fence_wait"
42beda7db44f arm64: dts: imx8-ss-conn: fix usdhc wrong lpcg clock order
cc7b83f04b43 media: cec: core: remove length check of Timer Status
75193678cce9 Bluetooth: Fix memory leak in hci_req_sync_complete()
53e494b7bc43 ring-buffer: Only update pages_touched when a new page is touched
87b6af1a7683 batman-adv: Avoid infinite loop trying to resize local TT
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: 3b229158f19e99588ad714eb993a5618a8f27540)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
fa3df276cd36 Linux 5.15.155
b54c4632946a Revert "ACPI: CPPC: Use access_width over bit_width for system memory accesses"
1793e6b2dae0 VMCI: Fix possible memcpy() run-time warning in vmci_datagram_invoke_guest_handler()
dd883e0138f1 Bluetooth: btintel: Fixe build regression
bb6b88270714 platform/x86: intel-vbtn: Update tablet mode switch at end of probe
dfb2ce952143 randomize_kstack: Improve entropy diffusion
7cfee26d1950 x86/mm/pat: fix VM_PAT handling in COW mappings
abfae420789a virtio: reenable config if freezing device failed
5d17986cbfd5 gcc-plugins/stackleak: Avoid .head.text section
7e0bd07ce965 gcc-plugins/stackleak: Ignore .noinstr.text and .entry.text
2d154a54c58f tty: n_gsm: require CAP_NET_ADMIN to attach N_GSM0710 ldisc
6cbbe1ba76ee netfilter: nf_tables: discard table flag update with pending basechain deletion
eb769ff4e281 netfilter: nf_tables: release mutex after nft_gc_seq_end from abort path
37fc2cde9d19 netfilter: nf_tables: release batch on table validation from abort path
48d6bcfc3175 fbmon: prevent division by zero in fb_videomode_from_videomode()
e2ce8625c321 drivers/nvme: Add quirks for device 126f:2262
871e695c08a3 fbdev: viafb: fix typo in hw_bitblt_1 and hw_bitblt_2
3beea96d4fc8 ASoC: soc-core.c: Skip dummy codec when adding platforms
eb7e92dbdc78 usb: sl811-hcd: only defined function checkdone if QUIRK2 is defined
e0db818c0871 usb: typec: tcpci: add generic tcpci fallback compatible
b6b12f4577a1 tools: iio: replace seekdir() in iio_generic_buffer
1d5276914eb7 ring-buffer: use READ_ONCE() to read cpu_buffer->commit_page in concurrent environment
39438227f888 ktest: force $buildonly = 1 for 'make_warnings_file' test type
72794acdd16b platform/x86: touchscreen_dmi: Add an extra entry for a variant of the Chuwi Vi8 tablet
18c51d97a242 Input: allocate keycode for Display refresh rate toggle
baf8a6d2cdd1 RDMA/cm: add timeout to cm_destroy_id wait
21e7d72d0cfc block: prevent division by zero in blk_rq_stat_sum()
be113e082b65 libperf evlist: Avoid out-of-bounds access
5dcded25c7e1 Revert "ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default"
504eb6b26ce8 SUNRPC: increase size of rpc_wait_queue.qlen from unsigned short to unsigned int
343586deb873 drm/amd/display: Fix nanosec stat overflow
ad207d1ca6d5 ext4: forbid commit inconsistent quota data when errors=remount-ro
19b7a1ff81b7 ext4: add a hint for block bitmap corrupt state in mb_groups
85f315792fac ALSA: firewire-lib: handle quirk to calculate payload quadlets as data block counter
09de9c3614ad media: sta2x11: fix irq handler cast
46e8711231b2 isofs: handle CDs with bad root inode but good Joliet root directory
7849e6f8410d scsi: lpfc: Fix possible memory leak in lpfc_rcv_padisc()
fd203d2c671b sysv: don't call sb_bread() with pointers_lock held
0b75d679e88f pinctrl: renesas: checker: Limit cfg reg enum checks to provided IDs
f917c66b1135 Input: synaptics-rmi4 - fail probing if memory allocation for "phys" fails
006936ecb4ed Bluetooth: btintel: Fix null ptr deref in btintel_read_version
b9117dc783c0 net/smc: reduce rtnl pressure in smc_pnet_create_pnetids_list()
2f6174fd4ccf btrfs: send: handle path ref underflow in header iterate_inode_ref()
a83c1f67a0f7 btrfs: export: handle invalid inode or root reference in btrfs_get_parent()
d1ffa4ae2d59 btrfs: handle chunk tree lookup error in btrfs_relocate_sys_chunks()
805a1cdde82f wifi: ath11k: decrease MHI channel buffer length to 8KB
0f22f30f79a8 net: pcs: xpcs: Return EINVAL in the internal methods
9a16a0d03305 tools/power x86_energy_perf_policy: Fix file leak in get_pkg_num()
0ff96ec22a84 pstore/zone: Add a null pointer check to the psz_kmsg_read
35f6b46eeb03 ionic: set adminq irq affinity
ba30ee96e87a arm64: dts: rockchip: fix rk3399 hdmi ports node
ba580534db14 arm64: dts: rockchip: fix rk3328 hdmi ports node
64a7694c851c cpuidle: Avoid potential overflow in integer multiplication
f4e70f422b76 panic: Flush kernel log buffer at the end
130b0cd06487 VMCI: Fix memcpy() run-time warning in dg_dispatch_as_host()
9ab8e24e81b9 wifi: ath9k: fix LNA selection in ath_ant_try_scan()
ff45899e732e net: dsa: fix panic when DSA master device unbinds on shutdown
cbac7de1d990 amdkfd: use calloc instead of kzalloc to avoid integer overflow
cdfd0a7f0139 Linux 5.15.154
8d8dc7ee5b98 x86: set SPECTRE_BHI_ON as default
a976b129dc86 KVM: x86: Add BHI_NO
c2b9e038896f x86/bhi: Mitigate KVM by default
f825494f2c6f x86/bhi: Add BHI mitigation knob
aa6247c9da25 x86/bhi: Enumerate Branch History Injection (BHI) bug
a9ca0e34a406 x86/bhi: Define SPEC_CTRL_BHI_DIS_S
bd53ec80f218 x86/bhi: Add support for clearing branch history at syscall entry
55516b355b0c x86/syscall: Don't force use of indirect calls for system calls
276fb9a658d0 x86/bugs: Change commas to semicolons in 'spectre_v2' sysfs file
b9c5f7da76b1 nvme: fix miss command type check
d225b0ac96dc gro: fix ownership transfer
6564b014af92 mm/secretmem: fix GUP-fast succeeding on secretmem folios
a479b4de11dd mptcp: don't account accept() of non-MPC client as fallback to TCP
1f7e13d3e870 x86/retpoline: Do the necessary fixup to the Zen3/4 srso return thunk for !SRSO
ff137c5c0dcf x86/bugs: Fix the SRSO mitigation on Zen3/4
dff6072124f6 riscv: process: Fix kernel gp leakage
fd9662109deb riscv: Fix spurious errors from __get/put_kernel_nofault
6135537e1e66 s390/entry: align system call table on 8 bytes
f860595512ff x86/mce: Make sure to grab mce_sysfs_mutex in set_bank()
3ee242410754 of: dynamic: Synchronize of_changeset_destroy() with the devlink removals
03c356860b8b driver core: Introduce device_link_wait_removal()
5e32c0cc476d ALSA: hda/realtek: Update Panasonic CF-SZ6 quirk to support headset with microphone
de48795233cc fs/pipe: Fix lockdep false-positive in watchqueue pipe_write()
eaaaa49593e9 openrisc: Fix pagewalk usage in arch_dma_{clear, set}_uncached
58e5349bb4ed HID: uhid: Use READ_ONCE()/WRITE_ONCE() for ->running
f7a3090bfd3b nfsd: hold a lighter-weight client reference over CB_RECALL_ANY
00f7576062a7 ata: sata_mv: Fix PCI device ID table declaration compilation warning
e0ad4c270670 scsi: mylex: Fix sysfs buffer lengths
117d7ef3190c ata: sata_sx4: fix pdc20621_get_from_dimm() on 64-bit
e9b71370cbc7 ASoC: ops: Fix wraparound for mask in snd_soc_get_volsw
562adaf79df4 ASoC: rt711-sdw: fix locking sequence
bcf894d7eebe ASoC: rt711-sdca: fix locking sequence
b53cf951389c ASoC: rt5682-sdw: fix locking sequence
9df33e57f5c9 net: ravb: Always process TX descriptor ring
fcc739d7f034 net: fec: Set mac_managed_pm during probe
498cc233c460 drivers: net: convert to boolean for the mac_managed_pm flag
0985fbfbcb8f net: usb: asix: suspend embedded PHY if external is used
342cb04dcf2a i40e: Enforce software interrupt during busy-poll exit
c9bcd6465538 i40e: Remove _t suffix from enum type names
2a0a64c9d1d5 i40e: Store the irq number in i40e_q_vector
bf7396ec564f Revert "usb: phy: generic: Get the vbus supply"
506a9ec5d3f1 scsi: qla2xxx: Update manufacturer detail
315c4527cdd8 scsi: qla2xxx: Update manufacturer details
951d2748a2a8 i40e: fix vf may be used uninitialized in this function warning
8db472e17dec i40e: fix i40e_count_filters() to count only active/new filters
f53bea1c7971 octeontx2-pf: check negative error code in otx2_open()
ec694ca1567e octeontx2-af: Fix issue with loading coalesced KPU profiles
73a328df2c4a udp: prevent local UDP tunnel packets from being GROed
7223f4ee4f31 udp: do not transition UDP GRO fraglist partial checksums to unnecessary
d49ae15a5767 udp: do not accept non-tunnel GSO skbs landing in a tunnel
63a10b530e22 mlxbf_gige: stop interface during shutdown
40a344b2ddc0 ipv6: Fix infinite recursion in fib6_dump_done().
61f5b43bc04e selftests: reuseaddr_conflict: add missing new line at the end of the output
ee0088101bee erspan: make sure erspan_base_hdr is present in skb->head
3f9a8b794fc9 selftests: net: gro fwd: update vxlan GRO test expectations
457c832a0c5d net: stmmac: fix rx queue priority assignment
a097fc199ab5 net/sched: act_skbmod: prevent kernel-infoleak
d1e73fb19a4c bpf, sockmap: Prevent lock inversion deadlock in map delete elem
465abe8a7af4 vboxsf: Avoid an spurious warning if load_nls_xxx() fails
440e948cf0ef netfilter: validate user input for expected length
2485bcfe05ee netfilter: nf_tables: Fix potential data-race in __nft_flowtable_type_get()
f7e3c88cc2a9 netfilter: nf_tables: flush pending destroy work before exit_net release
8ba81dca416a netfilter: nf_tables: reject new basechain after table flag update
a9bd6bb6f02b KVM: x86: Mark target gfn of emulated atomic instruction as dirty
bd9a25a0228e KVM: x86: Bail to userspace if emulation of atomic user access faults
a7c6a643b25b thermal: devfreq_cooling: Fix perf state when calculate dfc res_util
8d7132a67eeb mm, vmscan: prevent infinite loop for costly GFP_NOIO | __GFP_RETRY_MAYFAIL allocations
b279ddce1030 Revert "x86/mm/ident_map: Use gbpages only where full GB page should be mapped."
a180ca336989 io_uring: ensure '0' is returned on file registration success
fe9df687e74a locking/rwsem: Disable preemption while trying for rwsem lock
d49fac38479b net/rds: fix possible cp null dereference
4143b9479caa xen-netfront: Add missing skb_mark_for_recycle
a8170af8b10e Bluetooth: Fix TOCTOU in HCI debugfs implementation
d6cfb0d7bb2d Bluetooth: hci_event: set the conn encrypted before conn establishes
96bd0de3915f arm64: dts: qcom: sc7180-trogdor: mark bluetooth address as broken
76299c3f11b4 x86/cpufeatures: Add CPUID_LNX_5 to track recently added Linux-defined word
571d80f8a458 x86/cpufeatures: Add new word for scattered features
9956d0504f0b r8169: fix issue caused by buggy BIOS on certain boards with RTL8168d
b8438db83732 dm integrity: fix out-of-range warning
bef3bc962dcc Octeontx2-af: fix pause frame configuration in GMP mode
37dc1718dc0c bpf: Protect against int overflow for stack access size
a583117668dd mlxbf_gige: call request_irq() after NAPI initialized
85c410f65b36 ACPICA: debugger: check status of acpi_evaluate_object() in acpi_db_walk_for_fields()
2e43d8eba6ed tcp: properly terminate timers for kernel sockets
744494dbb058 s390/qeth: handle deferred cc1
2fb283e2f3cc ixgbe: avoid sleeping allocation in ixgbe_ipsec_vf_add_sa()
28db0ae86cb9 wifi: iwlwifi: mvm: rfi: fix potential response leaks
254f1c252171 iwlwifi: mvm: rfi: use kmemdup() to replace kzalloc + memcpy
d60ff8e04b17 mlxbf_gige: stop PHY during open() error paths
ac68d9fa09e4 nfc: nci: Fix uninit-value in nci_dev_up and nci_ntf_packet
5e1984aba37a USB: UAS: return ENODEV when submit urbs fail with device not attached
e38f1ea6cbc5 scsi: usb: Stop using the SCSI pointer
172800c69cd0 scsi: usb: Call scsi_done() directly
1b175bc579f4 USB: core: Fix deadlock in usb_deauthorize_interface()
ea8839e31942 scsi: lpfc: Correct size for wqe for memset()
0f608ce96520 PCI/DPC: Quirk PIO log size for Intel Ice Lake Root Ports
ff5305ec8c0e x86/cpu: Enable STIBP on AMD if Automatic IBRS is enabled
34c0786ef6c7 scsi: qla2xxx: Delay I/O Abort on PCI error
d37f3b14da07 scsi: qla2xxx: Change debug message during driver unload
b03e626bd6d3 scsi: qla2xxx: Fix double free of fcport
a859f6a8f423 scsi: qla2xxx: Fix command flush on cable pull
0bd653100a8e scsi: qla2xxx: NVME|FCP prefer flag not being honored
a139d643c5d6 scsi: qla2xxx: Split FCE|EFT trace control
002caa257783 scsi: qla2xxx: Fix N2N stuck connection
786121320183 scsi: qla2xxx: Prevent command send on chip reset
f18f5fcdaa8c usb: typec: ucsi: Clear UCSI_CCI_RESET_COMPLETE before reset
ad165b37fd4f usb: typec: ucsi: Ack unsupported commands
df5cbb908f16 usb: udc: remove warning when queue disabled ep
7de1df3212d8 usb: dwc2: gadget: LPM flow fix
2cf845a770d6 usb: dwc2: gadget: Fix exiting from clock gating
32d3f2f108eb usb: dwc2: host: Fix ISOC flow in DDMA mode
555be0cc2a2f usb: dwc2: host: Fix hibernation flow
3b1a9f852b4c usb: dwc2: host: Fix remote wakeup from hibernation
489e8064ac00 USB: core: Add hub_get() and hub_put() routines
7094516d7b30 staging: vc04_services: fix information leak in create_component()
77a46fbfe6ae staging: vc04_services: changen strncpy() to strscpy_pad()
cea234bb214b scsi: core: Fix unremoved procfs host directory regression
8c9902216816 ALSA: sh: aica: reorder cleanup operations to avoid UAF bugs
8bf22f8d1d53 drm/amd/display: Preserve original aspect ratio in create stream
9e6bb089649a drm/amdgpu: Use drm_mode_copy()
a86e54a34513 usb: cdc-wdm: close race between read and workqueue
ac9b6b3e8d12 drm/i915/gt: Reset queue_priority_hint on parking
553d294db94b net: ll_temac: platform_get_resource replaced by wrong function
81b8645feca0 mmc: core: Avoid negative index with array access
0ecd5689767b mmc: core: Initialize mmc_blk_ioc_data
f2bbbeb8287f hexagon: vmlinux.lds.S: handle attributes section
818e531cfb1d exec: Fix NOMMU linux_binprm::exec in transfer_args_to_stack()
c8bddbd91bc8 wifi: mac80211: check/clear fast rx for non-4addr sta VLAN changes
56e05d28c39b btrfs: zoned: use zone aware sb location for scrub
3f0cda401d6e init: open /initrd.image with O_LARGEFILE
c612edbc5ec6 mm/migrate: set swap entry values of THP tail pages properly.
e635f652696e serial: sc16is7xx: convert from _raw_ to _noinc_ regmap functions for FIFO
250219c6a556 vfio/fsl-mc: Block calling interrupt handler without trigger
cc5838f19d39 vfio/platform: Create persistent IRQ handlers
4cb0d7532126 vfio/pci: Create persistent INTx handler
26a6a1e0b4ec vfio: Introduce interface to flush virqfd inject workqueue
ec73e0797292 vfio/pci: Lock external INTx masking ops
b7a2f0955ffc vfio/pci: Disable auto-enable of exclusive INTx IRQ
c035ce9feb0c selftests: mptcp: diag: return KSFT_FAIL not test_cnt
dc394fe41d6b powerpc: xor_vmx: Add '-mhard-float' to CFLAGS
9bc9c11c151a efivarfs: Request at most 512 bytes for variable names
36b5c35d43aa perf/core: Fix reentry problem in perf_output_read_group()
ccd9fe71b9ee nfsd: Fix a regression in nfsd_setattr()
e90402fb0697 nfsd: don't call locks_release_private() twice concurrently
8b4fa191deed nfsd: don't take fi_lock in nfsd_break_deleg_cb()
c6f8b3fcc627 nfsd: fix RELEASE_LOCKOWNER
32c2cb2c0d37 nfsd: drop the nfsd_put helper
c52fee7a1f98 nfsd: call nfsd_last_thread() before final nfsd_put()
2267b2e84593 lockd: introduce safe async lock op
6e5fed48d8b7 NFSD: fix possible oops when nfsd/pool_stats is closed.
394d3f294a9a Documentation: Add missing documentation for EXPORT_OP flags
56e5eeff6cfa nfsd: separate nfsd_last_thread() from nfsd_put()
dec6b8bcac73 nfsd: Simplify code around svc_exit_thread() call in nfsd()
05b452e8748b nfsd: Fix creation time serialization order
760a6f755d94 NFSD: Add an nfsd4_encode_nfstime4() helper
663ec8f5ffc4 lockd: drop inappropriate svc_get() from locked_get()
9b405c0f84d9 nfsd: fix double fget() bug in __write_ports_addfd()
645c1b4b139b nfsd: make a copy of struct iattr before calling notify_change
4e6e49829151 NFSD: Fix problem of COMMIT and NFS4ERR_DELAY in infinite loop
786e3248d5ef nfsd: simplify the delayed disposal list code
a53d804930dc NFSD: Convert filecache to rhltable
b27ee0682437 nfsd: allow reaping files still under writeback
12f8f9fe1146 nfsd: update comment over __nfsd_file_cache_purge
ad9cf5b1d017 nfsd: don't take/put an extra reference when putting a file
b5a439e8b087 nfsd: add some comments to nfsd_file_do_acquire
83a019b049db nfsd: don't kill nfsd_files because of lease break error
55e429715edc nfsd: simplify test_bit return in NFSD_FILE_KEY_FULL comparator
9fff2daca45a nfsd: NFSD_FILE_KEY_INODE only needs to find GC'ed entries
bfa4a3996e73 nfsd: don't open-code clear_and_wake_up_bit
b11d8162c24a nfsd: call op_release, even when op_func returns an error
12eca509234a nfsd: don't replace page in rq_pages if it's a continuation of last page
8e469b994407 NFSD: Protect against filesystem freezing
17298e08006e NFSD: copy the whole verifier in nfsd_copy_write_verifier
4161b518e4a9 nfsd: don't fsync nfsd_files on last close
94e412c945e6 nfsd: fix courtesy client with deny mode handling in nfs4_upgrade_open
a0df1c3326e7 NFSD: fix problems with cleanup on errors in nfsd4_copy
22a0dd206a32 nfsd: don't hand out delegation on setuid files being opened for write
80a15dc4a021 NFSD: fix leaked reference count of nfsd4_ssc_umount_item
b3169b6ffe03 nfsd: clean up potential nfsd_file refcount leaks in COPY codepath
31d4aa4584cf nfsd: allow nfsd_file_get to sanely handle a NULL pointer
97522085eeec NFSD: enhance inter-server copy cleanup
005ef7285fb9 nfsd: don't destroy global nfs4_file table in per-net shutdown
0bc6d703109e nfsd: don't free files unconditionally in __nfsd_file_cache_purge
958294a3eb82 NFSD: replace delayed_work with work_struct for nfsd_client_shrinker
354eade5f278 NFSD: register/unregister of nfsd-client shrinker at nfsd startup/shutdown time
72906e8da982 NFSD: Use set_bit(RQ_DROPME)
d7cfba56fa75 Revert "SUNRPC: Use RMW bitops in single-threaded hot paths"
0b778361998d nfsd: fix handling of cached open files in nfsd4_open codepath
83a8aba1b725 nfsd: rework refcounting in filecache
43afef9fab65 NFSD: Avoid clashing function prototypes
1e9eac6a111c NFSD: Use only RQ_DROPME to signal the need to drop a reply
d8065d0f2121 NFSD: add CB_RECALL_ANY tracepoints
e18fc5fb2f00 NFSD: add delegation reaper to react to low memory condition
ed36015f7ef9 NFSD: add support for sending CB_RECALL_ANY
8766b38f54e9 NFSD: refactoring courtesy_client_reaper to a generic low memory shrinker
ce0b786b6ebf trace: Relocate event helper files
af7ee7ec1051 lockd: fix file selection in nlmsvc_cancel_blocked
eb0433d95c84 lockd: ensure we use the correct file descriptor when unlocking
281092cf3fc3 lockd: set missing fl_flags field when retrieving args
d561fe540e80 NFSD: Use struct_size() helper in alloc_session()
4e293f2d214c nfsd: return error if nfs4_setacl fails
2c1be5d65d76 NFSD: Add an nfsd_file_fsync tracepoint
8dafc6143041 nfsd: fix up the filecache laundrette scheduling
e8f25bd0e842 filelock: add a new locks_inode_context accessor function
dc468e079961 nfsd: reorganize filecache.c
6340d965599d nfsd: remove the pages_flushed statistic from filecache
99bf0850f399 NFSD: Fix licensing header in filecache.c
43cf59a34b34 NFSD: Use rhashtable for managing nfs4_file objects
323c83bde6d6 NFSD: Refactor find_file()
2b03fd9fe4bc NFSD: Clean up find_or_add_file()
d02c59ebe058 NFSD: Add a nfsd4_file_hash_remove() helper
0b4436381ee0 NFSD: Clean up nfsd4_init_file()
d78f7abe63fc NFSD: Update file_hashtbl() helpers
94f52a094c24 NFSD: Use const pointers as parameters to fh_ helpers
3d1af4319d25 NFSD: Trace delegation revocations
0cf54e35894c NFSD: Trace stateids returned via DELEGRETURN
cb966b357f01 NFSD: Clean up nfs4_preprocess_stateid_op() call sites
6baa3dfe404b NFSD: Flesh out a documenting comment for filecache.c
5fbeb6216e10 NFSD: Add an NFSD_FILE_GC flag to enable nfsd_file garbage collection
a08d9df51c52 NFSD: Revert "NFSD: NFSv4 CLOSE should release an nfsd_file immediately"
b34aa1a8c7a7 NFSD: Pass the target nfsd_file to nfsd_commit()
81c3ab9b95bf exportfs: use pr_debug for unreachable debug statements
10d55a17899a nfsd: allow disabling NFSv2 at compile time
4d1fa40d54ae nfsd: move nfserrno() to vfs.c
3b623a6a12b7 nfsd: ignore requests to disable unsupported versions
1c2f1a171bf0 NFSD: Finish converting the NFSv3 GETACL result encoder
98278765a215 NFSD: Remove redundant assignment to variable host_err
28798577f805 NFSD: Simplify READ_PLUS
19fbd8c2b53f nfsd: use locks_inode_context helper
b11f5d7bc0ea lockd: use locks_inode_context helper
071eb319ce4d NFSD: Fix reads with a non-zero offset that don't end on a page boundary
e4d787430855 NFSD: Fix trace_nfsd_fh_verify_err() crasher
3f439c7701d3 nfsd: put the export reference in nfsd4_verify_deleg_dentry
98d400fc2d09 nfsd: fix use-after-free in nfsd_file_do_acquire tracepoint
3ec2c9976c17 nfsd: fix net-namespace logic in __nfsd_file_cache_purge
f17c07f8ea77 nfsd: ensure we always call fh_verify_error tracepoint
15d01caf3587 NFSD: unregister shrinker when nfsd_init_net() fails
d1b0ceeac1dc nfsd: rework hashtable handling in nfsd_do_file_acquire
405ade5b561a nfsd: fix nfsd_file_unhash_and_dispose
dde8424b249c fanotify: Remove obsoleted fanotify_event_has_path()
a0ca9025c8be fsnotify: remove unused declaration
6029a4f7ad98 fs/notify: constify path
3af497e3f7cc nfsd: extra checks when freeing delegation stateids
e55378bce5f6 nfsd: make nfsd4_run_cb a bool return function
f6279fa0dc9d nfsd: fix comments about spinlock handling with delegations
ecb0eb07eeda nfsd: only fill out return pointer on success in nfsd4_lookup_stateid
4ad28d583e58 NFSD: Cap rsize_bop result based on send buffer size
4794c948de06 NFSD: Rename the fields in copy_stateid_t
0793ec49baaf nfsd: use DEFINE_SHOW_ATTRIBUTE to define nfsd_file_cache_stats_fops
815efd78cbe8 nfsd: use DEFINE_SHOW_ATTRIBUTE to define nfsd_reply_cache_stats_fops
861a163d4973 nfsd: use DEFINE_SHOW_ATTRIBUTE to define client_info_fops
25e0dd89d455 nfsd: use DEFINE_SHOW_ATTRIBUTE to define export_features_fops and supported_enctypes_fops
685d01c2b280 nfsd: use DEFINE_PROC_SHOW_ATTRIBUTE to define nfsd_proc_ops
82fbfbe92d4b NFSD: Pack struct nfsd4_compoundres
cd8bcaeeae6f NFSD: Remove unused nfsd4_compoundargs::cachetype field
ba3bd2bf0c74 NFSD: Remove "inline" directives on op_rsize_bop helpers
d8d3a672e159 NFSD: Clean up nfs4svc_encode_compoundres()
fc47f8ddfc85 NFSD: Clean up WRITE arg decoders
b3f3b21ed289 NFSD: Use xdr_inline_decode() to decode NFSv3 symlinks
cab5399262ec NFSD: Refactor common code out of dirlist helpers
07b68ff5c71c NFSD: Reduce amount of struct nfsd4_compoundargs that needs clearing
2005eba603e9 SUNRPC: Parametrize how much of argsize should be zeroed
9acc4812427e NFSD: add shrinker to reap courtesy clients on low memory condition
8c9e5ad10357 NFSD: keep track of the number of courtesy clients in the system
c65977020ba8 NFSD: Make nfsd4_remove() wait before returning NFS4ERR_DELAY
d1ee3403e098 NFSD: Make nfsd4_rename() wait before returning NFS4ERR_DELAY
50aa6a80d0a7 NFSD: Make nfsd4_setattr() wait before returning NFS4ERR_DELAY
9863ece99e95 NFSD: Refactor nfsd_setattr()
8a3c48cd5346 NFSD: Add a mechanism to wait for a DELEGRETURN
bcd4c7511593 NFSD: Add tracepoints to report NFSv4 callback completions
3fe32c519bef NFSD: Trace NFSv4 COMPOUND tags
62980365d6e8 NFSD: Replace dprintk() call site in fh_verify()
5118eb6c2926 nfsd: remove nfsd4_prepare_cb_recall() declaration
4440588b936c nfsd: clean up mounted_on_fileid handling
5f6f6b2a3bb1 NFSD: drop fname and flen args from nfsd_create_locked()
37f3b9c39895 NFSD: Increase NFSD_MAX_OPS_PER_COMPOUND
56ffc3ab884c nfsd: Propagate some error code returned by memdup_user()
371d2d25bf61 nfsd: Avoid some useless tests
211014047ec9 NFSD: remove redundant variable status
5b6441a5d371 NFSD enforce filehandle check for source file in COPY
285579928965 lockd: move from strlcpy with unused retval to strscpy
574ec47ac850 NFSD: move from strlcpy with unused retval to strscpy
460743da0e55 nfsd_splice_actor(): handle compound pages
c9cb32ad429c NFSD: fix regression with setting ACLs.
4b910dd7fe47 NFSD: discard fh_locked flag and fh_lock/fh_unlock
7538fc9cba84 NFSD: use (un)lock_inode instead of fh_(un)lock for file operations
e0335e7c4a51 NFSD: use explicit lock/unlock for directory ops
ebd1b016ad4d NFSD: reduce locking in nfsd_lookup()
ba4b518a23d3 NFSD: only call fh_unlock() once in nfsd_link()
ff01da71e484 NFSD: always drop directory lock in nfsd_unlink()
4655bcbce761 NFSD: change nfsd_create()/nfsd_symlink() to unlock directory before returning.
d52acd23a327 NFSD: add posix ACLs to struct nfsd_attrs
a3f27177c21b NFSD: add security label to struct nfsd_attrs
8a26a1b5c887 NFSD: set attributes when creating symlinks
183514794814 NFSD: introduce struct nfsd_attrs
162f99ff7b95 NFSD: verify the opened dentry after setting a delegation
3a5ab224a838 NFSD: drop fh argument from alloc_init_deleg
b6494b36b80c NFSD: Move copy offload callback arguments into a separate structure
8918b50537e9 NFSD: Add nfsd4_send_cb_offload()
bb1eb9755892 NFSD: Remove kmalloc from nfsd4_do_async_copy()
9cecf4772e8c NFSD: Refactor nfsd4_do_copy()
a48454785bc9 NFSD: Refactor nfsd4_cleanup_inter_ssc() (2/2)
4952fe668917 NFSD: Refactor nfsd4_cleanup_inter_ssc() (1/2)
6cb00ba23083 NFSD: Replace boolean fields in struct nfsd4_copy
6ff95a5f72eb NFSD: Make nfs4_put_copy() static
9a99c7f5d98b NFSD: Reorder the fields in struct nfsd4_op
7d1e44fd0637 NFSD: Shrink size of struct nfsd4_copy
24286575c674 NFSD: Shrink size of struct nfsd4_copy_notify
00eb5bd3844c NFSD: nfserrno(-ENOMEM) is nfserr_jukebox
9032c8e3aecb NFSD: Fix strncpy() fortify warning
0dfb19289614 NFSD: Clean up nfsd4_encode_readlink()
fc7380a198f2 NFSD: Use xdr_pad_size()
2528f487c825 NFSD: Simplify starting_len
7bc543311784 NFSD: Optimize nfsd4_encode_readv()
a70976ec89c2 NFSD: Add an nfsd4_read::rd_eof field
2540b7042998 NFSD: Clean up SPLICE_OK in nfsd4_encode_read()
3e7adac61db2 NFSD: Optimize nfsd4_encode_fattr()
0d6c82286ddf NFSD: Optimize nfsd4_encode_operation()
b9e6a5610b5c nfsd: silence extraneous printk on nfsd.ko insertion
650417956a22 NFSD: limit the number of v4 clients to 1024 per 1GB of system memory
59d35878294b NFSD: keep track of the number of v4 clients in the system
0f202977cad1 NFSD: refactoring v4 specific code to a helper in nfs4state.c
a52bb607abd0 NFSD: Ensure nf_inode is never dereferenced
e3befca679a9 NFSD: NFSv4 CLOSE should release an nfsd_file immediately
9be6499171fb NFSD: Move nfsd_file_trace_alloc() tracepoint
06d9c87204b2 NFSD: Separate tracepoints for acquire and create
4b338b528c43 NFSD: Clean up unused code after rhashtable conversion
1bea66c08890 NFSD: Convert the filecache to use rhashtable
208bd42a1a16 NFSD: Set up an rhashtable for the filecache
0b3a69057db2 NFSD: Replace the "init once" mechanism
76e2424c0d29 NFSD: Remove nfsd_file::nf_hashval
ec30a456359c NFSD: nfsd_file_hash_remove can compute hashval
7e8d4a933468 NFSD: Refactor __nfsd_file_close_inode()
2aa9fd1db009 NFSD: nfsd_file_unhash can compute hashval from nf->nf_inode
d6a23d45e2ef NFSD: Remove lockdep assertion from unhash_and_release_locked()
e97c2d5a71cf NFSD: No longer record nf_hashval in the trace log
1db19c3574f2 NFSD: Never call nfsd_file_gc() in foreground paths
81e3c7702799 NFSD: Fix the filecache LRU shrinker
ffb1a10a4405 NFSD: Leave open files out of the filecache LRU
175f88a6d509 NFSD: Trace filecache LRU activity
eed6df31603e NFSD: WARN when freeing an item still linked via nf_lru
16cbc64f9ce4 NFSD: Hook up the filecache stat file
4ade29dd0944 NFSD: Zero counters when the filecache is re-initialized
a880dcef74da NFSD: Record number of flush calls
ae76efbdfef7 NFSD: Report the number of items evicted by the LRU walk
5ce93c611c13 NFSD: Refactor nfsd_file_lru_scan()
5b6f8b083676 NFSD: Refactor nfsd_file_gc()
c162c99a29f7 NFSD: Add nfsd_file_lru_dispose_list() helper
4420d19ed4e4 NFSD: Report average age of filecache items
c18563275fbc NFSD: Report count of freed filecache items
b2dc4d30b0d8 NFSD: Report count of calls to nfsd_file_acquire()
0369b53886ec NFSD: Report filecache LRU size
f1785afc8946 NFSD: Demote a WARN to a pr_warn()
f87230a7dbe4 nfsd: remove redundant assignment to variable len
cad76843c768 NFSD: Fix space and spelling mistake
dcbebc868503 NFSD: Instrument fh_verify()
6345e92a9d0c NLM: Defend against file_lock changes after vfs_test_lock()
3482739bd413 fsnotify: Fix comment typo
b65b2d418759 fanotify: introduce FAN_MARK_IGNORE
c1f1797a8316 fanotify: cleanups for fanotify_mark() input validations
4c3723c53549 fanotify: prepare for setting event flags in ignore mask
cbe3bf6fcdf1 fs: inotify: Fix typo in inotify comment
f3222a6b66ae NFSD: Decode NFSv4 birth time attribute
0a160dc54991 fanotify: refine the validation checks on non-dir inode mask
47a1d1a2c1d5 NFS: restore module put when manager exits.
261eabe19cb2 NFSD: Fix potential use-after-free in nfsd_file_put()
ba68ab7d14dc NFSD: nfsd_file_put() can sleep
f55b83a598db NFSD: Add documenting comment for nfsd4_release_lockowner()
0775c8784e4c NFSD: Modernize nfsd4_release_lockowner()
5e4ee807e35a nfsd: Fix null-ptr-deref in nfsd_fill_super()
bf3182054995 nfsd: Unregister the cld notifier when laundry_wq create failed
3a66ad7ea7b1 SUNRPC: Use RMW bitops in single-threaded hot paths
7af208c9ea06 NFSD: Trace filecache opens
73d9eb9e19c6 NFSD: Move documenting comment for nfsd4_process_open2()
7dfad7f7da07 NFSD: Fix whitespace
b54f6a079ab2 NFSD: Remove dprintk call sites from tail of nfsd4_open()
106331a12b0f NFSD: Instantiate a struct file when creating a regular NFSv4 file
ce2296da5dad NFSD: Clean up nfsd_open_verified()
dabf24069b12 NFSD: Remove do_nfsd_create()
62bac33a70e8 NFSD: Refactor NFSv4 OPEN(CREATE)
ab407e0bf8d5 NFSD: Refactor NFSv3 CREATE
3bd0ae962ba8 NFSD: Refactor nfsd_create_setattr()
cf655c890bb6 NFSD: Avoid calling fh_drop_write() twice in do_nfsd_create()
55cb08630eb6 NFSD: Clean up nfsd3_proc_create()
2e0f8ee3c1ae NFSD: Show state of courtesy client in client info
6e56a5f75c55 NFSD: add support for lock conflict to courteous server
c3b2013544c8 fs/lock: add 2 callbacks to lock_manager_operations to resolve conflict
a8040fed13ed fs/lock: add helper locks_owner_has_blockers to check for blockers
d9fc2f8267e7 NFSD: move create/destroy of laundry_wq to init_nfsd and exit_nfsd
492634cbfe3d NFSD: add support for share reservation conflict to courteous server
26540b8940a2 NFSD: add courteous server support for thread with only delegation
56bc7e3821e8 NFSD: Clean up nfsd_splice_actor()
f14aa4a04472 fanotify: fix incorrect fmode_t casts
40ca5d91b578 fsnotify: consistent behavior for parent not watching children
f0628430d25d fsnotify: introduce mark type iterator
a97561b460c7 fanotify: enable "evictable" inode marks
c47bab4394a7 fanotify: use fsnotify group lock helpers
7fcef3285ade fanotify: implement "evictable" inode marks
33e91fb5eee5 fanotify: factor out helper fanotify_mark_update_flags()
5054f130f81f fanotify: create helper fanotify_mark_user_flags()
4f145b67c075 fsnotify: allow adding an inode mark without pinning inode
3c9dc688678b dnotify: use fsnotify group lock helpers
50612cd6a783 nfsd: use fsnotify group lock helpers
35f3fad0e30a inotify: use fsnotify group lock helpers
e419965d9323 fsnotify: create helpers for group mark_mutex lock
cdf89b045b30 fsnotify: make allow_dups a property of the group
ac51c087abd2 fsnotify: pass flags argument to fsnotify_alloc_group()
d032dd5a823b inotify: move control flags from mask to mark flags
93d2afc7d27c fs/lock: documentation cleanup. Replace inode->i_lock with flc_lock.
e19ec9acfbcb fanotify: do not allow setting dirent events in mask of non-dir
a98e5b3d958a nfsd: Clean up nfsd_file_put()
893fa2b80235 nfsd: Fix a write performance regression
091e4062ffd0 fsnotify: remove redundant parameter judgment
fd7de66b50b5 fsnotify: optimize FS_MODIFY events with no ignored masks
4bef66ca56d1 fsnotify: fix merge with parent's ignored mask
7dcd851cf863 nfsd: fix using the correct variable for sizeof()
bd0fee92b4e8 NFSD: Clean up _lm_ operation names
a028a32ab617 NFSD: Remove CONFIG_NFSD_V3
511360e1f526 NFSD: Move svc_serv_ops::svo_function into struct svc_serv
a5deac8754d6 NFSD: Remove svc_serv_ops::svo_module
7d94952cd5cf SUNRPC: Remove svc_shutdown_net()
c3fa9c2d3666 SUNRPC: Rename svc_close_xprt()
6c8231f0c289 SUNRPC: Rename svc_create_xprt()
4c9a56a70b4d SUNRPC: Remove svo_shutdown method
9d3cc211779a SUNRPC: Merge svc_do_enqueue_xprt() into svc_enqueue_xprt()
466562c48101 SUNRPC: Remove the .svo_enqueue_xprt method
61a9ecdb77c6 NFSD: Remove NFSD_PROC_ARGS_* macros
b42c9b5d9c84 NFSD: Streamline the rare "found" case
69e08eb5bf00 NFSD: Skip extra computation for RC_NOCACHE case
863aed522ef0 orDate: Thu Sep 30 19:19:57 2021 -0400
5b3110364f50 nfsd: Add support for the birth time attribute
392c68189565 NFSD: Deprecate NFS_OFFSET_MAX
91ec401bcd67 fsnotify: invalidate dcache before IN_DELETE event
8d5d1b4956a1 NFSD: Move fill_pre_wcc() and fill_post_wcc()
6be1619d4b05 NFSD: Trace boot verifier resets
d83ffc800f12 NFSD: Rename boot verifier functions
1510c051967e NFSD: Clean up the nfsd_net::nfssvc_boot field
5b2cfc4bb751 NFSD: Write verifier might go backwards
14d5c7263d42 nfsd: Add a tracepoint for errors in nfsd4_clone_file_range()
399451927d0e NFSD: De-duplicate net_generic(SVC_NET(rqstp), nfsd_net_id)
a330a794f428 NFSD: Clean up nfsd_vfs_write()
e7a3814a0029 nfsd: Retry once in nfsd_open on an -EOPENSTALE return
87e2bf374be2 nfsd: Add errno mapping for EREMOTEIO
92453b36fabc nfsd: map EBADF
1a197bcedf80 nfsd4: add refcount for nfsd4_blocked_lock
64ff32b8ad80 nfs: block notification on fs with its own ->lock
190a61768581 NFSD: De-duplicate nfsd4_decode_bitmap4()
30000dff921e nfsd: improve stateid access bitmask documentation
6f8664c6b50f NFSD: Combine XDR error tracepoints
3bc94fb44f10 NFSD: simplify per-net file cache management
fdf657bd7537 NFSD: Fix inconsistent indenting
19fbf344ba33 NFSD: Remove be32_to_cpu() from DRC hash function
018f6069471c NFS: switch the callback service back to non-pooled.
a11fe42af525 lockd: use svc_set_num_threads() for thread start and stop
f3f120852428 SUNRPC: always treat sv_nrpools==1 as "not pooled"
5c377f380120 SUNRPC: move the pool_map definitions (back) into svc.c
764ab3f970e6 lockd: rename lockd_create_svc() to lockd_get()
d38cc54be6f3 lockd: introduce lockd_put()
232cbc9b359d lockd: move svc_exit_thread() into the thread
3b068224105c lockd: move lockd_start_svc() call into lockd_create_svc()
ace565c3f246 lockd: simplify management of network status notifiers
d30ef2cf0656 lockd: introduce nlmsvc_serv
95364365f5b0 NFSD: simplify locking for network notifier.
c1ef7e9d72d4 SUNRPC: discard svo_setup and rename svc_set_num_threads_sync()
b11ea2be63b8 NFSD: Make it possible to use svc_set_num_threads_sync
091b6f516c50 NFSD: narrow nfsd_mutex protection in nfsd thread
dedfae92f9d7 SUNRPC: use sv_lock to protect updates to sv_nrthreads.
e6f08647c559 nfsd: make nfsd_stats.th_cnt atomic_t
c78050962735 SUNRPC: stop using ->sv_nrthreads as a refcount
c6f2b5942783 SUNRPC/NFSD: clean up get/put functions.
d021ef89a7de SUNRPC: change svc_get() to return the svc.
4fdd01ce33b6 NFSD: handle errors better in write_ports_addfd()
2049935c523e exit: Rename module_put_and_exit to module_put_and_kthread_exit
dd6663096680 exit: Implement kthread_exit
de7e2adfc784 fanotify: wire up FAN_RENAME event
a187e777d74d fanotify: report old and/or new parent+name in FAN_RENAME event
4b5743bdc592 fanotify: record either old name new name or both for FAN_RENAME
9acb63f955ca fanotify: record old and new parent and name in FAN_RENAME event
6a8facc4bd3e fanotify: support secondary dir fh and name in fanotify_info
c8d3ee69ee5d fanotify: use helpers to parcel fanotify_info buffer
3eec21b66085 fanotify: use macros to get the offset to fanotify_info buffer
932090b8abf6 fsnotify: generate FS_RENAME event with rich information
8bd3d40ea3df fanotify: introduce group flag FAN_REPORT_TARGET_FID
395ff6dc9ba3 fsnotify: separate mark iterator type from object type enum
f7d76fa9a881 fsnotify: clarify object type argument
a20d087cdffc ext4: fix error code saved on super block during file system abort
e11c8a6e8c92 nfsd4: remove obselete comment
60f18f40ca88 NFSD:fix boolreturn.cocci warning
0ca26103e06f nfsd: update create verifier comment
bf0416e0284b SUNRPC: Change return value type of .pc_encode
bd117f87569b SUNRPC: Replace the "__be32 *p" parameter to .pc_encode
b24695861020 NFSD: Save location of NFSv4 COMPOUND status
eadf587a2a25 SUNRPC: Change return value type of .pc_decode
85658caa8bbf SUNRPC: Replace the "__be32 *p" parameter to .pc_decode
10150232dcdd NFSD: Initialize pointer ni with NULL and not plain integer 0
767727a7e02f NFSD: simplify struct nfsfh
ed0815c8b7ca NFSD: drop support for ancient filehandles
f829bb3a0682 NFSD: move filehandle format declarations out of "uapi".
af12deba5335 NFSD: Optimize DRC bucket pruning
61116d723ea2 NFS: Move NFS protocol display macros to global header
53af55ba9ea2 NFS: Move generic FS show macros to global header
f78ab849df2b SUNRPC: Tracepoints should display tk_pid and cl_clid as a fixed-size field
20bbdbe31c0b NFS: Remove unnecessary TRACE_DEFINE_ENUM()s
45e16146c159 docs: Document the FAN_FS_ERROR event
b394c80e2c8d ext4: Send notifications on error
0e825bc84df7 fanotify: Allow users to request FAN_FS_ERROR events
c7c013dff4bd fanotify: Emit generic error info for error event
92eb45210b87 fanotify: Report fid info for file related file system errors
c8b6b09f3fb2 fanotify: WARN_ON against too large file handles
ebd89f7d0737 fanotify: Add helpers to decide whether to report FID/DFID
a83c3ed2e267 fanotify: Wrap object_fh inline space in a creator macro
7aafd61567a9 fanotify: Support merging of error events
c44d8071436c fanotify: Support enqueueing of error events
9258a9908b6d fanotify: Pre-allocate pool of error events
11280c7181b0 fanotify: Reserve UAPI bits for FAN_FS_ERROR
c0a6b12ecde7 fsnotify: Support FS_ERROR event type
965daffd0d15 fanotify: Require fid_mode for any non-fd event
1dad39ebf451 fanotify: Encode empty file handle when no inode is provided
5f34524dde58 fanotify: Allow file handle encoding for unhashed events
900fe4d70474 fanotify: Support null inode event in fanotify_dfid_inode
20bb62edd673 fsnotify: Pass group argument to free_event
84f904f03116 fsnotify: Protect fsnotify_handle_inode_event from no-inode events
4b6b5edcc701 fsnotify: Retrieve super block from the data field
8eb16abe8937 fsnotify: Add wrapper around fsnotify_add_event
e58d543a8cf2 fsnotify: Add helper to detect overflow_event
3e63bff7acdb inotify: Don't force FS_IN_IGNORED
dbeb08836b69 fanotify: Split fsid check from other fid mode checks
cce35a487832 fanotify: Fold event size calculation to its own function
8c7986c2bcc9 fsnotify: Don't insert unmergeable events in hashtable
18370157880b fsnotify: clarify contract for create event hooks
d92a8789fef6 fsnotify: pass dentry instead of inode data
7d5be4f79dac fsnotify: pass data_type to fsnotify_name()
764929accff3 x86/static_call: Add support for Jcc tail-calls
7339b1ce5ea6 x86/alternatives: Teach text_poke_bp() to patch Jcc.d32 instructions
f4ba357b0739 x86/alternatives: Introduce int3_emulate_jcc()
9b4eff016dea x86/asm: Differentiate between code and function alignment
ab8f581408c5 arch: Introduce CONFIG_FUNCTION_ALIGNMENT
2ae88e83f3b7 KVM/x86: Export RFDS_NO and RFDS_CLEAR to guests
2fb08b672eb7 x86/rfds: Mitigate Register File Data Sampling (RFDS)
4fa001418efd Documentation/hw-vuln: Add documentation for RFDS
a2b586df5546 x86/mmio: Disable KVM mitigation when X86_FEATURE_CLEAR_CPU_BUF is set
598fb2804482 KVM/VMX: Move VERW closer to VMentry for MDS mitigation
9fe80d3c1197 KVM/VMX: Use BT+JNC, i.e. EFLAGS.CF to select VMRESUME vs. VMLAUNCH
913ae894c2b0 x86/bugs: Use ALTERNATIVE() instead of mds_user_clear static key
d54de9f2a127 x86/entry_32: Add VERW just before userspace transition
eabab0a5f13e x86/entry_64: Add VERW just before userspace transition
f32b5db5fe35 x86/bugs: Add asm helpers for executing VERW
6b54d55bb3bc x86/asm: Add _ASM_RIP() macro for x86-64 (%rip) suffix
0a6f0f8702ea KVM: arm64: Limit stage2_apply_range() batch size to largest block
b4926c95ad0f KVM: arm64: Work out supported block level at compile time
142a01435c1e tty: serial: imx: Fix broken RS485
9bd2f11ac9ef printk: Update @console_may_schedule in console_trylock_spinning()
2280bb8577aa iommu/dma: Force swiotlb_max_mapping_size on an untrusted device
aa4cc17b3418 dma-iommu: add iommu_dma_opt_mapping_size()
f3e7d9471cc1 dma-mapping: add dma_opt_mapping_size()
685e8332deff swiotlb: Fix alignment checks when both allocation and DMA masks are present
cf716d5a0dd8 minmax: add umin(a, b) and umax(a, b)
f2ad3ce0b0b8 entry: Respect changes to system call number by trace_sys_enter()
2e2aadd6e175 clocksource/drivers/arm_global_timer: Fix maximum prescaler value
4949affd5288 ACPI: CPPC: Use access_width over bit_width for system memory accesses
ea592baf9e41 xen/events: close evtchn after mapping cleanup
b3914fee0955 i2c: i801: Avoid potential double call to gpiod_remove_lookup_table
4b12ff5edd14 tee: optee: Fix kernel panic caused by incorrect error handling
a71cba07783a fs/aio: Check IOCB_AIO_RW before the struct aio_kiocb conversion
0190d19d7651 vt: fix unicode buffer corruption when deleting characters
7dc4ed980968 mei: me: add arrow lake point H DID
e294f0eb3510 mei: me: add arrow lake point S DID
fed1f00e4834 tty: serial: fsl_lpuart: avoid idle preamble pending if CTS is enabled
a44c6c61af48 usb: port: Don't try to peer unused USB ports based on location
92b051b87658 usb: gadget: ncm: Fix handling of zero block length packets
6c1f36d92c0a USB: usb-storage: Prevent divide-by-0 error in isd200_ata_command
f4ffa18d2eb0 ALSA: hda/realtek - Fix headset Mic no show at resume back for Lenovo ALC897 platform
3e31af7c468b drm/i915: Check before removing mm notifier
898127d612a2 tracing: Use .flush() call to wake up readers
e126b508ed2e KVM: SVM: Flush pages under kvm->lock to fix UAF in svm_register_enc_region()
461a4f333c5a xfrm: Avoid clang fortify warning in copy_to_user_tmpl()
2fb9845251ce Drivers: hv: vmbus: Calculate ring buffer size for more efficient use of memory
9a92743d533e netfilter: nf_tables: reject constant set with timeout
7cdc1be24cc1 netfilter: nf_tables: disallow anonymous set with timeout flag
291cca35818b netfilter: nf_tables: mark set as dead when unbinding anonymous set with timeout
f381224482ec cpufreq: brcmstb-avs-cpufreq: fix up "add check for cpufreq_cpu_get's return value"
df7889f78cc0 net: ravb: Add R-Car Gen4 support
1e7d2f14a24f x86/pm: Work around false positive kmemleak report in msr_build_context()
116562e804ff dm snapshot: fix lockup in dm_exception_table_exit
76c1568ac842 drm/amd/display: Fix noise issue on HDMI AV mute
efb754344932 drm/amd/display: Return the correct HDCP error code
5d5f1a7f3b10 drm/amdgpu: amdgpu_ttm_gart_bind set gtt bound flag
d69abe190a5f ahci: asm1064: asm1166: don't limit reported ports
205c06684a18 ahci: asm1064: correct count of reported ports
4be453271a88 wireguard: netlink: access device through ctx instead of peer
710a177f3472 wireguard: netlink: check for dangling peer via is_dead instead of empty list
3ff793aa0742 net: hns3: tracing: fix hclgevf trace event strings
81b9ddd44d3a NFSD: Fix nfsd_clid_class use of __string_len() macro
2031b61be8b7 x86/CPU/AMD: Update the Zenbleed microcode revisions
d8ae3bf07ebc cpufreq: dt: always allocate zeroed cpumask
ca581d237f3b nilfs2: prevent kernel bug at submit_bh_wbc()
2e2619ff5d0d nilfs2: fix failure to detect DAT corruption in btree and direct mappings
5a1729bc070f memtest: use {READ,WRITE}_ONCE in memory scanning
e8d993bd36b6 drm/vc4: hdmi: do not return negative values from .get_modes()
9ae98fc9fe4a drm/imx/ipuv3: do not return negative values from .get_modes()
912c149a52c3 drm/exynos: do not return negative values from .get_modes()
f781f0d82cf7 drm/panel: do not return negative error codes from drm_panel_get_modes()
a55677878b93 s390/zcrypt: fix reference counting on zcrypt card objects
9a3ca8292ce9 soc: fsl: qbman: Use raw spinlock for cgr_lock
d378c937131a soc: fsl: qbman: Add CGR update function
e25ceea9bc79 soc: fsl: qbman: Add helper for sanity checking cgr ops
e6378314bb92 soc: fsl: qbman: Always disable interrupts when taking cgr_lock
de0dcfa62306 ring-buffer: Use wait_event_interruptible() in ring_buffer_wait()
73becffc5d08 ring-buffer: Fix full_waiters_pending in poll
5a24b3a28d0c ring-buffer: Fix resetting of shortest_full
d3229afd170b ring-buffer: Do not set shortest_full when full target is hit
66fdf3a7cf52 ring-buffer: Fix waking up ring buffer readers
34cd4d5de121 ksmbd: retrieve number of blocks using vfs_getattr in set_file_allocation_info
f73c3e259593 vfio/platform: Disable virqfds on cleanup
fc92804048f3 PCI: dwc: endpoint: Fix advertised resizable BAR size
5273c56f3fd4 kbuild: Move -Wenum-{compare-conditional,enum-conversion} into W=1
80d24b308b7e nfs: fix UAF in direct writes
a323e5e98f46 PCI/AER: Block runtime suspend when handling errors
967e74124f1e speakup: Fix 8bit characters from direct synth
eebe53270b4f usb: gadget: tegra-xudc: Fix USB3 PHY retrieval logic
fd8e9ef13ac7 phy: tegra: xusb: Add API to retrieve the port number of phy
4960561a6c36 slimbus: core: Remove usage of the deprecated ida_simple_xx() API
cf51c32c00c5 nvmem: meson-efuse: fix function pointer type mismatch
239c669edb2b ext4: fix corruption during on-line resize
d778917dd033 hwmon: (amc6821) add of_match table
a6c13d23d9e0 landlock: Warn once if a Landlock action is requested while disabled
6203f20d668c drm/etnaviv: Restore some id values
05ecc53f9480 mmc: core: Fix switch on gp3 partition
2da5568ee222 mm: swap: fix race between free_swap_and_cache() and swapoff()
86a08ddff8bb swap: comments get_swap_device() with usage rule
d3d858650933 mac802154: fix llsec key resources release in mac802154_llsec_key_del
a3b6004bfc2f dm-raid: fix lockdep waring in "pers->hot_add_disk"
125de155011c PCI/DPC: Quirk PIO log size for Intel Raptor Lake Root Ports
4e194de3a961 PCI/DPC: Quirk PIO log size for certain Intel Root Ports
ecbe3ca2ac9c PCI/ASPM: Make Intel DG2 L1 acceptable latency unlimited
25f6c4c440b6 PCI: Work around Intel I210 ROM BAR overlap defect
7cc94dd36e48 PCI/PM: Drain runtime-idle callbacks before driver removal
95e86a8f1c9e PCI: Drop pci_device_remove() test of pci_dev->driver
fa3762b45ea9 btrfs: fix off-by-one chunk length calculation at contains_pending_extent()
bbf72db11fe6 serial: Lock console when calling into driver before registration
63f8999cac33 printk/console: Split out code that enables default console
3f6a9daf0da4 usb: typec: ucsi: Clean up UCSI_CABLE_PROP macros
6eac5030fc97 fuse: don't unhash root
773783681d87 fuse: fix root lookup with nonzero generation
ede56884ccde mmc: tmio: avoid concurrent runs of mmc_request_done()
f3f867201bb8 PM: sleep: wakeirq: fix wake irq warning in system suspend
ad71f7bbd4c2 USB: serial: cp210x: add pid/vid for TDK NC0110013M and MM0110113M
c1db6b1613ed USB: serial: option: add MeiG Smart SLM320 product
f9bad5759668 USB: serial: cp210x: add ID for MGP Instruments PDS100
1342e40c0779 USB: serial: add device ID for VeriFone adapter
60e9148baf12 USB: serial: ftdi_sio: add support for GMC Z216C Adapter IR-USB
c11808f4fb71 powerpc/fsl: Fix mfpmr build errors with newer binutils
4a49d24fdec0 usb: xhci: Add error handling in xhci_map_urb_for_dma
8f562f3b2517 clk: qcom: mmcc-msm8974: fix terminating of frequency table arrays
3aedcf3755c7 clk: qcom: mmcc-apq8084: fix terminating of frequency table arrays
9de184d4e557 clk: qcom: gcc-ipq8074: fix terminating of frequency table arrays
b4527ee3de36 clk: qcom: gcc-ipq6018: fix terminating of frequency table arrays
18f1f468dd79 PM: suspend: Set mem_sleep_current during kernel command line setup
0552d5727e80 parisc: Strip upper 32 bit of sum in csum_ipv6_magic for 64-bit builds
6a427a132e73 parisc: Fix csum_ipv6_magic on 64-bit systems
c38df21ec9a0 parisc: Fix csum_ipv6_magic on 32-bit systems
6817e1a1d650 parisc: Fix ip_fast_csum
a903a1e93f3b parisc: Avoid clobbering the C/B bits in the PSW with tophys and tovirt macros
60d6c5d40de9 mtd: rawnand: meson: fix scrambling mode value in command macro
6f203afea2dc ubi: correct the calculation of fastmap size
8ce982285414 ubi: Check for too small LEB size in VTBL code
f19b1023a375 ubifs: Set page uptodate in the correct place
b7fb63e807c6 fat: fix uninitialized field in nostale filehandles
d2a7a81088c6 bounds: support non-power-of-two CONFIG_NR_CPUS
218e2610b015 kasan/test: avoid gcc warning for intentional overflow
76645e0f5a2a kasan: test: add memcpy test that avoids out-of-bounds write
d05e6ba1b74a block: Clear zone limits for a non-zoned stacked queue
447753bdd69b ext4: correct best extent lstart adjustment logic
29d7089bed0d selftests/mqueue: Set timeout to 180 seconds
4ae5a97781ce crypto: qat - resolve race condition during AER recovery
b228e16a3ae1 crypto: qat - fix double free during reset
980cc81298c0 sparc: vDSO: fix return value of __setup handler
dc8c55b3ecbc sparc64: NMI watchdog: fix return value of __setup handler
83d3c5e30961 KVM: Always flush async #PF workqueue when vCPU is being destroyed
fec51819607f media: xc4000: Fix atomicity violation in xc4000_get_frequency
5e4b23e7a7b3 pci_iounmap(): Fix MMIO mapping leak
899e154f9546 drm/vmwgfx: Fix possible null pointer derefence with invalid contexts
29a327c4544a arm: dts: marvell: Fix maxium->maxim typo in brownstone dts
840e1b69081a smack: Handle SMACK64TRANSMUTE in smack_inode_setsecurity()
28b78c7b620e smack: Set SMACK64TRANSMUTE only for dirs in smack_inode_setxattr()
8b47e69ac83e clk: qcom: gcc-sdm845: Add soft dependency on rpmhpd
0fa86b3b6a15 media: staging: ipu3-imgu: Set fields before media_entity_pads_init()
8c36205123dc wifi: brcmfmac: Fix use-after-free bug in brcmf_cfg80211_detach
2382f2e45c71 timers: Rename del_timer_sync() to timer_delete_sync()
2a873e61782f timers: Use del_timer_sync() even on UP
1c2f22864bcd timers: Update kernel-doc for various functions
85c3bdff671f KVM: x86: Use a switch statement and macros in __feature_translate()
01771ffad6f1 KVM: x86: Advertise CPUID.(EAX=7,ECX=2):EDX[5:0] to userspace
e99e8685fde5 KVM: x86: Update KVM-only leaf handling to allow for 100% KVM-only leafs
9ccce26837a8 x86/bugs: Use sysfs_emit()
4957fd741d61 x86/cpu: Support AMD Automatic IBRS
26445d9bb036 Documentation/hw-vuln: Update spectre doc
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: d34a2df7a7bba954ec9e1a6f5c4a8f1b5789256c)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
9465fef4ae35 Linux 5.15.153
d180150ea714 remoteproc: stm32: fix incorrect optional pointers
85e26c4a74ff regmap: Add missing map->bus check
c10fed329c1c spi: spi-mt65xx: Fix NULL pointer access in interrupt handler
839308cf7957 net: dsa: mt7530: fix handling of all link-local frames
cb302aa9948d net: dsa: mt7530: fix link-local frames that ingress vlan filtering ports
70424a8f4585 net: dsa: mt7530: fix handling of 802.1X PAE frames
c210fb3c45d7 net: dsa: mt7530: fix handling of LLDP frames
387daae8b092 bpf: report RCU QS in cpumap kthread
2f1d402dcc01 net: report RCU QS on threaded NAPI repolling
083657dc7cc7 rcu: add a helper to report consolidated flavor QS
640dbf688ba9 netfilter: nf_tables: do not compare internal table flags on updates
362508506bf5 netfilter: nft_set_pipapo: release elements in clone only from destroy path
772f18ded0e2 octeontx2-af: Use separate handlers for interrupts
8ffcd3ccdbda net/bnx2x: Prevent access to a freed page in page_pool
f1e560cdb132 net: phy: fix phy_read_poll_timeout argument type in genphy_loopback
5deee0f7c292 hsr: Handle failures in module init
8c378cc522ae rds: introduce acquire/release ordering in acquire/release_in_xmit()
d691be84ab89 wireguard: receive: annotate data-race around receiving_counter.counter
2b2f8d166fcc vdpa/mlx5: Allow CVQ size changes
4d61084c5cfd net: dsa: mt7530: prevent possible incorrect XTAL frequency selection
f85c87a80328 net: veth: do not manipulate GRO when using XDP
d35b62c224e7 packet: annotate data-races around ignore_outgoing
9fcadd125044 net: ethernet: mtk_eth_soc: fix PPE hanging issue
448cc8b5f743 net: mediatek: mtk_eth_soc: clear MAC_MCR_FORCE_LINK only when MAC is up
c5c0760adc26 net: mtk_eth_soc: move MAC_MCR setting to mac_finish()
a809bbfd0e50 hsr: Fix uninit-value access in hsr_get_node()
ccafa081bece soc: fsl: dpio: fix kcalloc() argument order
4b9d72498df0 s390/vtime: fix average steal time calculation
8fdc7b408a55 octeontx2-af: Use matching wake_up API variant in CGX command interface
aa5ab5ce3496 nouveau: reset the bo resource bus info after an eviction
deb5946255e0 io_uring: don't save/restore iowait state
1049fa4d02fd usb: gadget: net2272: Use irqflags in the call to net2272_probe_fin
463c429bdd56 staging: greybus: fix get_channel_from_mode() failure path
6c619223aa21 serial: 8250_exar: Don't remove GPIO device on suspend
f867ba8ea1f3 rtc: mt6397: select IRQ_DOMAIN instead of depending on it
04dd61330fe8 kconfig: fix infinite loop when expanding a macro at the end of file
3019ad4a0282 arm64: dts: broadcom: bcmbca: bcm4908: drop invalid switch cells
c220378081ca tty: serial: samsung: fix tx_empty() to return TIOCSER_TEMT
e6011abe0cc1 serial: max310x: fix syntax error in IRQ error message
19b21318377e tty: vt: fix 20 vs 0x20 typo in EScsiignore
ea34c1c1f317 remoteproc: stm32: Fix incorrect type assignment returned by stm32_rproc_get_loaded_rsc_tablef
dd68756ae351 remoteproc: stm32: Fix incorrect type in assignment for va
a48c24ccc6b9 remoteproc: stm32: use correct format strings on 64-bit
da0ad1bdc659 comedi: comedi_test: Prevent timers rescheduling during deletion
a6ffae61ad9e afs: Revert "afs: Hide silly-rename files from userspace"
fa3ac8b1a227 f2fs: compress: fix reserve_cblocks counting error when out of space
6ca2ea698d47 NFS: Fix an off by one in root_nfs_cat()
704dc0138718 watchdog: stm32_iwdg: initialize default timeout
446f55d0d4f0 NFSv4.2: fix listxattr maximum XDR buffer size
9d52865ff282 NFSv4.2: fix nfs4_listxattr kernel BUG at mm/usercopy.c:102
6233dbe9ca1c net: sunrpc: Fix an off by one in rpc_sockaddr2uaddr()
83edcda1d855 scsi: bfa: Fix function pointer type mismatch for hcb_qe->cbfn
16a5bed6d265 RDMA/rtrs-clt: Check strnlen return len in sysfs mpath_policy_store()
ed3e66d86ec3 RDMA/device: Fix a race between mad_client and cm_client init
a27984f631e8 scsi: csiostor: Avoid function pointer casts
4a411fc3363f f2fs: compress: fix to check unreleased compressed cluster
7d420eaaa18e f2fs: compress: fix to cover normal cluster write with cp_rwsem
ed22aef701f4 f2fs: reduce stack memory cost by using bitfield in struct f2fs_io_info
b2713af17ac9 f2fs: invalidate meta pages only for post_read required inode
6117d8b79f48 f2fs: fix to invalidate META_MAPPING before DIO write
5d553a56de27 f2fs: replace congestion_wait() calls with io_schedule_timeout()
bc7e7e7d647c f2fs: invalidate META_MAPPING before IPU/DIO write
4a543790fdc3 f2fs: multidevice: support direct IO
6413e78086ca RDMA/srpt: Do not register event handler until srpt device is fully setup
9af1658ba293 ALSA: usb-audio: Stop parsing channels bits when all channels are found.
e9fbee067379 ALSA: hda/realtek: fix ALC285 issues on HP Envy x360 laptops
01511ac7be8e clk: zynq: Prevent null pointer dereference caused by kmalloc failure
0efb9ef6fb95 clk: Fix clk_core_get NULL dereference
d83d70b25d2d sparc32: Fix section mismatch in leon_pci_grpci
e4723c6b3e79 backlight: lp8788: Fully initialize backlight_properties during probe
73f547f2598a backlight: lm3639: Fully initialize backlight_properties during probe
d01286f9911c backlight: da9052: Fully initialize backlight_properties during probe
28e37f97b161 backlight: lm3630a: Don't set bl->props.brightness in get_brightness
a80fb03dda21 backlight: lm3630a: Initialize backlight_properties on init
f28b72162f05 leds: sgm3140: Add missing timer cleanup and flash gpio control
663dea03055d leds: aw2013: Unlock mutex before destroying it
d63abda6c8b3 powerpc/embedded6xx: Fix no previous prototype for avr_uart_send() etc.
6a3d4afc5499 modules: wait do_free_init correctly
a91eef04a775 module: Add support for default value for module async_probe
6304ed16038d drm/msm/dpu: add division of drm_display_mode's hskew parameter
f4108b28dce0 powerpc/hv-gpci: Fix the H_GET_PERF_COUNTER_INFO hcall return value checks
9beec711a172 drm/mediatek: Fix a null pointer crash in mtk_drm_crtc_finish_page_flip
e5aaa9f8dbc5 media: mediatek: vcodec: avoid -Wcast-function-type-strict warning
24e51d6eb578 media: ttpci: fix two memleaks in budget_av_attach
790fa2c04dfb media: go7007: fix a memleak in go7007_load_encoder
d20b64f156de media: dvb-frontends: avoid stack overflow warnings with clang
eb6e9dce979c media: pvrusb2: fix uaf in pvr2_context_set_notify
d8e83a625cee drm/amdgpu: Fix missing break in ATOM_ARG_IMM Case of atom_get_src_int()
815d1f1c6714 HID: amd_sfh: Update HPD sensor structure elements
8abf014e0c79 ASoC: meson: axg-tdm-interface: add frame rate constraint
844101226143 ASoC: meson: axg-tdm-interface: fix mclk setup without mclk-fs
e3adf12624bb mtd: rawnand: lpc32xx_mlc: fix irq handler prototype
7178a272490d mtd: maps: physmap-core: fix flash size larger than 32-bit
3ae4bd815fd3 drm/tidss: Fix initial plane zpos values
9cc746346dc5 crypto: arm/sha - fix function cast warnings
010cf12f596a mfd: altera-sysmgr: Call of_node_put() only when of_parse_phandle() takes a ref
1d50e295784e mfd: syscon: Call of_node_put() only when of_parse_phandle() takes a ref
240c4f1159f7 drm/tegra: put drm_gem_object ref on error in tegra_fb_create
3f8445f1c746 clk: hisilicon: hi3559a: Fix an erroneous devm_kfree()
62d92b3507fe clk: hisilicon: hi3519: Release the correct number of gates in hi3519_clk_unregister()
118a7113db31 PCI: Mark 3ware-9650SE Root Port Extended Tags as broken
754646012867 drm/mediatek: dsi: Fix DSI RGB666 formats and definitions
4e37c5342236 clk: qcom: dispcc-sdm845: Adjust internal GDSC wait times
fe68cf273906 media: pvrusb2: fix pvr2_stream_callback casts
4f2a1657f9ab media: pvrusb2: remove redundant NULL check
8e19050ab9b9 media: go7007: add check of return value of go7007_read_addr()
b1d0eebaf87c media: imx: csc/scaler: fix v4l2_ctrl_handler memory leak
f27bcdae5730 media: sun8i-di: Fix chroma difference threshold
de09db4e5d10 media: sun8i-di: Fix power on/off sequences
4bdc1b352ec0 media: sun8i-di: Fix coefficient writes
a62b9f3d7bbf NTB: fix possible name leak in ntb_register_device()
87d306cdeb9e NTB: EPF: fix possible memory leak in pci_vntb_probe()
e2b6ef72b7ae PCI: endpoint: Support NTB transfer between RC and EP
caf5cf099016 powerpc: Force inlining of arch_vmap_p{u/m}d_supported()
4eb47ae93f4d ASoC: meson: t9015: fix function pointer type mismatch
a3fec4744621 ASoC: meson: aiu: fix function pointer type mismatch
a26425b7624d ASoC: meson: Use dev_err_probe() helper
3d1d02973414 perf stat: Avoid metric-only segv
3cae4f4153d3 ALSA: seq: fix function cast warnings
7378234eeeac drm/radeon/ni: Fix wrong firmware size logging in ni_init_microcode()
abb9bea45b43 perf thread_map: Free strlist on normal path in thread_map__new_by_tid_str()
03e6d4e94843 crypto: xilinx - call finalize with bh disabled
ce6e3c04119b PCI: switchtec: Fix an error handling path in switchtec_pci_probe()
0bdb56eae235 PCI/P2PDMA: Fix a sleeping issue in a RCU read section
56cad01c5463 quota: Fix rcu annotations of inode dquot pointers
1ca72a3de915 quota: Fix potential NULL pointer dereference
f2ddd8103f00 quota: simplify drop_dquot_ref()
f630ba2386c8 clk: qcom: reset: Ensure write completion on reset de/assertion
e5bb4f4324e9 clk: qcom: reset: Commonize the de/assert functions
e8c71db0d8f1 pinctrl: mediatek: Drop bogus slew rate register range for MT8192
0d3fe80b6d17 media: edia: dvbdev: fix a use-after-free
dc866b69cc51 media: v4l2-mem2mem: fix a memleak in v4l2_m2m_register_entity
770a57922ce3 media: v4l2-tpg: fix some memleaks in tpg_alloc
e9d05d5d8411 media: em28xx: annotate unchecked call to media_device_register()
a03ed00787b0 clk: meson: Add missing clocks to axg_clk_regmaps
54985391dec2 perf evsel: Fix duplicate initialization of data->id in evsel__parse_sample()
6ac7c7a3a9ab drm/amd/display: Fix potential NULL pointer dereferences in 'dcn10_set_output_transfer_func()'
440f05983741 drm/amd/display: Fix a potential buffer overflow in 'dp_dsc_clock_en_read()'
d54877c83528 HID: lenovo: Add middleclick_workaround sysfs knob for cptkbd
d9f8bbc6d7cf perf record: Fix possible incorrect free in record__switch_output()
87658f16082b PCI/DPC: Print all TLP Prefixes, not just the first
b8505a1aee8f media: tc358743: register v4l2 async device only after successful setup
4c309e06aa90 dmaengine: tegra210-adma: Update dependency to ARCH_TEGRA
746606d37d66 drm/lima: fix a memleak in lima_heap_alloc
1bb5fea94e62 drm/rockchip: lvds: do not print scary message when probing defer
f3afb5361819 drm/rockchip: lvds: do not overwrite error code
03b1072616a8 drm/vmwgfx: fix a memleak in vmw_gmrid_man_get_node
5eaa1597e231 drm/ttm: add ttm_resource_fini v2
2fa491a1f4a8 drm: Don't treat 0 as -1 in drm_fixp2int_ceil
c780f00854af drm/rockchip: inno_hdmi: Fix video timing
13c121279941 drm/tegra: output: Fix missing i2c_put_adapter() in the error handling paths of tegra_output_probe()
5c8dc26e31b8 drm/tegra: rgb: Fix missing clk_put() in the error handling paths of tegra_dc_rgb_probe()
7ec1d3cab93e drm/tegra: rgb: Fix some error handling paths in tegra_dc_rgb_probe()
527bf2adf012 drm/tegra: dc: rgb: Allow changing PLLD rate on Tegra30+
bfd52f7df633 drm/tegra: dsi: Fix missing pm_runtime_disable() in the error handling path of tegra_dsi_probe()
1d2f14eb47ad drm/tegra: dsi: Fix some error handling paths in tegra_dsi_probe()
26827907c27e drm/tegra: dsi: Make use of the helper function dev_err_probe()
56ec754fd767 drm/tegra: dpaux: Fix PM disable depth imbalance in tegra_dpaux_probe
49ebcae0b9b8 drm/tegra: dpaux: Populate AUX bus
93128052bf83 drm/tegra: dsi: Add missing check for of_find_device_by_node
03ad5ad53e51 dm: call the resume method on internal suspend
85177297117c dm raid: fix false positive for requeue needed during reshape
0d387dc503f9 nfp: flower: handle acti_netdevs allocation failure
3538d11d2a06 net/x25: fix incorrect parameter validation in the x25_getsockopt() function
382df231ab3d net: kcm: fix incorrect parameter validation in the kcm_getsockopt) function
3a32dce1adcd udp: fix incorrect parameter validation in the udp_lib_getsockopt() function
6482113f9c75 l2tp: fix incorrect parameter validation in the pppol2tp_getsockopt() function
3988110ecf68 ipmr: fix incorrect parameter validation in the ip_mroute_getsockopt() function
71ce163f3e91 bpf: net: Change do_ip_getsockopt() to take the sockptr_t argument
07aa35a50fe6 bpf: net: Change sk_getsockopt() to take the sockptr_t argument
25e5c9b20e0a net: Change sock_getsockopt() to take the sk ptr instead of the sock ptr
400298502354 tcp: fix incorrect parameter validation in the do_tcp_getsockopt() function
c09fc67777b8 OPP: debugfs: Fix warning around icc_get_name()
78a60f910353 net: phy: dp83822: Fix RGMII TX delay configuration
fedd8c7d29f4 net: phy: DP83822: enable rgmii mode if phy_interface_is_rgmii
f82d65e8f7ff net: hns3: fix port duplex configure error in IMP reset
23ec1cec2429 net: hns3: fix kernel crash when 1588 is received on HIP08 devices
0e939a002c8a net: phy: fix phy_get_internal_delay accessing an empty array
5c03387021cf net: ip_tunnel: make sure to pull inner header in ip_tunnel_rcv()
65fb1d271cbc ipv6: fib6_rules: flush route cache when rule is changed
ca1f06e72dec bpf: Fix stackmap overflow check on 32-bit arches
3b08cfc65f07 bpf: Fix hashtab overflow check on 32-bit arches
c826502bed93 bpf: Fix DEVMAP_HASH overflow check on 32-bit arches
276873ae26c8 sr9800: Add check for usbnet_get_endpoints
2e845867b4e2 Bluetooth: hci_core: Fix possible buffer overflow
89c69e83ff0a Bluetooth: hci_qca: don't use IS_ERR_OR_NULL() with gpiod_get_optional()
9609476b3a16 Bluetooth: hci_qca: Add support for QTI Bluetooth chip wcn6855
88f846f352b8 Bluetooth: Remove superfluous call to hci_conn_check_pending()
4b5dc615f1cf igb: Fix missing time sync events
5cd7afd64b6e igb: move PEROUT and EXTTS isr logic to separate functions
d70f1c85113c iommu/vt-d: Don't issue ATS Invalidation request when device is disconnected
626b03daea32 PCI: Make pci_dev_is_disconnected() helper public for other drivers
4137f25b5351 wifi: rtw88: 8821c: Fix false alarm count
250a78863cdf mmc: wmt-sdmmc: remove an incorrect release_mem_region() call in the .remove function
dd292e884c64 SUNRPC: fix some memleaks in gssx_dec_option_array
c7cff9780297 x86, relocs: Ignore relocations in .notes section
40876d07d292 ACPI: scan: Fix device check notification handling
10e607fbc91b ACPI: resource: Add MAIBENBEN X577 to irq1_edge_low_force_override
cc06efd8a6be ACPI: resource: Do IRQ override on Lunnen Ground laptops
b53985826190 ACPI: resource: Add Infinity laptops to irq1_edge_low_force_override
95531c0d3727 arm64: dts: marvell: reorder crypto interrupts on Armada SoCs
941c6ee6f77d ARM: dts: imx6dl-yapp4: Move the internal switch PHYs under the switch node
ff54c712f046 ARM: dts: imx6dl-yapp4: Fix typo in the QCA switch register address
3ebcd8f11aa8 ARM: dts: imx6dl-yapp4: Move phy reset into switch node
ce92a8c7cf70 arm64: dts: renesas: r8a779a0: Correct avb[01] reg sizes
a022251c2f95 arm64: dts: renesas: r8a779a0: Update to R-Car Gen4 compatible values
3c0cc753d798 ARM: dts: arm: realview: Fix development chip ROM compatible value
276f4abe4e5b net: ena: Remove ena_select_queue
90613c76f71c wifi: brcmsmac: avoid function pointer casts
b96bc1b25963 iommu/amd: Mark interrupt as managed
6a87552d0a81 bus: tegra-aconnect: Update dependency to ARCH_TEGRA
1cbaf4c793b0 ACPI: processor_idle: Fix memory leak in acpi_processor_power_exit()
fe20e3d56bc9 wifi: wilc1000: prevent use-after-free on vif when cleaning up all interfaces
0454915c836b wireless: Remove redundant 'flush_workqueue()' calls
487eff913ea9 bpf: Mark bpf_spin_{lock,unlock}() helpers with notrace correctly
fcd58c69a372 arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes
e66285df73c0 arm64: dts: mt8183: Move CrosEC base detection node to kukui-based DTs
657633a0b5f5 arm64: dts: mt8183: kukui: Split out keyboard node and describe detachables
ecec357981ec arm64: dts: mt8183: kukui: Add Type C node
9d159d6637cc ipv6: mcast: remove one synchronize_net() barrier in ipv6_mc_down()
a6a50788b46b s390/vdso: drop '-fPIC' from LDFLAGS
f94625ec5747 wifi: iwlwifi: mvm: don't set replay counters to 0xff
4745cba3703c pwm: sti: Fix capture for st,pwm-num-chan < st,capture-num-chan
55908ea9812e pwm: sti: Implement .apply() callback
e888c4461e10 wifi: libertas: fix some memleaks in lbs_allocate_cmd_buffer()
d20d45631feb net: blackhole_dev: fix build warning for ethh set but not used
95ac8e3ef2a3 pwm: atmel-hlcdc: Fix clock imbalance related to suspend support
a1716999f8ae pwm: atmel-hlcdc: Use consistent variable naming
81f0b319f0d4 pwm: atmel-hlcdc: Convert to platform remove callback returning void
98b0d4693934 arm64: dts: imx8mm-venice-gw71xx: fix USB OTG VBUS
128a7fb7e84b wifi: iwlwifi: fix EWRD table validity check
96aa40761673 wifi: iwlwifi: dbg-tlv: ensure NUL termination
3a5d424cffa2 wifi: iwlwifi: mvm: report beacon protection failures
f8ff4b4df71e wifi: ath9k: delay all of ath9k_wmi_event_tasklet() until init is complete
4287534cb520 arm64: dts: imx8mm-kontron: Disable pull resistors for SD card signals on BL board
d01012b6d6bc arm64: dts: imx8mm-kontron: Use the VSELECT signal to switch SD card IO voltage
41af98f22083 arm64: dts: imx8mm-kontron: Add support for ultra high speed modes on SD card
db25bbd2c294 arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals on BL board
f7e55ad75245 arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on SL/BL i.MX8MM
d7fcdcf4ec35 cpufreq: mediatek-hw: Don't error out if supply is not found
8a029ee1e392 af_unix: Annotate data-race of gc_in_progress in wait_for_unix_gc().
e0d29c4def15 bpftool: Silence build warning about calloc()
3b71a6981ef8 inet_diag: annotate data-races around inet_diag_table[]
00d40ab2c03f sock_diag: annotate data-races around sock_diag_handlers[family]
0f632a68804d cpufreq: mediatek-hw: Wait for CPU supplies before probing
2cb670b272dd cpufreq: Explicitly include correct DT includes
d951cf510fb0 cpufreq: brcmstb-avs-cpufreq: add check for cpufreq_cpu_get's return value
f75e3536dbbc wifi: mwifiex: debugfs: Drop unnecessary error check for debugfs_create_dir()
df78377485ef wifi: wilc1000: fix multi-vif management when deleting a vif
ac512507ac89 wifi: rtl8xxxu: add cancel_work_sync() for c2hcmd_work
d80fc436751c wifi: wilc1000: fix RCU usage in connect path
11b564991b53 wifi: wilc1000: fix declarations ordering
bc4bc7464639 wifi: b43: Disable QoS for bcm4331
66ef38ad9754 wifi: b43: Stop correct queue in DMA worker when QoS is disabled
b05f6cd6c069 wifi: b43: Stop/wake correct queue in PIO Tx path when QoS is disabled
04a2b6eff2ae wifi: b43: Stop/wake correct queue in DMA Tx path when QoS is disabled
4c4e592266b6 wifi: ath10k: fix NULL pointer dereference in ath10k_wmi_tlv_op_pull_mgmt_tx_compl_ev()
b10ff1130fa4 sched/fair: Take the scheduling domain into account in select_idle_core()
3c1122aee91e timekeeping: Fix cross-timestamp interpolation for non-x86
aa74fd5ccb8b timekeeping: Fix cross-timestamp interpolation corner case decision
48c70f35f6a6 timekeeping: Fix cross-timestamp interpolation on counter wrap
7dd09fa80b07 aoe: fix the potential use-after-free problem in aoecmd_cfg_pkts
53609f5c0592 rtc: test: Fix invalid format specifier.
3eafb6816dcb time: test: Fix incorrect format specifier
770332c1fd0a lib/cmdline: Fix an invalid format specifier in an assertion msg
01db522d003f md: Don't clear MD_CLOSING when the raid is about to stop
25d99f7baa13 fs/select: rework stack allocation hack for clang
98e60b538e66 nbd: null check for nla_nest_start
edbdb0d94143 s390/dasd: fix double module refcount decrement
bb126ed29f4e s390/dasd: Use dev_*() for device log messages
3404d535bdc2 s390/dasd: add autoquiesce feature
932600a295cc s390/dasd: add copy pair setup
2c42dab80a03 s390/dasd: add query PPRC function
815348211f30 s390/dasd: put block allocation in separate function
423b6bdf19bb do_sys_name_to_handle(): use kzalloc() to fix kernel-infoleak
50982ce0f177 ASoC: wm8962: Fix up incorrect error message in wm8962_set_fll
2a239a9487f7 ASoC: wm8962: Enable both SPKOUTR_ENA and SPKOUTL_ENA in mono mode
648bd8ef211d ASoC: wm8962: Enable oscillator if selecting WM8962_FLL_OSC
aa345a4d9b32 Input: gpio_keys_polled - suppress deferred probe error for gpio
4bd9d06bdff7 ASoC: Intel: bytcr_rt5640: Add an extra entry for the Chuwi Vi8 tablet
91b4bfed82c4 firewire: core: use long bus reset on gap count error
8d1753973f59 Bluetooth: rfcomm: Fix null-ptr-deref in rfcomm_check_security
9a1de3adf7d1 drm/amdgpu: Enable gpu reset for S3 abort cases on Raven series
c4e2f6081506 ALSA: hda/realtek - ALC285 reduce pop noise from Headphone port
d157b06c1030 scsi: mpt3sas: Prevent sending diag_reset when the controller is ready
0c255fb9b1a6 dm-verity, dm-crypt: align "struct bvec_iter" correctly
f6cbb4843c61 block: sed-opal: handle empty atoms when parsing response
d7c5c0335a9a parisc/ftrace: add missing CONFIG_DYNAMIC_FTRACE check
59be50a37f37 net/iucv: fix the allocation size of iucv_path_table array
e8a67fe34b76 x86/mm: Disallow vsyscall page read for copy_from_kernel_nofault()
e2d5cf0dcb9f x86/mm: Move is_vsyscall_vaddr() into asm/vsyscall.h
7e13a78e2ba4 riscv: dts: sifive: add missing #interrupt-cells to pmic
cf71090a5941 RDMA/mlx5: Relax DEVX access upon modify commands
60ba938a8bc8 RDMA/mlx5: Fix fortify source warning while accessing Eth segment
e524979a8a3b gen_compile_commands: fix invalid escape sequence warning
802eb0254fc1 HID: multitouch: Add required quirk for Synaptics 0xcddc device
581d99d2f688 MIPS: Clear Cause.BD in instruction_pointer_set
8082bccb7ac4 x86/xen: Add some null pointer checking to smp.c
333de5a9753e ASoC: rt5645: Make LattePanda board DMI match more precise
0d7cfe2ef5a7 selftests: tls: use exact comparison in recv_partial
37d98fb9c314 bpf: Defer the free of inner map when necessary
d8140159a214 rcu-tasks: Provide rcu_trace_implies_rcu_gp()
d909d381c315 io_uring: drop any code related to SCM_RIGHTS
9dd3863e3fcd io_uring/unix: drop usage of io_uring socket
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: 611cec2700887d42aa872ea887be65d7c837b09c)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
b95c01af2113 Linux 5.15.152
a1211bbf7814 serial: max310x: fix IO data corruption in batched operations
0ba485f90d97 serial: max310x: make accessing revision id interface-agnostic
31642219f27a regmap: Add bulk read/write callbacks into regmap_config
fbddd48f1456 regmap: allow to define reg_update_bits for no bus configuration
cad6da86ca98 ALSA: usb-audio: Sort quirk table entries
36dba3f4cd36 ALSA: usb-audio: Add FIXED_RATE quirk for JBL Quantum610 Wireless
bfd36b1d1869 ALSA: usb-audio: Always initialize fixed_rate in snd_usb_find_implicit_fb_sync_format()
a6f53df52b66 ALSA: usb-audio: Fix wrong kfree issue in snd_usb_endpoint_free_all
fd63fb84ed6d fs/proc: do_task_stat: move thread_group_cputime_adjusted() outside of lock_task_sighand()
9b3834276bb6 proc: Use task_is_running() for wchan in /proc/$pid/stat
3c1b2776ef19 getrusage: use sig->stats_lock rather than lock_task_sighand()
ef2734e57cb9 getrusage: use __for_each_thread()
18c7394e46d8 getrusage: move thread_group_cputime_adjusted() outside of lock_task_sighand()
c5579e7280e6 getrusage: add the "signal_struct *sig" local variable
63e09c1f46d6 drm/amd/display: Increase frame-larger-than for all display_mode_vba files
f4442513e426 drm/amd/display: remove DML Makefile duplicate lines
b4bab46400a0 drm/amd/display: move calcs folder into DML
b00e4d44ac77 drm/amd/display: Re-arrange FPU code structure for dcn2x
b6d46f306b39 hv_netvsc: Register VF in netvsc_probe if NET_DEVICE_REGISTER missed
c4cfa93e5018 hv_netvsc: use netif_is_bond_master() instead of open code
760d0df3add5 selftests: mptcp: decrease BW in simult flows
9a9d00c23d17 drm/amdgpu: Reset IH OVERFLOW_CLEAR bit
f57431896095 drm/amd/pm: do not expose the API used internally only in kv_dpm.c
0afbf40c0135 serial: max310x: prevent infinite while() loop in port startup
2fbf2c767b50 serial: max310x: use a separate regmap for each port
2161c5411d91 serial: max310x: use regmap methods for SPI batch operations
2aa7bcfdbb46 xhci: handle isoc Babble and Buffer Overrun events properly
56e9aeb2052c xhci: process isoc TD properly when there was a transaction error mid TD.
0d29b474fb90 selftests: mm: fix map_hugetlb failure on 64K page size systems
0b08eb637276 selftests/mm: switch to bash from sh
fdfc5fabe85a nfp: flower: add hardware offload check for post ct entry
245332d4e767 nfp: flower: add goto_chain_index for ct entry
666334fdf4c6 drm/amd/display: Fix uninitialized variable usage in core_link_ 'read_dpcd() & write_dpcd()' functions
f354086d1bf7 ALSA: usb-audio: add quirk for RODE NT-USB+
80326ce1eb74 ALSA: usb-audio: Fix microphone sound on Nexigo webcam.
f1a68c6a41c6 ALSA: usb-audio: Add new quirk FIXED_RATE for JBL Quantum810 Wireless
d16ae91186f3 ALSA: usb-audio: Add quirk for Tascam Model 12
7ce0a888d646 ALSA: usb-audio: Avoid superfluous endpoint setup
3191a00dbe04 ALSA: usb-audio: Correct the return code from snd_usb_endpoint_set_params()
06b6de69cf16 ALSA: usb-audio: Apply mutex around snd_usb_endpoint_set_params()
539493f147ff ALSA: usb-audio: Properly refcounting clock rate
56e28371faf4 ALSA: usb-audio: Split endpoint setups for hw_params and prepare (take#2)
8ca3315bd876 ALSA: usb-audio: Clear fixed clock rate at closing EP
9830e7383f18 ALSA: usb-audio: Refcount multiple accesses on the single clock
0866afaff19d netrom: Fix data-races around sysctl_net_busy_read
c558e54f7712 netrom: Fix a data-race around sysctl_netrom_link_fails_count
f9c4d4246417 netrom: Fix a data-race around sysctl_netrom_routing_control
4eacb242e22e netrom: Fix a data-race around sysctl_netrom_transport_no_activity_timeout
489e05c614db netrom: Fix a data-race around sysctl_netrom_transport_requested_window_size
85f34d352f4b netrom: Fix a data-race around sysctl_netrom_transport_busy_delay
33081e0f3489 netrom: Fix a data-race around sysctl_netrom_transport_acknowledge_delay
f84f7709486d netrom: Fix a data-race around sysctl_netrom_transport_maximum_tries
b8006cb0a34a netrom: Fix a data-race around sysctl_netrom_transport_timeout
775ed3549819 netrom: Fix data-races around sysctl_netrom_network_ttl_initialiser
b3f0bc3a315c netrom: Fix a data-race around sysctl_netrom_obsolescence_count_initialiser
bbc21f134b89 netrom: Fix a data-race around sysctl_netrom_default_path_quality
101277e37d54 erofs: apply proper VMA alignment for memory mapped files on THP
b3c0f5538205 netfilter: nf_conntrack_h323: Add protection for bmp length out of range
bd9c90927a3c netfilter: nft_ct: fix l3num expectations with inet pseudo family
b562ebe21ed9 net/rds: fix WARNING in rds_conn_connect_if_down
f0363af9619c cpumap: Zero-initialise xdp_rxq_info struct before running XDP program
cae330325795 net/ipv6: avoid possible UAF in ip6_route_mpath_notify()
8d95465d9a42 net: ice: Fix potential NULL pointer dereference in ice_bridge_setlink()
e46274df1100 net: sparx5: Fix use after free inside sparx5_del_mact_entry
e77e0b0f2a11 geneve: make sure to pull inner header in geneve_rx()
be3be07d237c tracing/net_sched: Fix tracepoints that save qdisc_dev() as a string
e72b4e5e16f6 i40e: disable NAPI right after disabling irqs when handling xsk_pool
533953fa90d1 ixgbe: {dis, en}able irqs in ixgbe_txrx_ring_{dis, en}able
ea4e938d2ce4 net: lan78xx: fix runtime PM count underflow on link stop
5ae5060e17a3 mmc: mmci: stm32: fix DMA API overlapping mappings warning
287093040fc5 mmc: mmci: stm32: use a buffer for unaligned DMA requests
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: 4545591ac316d4304a73b578ecfce57a10af886f)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
574362648507 Linux 5.15.151
4a4eeb691253 mptcp: fix double-free on socket dismantle
cc5e34bc5b20 Revert "tls: rx: move counting TlsDecryptErrors for sync"
9d5932275b3b net: tls: fix async vs NIC crypto offload
68dbe92d677c bpf: Derive source IP addr via bpf_*_fib_lookup()
39b4ee40d204 bpf: Add table ID to bpf_fib_lookup BPF helper
75ca92271da5 bpf: Add BPF_FIB_LOOKUP_SKIP_NEIGH for bpf_fib_lookup
20f5aafe521c Revert "interconnect: Teach lockdep about icc_bw_lock order"
fe549d8e9763 Revert "interconnect: Fix locking for runpm vs reclaim"
ead68522455b gpio: fix resource unwinding order in error path
ea514ac5f1be gpiolib: Fix the error path order in gpiochip_add_data_with_key()
c21b5ad4e79d gpio: 74x164: Enable output pins after registers are reset
6c480d0f1318 af_unix: Drop oob_skb ref before purging queue in GC.
2f3ae0905a7e Revert "drm/bridge: lt8912b: Register and attach our DSI device at probe"
22850c9950a4 fs,hugetlb: fix NULL pointer dereference in hugetlbs_fill_super
94965be37add cachefiles: fix memory leak in cachefiles_add_cache()
cc32ba2fdf3f mptcp: fix possible deadlock in subflow diag
af46c8a0d8db mptcp: push at DSS boundaries
5101e9f11a87 mptcp: add needs_id for netlink appending addr
4ba8702b23e3 mptcp: clean up harmless false expressions
f431a58cb933 selftests: mptcp: add missing kconfig for NF Filter in v6
5d7f2e7d213f selftests: mptcp: add missing kconfig for NF Filter
55366b9ae937 mptcp: rename timer related helper to less confusing names
833d068e776a mptcp: process pending subflow error on close
305078c2741f mptcp: move __mptcp_error_report in protocol.c
fbd16a1e4b14 x86/cpu/intel: Detect TME keyid bits before setting MTRR mask registers
077952157636 pmdomain: qcom: rpmhpd: Fix enabled_corner aggregation
5f6e8930ca96 mmc: sdhci-xenon: fix PHY init clock stability
f4fae0a76ee2 mmc: sdhci-xenon: add timeout for PHY init complete
52af4f26c02f mmc: core: Fix eMMC initialization with 1-bit bus connection
4529c084a320 dmaengine: fsl-qdma: init irq after reg initialization
2dee8895a25e dmaengine: ptdma: use consistent DMA masks
106c1ac953a6 dmaengine: fsl-qdma: fix SoC may hang on 16 byte unaligned read
ab2d68655d0f btrfs: dev-replace: properly validate device names
063715c33b4c wifi: nl80211: reject iftype change with mesh ID change
9376d059a705 gtp: fix use-after-free and null-ptr-deref in gtp_newlink()
cbf67001d647 ALSA: firewire-lib: fix to check cycle continuity
7d930a4da179 tomoyo: fix UAF write bug in tomoyo_write_control()
5941a90c55d3 riscv: Sparse-Memory/vmemmap out-of-bounds fix
80b15346492b afs: Fix endless loop in directory parsing
20a4b5214f7b fbcon: always restore the old font data in fbcon_do_set_font()
5eac17127e85 ALSA: Drop leftover snd-rtctimer stuff from Makefile
e601ae81910c power: supply: bq27xxx-i2c: Do not free non existing IRQ
4b73473c050a efi/capsule-loader: fix incorrect allocation size
5bc8810b788a tls: decrement decrypt_pending if no async completion will be called
9ae48288fc8b tls: rx: use async as an in-out argument
bdb7fb29236a tls: rx: assume crypto always calls our callback
2ec59e165549 tls: rx: move counting TlsDecryptErrors for sync
b61dbb5ef449 tls: rx: don't track the async count
4fd23a600be9 tls: rx: factor out writing ContentType to cmsg
9876554897b3 tls: rx: wrap decryption arguments in a structure
d6c9c2a66c91 tls: rx: don't report text length from the bowels of decrypt
ffc8a2b82141 tls: rx: drop unnecessary arguments from tls_setup_from_iter()
1abd49fa1ffb tls: hw: rx: use return value of tls_device_decrypted() to carry status
432d40036f17 tls: rx: refactor decrypt_skb_update()
17d8bda2a6fd tls: rx: don't issue wake ups when data is decrypted
de0970d258ef tls: rx: don't store the decryption status in socket context
4c68bf84d162 tls: rx: don't store the record type in socket context
f1e71909373e igb: extend PTP timestamp adjustments to i211
a1227b27fccc rtnetlink: fix error logic of IFLA_BRIDGE_FLAGS writing back
7c3f28599652 netfilter: bridge: confirm multicast packets before passing them up the stack
3e9cd8913635 netfilter: let reset rules clean out conntrack entries
c3a84f83d9e5 netfilter: make function op structures const
2cb39bea7085 netfilter: core: move ip_ct_attach indirection to struct nf_ct_hook
84d3baab4b89 netfilter: nfnetlink_queue: silence bogus compiler warning
4225152bfb77 netfilter: nf_tables: allow NFPROTO_INET in nft_(match/target)_validate()
af1a9a925e46 Bluetooth: Enforce validation on max value of connection interval
c3df637266df Bluetooth: hci_event: Fix handling of HCI_EV_IO_CAPA_REQUEST
4cd28dae8210 Bluetooth: hci_event: Fix wrongly recorded wakeup BD_ADDR
da4569d450b1 Bluetooth: Avoid potential use-after-free in hci_error_reset
8e9955630117 stmmac: Clear variable when destroying workqueue
28bbdb4e1993 uapi: in6: replace temporary label with rfc9486
1e2cbdbdfa76 net: usb: dm9601: fix wrong return value in dm9601_mdio_read
9b1f5c003284 veth: try harder when allocating queue memory
914c73e7872d net: enable memcg accounting for veth queues
8d4d26f51ef0 lan78xx: enable auto speed configuration for LAN7850 if no EEPROM is detected
8a54834c03c3 ipv6: fix potential "struct net" leak in inet6_rtm_getaddr()
f011c103e654 net: veth: clear GRO when clearing XDP even when down
bf3f0c4169be cpufreq: intel_pstate: fix pstate limits enforcement for adjust_perf call back
cbfd27689b5e tun: Fix xdp_rxq_info's queue_index when detaching
afec0c5cd2ed net: ip_tunnel: prevent perpetual headroom growth
c71ed29d15b1 netlink: Fix kernel-infoleak-after-free in __skb_datagram_iter
386bb2537e9b mtd: spinand: gigadevice: Fix the get ecc status issue
00b19ee0dcc1 netfilter: nf_tables: disallow timeout for anonymous sets
(From OE-Core rev: 32f2aba4c4e90b86c1e11ac54dedd6a015c219a6)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in ofono, an Open Source Telephony on Linux. A stack overflow bug
is triggered within the sms_decode_address_field() function during the SMS
PDU decoding. It is assumed that the attack scenario is accessible from a compromised
modem, a malicious base station, or just SMS.
(From OE-Core rev: 996c03dfb5295ec38286dee37c70c700b88e0a1e)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in ofono, an Open Source Telephony on Linux. A stack overflow bug
is triggered within the decode_submit_report() function during the SMS decoding.
It is assumed that the attack scenario is accessible from a compromised modem,
a malicious base station, or just SMS. There is a bound check for this memcpy
length in decode_submit(), but it was forgotten in decode_submit_report().
(From OE-Core rev: 51cf006ac7b5b97e65864fb1cb6f5b47192c4ebf)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
If DROPBEAR_RSAKEY_DIR has already been set before, e.g. by overwriting
the file dropbear.default, the line will still be appended a second time.
DROPBEAR_RSAKEY_DIR="/path/to/dropbear"
DROPBEAR_EXTRA_ARGS="-B"
DROPBEAR_RSAKEY_DIR=/var/lib/dropbear
(Backport of rev: 6045314d29)
(From OE-Core rev: 8a502301209ef144932ef5071c1a9b738db23270)
Signed-off-by: Michael Glembotzki <Michael.Glembotzki@iris-sensing.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw has been discovered in GnuTLS where an application crash can be induced
when attempting to verify a specially crafted .pem bundle using the
"certtool --verify-chain" command.
(From OE-Core rev: e63819fbabbde3d12df06ae302da70ab990df26d)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in GnuTLS. The Minerva attack is a cryptographic vulnerability
that exploits deterministic behavior in systems like GnuTLS, leading to
side-channel leaks. In specific scenarios, such as when using the
GNUTLS_PRIVKEY_FLAG_REPRODUCIBLE flag, it can result in a noticeable step in
nonce size from 513 to 512 bits, exposing a potential timing side-channel.
(From OE-Core rev: 18c4f65934331da48c597201c33334578e91a45d)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
nghttp2 is an implementation of the Hypertext Transfer Protocol
version 2 in C. The nghttp2 library prior to version 1.61.0 keeps
reading the unbounded number of HTTP/2 CONTINUATION frames even
after a stream is reset to keep HPACK context in sync. This
causes excessive CPU usage to decode HPACK stream. nghttp2 v1.61.0
mitigates this vulnerability by limiting the number of CONTINUATION
frames it accepts per stream. There is no workaround for this
vulnerability.
References:
https://nvd.nist.gov/vuln/detail/CVE-2024-28182
(From OE-Core rev: 85e65af4727695d61c225a5911325764f423c331)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CVE-2024-24576 only applies when invoking batch files (with the `bat` and `cmd` extensions) on Windows & No other platform or use is affected.
More details about CVE is here: https://nvd.nist.gov/vuln/detail/CVE-2024-24576
(From OE-Core rev: 44e0b6b028657d32de5971d6a42a88767ef8c710)
Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
As reported by "make sphinx-lint"
Tabs are even removed in Makefile examples,
as Sphinx turns them to spaces anyway in the generated output.
(From yocto-docs rev: fd1423141e7458ba557db465c171b0b4e9063987)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Reviewed-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
To make it more obvious which directories are needed, pass only these to
*mkdir* and use the option `-p` to create the missing parents.
(From yocto-docs rev: 4ddcedca4b09e2c051b33a40659ffce1db2984f5)
Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de>
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
As reported by "make sphinx-lint"
(From yocto-docs rev: 18d86626406fe07d4f62ef0b9168c0220b3dd90a)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Makes it possible to catch errors not reported by sphinx,
such as idle spaces. After customization, this should be used
to enforce our syntax conventions, such as two spaces after a "-"
character to introduce a list item.
Just run "make sphinx-lint".
(From yocto-docs rev: a735549a764f7cfebdc7534761b4d75dc523371a)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
reorder CVEs from alphabetical order to numerical order, align it
with text based release notes.
(From yocto-docs rev: a2ce17f656758db737c398263efa594604ca2271)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
These test suites are full of timing-sensitive test cases, so skip
them too.
[ YOCTO #15321 ]
(From OE-Core rev: f94c74cee8b2650dd3211a49dc7e88bf60d2e6a7)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit dd06c3668dbe9ec1cf9a0a84d7a6bc9851f9c662)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There are several tests in the test suite which are very dependent on
timing and fail on a loaded host system, so skip them.
[ YOCTO #14825#14882#15081 ]
(From OE-Core rev: 161d336a6c57fddb36a0c4e8c2def84ce70128e3)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 68beb4f4b5a0bea5d431decddf7656f18ac7a04a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Some tests hardcode assumptions on locales, which may not be present in
musl systems e.g., therefore add a way to skip such tests using -skip
option.
Skip unixInit-3* test on musl
(From OE-Core rev: a70f9039259d7d38c5a3e50f7003d3228d1ab692)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit fa66f1cee2d88c2276442e8b4aaeccde5490f9ea)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add CVE-2023-51767 to CVE_CHECK_IGNORE to avoid in cve-check reports
as upstream does not consider CVE-2023-51767 a bug underlying in
OpenSSH and does not intent to address it in OpenSSH.
(From OE-Core rev: de4186610335201c69d8952d605bb291f4a7427c)
Signed-off-by: Sana Kazi <sana.kazi@kpit.com>
Signed-off-by: Sana Kazi <sana.kazisk19@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CVE-2023-47100 is a duplicate of CVE-2023-47038. They have the same
advertised fix commit, which has already been merged into the
perl_5.34.3 sources used in kirkstone.
(From OE-Core rev: 8df158f39f1eed1e3ae88ddf935c67e067b72525)
Signed-off-by: Alex Stewart <alex.stewart@ni.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Typo prevents cupsd to start correctly with following error:
Unable to read "/etc/cups/cupsd.conf" due to errors.
Using `/usr/sbin/cupsd -t` to check the configuration:
Unknown authorization type Defaul on line 77 of /etc/cups/cupsd.conf.
Unknown Policy Limit directive AuthType on line 77 of /etc/cups/cupsd.conf.
(From OE-Core rev: eab100205bc5cdffc5ccc7752e1ee5abd9ebb58a)
Signed-off-by: Jonathan GUILLOT <jonathan@joggee.fr>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Try to particularly emphasize that it can be used to find
out why something rebuilds when it shouldn't.
(From yocto-docs rev: 1cd543e62e8f1b65e65108d919c2f481001e044c)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The documentation of the variable SPDX_NAMESPACE_PREFIX does not exist.
This variable is used to change the prefix of some links in SPDX docs.
(From yocto-docs rev: 0055b7ea1cdf72359695e08fe6d2ca9a405fba51)
Signed-off-by: BELOUARGA Mohamed <m.belouarga@technologyandstrategy.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
According to errors reported by "make stylecheck"
(From yocto-docs rev: b3aaf4523190f7528d49c29a9aea234bb1647eae)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* this is often confused to apply for e.g. meta-oe as well
where it doesn't apply as meta-oe has own ML mentioned
in README.
(From yocto-docs rev: 98102408fe5468529e040a138f09c8fbc5fe065a)
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Allowing to remove nested parentheses in the text!
(From yocto-docs rev: a0ba062f8b31426f80ccd760e29b054405ee2a8e)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Instead of "manpage(s)" or "man page(s)".
To address one of the errors reported by "make stylecheck"
(From yocto-docs rev: f6e69f8877d1d33200993f21b448e7fa3cf7859b)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Plus a few text styling improvements, some reported by "make stylecheck"
(From yocto-docs rev: ce0e83716197773d8eae0c2f0edc1cf290ebd60f)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Use the "Vale" (https://vale.sh) tool to perform text style checks
Run "make stylecheck" to run the checks.
This just checks the text, not the Sphinx syntax style choices.
(From yocto-docs rev: e3e4ba2aa963d4d178c4e9e842e66f4ee4bd3736)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Suggested-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backports missing license from master to kirkstone.
(From OE-Core rev: 26a878cbfbb3bc7a6e892e105577ebf8138ce150)
Signed-off-by: Colin McAllister <colin.mcallister@garmin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When using the gcc-sanitizers as part of the SDK on a Linux with a newer
kernel, the ASAN fails randomly. This was seen on Ubuntu 22.04.
This is also described at
https://stackoverflow.com/questions/77894856/possible-bug-in-gcc-sanitizers
Backport the fix from LLVM project, as gcc has not yet backported
anything for the 11 series.
(From OE-Core rev: 7af8e24d6c60a01e398b10a57939947fb156feec)
Signed-off-by: Claus Stovgaard <claus.stovgaard@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
https://github.com/urllib3/urllib3/releases/tag/1.26.18
Major changes in python3-urllib3 1.26.18:
- Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses. (CVE-2023-45803)
(cherry picked from OE-Core rev: 74da05b63634c248910594456dae286947f33da5)
(From OE-Core rev: c473f32184ea0ab41f6eb4c8dcc1d7bb5fd7b16f)
Signed-off-by: Tan Wen Yan <wen.yan.tan@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
libexpat through 2.5.0 allows a denial of service (resource consumption) because
many full reparsings are required in the case of a large token for which multiple
buffer fills are needed.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-52425
Changes related to test directory are not included as most of the files are not present
and are introduced in the later version.
(From OE-Core rev: 1bdcd10930a2998f6bbe56b3ba4c9b6c91203b39)
Signed-off-by: Meenali Gupta <meenali.gupta@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The HTTP/2 protocol allows a denial of service (server resource consumption)
because request cancellation can reset many streams quickly, as exploited in
the wild in August through October 2023.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-4448772b4af6143
(From OE-Core rev: 0156b57dcdb2e5acdd9421a7c24c235f13da2d97)
Signed-off-by: Zahir Hussain <zahir.basha@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Document the convention to use variables prefixed by VIRTUAL_RUNTIME.
Add references to the new term where possible.
Another reason is that such variables are recommended
in a warning issued by meta/classes-global/insane.bbclass
(From yocto-docs rev: db88c2021062c95fe49b54351952753390d45a6a)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Reported-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This adds some hints that and how changes should be tested when contributing.
Fixes [YOCTO #15412]
(From yocto-docs rev: 649843f4d20d1d840e1c6c4ce15e89b3a8508e0f)
Signed-off-by: Simone Weiß <simone.p.weiss@posteo.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Fix some hyphens being improperly used as em dashes.
See https://www.grammarly.com/blog/hyphens-and-dashes/
Using em dashes may also allow Sphinx to hyphenate
and break lines in the best way.
Note that the first character after an em dash not
supposed to be capitalized, unless a specific
rule applies, typically when what follows is a proper noun.
Fix a few misuses of parentheses in following text.
(From yocto-docs rev: a0d93ea1ddfdfbcde8dac3aa328307be778f9e3c)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add missing documentation on how to add multiple groups with a single
GROUPADD_PARAM:${PN}
(From yocto-docs rev: 46f82dcb3b4042491efd44b9c15a06e3c910ec85)
Signed-off-by: Geoff Parker <geoffrey.parker@arthrex.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The SDKPATH variable seems mistakenly identified as the
default path where the SDK will be installed by the generated
installation script, unless option '-d' or a manual input
overrides this default.
The intended variable is SDKPATHINSTALL. SDKPATH indicates
where the SDK is being composed and built.
The definitions have been added/updated.
(From yocto-docs rev: f7ce2abbdcff625356b337137e91f642ff6a4dc2)
Signed-off-by: Johan Bezem <jbezem.extern@arri.de>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
calling 'sync' from do_compile in the middle of big OE world
build harms the build time.
(From OE-Core rev: b2de7d75692fd4c9e0a6f46a099b89089edb10d4)
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
==========
wireless-regdb: update regulatory database based on preceding changes
wireless-regdb: Update regulatory rules for Australia (AU) for June 2023
wireless-regdb: Update regulatory info for Türkiye (TR)
wireless-regdb: Update regulatory rules for Egypt (EG) from March 2022 guidel...
wireless-regdb: Update regulatory rules for Philippines (PH)
(From OE-Core rev: 3af65ed130493e14a87818b76b06f9ca7c717874)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2f5edb6904bf16a9c52a9b124aeb5297487cd716)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When a CVE is updated to be rejected, matching database entries must be
removed. Otherwise:
* an incremental update is not equivalent the to an initial download.
* rejected CVEs might still appear as Unpatched in cve-check.
(From OE-Core rev: 717f0df5f35272f7706e4f92cc8b57cdda8066b6)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f276a980b8930b98e6c8f0e1a865d77dfcfe5085)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When a CVE is created, it often has no precise version information and
this is stored as "-" (matching any version). After an update, version
information is added. The previous "-" must be removed, otherwise, the
CVE is still "Unpatched" for cve-check.
(From OE-Core rev: 38402b5e89d43bf2a45c8f5f2d631033be5019cd)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 641ae3f36e09af9932dc33043a0a5fbfce62122e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add a URL to the doc of the API used in the function.
... and fix a small typo dabase -> database
(From OE-Core rev: a98387021d80b5055a773f909eb685513902fb12)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e0157b3b81333a24abd31dbb23a6abebca3e7ba7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CVE_CHECK_DB_FILE is already defined in cve-check.bbclass which is
always inherited in cve-update-nvd2-native (There is a check line 40).
Remove it to avoid confusion. Otherwise, this should not change
anything.
(From OE-Core rev: b6285f0549d1c708adfe147c63eb6cda24462ff3)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e5f3f223885c17b7007c310273fc7c80b90a4105)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add a new variable "CVE_DB_INCR_UPDATE_AGE_THRES", which can be used to
specify the maximum age of the database for doing an incremental update
For older databases, a full re-download is done.
With a value of "0", this forces a full-redownload.
(From OE-Core rev: 5259971a4785e7f664c0f588f34f8ef537c5c4c5)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 74c1765111b6610348eae4b7e41d7045ce58ef86)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in Expat (libexpat). If XML_DTD is undefined at compile time, a
recursive XML Entity Expansion condition can be triggered.This issue may lead to
a condition where data is expanded exponentially, which will quickly consume system
resources and cause a denial of service.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-52426https://github.com/libexpat/libexpat/pull/777
(From OE-Core rev: aa20dd9eb68f04a5f1556123ad1b2398de911d93)
Signed-off-by: Meenali Gupta <meenali.gupta@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bumping the reference BSPs to match the version of the qemu*
BSPs in oe-core.
(From meta-yocto rev: 26e04e6682c2658673b0295f853a59c630d5e16d)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Integrating the following commit(s) to linux-yocto/5.15:
1/1 [
Author: Christoph Hellwig
Email: hch@lst.de
Subject: block, loop: support partitions without scanning
Date: Fri, 27 May 2022 07:58:06 +0200
Historically we did distinguish between a flag that surpressed partition
scanning, and a combinations of the minors variable and another flag if
any partitions were supported. This was generally confusing and doesn't
make much sense, but some corner case uses of the loop driver actually
do want to support manually added partitions on a device that does not
actively scan for partitions. To make things worsee the loop driver
also wants to dynamically toggle the scanning for partitions on a live
gendisk, which makes the disk->flags updates non-atomic.
Introduce a new GD_SUPPRESS_PART_SCAN bit in disk->state that disables
just scanning for partitions, and toggle that instead of GENHD_FL_NO_PART
in the loop driver.
[bva: Notes for this backport:
- drop return code in disk_scan_partitions for GD_SUPPRESS_PART_SCAN.
The check doesn't strictly need ot be in this routine in 5.15, but
this faciliates future changes in this area, since there are
other checks in the same function.
- GD_SUPPRESS_PART_SCAN could go to genh.c, but genhd.c includes
blkdev.h, so we leave the new GD_SUPPRESS_PART_SCAN definition
in the same places as where it was introduced upstream to keep
the changes to a minimum
- upstream commit e16e506ccd673 merges blkdev_reread_part into
disk_scan_partitions. Backporting that change is more churn
than we need, so we also add the check for GD_SUPPRESS_PART_SCAN
into that routine to have the check hit in a 5.15 context.
]
Upstream-Status: Backport [commit b9684a71fca79]
Fixes: 1ebe2e5f9d68 ("block: remove GENHD_FL_EXT_DEVT")
Reported-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Link: https://lore.kernel.org/r/20220527055806.1972352-1-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: 768ac24afff43d58c32617025391049d5d0d166b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
80efc6265290 Linux 5.15.150
da6cabc1981e r8169: use new PM macros
b7f3fac6d301 netfilter: nf_tables: can't schedule in nft_chain_validate
a4efc62cd1ed ext4: avoid bb_free and bb_fragments inconsistency in mb_free_blocks()
c1317822e2de ext4: regenerate buddy after block freeing failed if under fc replay
d82ec7529c5f netfilter: nf_tables: fix scheduling-while-atomic splat
97eaa2955db4 arp: Prevent overflow in arp_req_get().
d7b6fa97ec89 fs/aio: Restrict kiocb_set_cancel_fn() to I/O submitted via libaio
df31d05f0678 cifs: fix mid leak during reconnection after timeout threshold
aade859419ce i2c: imx: when being a target, mark the last read as processed
cb21407f0b39 i2c: imx: Add timer for handling the stop condition
33f649f1b1ce drm/amd/display: Fix memory leak in dm_sw_fini()
9a03126588e5 drm/syncobj: call drm_syncobj_fence_add_wait when WAIT_AVAILABLE flag is set
13b57b5cd591 netfilter: nft_flow_offload: release dst in case direct xmit path is used
4c167af9f6b5 netfilter: nft_flow_offload: reset dst in route object after setting up flow
7c71b831220e netfilter: flowtable: simplify route logic
664264a5c55b netfilter: nf_tables: set dormant flag on hook register failure
4338032aa90b tls: stop recv() if initial process_rx_list gave us non-DATA
ea845237a39d tls: rx: drop pointless else after goto
8b32e43a80a1 tls: rx: jump to a more appropriate label
39603a6d4e71 s390: use the correct count for __iowrite64_copy()
8cae520f21ad octeontx2-af: Consider the action set by PF
6dae096960bc drm/nouveau/instmem: fix uninitialized_var.cocci warning
4d3b2bd995ed net: dev: Convert sa_data to flexible array in struct sockaddr
d65ec3e48f70 packet: move from strlcpy with unused retval to strscpy
91b020aaa1e5 ipv6: sr: fix possible use-after-free and null-ptr-deref
e56662160fc2 afs: Increase buffer size in afs_update_volume_status()
5268bb02107b bpf: Fix racing between bpf_timer_cancel_and_free and bpf_timer_cancel
6800ad7417f3 ata: ahci_ceva: fix error handling for Xilinx GT PHY support
7fcc31a3a705 ata: libahci_platform: Introduce reset assertion/deassertion methods
ddac2e0e656e ata: libahci_platform: Convert to using devm bulk clocks API
302b92b37304 ipv6: properly combine dev_base_seq and ipv6.dev_addr_genid
a75b49547831 ipv4: properly combine dev_base_seq and ipv4.dev_addr_genid
2a7b878a7dad net: stmmac: Fix incorrect dereference in interrupt handlers
a41d9142d2dd nouveau: fix function cast warnings
1087c284fd11 scsi: jazz_esp: Only build if SCSI core is builtin
4e395fb89e7e bpf, scripts: Correct GPL license name
cd6070d9f5e7 RDMA/srpt: fix function pointer cast warnings
656bd1702fea arm64: dts: rockchip: set num-cs property for spi on px30
135e5465fefa RDMA/qedr: Fix qedr_create_user_qp error flow
989af2f29342 RDMA/srpt: Support specifying the srpt_service_guid parameter
b6e660e07622 RDMA/irdma: Add AE for too many RNRS
056ed95befd1 RDMA/irdma: Set the CQ read threshold for GEN 1
a95d4cf82775 RDMA/irdma: Validate max_send_wr and max_recv_wr
635d79aa477f RDMA/irdma: Fix KASAN issue with tasklet
aeb5ac1c9d10 RDMA/bnxt_re: Return error for SRQ resize
52de5805c147 IB/hfi1: Fix a memleak in init_credit_return
48c63a174489 cifs: add a warning when the in-flight count goes negative
6538b6d13ce3 xhci: track port suspend state correctly in unsuccessful resume cases
8839d5728baa xhci: decouple usb2 port resume and get_port_status request handling
8af9de2a5ba1 xhci: clear usb2 resume related variables in one place.
a99c8f1abef9 xhci: rename resume_done to resume_timestamp
63f0e79cf382 xhci: move port specific items such as state completions to port structure
ea6c19c7365d xhci: cleanup xhci_hub_control port references
95973afc870c ACPI: resource: Skip IRQ override on ASUS ExpertBook B1502CBA
4f080b6487bd ACPI: resource: Skip IRQ override on Asus Expertbook B2402CBA
c2a9376d507e ACPI: resource: Add Asus ExpertBook B2502 to Asus quirks
1b64ff947a5a ACPI: resource: Skip IRQ override on Asus Vivobook S5602ZA
f3607954f2e6 ACPI: resource: Add ASUS model S5402ZA to quirks
27e99d785721 ACPI: video: Add backlight=native DMI quirk for Apple iMac12,1 and iMac12,2
cb1003c07e74 ARM: dts: BCM53573: Describe on-SoC BCM53125 rev 4 switch
28e5e3e59b3b arm64: dts: rockchip: add SPDIF node for ROCK Pi 4
99c8b2e99783 arm64: dts: rockchip: add ES8316 codec for ROCK Pi 4
371036bf7666 arm64: dts: rockchip: fix regulator name on rk3399-rock-4
92dcd7d6c606 exfat: support dynamic allocate bh for exfat_entry_set_cache
b4dc693b29ef wifi: iwlwifi: mvm: avoid baid size integer overflow
fa92c463eba7 igb: Fix igb_down hung on surprise removal
16f653776caf wifi: wext-core: Fix -Wstringop-overflow warning in ioctl_standard_iw_point()
7552020e3aa8 devlink: report devlink_port_type_warn source device
819ca25444b3 bpf: Address KCSAN report on bpf_lru_list
f97832620d7f wifi: ath11k: fix registration of 6Ghz-only phy without the full channel range
3cb43222bab8 sched/fair: Don't balance task to its current running CPU
621619f626cb arm64: mm: fix VA-range sanity check
0bd309f22663 arm64: set __exception_irq_entry with __irq_entry as a default
dd0802f0a9d6 ACPI: video: Add backlight=native DMI quirk for Lenovo ThinkPad X131e (3371 AMD version)
3cc2d66b12e0 ACPI: video: Add backlight=native DMI quirk for Apple iMac11,3
54da51be3b7e ACPI: button: Add lid disable DMI quirk for Nextbook Ares 8A
fa33b70513a0 btrfs: add xxhash to fast checksum implementations
ef535e0315af posix-timers: Ensure timer ID search-loop limit is valid
84a578961b25 md/raid10: prevent soft lockup while flush writes
6b03364b29bd md: fix data corruption for raid456 when reshape restart while grow up
638eaac37464 nbd: Add the maximum limit of allocated index in nbd_dev_add
173e191012aa debugobjects: Recheck debug_objects_enabled before reporting
de2efb42d693 netfilter: nf_tables: add rescheduling points during loop detection walks
a022c339afca net/sched: Refactor qdisc_graft() for ingress and clsact Qdiscs
65acad6791bf Input: iqs269a - do not poll during ATI
13b1dee7e110 Input: iqs269a - do not poll during suspend or resume
f33ba1ec4ad9 Input: iqs269a - switch to DEFINE_SIMPLE_DEV_PM_OPS() and pm_sleep_ptr()
dba06912727b PM: core: Remove static qualifier in DEFINE_SIMPLE_DEV_PM_OPS macro
995e77b87389 mmc: mxc: Use the new PM macros
8bc597732c85 mmc: jz4740: Use the new PM macros
75d4f92d8788 PM: core: Add new *_PM_OPS macros, deprecate old ones
53f7337519a1 PM: core: Redefine pm_ptr() macro
a51c253d8321 powerpc/eeh: Set channel state after notifying the drivers
4570db06b724 powerpc/eeh: Small refactor of eeh_handle_normal_event()
12dd4a0848c4 powerpc/rtas: ensure 4KB alignment for rtas_data_buf
8afaf74307f8 powerpc/rtas: make all exports GPL
2240f4c5f5d5 net: ethernet: ti: add missing of_node_put before return
18721a837387 dt-bindings: clocks: imx8mp: Add ID for usb suspend clock
fb100de77846 clk: imx8mp: add clkout1/2 support
3c8a513f0f6b clk: imx8mp: Add DISP2 pixel clock
3517b6d6146c serial: 8250: Remove serial_rs485 sanitization from em485
54974aad4a76 cifs: remove useless parameter 'is_fsctl' from SMB2_ioctl()
15c3ddd11803 kernel/sched: Remove dl_boosted flag comment
a1733ffd88d9 drm/i915/dg1: Update DMC_DEBUG3 register
8102416c05bb f2fs: write checkpoint during FG_GC
cfd5d011d6f6 f2fs: don't set GC_FAILURE_PIN for background GC
56b522f46681 drm/amdgpu: init iommu after amdkfd device init
572ee5086e47 tools/virtio: fix build
80f2a246225c perf beauty: Update copy of linux/socket.h with the kernel sources
47b6345ddb6c tools headers UAPI: Sync linux/fscrypt.h with the kernel sources
c65a23e98e38 ARM: dts: BCM53573: Drop nonexistent "default-off" LED trigger
2eb3d2a54ad7 acpi: property: Let args be NULL in __acpi_node_get_property_reference
7abdd666a06f platform/x86: asus-wmi: Document the dgpu_disable sysfs attribute
7de3c1535bdf clk: linux/clk-provider.h: fix kernel-doc warnings and typos
b184742d2788 RDMA/siw: Correct wrong debug message
6f6ec8aff219 RDMA/siw: Balance the reference of cep->kref in the error path
71475bcee001 ARM: dts: BCM53573: Drop nonexistent #usb-cells
832cf206dfe2 selftests: net: vrf-xfrm-tests: change authentication and encryption algos
14e1f63b3918 vdpa/mlx5: Don't clear mr struct on destroy MR
5b4f6c5ff65c MIPS: vpe-mt: drop physical_memsize
1be5de5b642a MIPS: SMP-CPS: fix build error when HOTPLUG_CPU not set
cc24b32d7d62 powerpc/pseries/lpar: add missing RTAS retry status handling
3212606148b8 powerpc/perf/hv-24x7: add missing RTAS retry status handling
e3835122ea28 powerpc/pseries/lparcfg: add missing RTAS retry status handling
228d3c49194b clk: Honor CLK_OPS_PARENT_ENABLE in clk_core_is_enabled()
d0e4a444557a clk: qcom: gpucc-sdm845: fix clk_dis_wait being programmed for CX GDSC
e7076cfb72d5 clk: qcom: gpucc-sc7180: fix clk_dis_wait being programmed for CX GDSC
83c043b92b0f powerpc/powernv/ioda: Skip unallocated resources when mapping to PE
8c373aa1f784 Input: ads7846 - don't check penirq immediately for 7845
6a37a429b3ee Input: ads7846 - always set last command to PWRDOWN
199e666477d5 clk: imx: avoid memory leak
94957e54dc70 clk: renesas: cpg-mssr: Remove superfluous check in resume code
2d89ed2e0629 Input: ads7846 - don't report pressure for ads7845
f992d1afd17f clk: renesas: cpg-mssr: Fix use after free if cpg_mssr_common_init() failed
d73cf59d2446 Input: iqs269a - increase interrupt handler return delay
db06a2ae0707 Input: iqs269a - configure device with a single block write
fdbceead4ac1 Input: iqs269a - drop unused device node references
d93c68661ad8 RISC-V: fix funct4 definition for c.jalr in parse_asm.h
5c5c02b069cc mtd: rawnand: sunxi: Fix the size of the last OOB region
11fcd28df8d3 clk: qcom: gcc-qcs404: fix names of the DSI clocks used as parents
9fcba5e7bb5c clk: qcom: gcc-qcs404: disable gpll[04]_out_aux parents
7602e5e1bd04 clk: imx: imx8mp: add shared clk gate for usb suspend clk
7d6e8d7ee13b mptcp: fix lockless access in subflow ULP diag
256c3e6192ed usb: roles: don't get/set_role() when usb_role_switch is unregistered
ef982fc41055 usb: roles: fix NULL pointer issue when put module's reference
2cb66b62a5d6 usb: gadget: ncm: Avoid dropping datagrams of properly parsed NTBs
3a2a909942b5 usb: cdns3: fix memory double free when handle zero packet
4e5c73b15d95 usb: cdns3: fixed memory use after free at cdns3_gadget_ep_disable()
f4928121f707 usb: cdnsp: fixed issue with incorrect detecting CDNSP family controllers
7c532fb96ac1 usb: cdnsp: blocked some cdns3 specific code
c98f2d25f8f6 usb: dwc3: gadget: Don't disconnect if not started
f4fab74cb83c serial: amba-pl011: Fix DMA transmission in RS485 mode
2c62c8984b96 x86/alternative: Make custom return thunk unconditional
b0c9fcacf218 Revert "x86/alternative: Make custom return thunk unconditional"
ae815291f0da x86/returnthunk: Allow different return thunks
5ca1f6adac69 x86/ftrace: Use alternative RET encoding
b9d69bfff6fd x86/ibt,paravirt: Use text_gen_insn() for paravirt_patch()
b810c58d8b01 x86/text-patching: Make text_gen_insn() play nice with ANNOTATE_NOENDBR
8943e3c9446d Revert "x86/ftrace: Use alternative RET encoding"
eec6cbbfa1e8 ARM: ep93xx: Add terminator to gpiod_lookup_table
0da15a703951 l2tp: pass correct message length to ip6_append_data
9d71d7a9f2a6 PCI/MSI: Prevent MSI hardware interrupt number truncation
a576308800be gtp: fix use-after-free and null-ptr-deref in gtp_genl_dump_pdp()
d81e2dc20395 KVM: arm64: vgic-its: Test for valid IRQ in its_sync_lpi_pending_table()
4deb8413eccb KVM: arm64: vgic-its: Test for valid IRQ in MOVALL handler
e20b24b175c9 platform/x86: touchscreen_dmi: Allow partial (prefix) matches for ACPI names
79d7504a24a3 platform/x86: intel-vbtn: Stop calling "VBDL" from notify_handler
1a4371db68a3 dm-crypt: don't modify the data when using authenticated encryption
d580f0dcb5e3 drm/ttm: Fix an invalid freeing on already freed page in error path
47ae64df23ed IB/hfi1: Fix sdma.h tx->num_descs off-by-one error
77cbc04a1a86 erofs: fix lz4 inplace decompression
fbb662ffa005 pmdomain: renesas: r8a77980-sysc: CR7 must be always on
43ea43b6fa17 ksmbd: free aux buffer if ksmbd_iov_pin_rsp_read fails
475426ad1ae0 pmdomain: mediatek: fix race conditions with genpd
2a52590ac523 virtio-blk: Ensure no requests in virtqueues before deleting vqs.
b9a61ee2bb27 drm/amdgpu: reset gpu for s3 suspend abort case
afc74fda2b5d drm/amdgpu: skip to program GFXDEC registers for suspend abort
dcd33edd854a firewire: core: send bus reset promptly on gap count error
a74270a1b784 scsi: lpfc: Use unsigned type for num_sge
26b8bdb5561a hwmon: (coretemp) Enlarge per package core count limit
a2f99731ab31 efi: Don't add memblocks for soft-reserved memory
4aa36b62c3ea efi: runtime: Fix potential overflow of soft-reserved region size
262dc4fb1517 wifi: mac80211: adding missing drv_mgd_complete_tx() call
a585faf05915 fs/ntfs3: Fix oob in ntfs_listxattr
0a3548e82424 fs/ntfs3: Update inode->i_size after success write into compressed file
c39c689a82b3 fs/ntfs3: Correct function is_rst_area_valid
54142e95dfc8 fs/ntfs3: Prevent generic message "attempt to access beyond end of device"
095d6a66bc69 fs/ntfs3: use non-movable memory for ntfs3 MFT buffer cache
3f3a6ebf6a32 fs/ntfs3: Disable ATTR_LIST_ENTRY size check
ee8db6475cb1 fs/ntfs3: Add NULL ptr dereference checking at the end of attr_allocate_frame()
56dacb722b76 fs/ntfs3: Fix detected field-spanning write (size 8) of single field "le->name"
3532bceaed11 fs/ntfs3: Print warning while fixing hard links count
f14132b88315 fs/ntfs3: Correct hard links updating when dealing with DOS names
cd465584d501 fs/ntfs3: Improve ntfs_dir_count
3f7920b36da0 fs/ntfs3: Modified fix directory element type detection
b4663b406aee Input: i8042 - add Fujitsu Lifebook U728 to i8042 quirk table
9b1e3cf9ed29 ext4: correct the hole length returned by ext4_map_blocks()
46e64b9a4b6f nvmet-fc: take ref count on tgtport before delete assoc
5e0bc09a52b6 nvmet-fc: avoid deadlock on delete association path
f323185c7923 nvmet-fc: abort command when there is no binding
59b4ca71ab70 nvmet-fc: hold reference on hostport match
8fd604d4b0d7 nvmet-fc: defer cleanup using RCU properly
8f7104e18ffd nvmet-fc: release reference on target port
071f116416a1 nvmet-fcloop: swap the list_add_tail arguments
0bf567d6d9ff nvme-fc: do not wait in vain when unloading module
75e34de642a3 ALSA: usb-audio: Ignore clock selector errors for single connection
a75d89666c57 netfilter: conntrack: check SCTP_CID_SHUTDOWN_ACK for vtag setting in sctp_new
4a5ed4697232 Input: xpad - add Lenovo Legion Go controllers
1e9af43d5d02 spi: sh-msiof: avoid integer overflow in constants
ef1e3f277a7f ASoC: sunxi: sun4i-spdif: Add support for Allwinner H616
e59905cfb195 ALSA: usb-audio: Check presence of valid altsetting control
065da538e6a6 nvmet-tcp: fix nvme tcp ida memory leak
f8dee8e4893c regulator: pwm-regulator: Add validity checks in continuous .get_voltage
4fe4e5adc7d2 dmaengine: ti: edma: Add some null pointer checks to the edma_probe
8de8305a25bf ext4: avoid allocating blocks from corrupted group in ext4_mb_find_by_goal()
4c21fa60a6f4 ext4: avoid allocating blocks from corrupted group in ext4_mb_try_best_found()
687061cfaa2a ext4: avoid dividing by 0 in mb_update_avg_fragment_size() when block bitmap corrupt
3700475e0961 platform/x86: touchscreen_dmi: Add info for the TECLAST X16 Plus tablet
343c19816883 MIPS: reserve exception vector space ONLY ONCE
b4c13deff359 ahci: add 43-bit DMA address quirk for ASMedia ASM1061 controllers
1a8bd6244963 ahci: asm1166: correct count of reported ports
0399d7eba41d spi: hisi-sfc-v3xx: Return IRQ_NONE if no interrupts were detected
df6e2088c6f4 fbdev: sis: Error out if pixclock equals zero
8c54acf33e5a fbdev: savage: Error out if pixclock equals zero
88c18fd06608 wifi: mac80211: fix race condition on enabling fast-xmit
212f20d5b16e wifi: cfg80211: fix missing interfaces when dumping
37d82e6ac9b2 dmaengine: fsl-qdma: increase size of 'irq_name'
3692c6f2b564 dmaengine: shdma: increase size of 'dev_id'
a9849b67b440 scsi: target: core: Add TMF to tmr_list handling
0766e7317aab sched/rt: Disallow writing invalid values to sched_rt_period_us
5295b5f2e561 sched/rt: Fix sysctl_sched_rr_timeslice intial value
8bd3eee7720c x86/fpu: Stop relying on userspace for info to fault in xsave buffer
c017fbf10596 zonefs: Improve error handling
bbc432e632d4 userfaultfd: fix mmap_changing checking in mfill_atomic_hugetlb
4bbb93ad84b3 bpf: Remove trace_printk_lock
4b349c55bbd3 bpf: Do cleanup in bpf_bprintf_cleanup only when needed
bcbaeb081ad8 bpf: Add struct for bin_args arg in bpf_bprintf_prepare
8495c34dff0d bpf: Merge printk and seq_printf VARARG max macros
ab2e127896a2 PCI: dwc: Fix a 64bit bug in dw_pcie_ep_raise_msix_irq()
50349893930a sched/rt: sysctl_sched_rr_timeslice show default timeslice after reset
ee0fb9baa7a4 smb: client: fix parsing of SMB3.1.1 POSIX create context
890bc4fac3c0 smb: client: fix potential OOBs in smb2_parse_contexts()
858e73ff2563 smb: client: fix OOB in receive_encrypted_standard()
6e5e93fd51fe net/sched: Retire dsmark qdisc
c3fdf76849c6 net/sched: Retire ATM qdisc
78bac52c290a net/sched: Retire CBQ qdisc
(From OE-Core rev: 024d0778139277523f37d1a2857c6adbf69fd1c5)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.10 to the latest korg -stable release that comprises
the following commits:
aa6ca808a467 Linux 5.10.210
cf5a69e35591 PCI: dwc: Fix a 64bit bug in dw_pcie_ep_raise_msix_irq()
9f53d24852ff net: bcmgenet: Fix EEE implementation
9a865a11d689 netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval()
67f386f75637 drm/msm/dsi: Enable runtime PM
21b38d85f6de PM: runtime: Have devm_pm_runtime_enable() handle pm_runtime_dont_use_autosuspend()
ede393e11819 PM: runtime: add devm_pm_runtime_enable helper
a891a0621e72 dm: limit the number of targets and parameter size area
c90746c03b3c nilfs2: replace WARN_ONs for invalid DAT metadata block requests
f3e4963566f5 nilfs2: fix potential bug in end_buffer_async_write
db896bbe4a9c sched/membarrier: reduce the ability to hammer on sys_membarrier
8f8f18564374 net: prevent mss overflow in skb_segment()
f7e0231eeaa3 Revert "arm64: Stash shadow stack pointer in the task struct on interrupt"
70ca0dbae4e9 hrtimer: Ignore slack time for RT tasks in schedule_hrtimeout_range()
c80ddc10927f netfilter: ipset: Missing gc cancellations fixed
a24d5f2ac8ef netfilter: ipset: fix performance regression in swap operation
583a6c76b949 scripts/decode_stacktrace.sh: optionally use LLVM utilities
0f906882eba5 scripts: decode_stacktrace: demangle Rust symbols
a3d71b6ae935 scripts/decode_stacktrace.sh: support old bash version
ae992f14b117 scripts/decode_stacktrace.sh: silence stderr messages from addr2line/nm
00f09825e14c serial: 8250_exar: Set missing rs485_supported flag
84bf7b87594d serial: 8250_exar: Fill in rs485_supported
dfd8b9d26b8b serial: Add rs485_supported to uart_port
0c3687822259 crypto: lib/mpi - Fix unexpected pointer access in mpi_ec_init
e0d2eeec88ae mips: Fix max_mapnr being uninitialized on early stages
41a4bd51d87c PCI: dwc: endpoint: Fix dw_pcie_ep_raise_msix_irq() alignment support
ff67f77fb0fc bus: moxtet: Add spi device table
88ec9bbcd33c Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d"
6a42eb0d2170 tracing: Inform kmemleak of saved_cmdlines allocation
3a6e27dbe2fe pmdomain: core: Move the unused cleanup to a _sync initcall
978e50ef8c38 can: j1939: Fix UAF in j1939_sk_match_filter during setsockopt(SO_J1939_FILTER)
e4a6d3acaddb of: property: fix typo in io-channels
8180d0c27b93 ceph: prevent use-after-free in encode_cap_msg()
2e9506c9e0b9 s390/qeth: Fix potential loss of L3-IP@ in case of network issues
888679afbfc2 irqchip/gic-v3-its: Fix GICv4.1 VPE affinity update
2809645d8ae2 irqchip/irq-brcmstb-l2: Add write memory barrier before exit
45a3657c3fae wifi: mac80211: reload info pointer in ieee80211_tx_dequeue()
c7fa9590a9b2 nfp: flower: prevent re-adding mac index for bonded port
962091c40813 nfp: use correct macro for LengthSelect in BAR config
58054faf3bd2 crypto: ccp - Fix null pointer dereference in __sev_platform_shutdown_locked
98a4026b22ff nilfs2: fix hang in nilfs_lookup_dirty_data_buffers()
364a66be2abd nilfs2: fix data corruption in dsync block recovery for small block sizes
a643d8d17947 ALSA: hda/conexant: Add quirk for SWS JS201D
ca0533fe6650 mmc: slot-gpio: Allow non-sleeping GPIO ro
bdc29f9ca3b1 x86/mm/ident_map: Use gbpages only where full GB page should be mapped.
09f21bee5b02 x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6
1a8a72ee17e4 serial: max310x: improve crystal stable clock detection
6f248ee7aade serial: max310x: set default value when reading clock ready bit
92a0a5d61376 ring-buffer: Clean ring_buffer_poll_wait() error return
9ec807e7b6f5 hv_netvsc: Fix race condition between netvsc_probe and netvsc_remove
93d8109bf182 media: rc: bpf attach/detach requires write permission
a98ccbcddbb5 iio: accel: bma400: Fix a compilation problem
36a49290d7e6 iio: magnetometer: rm3100: add boundary check for the value read from RM3100_REG_TMRC
fa5884dd5bc2 staging: iio: ad5933: fix type mismatch regression
8a744f925de0 tracing: Fix wasted memory in saved_cmdlines logic
d033a555d9a1 ext4: fix double-free of blocks due to wrong extents moved_len
f86e12415b4e misc: fastrpc: Mark all sessions as invalid in cb_remove
a423042052ec binder: signal epoll threads of self-work
6d11240dd11b ALSA: hda/realtek: Enable headset mic on Vaio VJFE-ADL
cdaddb457d9e xen-netback: properly sync TX responses
0d8011a878fd net: hsr: remove WARN_ONCE() in send_hsr_supervision_frame()
2f6d16f0520d nfc: nci: free rx_data_reassembly skb on NCI device cleanup
5abf3e8af2e3 kbuild: Fix changing ELF file type for output of gen_btf for big endian
6717c593c7cf firewire: core: correct documentation of fw_csr_string() kernel API
2dc1d93b2c77 lsm: fix the logic in security_inode_getsecctx()
7d4e19f7ff64 scsi: Revert "scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock"
ca188f2512d6 modpost: trim leading spaces when processing source files list
7a14b8a477b8 i2c: i801: Fix block process call transactions
5e8a6140d42f i2c: i801: Remove i801_set_block_buffer_mode
230e89b5ad0a powerpc/kasan: Fix addr error caused by page alignment
486a4176bc78 media: ir_toy: fix a memleak in irtoy_tx
b8da59ad91e8 usb: f_mass_storage: forbid async queue when shutdown happen
9a8ccbc6ecbf USB: hub: check for alternate port before enabling A_ALT_HNP_SUPPORT
9d07bdbfa490 usb: ucsi_acpi: Fix command completion handling
f304eb483393 HID: wacom: Do not register input devices until after hid_hw_start
4f7927310e2d HID: wacom: generic: Avoid reporting a serial of '0' to userspace
d51fc41e159f ALSA: hda/realtek: Enable Mute LED on HP Laptop 14-fq0xxx
8da18c51ce4a ALSA: hda/realtek: Fix the external mic not being recognised for Acer Swift 1 SF114-32
81e7d2530d45 mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again
56cfbe607107 tracing/trigger: Fix to return error if failed to alloc snapshot
6d05659b60ac i40e: Fix waiting for queues of all VSIs to be disabled
f026f23849fb MIPS: Add 'memory' clobber to csum_ipv6_magic() inline assembler
ed8c87ac8afc net: sysfs: Fix /sys/class/net/<iface> path for statistics
4a98bc739d07 ASoC: rt5645: Fix deadlock in rt5645_jack_detect_work()
f8cd86c67d4c spi: ppc4xx: Drop write-only variable
55cfccb658fc net: openvswitch: limit the number of recursions from action sets
3f9b9585b7e4 of: unittest: Fix compile in the non-dynamic case
dc8bce9c71ef btrfs: send: return EOPNOTSUPP on unknown flags
22965e4fee0f btrfs: forbid deleting live subvol qgroup
3f5d47eb163b btrfs: do not ASSERT() if the newly created subvolume already got read
d7247ce32ab2 btrfs: forbid creating subvol qgroups
4cee42fcf54f netfilter: nft_set_rbtree: skip end interval element from gc
feace3c24044 net: stmmac: xgmac: fix a typo of register name in DPP safety handling
78115a3473b1 net: stmmac: xgmac: use #define for string constants
8868106251cd clocksource: Skip watchdog check for large watchdog intervals
cda4ca038caf vhost: use kzalloc() instead of kmalloc() followed by memset()
63d97c3abafd Input: atkbd - skip ATKBD_CMD_SETLEDS when skipping ATKBD_CMD_GETID
9a564a9a0731 Input: i8042 - fix strange behavior of touchpad on Clevo NS70PU
b1f576be92d0 hrtimer: Report offline hrtimer enqueue
b87060b3e835 usb: host: xhci-plat: Add support for XHCI_SG_TRB_CACHE_SIZE_QUIRK
34fd6f444b8a USB: serial: cp210x: add ID for IMST iM871A-USB
53479fcfd04c USB: serial: option: add Fibocom FM101-GL variant
c537b88b39d3 USB: serial: qcserial: add new usb-id for Dell Wireless DW5826e
e800ef36d1fa net/af_iucv: clean up a try_then_request_module()
9f56f3833117 blk-iocost: Fix an UBSAN shift-out-of-bounds warning
9878c660d1f0 scsi: core: Move scsi_host_busy() out of host lock if it is for per-command
1dd947c21d3f netfilter: nft_set_pipapo: remove scratch_aligned pointer
d6fcad0da2bd netfilter: nft_set_pipapo: add helper to release pcpu scratch area
1771e8347ff1 netfilter: nft_set_pipapo: store index in scratch maps
d1ec65c49e74 netfilter: nft_ct: reject direction for ct id
730fce47e593 netfilter: nft_compat: restrict match/target protocol to u16
78909916a22b netfilter: nft_compat: reject unused compat flag
b06e067e93fa ppp_async: limit MRU to 64K
19d7314f2fb9 tipc: Check the bearer type before calling tipc_udp_nl_bearer_add()
09e91f3e7e5c rxrpc: Fix response to PING RESPONSE ACKs to a dead call
88081ba41522 inet: read sk->sk_family once in inet_recv_error()
7e42379d29de hwmon: (coretemp) Fix bogus core_id to attr name mapping
f0da068c75c2 hwmon: (coretemp) Fix out-of-bounds memory access
9551de5caa2b hwmon: (aspeed-pwm-tacho) mutex for tach reading
edfd328fe7bd atm: idt77252: fix a memleak in open_card_ubr0
e77bf828f1ca tunnels: fix out of bounds access when building IPv6 PMTU error
fd473100bfed selftests: net: avoid just another constant wait
2fc45a4631ac net: stmmac: xgmac: fix handling of DPP safety error for DMA channels
66c8243e6130 drm/msm/dp: return correct Colorimetry for DP_TEST_DYNAMIC_RANGE_CEA case
be3b82e4871b phy: ti: phy-omap-usb2: Fix NULL pointer dereference for SRP
784d31548236 dmaengine: fix is_slave_direction() return false when DMA_DEV_TO_DEV
68459d2b0c21 phy: renesas: rcar-gen3-usb2: Fix returning wrong error code
ae6769ba5141 dmaengine: fsl-qdma: Fix a memory leak related to the queue command DMA
fbe1c5c6a8a2 dmaengine: fsl-qdma: Fix a memory leak related to the status queue DMA
3496a1da711e dmaengine: ti: k3-udma: Report short packet errors
b7dbf4115bd8 dmaengine: fsl-dpaa2-qdma: Fix the size of dma pools
6db18971f73a PM: sleep: Fix error handling in dpm_prepare()
6388d0e3200d uapi: stddef.h: Fix __DECLARE_FLEX_ARRAY for C++
2563e7c6877d bonding: remove print in bond_verify_device_path
d1a9900e6442 HID: apple: Add 2021 magic keyboard FN key mapping
b1e3ea7c48a5 HID: apple: Add support for the 2021 Magic Keyboard
e5eca7954aac net: sysfs: Fix /sys/class/net/<iface> path
f199018dc762 af_unix: fix lockdep positive in sk_diag_dump_icons()
9c9cab01c7a3 net: ipv4: fix a memleak in ip_setup_cork
65ee90efc928 netfilter: nft_ct: sanitize layer 3 and 4 protocol number in custom expectations
32fa7abb18b0 netfilter: nf_log: replace BUG_ON by WARN_ON_ONCE when putting logger
d0b5b1f12429 llc: call sock_orphan() at release time
e34c91e7e8a3 ipv6: Ensure natural alignment of const ipv6 loopback and router addresses
b45fae96bd1e ixgbe: Fix an error handling path in ixgbe_read_iosf_sb_reg_x550()
f8bccfa175a5 ixgbe: Refactor overtemp event handling
e16c254f60d3 ixgbe: Refactor returning internal error codes
2499c0661b18 ixgbe: Remove non-inclusive language
f48bf9a83b16 tcp: add sanity checks to rx zerocopy
14690e419bb3 net-zerocopy: Refactor frag-is-remappable test.
a9bc32879a08 ip6_tunnel: make sure to pull inner header in __ip6_tnl_rcv()
a57b114a84f8 ip6_tunnel: use dev_sw_netstats_rx_add()
f5944853f7a9 scsi: core: Move scsi_host_busy() out of host lock for waking up EH handler
7efadce40a6b scsi: core: Introduce enum scsi_disposition
dca11bfa0125 scsi: isci: Fix an error code problem in isci_io_request_build()
948090f66aed drm: using mul_u32_u32() requires linux/math64.h
02161f622df3 wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update
b54eecdc08d4 perf: Fix the nr_addr_filters fix
73eda2693117 drm/amdgpu: Release 'adev->pm.fw' before return in 'amdgpu_device_need_post()'
feacc800407c drm/amd/powerplay: Fix kzalloc parameter 'ATOM_Tonga_PPM_Table' in 'get_platform_power_management_table()'
e016e358461b ceph: fix deadlock or deadcode of misusing dget()
7610ba131925 blk-mq: fix IO hang from sbitmap wakeup race
27ae156e638d virtio_net: Fix "‘%d’ directive writing between 1 and 11 bytes into a region of size 10" warnings
0079078f5ee8 libsubcmd: Fix memory leak in uniq()
32a824378841 PCI/AER: Decode Requester ID when no error info found
feaf0752b310 fs/kernfs/dir: obey S_ISGID
6f921430b07a tty: allow TIOCSLCKTRMIOS with CAP_CHECKPOINT_RESTORE
e962b59d3749 usb: hub: Replace hardcoded quirk value with BIT() macro
4a5d0528cf19 PCI: switchtec: Fix stdev_release() crash after surprise hot remove
385e49a40fff PCI: Only override AMD USB controller if required
bb59b30a5ce2 mfd: ti_am335x_tscadc: Fix TI SoC dependencies
e4fdf3b17686 xen/gntdev: Fix the abuse of underlying struct page in DMA-buf import
89bdf3a9f98c i3c: master: cdns: Update maximum prescaler value for i2c clock
b345f330aeed um: net: Fix return type of uml_net_start_xmit()
ef21984653fc um: Don't use vfprintf() for os_info()
e4cc55538841 um: Fix naming clash between UML and scheduler
d47f5d41d8c0 leds: trigger: panic: Don't register panic notifier if creating the trigger failed
8342ac4a552a drm/amdgpu: Drop 'fence' check in 'to_amdgpu_amdkfd_fence()'
48bb06f8e380 drm/amdgpu: Let KFD sync with VM fences
e90c8f9785ea watchdog: it87_wdt: Keep WDTCTRL bit 3 unmodified for IT8784/IT8786
6f59516a36b9 clk: mmp: pxa168: Fix memory leak in pxa168_clk_init()
2cb6059468f8 clk: hi3620: Fix memory leak in hi3620_mmc_clk_init()
5fd28ab1c89d drm/msm/dpu: Ratelimit framedone timeout msgs
179fe24bd675 media: ddbridge: fix an error code problem in ddb_probe
ac2630fd3c90 IB/ipoib: Fix mcast list locking
9503ce5f8795 drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time
1eeca000f268 ALSA: hda: intel-dspcfg: add filters for ARL-S and ARL
3841b8a64e60 ALSA: hda: Intel: add HDA_ARL PCI ID support
56d717aa7bbe PCI: add INTEL_HDA_ARL to pci_ids.h
b68e373dc031 media: rockchip: rga: fix swizzling for RGB formats
32c5e3f8085f media: stk1160: Fixed high volume of stk1160_dbg messages
425a441c5c32 drm/mipi-dsi: Fix detach call without attach
0ec29a0f0366 drm/framebuffer: Fix use of uninitialized variable
d7b81afa11ba drm/drm_file: fix use of uninitialized variable
9a572fc1f6af f2fs: fix write pointers on zoned device after roll forward
7fb8c132738b drm/amd/display: Fix tiled display misalignment
3a1da8abd772 RDMA/IPoIB: Fix error code return in ipoib_mcast_join
13d20b2c20be fast_dput(): handle underflows gracefully
706fb30da0a5 ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument
354785abdf5e ALSA: hda: Refer to correct stream index at loops
80c69f576ff3 f2fs: fix to check return value of f2fs_reserve_new_block()
e474e7a7d6f9 i40e: Fix VF disable behavior to block all traffic
ed6de41473c8 Bluetooth: L2CAP: Fix possible multiple reject send
e1bcd9a42e5b Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066
27575c2f1f46 wifi: cfg80211: free beacon_ies when overridden from hidden BSS
40bcbf7d9069 wifi: rtlwifi: rtl8723{be,ae}: using calculate_bit_shift()
1632481a990d wifi: rtl8xxxu: Add additional USB IDs for RTL8192EU devices
2131606a5fd7 arm64: dts: qcom: msm8998: Fix 'out-ports' is a required property
4668f3e6ac23 arm64: dts: qcom: msm8996: Fix 'in-ports' is a required property
82f6e7e68e95 md: Whenassemble the array, consult the superblock of the freshest device
1746cd95a553 block: prevent an integer overflow in bvec_try_merge_hw_page
1335310a6a87 net: dsa: mv88e6xxx: Fix mv88e6352_serdes_get_stats error path
9c51d26ff95f ARM: dts: imx23/28: Fix the DMA controller node name
6c22388d960f ARM: dts: imx23-sansa: Use preferred i2c-gpios properties
fb9bdf84b612 ARM: dts: imx27-apf27dev: Fix LED name
1dd3a37909d7 ARM: dts: imx25/27: Pass timing0
3c2bce897698 ARM: dts: imx25: Fix the iim compatible string
95bc866c1197 block/rnbd-srv: Check for unlikely string overflow
03ca1d3d8f4d ionic: pass opcode to devcmd_wait
ba108f3db98c ARM: dts: imx1: Fix sram node
2f22ce556e38 ARM: dts: imx27: Fix sram node
e6c0ea054cf9 ARM: dts: imx: Use flash@0,0 pattern
bfbaf1551bee ARM: dts: imx25/27-eukrea: Fix RTC node name
24bb6b264792 ARM: dts: rockchip: fix rk3036 hdmi ports node
11c1fc73bf17 bpf: Set uattr->batch.count as zero before batched update or deletion
2e7f8d05ec95 scsi: libfc: Fix up timeout error in fc_fcp_rec_error()
a72670f465a1 scsi: libfc: Don't schedule abort twice
80700978cb34 bpf: Add map and need_defer parameters to .map_fd_put_ptr()
84770a996ad8 wifi: ath9k: Fix potential array-index-out-of-bounds read in ath9k_htc_txstatus()
c390b6a2c30b ARM: dts: imx7s: Fix nand-controller #size-cells
d7cb295b53f9 ARM: dts: imx7s: Fix lcdif compatible
73ead7a37a4d ARM: dts: imx7d: Fix coresight funnel ports
86781b3a8eae scsi: arcmsr: Support new PCI device IDs 1883 and 1886
db516f6030bf bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk
4f87b8d93297 PCI: Add no PM reset quirk for NVIDIA Spectrum devices
9bc7617a0d46 scsi: lpfc: Fix possible file string name overflow when updating firmware
9b9bbba16be4 selftests/bpf: Fix pyperf180 compilation failure with clang18
747838941f1c selftests/bpf: satisfy compiler by having explicit return in btf test
69e905beca19 wifi: rt2x00: restart beacon queue when hardware reset
cfbbb3199e71 ext4: avoid online resizing failures due to oversized flex bg
e7b9fa6c298f ext4: remove unnecessary check from alloc_flex_gd()
b96019242269 ext4: unify the type of flexbg_size to unsigned int
64448275f8ef ext4: fix inconsistent between segment fstrim and full fstrim
5183595c0bfd ecryptfs: Reject casefold directory inodes
c430e6bb4395 SUNRPC: Fix a suspicious RCU usage warning
150a3a387149 KVM: s390: fix setting of fpc register
856caf2730ea s390/ptrace: handle setting of fpc register correctly
e2b77d107b33 jfs: fix array-index-out-of-bounds in diNewExt
5f1f459520ed rxrpc_find_service_conn_rcu: fix the usage of read_seqbegin_or_lock()
ae53c54ed74c afs: fix the usage of read_seqbegin_or_lock() in afs_find_server*()
a02356d996b4 afs: fix the usage of read_seqbegin_or_lock() in afs_lookup_volume_rcu()
108c4db05791 crypto: stm32/crc32 - fix parsing list of devices
a63e48cd835c pstore/ram: Fix crash when setting number of cpus to an odd number
bc6ef64dbe71 jfs: fix uaf in jfs_evict_inode
2037cb9d95f1 jfs: fix array-index-out-of-bounds in dbAdjTree
1c40ca3d39d7 jfs: fix slab-out-of-bounds Read in dtSearch
7aa33854477d UBSAN: array-index-out-of-bounds in dtSplitRoot
de34de6e57bb FS:JFS:UBSAN:array-index-out-of-bounds in dbAdjTree
95c864c81148 ACPI: APEI: set memory failure flags as MF_ACTION_REQUIRED on synchronous events
3399cc7013e7 PM / devfreq: Synchronize devfreq_monitor_[start/stop]
b17a71435e7e ACPI: extlog: fix NULL pointer dereference check
c2615948536a PNP: ACPI: fix fortify warning
3a13ed6298c4 ACPI: video: Add quirk for the Colorful X15 AT 23 Laptop
c74b2af2ccbc audit: Send netlink ACK before setting connection in auditd_set
37e00ed71e86 regulator: core: Only increment use_count when enable_count changes
19c71322702d debugobjects: Stop accessing objects after releasing hash bucket lock
c57cb397fe23 perf/core: Fix narrow startup race when creating the perf nr_addr_filters sysfs file
5224b9db24f6 x86/mce: Mark fatal MCE's page as poison to avoid panic in the kdump kernel
beee482cc4c9 powerpc/lib: Validate size for vector operations
24a58abcfff3 powerpc: pmd_move_must_withdraw() is only needed for CONFIG_TRANSPARENT_HUGEPAGE
02e5b2ff4753 x86/boot: Ignore NMIs during very early boot
9d06c199d881 powerpc/mm: Fix build failures due to arch_reserved_kernel_pages()
3928c06363de powerpc: Fix build error due to is_valid_bugaddr()
353496cb35e2 drivers/perf: pmuv3: don't expose SW_INCR event in sysfs
aa28eecb43ca powerpc/mm: Fix null-pointer dereference in pgtable_cache_add
4e806600eb14 x86/entry/ia32: Ensure s32 is sign extended to s64
cdc01845df11 tick/sched: Preserve number of idle sleeps across CPU hotplug events
3736a7832bfe mips: Call lose_fpu(0) before initializing fcr31 in mips_set_personality_nan
95a8a5193e06 spi: bcm-qspi: fix SFDP BFPT read by usig mspi read
f1ba5bf9e0ac gpio: eic-sprd: Clear interrupt after set the interrupt type
0924bcd2fd49 drm/exynos: gsc: minor fix for loop iteration in gsc_runtime_resume
b6abe30de368 drm/exynos: fix accidental on-stack copy of exynos_drm_plane
4e56c5a9b9cf drm: panel-simple: add missing bus flags for Tianma tm070jvhg[30/33]
e1c50b0c6242 btrfs: avoid copying BTRFS_ROOT_SUBVOL_DEAD flag to snapshot of subvolume being deleted
d073f4608b47 btrfs: remove err variable from btrfs_delete_subvolume
90ad17575d26 mm/sparsemem: fix race in accessing memory_section->usage
74a80f8dda6a mm: use __pfn_to_section() instead of open coding it
43872f44eee6 media: mtk-jpeg: Fix use after free bug due to error path handling in mtk_jpeg_dec_device_run
9087d0c2ba04 arm64: dts: qcom: sc7180: fix USB wakeup interrupt types
3de807b14036 arm64: dts: qcom: sc7180: Use pdc interrupts for USB instead of GIC interrupts
8b2c7bb60510 ARM: dts: samsung: exynos4210-i9100: Unconditionally enable LDO12
162ae0e78bda pipe: wakeup wr_wait after setting max_usage
b6f27626f56e fs/pipe: move check to pipe_has_watch_queue()
f46eb832389f PM: sleep: Fix possible deadlocks in core system-wide PM code
8b604883d4cb PM: core: Remove unnecessary (void *) conversions
57df40f80089 PM: sleep: Avoid calling put_device() under dpm_list_mtx
2245a8498569 PM: sleep: Use dev_printk() when possible
8a6a51b80bbd drm/bridge: nxp-ptn3460: simplify some error checking
bedbbdf05663 drm/tidss: Fix atomic_flush check
ea192526910d drm/bridge: nxp-ptn3460: fix i2c_master_send() error checking
f55261469be8 drm: Don't unref the same fb many times by mistake due to deadlock handling
bb575bc3e767 gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-04
55a60251fa50 netfilter: nf_tables: reject QUEUE/DROP verdict parameters
9489e214ea8f netfilter: nft_chain_filter: handle NETDEV_UNREGISTER for inet/ingress basechain
05dd9facfb9a wifi: iwlwifi: fix a memory corruption
c0760a5c3e28 exec: Fix error handling in begin_new_exec()
30f38928b69b rbd: don't move requests to the running list on errors
2bdf872bcfe6 btrfs: don't abort filesystem when attempting to snapshot deleted subvolume
5d3687baa9db btrfs: defrag: reject unknown flags of btrfs_ioctl_defrag_range_args
f27937426b57 btrfs: don't warn if discard range is not aligned to sector
f8a7a51a6c2d btrfs: tree-checker: fix inline ref size in error messages
be90e25880f2 btrfs: ref-verify: free ref cache before clearing mount opt
7c3a572e1581 net: fec: fix the unhandled context fault from smmu
a52b2faf6010 fjes: fix memleaks in fjes_hw_setup
e1bf3ec97a82 selftests: netdevsim: fix the udp_tunnel_nic test
83f99138bf3b net: mvpp2: clear BM pool before initialization
6a2e2d9890e7 netfilter: nf_tables: validate NFPROTO_* family
4fbdc3a18f61 netfilter: nf_tables: restrict anonymous set and map names to 16 bytes
cf116d9c3c2a net/mlx5e: fix a double-free in arfs_create_groups
1123661a089a net/mlx5: DR, Use the right GVMI number for drop action
a3eba5989fc9 ipv6: init the accept_queue's spinlocks in inet6_create
be8d1f619ea3 netlink: fix potential sleeping issue in mqueue_flush_file
69ca75e063a5 tcp: Add memory barrier to tcp_push()
8499e2f1218e afs: Hide silly-rename files from userspace
ef70dfa0b1e5 tracing: Ensure visibility when inserting an element into tracing_map
5ae8d5004463 net/rds: Fix UBSAN: array-index-out-of-bounds in rds_cmsg_recv
9ccdef19cf94 llc: Drop support for ETH_P_TR_802_2.
04f2a74b562f llc: make llc_ui_sendmsg() more robust against bonding changes
ea4c3cb7fded vlan: skip nested type that is not IFLA_VLAN_QOS_MAPPING
fc74f86a3367 bnxt_en: Wait for FLR to complete during probe
bc99dcedd2f4 tcp: make sure init the accept_queue's spinlocks once
5fed92ca32ea net/smc: fix illegal rmb_desc access in SMC-D connection dump
c71e1c1a08c2 KVM: use __vcalloc for very large allocations
95670878a612 mm: vmalloc: introduce array allocation functions
02f629bb460d smb3: Replace smb2pdu 1-element arrays with flex-arrays
443b16ee3d9c stddef: Introduce DECLARE_FLEX_ARRAY() helper
bfc0647791d7 block: Remove special-casing of compound pages
ff4332f1ec75 rename(): fix the locking of subdirectories
d132010e6d5c ubifs: ubifs_symlink: Fix memleak of inode->i_link in error path
c6e6640784e4 nouveau/vmm: don't set addr on the fail path to avoid warning
83217f1bcb35 rtc: Adjust failure return code for cmos_set_alarm()
b51578bd86be mmc: mmc_spi: remove custom DMA mapped buffers
59020bf0999f mmc: core: Use mrq.sbc in close-ended ffu
625cb3f3bc8a scripts/get_abi: fix source path leak
311dc5afad11 lsm: new security_file_ioctl_compat() hook
f726690397df arm64: dts: qcom: sdm845: fix USB DP/DM HS PHY interrupts
dfc2c685f3a9 arm64: dts: qcom: sdm845: fix USB wakeup interrupt types
ac4dcccbe910 async: Introduce async_schedule_dev_nocall()
9ef68b58fd00 async: Split async_schedule_node_domain()
1dd8449e2008 parisc/firmware: Fix F-extend for PDC addresses
20a6dea2d1c6 bus: mhi: host: Drop chan lock before queuing buffers
69ca89d80f2c rpmsg: virtio: Free driver_override when rpmsg_remove()
cd51e26a3b89 crypto: s390/aes - Fix buffer overread in CTR mode
c6a8111aacbf hwrng: core - Fix page fault dead lock on mmap-ed hwrng
981a31b7547a PM: hibernate: Enforce ordering during image compression/decompression
462c383e732f crypto: api - Disallow identical driver names
fa9491224183 ext4: allow for the last group to be marked as trimmed
d173ef1255bb iio:adc:ad7091r: Move exports into IIO_AD7091R namespace.
9de69732dde4 dmaengine: fix NULL pointer in channel unregistration function
653d2890602c iio: adc: ad7091r: Enable internal vref if external vref is not supplied
1eba6f7ffa29 iio: adc: ad7091r: Allow users to configure device events
9ec7498a25f1 iio: adc: ad7091r: Set alert bit in config register
be5d6a297d30 serial: sc16is7xx: add check for unsupported SPI modes during probe
8df2aec94bf5 spi: introduce SPI_MODE_X_MASK macro
6ec08ce3bf7f serial: sc16is7xx: set safe default SPI clock frequency
e83f1149942f units: add the HZ macros
762217e973ea units: change from 'L' to 'UL'
f37f4a0c537c PCI: mediatek: Clear interrupt status before dispatching handler
490eaca84275 usb: cdns3: Fix uvc fail when DMA cross 4k boundery since sg enabled
bf703214190c usb: cdns3: fix iso transfer error when mult is not zero
6aec2f089d5c usb: cdns3: fix incorrect calculation of ep_buf_size when more than one config
2fdc98b05cb2 usb: cdns3: fix uvc failure work since sg support enabled
67d3c71cf856 usb: cdns3: Fixes for sparse warnings
(From OE-Core rev: 11abb97e51ac242a6f867d35b6b9d0ac1746bfe7)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
458ce51d0356 Linux 5.15.149
d72da18772ff usb: dwc3: gadget: Ignore End Transfer delay on teardown
acff71e58748 media: Revert "media: rkisp1: Drop IRQF_SHARED"
9ae312f7f3c2 usb: dwc3: gadget: Execute gadget stop after halting the controller
921acacb92b7 usb: dwc3: gadget: Don't delay End Transfer on delayed_status
4178bfa3fc9d staging: fbtft: core: set smem_len before fb_deferred_io_init call
9e25a0054090 smb3: Replace smb2pdu 1-element arrays with flex-arrays
0b49eac39c99 fs/ntfs3: Add null pointer checks
4c73597f68d7 net: bcmgenet: Fix EEE implementation
62900d358c48 Revert "selftests/bpf: Test tail call counting with bpf2bpf and data on stack"
75ac8dc02850 drm/msm/dsi: Enable runtime PM
c7a0fa3a6657 PM: runtime: Have devm_pm_runtime_enable() handle pm_runtime_dont_use_autosuspend()
1974b3c19a79 arm64: Subscribe Microsoft Azure Cobalt 100 to ARM Neoverse N2 errata
888a0a46b80f dm: limit the number of targets and parameter size area
cf4da91e99f1 nilfs2: replace WARN_ONs for invalid DAT metadata block requests
8fa90634ec3e nilfs2: fix potential bug in end_buffer_async_write
50fb4e17df31 sched/membarrier: reduce the ability to hammer on sys_membarrier
b9aafef74407 netfilter: ipset: Missing gc cancellations fixed
6c53e8547687 net: prevent mss overflow in skb_segment()
95c0babebe6a hrtimer: Ignore slack time for RT tasks in schedule_hrtimeout_range()
c2dc077d8f72 netfilter: ipset: fix performance regression in swap operation
3b3e4d3560e3 scripts/decode_stacktrace.sh: optionally use LLVM utilities
473791d286a8 scripts: decode_stacktrace: demangle Rust symbols
1ce4ac55d96e scripts/decode_stacktrace.sh: support old bash version
2655757a3f10 fbdev: flush deferred IO before closing
15492bab7393 fbdev: Fix incorrect page mapping clearance at fb_deferred_io_release()
87b9802ca824 fbdev: Fix invalid page access after closing deferred I/O devices
9a95fc04261f fbdev: Rename pagelist to pagereflist for deferred I/O
186b89659c4c fbdev: Track deferred-I/O pages in pageref struct
e79b2b2aadef fbdev: defio: fix the pagelist corruption
0616b00a31d6 fbdev: Don't sort deferred-I/O pages by default
5d3aff76a316 fbdev/defio: Early-out if page is already enlisted
48a09969e43e serial: 8250_exar: Set missing rs485_supported flag
9ef7419bc20c serial: 8250_exar: Fill in rs485_supported
aded03eda2ba usb: dwc3: gadget: Queue PM runtime idle on disconnect event
21f0bff281b5 usb: dwc3: gadget: Handle EP0 request dequeuing properly
89353c886477 usb: dwc3: gadget: Refactor EP0 forced stall/restart into a separate API
915619257332 usb: dwc3: gadget: Stall and restart EP0 if host is unresponsive
352b38d15c6d usb: dwc3: gadget: Submit endxfer command if delayed during disconnect
9cccdcc95e33 usb: dwc3: gadget: Force sending delayed status during soft disconnect
1ea8a2a532e9 usb: dwc3: Fix ep0 handling when getting reset while doing control transfer
12c0a0804ade usb: dwc3: gadget: Delay issuing End Transfer
487341852fbc usb: dwc3: gadget: Only End Transfer for ep0 data phase
9273bd26b06d usb: dwc3: ep0: Don't prepare beyond Setup stage
92f7a10a2bfe usb: dwc3: gadget: Wait for ep0 xfers to complete during dequeue
2bb86817b33c crypto: lib/mpi - Fix unexpected pointer access in mpi_ec_init
44a8a2c92e5a bus: moxtet: Add spi device table
4e82b9c11d3c dma-buf: add dma_fence_timestamp helper
36f7371de977 af_unix: Fix task hung while purging oob_skb in GC.
ff2f35f5cda0 tracing: Inform kmemleak of saved_cmdlines allocation
579cb4ff1fc5 pmdomain: core: Move the unused cleanup to a _sync initcall
41ccb5bcbf03 can: j1939: Fix UAF in j1939_sk_match_filter during setsockopt(SO_J1939_FILTER)
03358aba9916 can: j1939: prevent deadlock by changing j1939_socks_lock to rwlock
6315697fc5bf of: property: fix typo in io-channels
310c7d9853ef mm: hugetlb pages should not be reserved by shmat() if SHM_NORESERVE
70e329b44076 ceph: prevent use-after-free in encode_cap_msg()
99fa6d451d98 net: ethernet: ti: cpsw_new: enable mac_managed_pm to fix mdio
ff42d99e50b9 s390/qeth: Fix potential loss of L3-IP@ in case of network issues
ddb4be0eb2ac net: ethernet: ti: cpsw: enable mac_managed_pm to fix mdio
86244ae70715 irqchip/gic-v3-its: Fix GICv4.1 VPE affinity update
27a2af914ff5 irqchip/irq-brcmstb-l2: Add write memory barrier before exit
b10c8883f845 wifi: mac80211: reload info pointer in ieee80211_tx_dequeue()
ef5b1041f756 nfp: flower: prevent re-adding mac index for bonded port
e58efe0f7af8 nfp: use correct macro for LengthSelect in BAR config
7535ec350a5f crypto: ccp - Fix null pointer dereference in __sev_platform_shutdown_locked
7e9b622bd074 nilfs2: fix hang in nilfs_lookup_dirty_data_buffers()
120f7fa2008e nilfs2: fix data corruption in dsync block recovery for small block sizes
ee28bbb68518 ALSA: hda/conexant: Add quirk for SWS JS201D
776f0c695df1 mmc: slot-gpio: Allow non-sleeping GPIO ro
62fa823049c2 x86/mm/ident_map: Use gbpages only where full GB page should be mapped.
1fb17e9b840c x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6
0fc0bcbab6c2 powerpc/64: Set task pt_regs->link to the LR value on scv entry
72bf8760ad52 serial: max310x: fail probe if clock crystal is unstable
b67b421a825f serial: max310x: improve crystal stable clock detection
2e8b2b9180a5 serial: max310x: set default value when reading clock ready bit
f8777d33ccc5 ring-buffer: Clean ring_buffer_poll_wait() error return
7656372ae190 hv_netvsc: Fix race condition between netvsc_probe and netvsc_remove
4cc9092827c9 drm/prime: Support page array >= 4GB
d98210108e7b media: rc: bpf attach/detach requires write permission
a4b4ba772e4b iio: accel: bma400: Fix a compilation problem
1c6d19c8cbf6 iio: core: fix memleak in iio_device_register_sysfs
8d5838a473e8 iio: magnetometer: rm3100: add boundary check for the value read from RM3100_REG_TMRC
7b9cabd478d8 staging: iio: ad5933: fix type mismatch regression
047aa3dc0aeb tracing: Fix wasted memory in saved_cmdlines logic
afba9d11320d ext4: fix double-free of blocks due to wrong extents moved_len
b7902e34b0d7 misc: fastrpc: Mark all sessions as invalid in cb_remove
82722b453dc2 binder: signal epoll threads of self-work
4052b1803127 ALSA: hda/cs8409: Suppress vmaster control for Dolphin models
cc3cb482c093 ASoC: codecs: wcd938x: handle deferred probe
08c84d164091 ALSA: hda/realtek: Enable headset mic on Vaio VJFE-ADL
8b2f21991479 xen-netback: properly sync TX responses
de769423b2f0 net: hsr: remove WARN_ONCE() in send_hsr_supervision_frame()
471c9ede8061 nfc: nci: free rx_data_reassembly skb on NCI device cleanup
ac0f160a364e kbuild: Fix changing ELF file type for output of gen_btf for big endian
4bcfab73882d firewire: core: correct documentation of fw_csr_string() kernel API
d260a5b76d7a lsm: fix the logic in security_inode_getsecctx()
65158edb0a3a Revert "drm/amd: flush any delayed gfxoff on suspend entry"
5b8f473c4de9 scsi: Revert "scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock"
6f95120f898b mptcp: fix data re-injection from stale subflow
b7449c9fe003 modpost: trim leading spaces when processing source files list
1f8d0691c505 i2c: i801: Fix block process call transactions
23a8b74fe9c4 i2c: i801: Remove i801_set_block_buffer_mode
2738e0aa2fb2 powerpc/kasan: Fix addr error caused by page alignment
207557e393a1 media: ir_toy: fix a memleak in irtoy_tx
88936ceab6b4 usb: dwc3: gadget: Fix NULL pointer dereference in dwc3_gadget_suspend
6f54aa9ad56e usb: f_mass_storage: forbid async queue when shutdown happen
44c7567cc4aa USB: hub: check for alternate port before enabling A_ALT_HNP_SUPPORT
3aa71c77170c usb: ucsi_acpi: Fix command completion handling
712afb6ba16c iio: hid-sensor-als: Return 0 for HID_USAGE_SENSOR_TIME_TIMESTAMP
853307924a90 HID: wacom: Do not register input devices until after hid_hw_start
20902b760efd HID: wacom: generic: Avoid reporting a serial of '0' to userspace
62f5d219edbd HID: i2c-hid-of: fix NULL-deref on failed power up
20d8a8fe00b2 ALSA: hda/realtek: Enable Mute LED on HP Laptop 14-fq0xxx
16dc27567244 ALSA: hda/realtek: Fix the external mic not being recognised for Acer Swift 1 SF114-32
595865eb4ec5 scsi: storvsc: Fix ring buffer size calculation
5099871b3703 mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again
b5085b5ac1d9 tracing/trigger: Fix to return error if failed to alloc snapshot
cd459beede7b scs: add CONFIG_MMU dependency for vfree_atomic()
29b368101086 i40e: Fix waiting for queues of all VSIs to be disabled
8e89ac8852b5 MIPS: Add 'memory' clobber to csum_ipv6_magic() inline assembler
9bc718f6a56a net: sysfs: Fix /sys/class/net/<iface> path for statistics
d14b8e2005f3 ASoC: rt5645: Fix deadlock in rt5645_jack_detect_work()
2ed13fda5942 spi: ppc4xx: Drop write-only variable
c45f2fa92cb2 net: openvswitch: limit the number of recursions from action sets
ca8c08db6473 wifi: iwlwifi: Fix some error codes
1ab2a02bf103 of: unittest: Fix compile in the non-dynamic case
f0dc9c004b22 btrfs: send: return EOPNOTSUPP on unknown flags
980e2bee30f1 btrfs: forbid deleting live subvol qgroup
e31546b0f34a btrfs: do not ASSERT() if the newly created subvolume already got read
08bead026bd1 btrfs: forbid creating subvol qgroups
2bab493a5624 netfilter: nft_set_rbtree: skip end interval element from gc
658020d79781 net: stmmac: xgmac: fix a typo of register name in DPP safety handling
3f2e5581cb39 net: stmmac: xgmac: use #define for string constants
1027d6d63c8d clocksource: Skip watchdog check for large watchdog intervals
be38f291fd4d vhost: use kzalloc() instead of kmalloc() followed by memset()
132305ee7348 Input: atkbd - skip ATKBD_CMD_SETLEDS when skipping ATKBD_CMD_GETID
76889580163c Input: i8042 - fix strange behavior of touchpad on Clevo NS70PU
15524057a390 hrtimer: Report offline hrtimer enqueue
e2aaab6fcb16 usb: host: xhci-plat: Add support for XHCI_SG_TRB_CACHE_SIZE_QUIRK
5c654c582f5a usb: dwc3: host: Set XHCI_SG_TRB_CACHE_SIZE_QUIRK
efe1bfe067b8 USB: serial: cp210x: add ID for IMST iM871A-USB
3799bb646f5e USB: serial: option: add Fibocom FM101-GL variant
2998a7ddff07 USB: serial: qcserial: add new usb-id for Dell Wireless DW5826e
c1be84b8ee61 ALSA: usb-audio: Add a quirk for Yamaha YIT-W12TX transmitter
8b0386bca533 drivers: lkdtm: fix clang -Wformat warning
1e4d3f8bd880 blk-iocost: Fix an UBSAN shift-out-of-bounds warning
0d3dab886706 scsi: core: Move scsi_host_busy() out of host lock if it is for per-command
ae4acad41b0f fs/ntfs3: Fix an NULL dereference bug
4f0b6f2c222b netfilter: nft_set_pipapo: remove scratch_aligned pointer
ed965103651b netfilter: nft_set_pipapo: add helper to release pcpu scratch area
24547e88da4d netfilter: nft_set_pipapo: store index in scratch maps
44725dc0049d netfilter: nft_ct: reject direction for ct id
42442f74314d drm/amd/display: Implement bounds check for stream encoder creation in DCN301
bc6f288c10f8 drm/amd/display: Fix multiple memory leaks reported by coverity
fb49e60d7181 netfilter: nft_compat: restrict match/target protocol to u16
5f1c4efced3b netfilter: nft_compat: reject unused compat flag
58fbe665b097 ppp_async: limit MRU to 64K
4fe505c63aa3 af_unix: Call kfree_skb() for dead unix_(sk)->oob_skb in GC.
c1701ea85ef0 tipc: Check the bearer type before calling tipc_udp_nl_bearer_add()
69682953dddb rxrpc: Fix response to PING RESPONSE ACKs to a dead call
3266e638ba5c inet: read sk->sk_family once in inet_recv_error()
7df911d4f1f6 hwmon: (coretemp) Fix bogus core_id to attr name mapping
a16afec8e83c hwmon: (coretemp) Fix out-of-bounds memory access
0d5ceb4caa92 hwmon: (aspeed-pwm-tacho) mutex for tach reading
c08a3943dc6b octeontx2-pf: Fix a memleak otx2_sq_init
15393c8fd385 atm: idt77252: fix a memleak in open_card_ubr0
d964dd1bc145 tunnels: fix out of bounds access when building IPv6 PMTU error
5c45e6d015b7 selftests: net: avoid just another constant wait
ea51f12e93ee selftests: net: cut more slack for gro fwd tests.
6609e98ed829 net: stmmac: xgmac: fix handling of DPP safety error for DMA channels
513dd309b3d0 drm/msm/dp: return correct Colorimetry for DP_TEST_DYNAMIC_RANGE_CEA case
8cc889b9dea0 phy: ti: phy-omap-usb2: Fix NULL pointer dereference for SRP
5db6dd838edf dmaengine: fix is_slave_direction() return false when DMA_DEV_TO_DEV
850b64fd38aa phy: renesas: rcar-gen3-usb2: Fix returning wrong error code
15eb996d7d13 dmaengine: fsl-qdma: Fix a memory leak related to the queue command DMA
c71d4578a377 dmaengine: fsl-qdma: Fix a memory leak related to the status queue DMA
71fe7fd3d9dd dmaengine: ti: k3-udma: Report short packet errors
c75460bf7ac2 dmaengine: fsl-dpaa2-qdma: Fix the size of dma pools
725a9ac71732 ASoC: codecs: lpass-wsa-macro: fix compander volume hack
48471f7a4c5a bonding: remove print in bond_verify_device_path
85d64b0c3929 HID: apple: Add 2021 magic keyboard FN key mapping
97799743b495 HID: apple: Add support for the 2021 Magic Keyboard
c5b70b8f78ab gve: Fix use-after-free vulnerability
ce3c5039e614 arm64: irq: set the correct node for shadow call stack
8cdf9b6caa7e net: sysfs: Fix /sys/class/net/<iface> path
f3ce3e003890 selftests: net: fix available tunnels detection
c8f6b3b864cb af_unix: fix lockdep positive in sk_diag_dump_icons()
5823acd7593a net: ipv4: fix a memleak in ip_setup_cork
b775ced05489 netfilter: nft_ct: sanitize layer 3 and 4 protocol number in custom expectations
5d7a4559bce6 netfilter: nf_log: replace BUG_ON by WARN_ON_ONCE when putting logger
4cdab7167545 netfilter: nf_tables: restrict tunnel object to NFPROTO_NETDEV
beb732819261 bridge: mcast: fix disabled snooping after long uptime
dbc1b89981f9 llc: call sock_orphan() at release time
a9ef5dc93890 ipv6: Ensure natural alignment of const ipv6 loopback and router addresses
a2e5f021cac1 ixgbe: Fix an error handling path in ixgbe_read_iosf_sb_reg_x550()
c7f47912f72f ixgbe: Refactor overtemp event handling
52ec65d4d4ba ixgbe: Refactor returning internal error codes
7683f41c7b7b ixgbe: Remove non-inclusive language
718f446e6031 tcp: add sanity checks to rx zerocopy
af6b5c50d47a ip6_tunnel: make sure to pull inner header in __ip6_tnl_rcv()
6d5645016600 ip6_tunnel: use dev_sw_netstats_rx_add()
157e1cb2c0d8 selftests: net: give more time for GRO aggregation
d37c1c81419f scsi: core: Move scsi_host_busy() out of host lock for waking up EH handler
022e2310e86d scsi: isci: Fix an error code problem in isci_io_request_build()
bc009cb12f7f drm: using mul_u32_u32() requires linux/math64.h
cfe839036758 wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update
8a070a5884dc perf: Fix the nr_addr_filters fix
b203bc5e229a drm/amdkfd: Fix 'node' NULL check in 'svm_range_get_range_boundaries()'
362754ec2c32 drm/amdgpu: Release 'adev->pm.fw' before return in 'amdgpu_device_need_post()'
2f7f8e109b54 drm/amd/powerplay: Fix kzalloc parameter 'ATOM_Tonga_PPM_Table' in 'get_platform_power_management_table()'
a9c15d6e8aee ceph: fix deadlock or deadcode of misusing dget()
89e0e66682e1 blk-mq: fix IO hang from sbitmap wakeup race
105874a454e8 virtio_net: Fix "‘%d’ directive writing between 1 and 11 bytes into a region of size 10" warnings
7a70663ba02b drm/amdkfd: Fix lock dependency warning
93ecc12925b4 libsubcmd: Fix memory leak in uniq()
82006e24aa10 PCI/AER: Decode Requester ID when no error info found
7289a6e6fc6e PCI: Fix 64GT/s effective data rate calculation
f4dce08ba119 fs/kernfs/dir: obey S_ISGID
ef86cdc688a9 tty: allow TIOCSLCKTRMIOS with CAP_CHECKPOINT_RESTORE
8451aa66943b selftests/sgx: Fix linker script asserts
56073287613b usb: hub: Replace hardcoded quirk value with BIT() macro
a7af1be5cf55 perf cs-etm: Bump minimum OpenCSD version to ensure a bugfix is present
ff1c7e2fb9e9 PCI: switchtec: Fix stdev_release() crash after surprise hot remove
52d42ac643e8 PCI: Only override AMD USB controller if required
1a4f408561e7 mailbox: arm_mhuv2: Fix a bug for mhuv2_sender_interrupt
28497271ff33 mfd: ti_am335x_tscadc: Fix TI SoC dependencies
f7752e5f53db xen/gntdev: Fix the abuse of underlying struct page in DMA-buf import
9b7d253b823a i3c: master: cdns: Update maximum prescaler value for i2c clock
0c7478a2da3f um: time-travel: fix time corruption
1e3d449b15c2 um: net: Fix return type of uml_net_start_xmit()
b7b44ee08d73 um: Don't use vfprintf() for os_info()
4c4b366addb3 um: Fix naming clash between UML and scheduler
f5010e2892ae leds: trigger: panic: Don't register panic notifier if creating the trigger failed
f13b8cb5a692 ALSA: hda/conexant: Fix headset auto detect fail in cx8070 and SN6140
bd086bd1e331 drm/amdgpu: Drop 'fence' check in 'to_amdgpu_amdkfd_fence()'
702b759168d8 drm/amdgpu: Let KFD sync with VM fences
8998723de474 clk: imx: clk-imx8qxp: fix LVDS bypass, pixel and phy clocks
9709da9d1086 clk: imx: scu: Fix memory leak in __imx_clk_gpr_scu()
91828d9316eb watchdog: it87_wdt: Keep WDTCTRL bit 3 unmodified for IT8784/IT8786
54a84bad7b3b clk: mmp: pxa168: Fix memory leak in pxa168_clk_init()
fcc477e61044 clk: hi3620: Fix memory leak in hi3620_mmc_clk_init()
77bcd4ab446f drm/amdgpu: fix ftrace event amdgpu_bo_move always move on same heap
2b5a22f0ccc0 drm/msm/dpu: Ratelimit framedone timeout msgs
a889d9012dae media: i2c: imx335: Fix hblank min/max values
d1e0fdbabff7 media: ddbridge: fix an error code problem in ddb_probe
ed790bd0903e IB/ipoib: Fix mcast list locking
5fcd8a81d303 drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time
7ea0f29d9fd8 f2fs: fix to tag gcing flag on page during block migration
8ab28b2d70a4 media: rkisp1: Drop IRQF_SHARED
9d23b21a2df2 ALSA: hda: intel-dspcfg: add filters for ARL-S and ARL
b1a53c923cc7 ALSA: hda: Intel: add HDA_ARL PCI ID support
684cb957fe1a PCI: add INTEL_HDA_ARL to pci_ids.h
d08e032f752b media: rockchip: rga: fix swizzling for RGB formats
fdf14a7c2bea media: stk1160: Fixed high volume of stk1160_dbg messages
3cdc644470e4 drm/mipi-dsi: Fix detach call without attach
711b5cc5f60e drm/framebuffer: Fix use of uninitialized variable
df31f3cb0449 drm/drm_file: fix use of uninitialized variable
6941fe8d9444 f2fs: fix write pointers on zoned device after roll forward
2ed3db899167 drm/amd/display: Fix tiled display misalignment
f217be126ac4 RDMA/IPoIB: Fix error code return in ipoib_mcast_join
8eb8fca117e8 fast_dput(): handle underflows gracefully
7fa0c4ef6776 ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument
82ccd840e039 ALSA: hda: Refer to correct stream index at loops
b4fb0807a1d6 f2fs: fix to check return value of f2fs_reserve_new_block()
315d966df2c6 octeontx2-af: Fix max NPC MCAM entry check while validating ref_entry
28764fab4d51 i40e: Fix VF disable behavior to block all traffic
2cf9158fffcc bridge: cfm: fix enum typo in br_cc_ccm_tx_parse
1fbcb194aad5 Bluetooth: L2CAP: Fix possible multiple reject send
84e3f673b23d Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066
2fde2254e057 wifi: cfg80211: free beacon_ies when overridden from hidden BSS
f589258f4066 wifi: rtlwifi: rtl8723{be,ae}: using calculate_bit_shift()
49ec369f56be ALSA: usb-audio: Add delay quirk for MOTU M Series 2nd revision
90dbf4535668 libbpf: Fix NULL pointer dereference in bpf_object__collect_prog_relos
9e1cae315724 wifi: rtl8xxxu: Add additional USB IDs for RTL8192EU devices
40a71f7e91bf arm64: dts: qcom: msm8998: Fix 'out-ports' is a required property
2f747a4f664b arm64: dts: qcom: msm8996: Fix 'in-ports' is a required property
2aee6c4517f9 md: Whenassemble the array, consult the superblock of the freshest device
6ab391eafa43 block: prevent an integer overflow in bvec_try_merge_hw_page
a9d12fdc5192 net: dsa: mv88e6xxx: Fix mv88e6352_serdes_get_stats error path
fed146364402 ARM: dts: imx23/28: Fix the DMA controller node name
e9b724664b6f ARM: dts: imx23-sansa: Use preferred i2c-gpios properties
3995aa523842 ARM: dts: imx27-apf27dev: Fix LED name
7a01ad0f04f7 ARM: dts: imx25/27: Pass timing0
b60d572d8555 ARM: dts: imx25: Fix the iim compatible string
f6abd5e17da3 block/rnbd-srv: Check for unlikely string overflow
963b9c5484af ionic: pass opcode to devcmd_wait
138170757875 ARM: dts: imx1: Fix sram node
ad54a5b041d0 ARM: dts: imx27: Fix sram node
b4130668dce3 ARM: dts: imx: Use flash@0,0 pattern
3693ecc0c1c8 ARM: dts: imx25/27-eukrea: Fix RTC node name
cf5f3489b6b6 ARM: dts: rockchip: fix rk3036 hdmi ports node
fdb812bea0bb bpf: Set uattr->batch.count as zero before batched update or deletion
813ebba2a7bd scsi: libfc: Fix up timeout error in fc_fcp_rec_error()
43ba03c31aed scsi: libfc: Don't schedule abort twice
5ef63c872d24 bpf: Add map and need_defer parameters to .map_fd_put_ptr()
9003fa9a0198 wifi: ath9k: Fix potential array-index-out-of-bounds read in ath9k_htc_txstatus()
8c965c9c4bed ARM: dts: imx7s: Fix nand-controller #size-cells
3eeefee8da2d ARM: dts: imx7s: Fix lcdif compatible
f9ec664f94f0 ARM: dts: imx7d: Fix coresight funnel ports
7733800d38c1 scsi: arcmsr: Support new PCI device IDs 1883 and 1886
34acf5225ea0 bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk
2abaf726280e PCI: Add no PM reset quirk for NVIDIA Spectrum devices
6b9abf50d37a scsi: lpfc: Fix possible file string name overflow when updating firmware
79aadf649273 selftests/bpf: Fix issues in setup_classid_environment()
6aad0814705f selftests/bpf: Fix pyperf180 compilation failure with clang18
efe701e91697 selftests/bpf: satisfy compiler by having explicit return in btf test
4cc198580a7b wifi: rt2x00: restart beacon queue when hardware reset
d76c8d7ffe16 ext4: avoid online resizing failures due to oversized flex bg
0cabe04c5616 ext4: remove unnecessary check from alloc_flex_gd()
474f5b00c564 ext4: unify the type of flexbg_size to unsigned int
5d2090597ca7 ext4: fix inconsistent between segment fstrim and full fstrim
9f2e407814a6 ecryptfs: Reject casefold directory inodes
f8cf4dabbdcb SUNRPC: Fix a suspicious RCU usage warning
732a3bea7aba KVM: s390: fix setting of fpc register
28a1f492cb52 s390/ptrace: handle setting of fpc register correctly
df81cbcd26bb arch: consolidate arch_irq_work_raise prototypes
6aa300208790 jfs: fix array-index-out-of-bounds in diNewExt
40e21a9e48a0 rxrpc_find_service_conn_rcu: fix the usage of read_seqbegin_or_lock()
44b86400480f afs: fix the usage of read_seqbegin_or_lock() in afs_find_server*()
78b6ff52a541 afs: fix the usage of read_seqbegin_or_lock() in afs_lookup_volume_rcu()
556be726a42e crypto: stm32/crc32 - fix parsing list of devices
70a3b16113a8 crypto: octeontx2 - Fix cptvf driver cleanup
2a37905d47bf pstore/ram: Fix crash when setting number of cpus to an odd number
8e44dc3f96e9 jfs: fix uaf in jfs_evict_inode
8393c80cce45 jfs: fix array-index-out-of-bounds in dbAdjTree
6c6a96c3d74d jfs: fix slab-out-of-bounds Read in dtSearch
e4ce01c25ccb UBSAN: array-index-out-of-bounds in dtSplitRoot
6fe8b702125a FS:JFS:UBSAN:array-index-out-of-bounds in dbAdjTree
7cb410316688 ACPI: APEI: set memory failure flags as MF_ACTION_REQUIRED on synchronous events
099f6a9edbe3 PM / devfreq: Synchronize devfreq_monitor_[start/stop]
5457b0cbaa02 ACPI: extlog: fix NULL pointer dereference check
b17cb541f13b PNP: ACPI: fix fortify warning
4d169334e5c0 ACPI: video: Add quirk for the Colorful X15 AT 23 Laptop
53ab23237537 audit: Send netlink ACK before setting connection in auditd_set
0f10c84e4437 regulator: core: Only increment use_count when enable_count changes
a5d70e22b920 debugobjects: Stop accessing objects after releasing hash bucket lock
c128e64ae0e6 perf/core: Fix narrow startup race when creating the perf nr_addr_filters sysfs file
330cb5e77adb x86/mce: Mark fatal MCE's page as poison to avoid panic in the kdump kernel
de4f5ed63b8a powerpc/lib: Validate size for vector operations
027e61b866cb powerpc: pmd_move_must_withdraw() is only needed for CONFIG_TRANSPARENT_HUGEPAGE
33595c0c7782 x86/boot: Ignore NMIs during very early boot
b3bc07aec73f powerpc/64s: Fix CONFIG_NUMA=n build due to create_section_mapping()
88a28bec865e powerpc/mm: Fix build failures due to arch_reserved_kernel_pages()
b00f2757335e powerpc: Fix build error due to is_valid_bugaddr()
b246a9a3c3cc drivers/perf: pmuv3: don't expose SW_INCR event in sysfs
17093c32f644 arm64: irq: set the correct node for VMAP stack
ac3ed969a403 powerpc/mm: Fix null-pointer dereference in pgtable_cache_add
fb6c8127dbe1 x86/entry/ia32: Ensure s32 is sign extended to s64
59b24e6245d1 tick/sched: Preserve number of idle sleeps across CPU hotplug events
f3bc406e1b71 mips: Call lose_fpu(0) before initializing fcr31 in mips_set_personality_nan
ccb03ec4294c spi: bcm-qspi: fix SFDP BFPT read by usig mspi read
3bc801ce9d7f block: Move checking GENHD_FL_NO_PART to bdev_add_partition()
f2d3ae8cf69b gpio: eic-sprd: Clear interrupt after set the interrupt type
fcf44c782cac drm/exynos: gsc: minor fix for loop iteration in gsc_runtime_resume
22937c97c527 drm/exynos: fix accidental on-stack copy of exynos_drm_plane
76d1ffa908e1 drm: panel-simple: add missing bus flags for Tianma tm070jvhg[30/33]
7ae053227c8c cpufreq: intel_pstate: Refine computation of P-state for given frequency
34c02fec33ea cpufreq: intel_pstate: Drop redundant intel_pstate_get_hwp_cap() call
aaa1f1a2ee80 ksmbd: fix global oob in ksmbd_nl_policy
4056ece66090 btrfs: add definition for EXTENT_TREE_V2
796d3fad8c35 PM / devfreq: Fix buffer overflow in trans_stat_show
b448de2459b6 mm/sparsemem: fix race in accessing memory_section->usage
904fafac104d mm: use __pfn_to_section() instead of open coding it
1b1036c60a37 media: mtk-jpeg: Fix use after free bug due to error path handling in mtk_jpeg_dec_device_run
4cebb1edb14e ARM: dts: qcom: sdx55: fix USB SS wakeup
462d5a6fb272 ARM: dts: qcom: sdx55: fix USB DP/DM HS PHY interrupts
a98b715c9449 ARM: dts: qcom: sdx55: fix pdc '#interrupt-cells'
57be4dd630ca ARM: dts: samsung: exynos4210-i9100: Unconditionally enable LDO12
28092c1137b7 ARM: dts: qcom: sdx55: fix USB wakeup interrupt types
3efbd114b915 pipe: wakeup wr_wait after setting max_usage
26bfccac21fc fs/pipe: move check to pipe_has_watch_queue()
94991728c84f bus: mhi: host: Add alignment check for event ring read pointer
d73f63a6452b bus: mhi: host: Rename "struct mhi_tre" to "struct mhi_ring_element"
a1d62c775b07 PM: sleep: Fix possible deadlocks in core system-wide PM code
d5f15888d3e2 PM: core: Remove unnecessary (void *) conversions
fd8d6b04de04 drm/bridge: nxp-ptn3460: simplify some error checking
9d2a462917a2 drm/tidss: Fix atomic_flush check
bcf51e8f3cfe drm/bridge: nxp-ptn3460: fix i2c_master_send() error checking
b4af63da9d94 drm: Don't unref the same fb many times by mistake due to deadlock handling
4fc86c70ea0c gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-04
e44e240d537e xfs: read only mounts with fsopen mount API are busted
614cc65032dc firmware: arm_scmi: Check mailbox/SMT channel for consistency
960cf4f81253 netfilter: nf_tables: reject QUEUE/DROP verdict parameters
70f17b48c866 netfilter: nft_chain_filter: handle NETDEV_UNREGISTER for inet/ingress basechain
0ac9cbe006bf hv_netvsc: Calculate correct ring size when PAGE_SIZE is not 4 Kbytes
99a23462fe1a wifi: iwlwifi: fix a memory corruption
9a64c7fc15f3 exec: Fix error handling in begin_new_exec()
04a0786a97fc rbd: don't move requests to the running list on errors
0877497dc978 btrfs: don't abort filesystem when attempting to snapshot deleted subvolume
07beceb3e133 btrfs: defrag: reject unknown flags of btrfs_ioctl_defrag_range_args
5b5319e11279 btrfs: don't warn if discard range is not aligned to sector
f054f328bf74 btrfs: tree-checker: fix inline ref size in error messages
5550250f36c3 btrfs: ref-verify: free ref cache before clearing mount opt
f76e961a34ec btrfs: avoid copying BTRFS_ROOT_SUBVOL_DEAD flag to snapshot of subvolume being deleted
415fb71a9a77 btrfs: fix race between reading a directory and adding entries to it
a6c2dfbfa250 btrfs: refresh dir last index during a rewinddir(3) call
0b04bbfd07d5 btrfs: set last dir index to the current last index when opening dir
79cf35e16dd5 btrfs: fix infinite directory reads
4c24059dd3ad net: fec: fix the unhandled context fault from smmu
5b0f2af31a0c fjes: fix memleaks in fjes_hw_setup
c0d29d303390 selftests: netdevsim: fix the udp_tunnel_nic test
af47faa6d332 net: mvpp2: clear BM pool before initialization
5305727ba6a4 net: stmmac: Wait a bit for the reset to take effect
022a8d0bc9c8 netfilter: nf_tables: validate NFPROTO_* family
064bccd4a946 netfilter: nf_tables: restrict anonymous set and map names to 16 bytes
79d4efd75e7d netfilter: nft_limit: reject configurations that cause integer overflow
53f2cd86a81c overflow: Allow mixed type arguments
72a729868592 net/mlx5e: fix a potential double-free in fs_any_create_groups
c57ca114eb00 net/mlx5e: fix a double-free in arfs_create_groups
cf0a8a3a891a net/mlx5: DR, Can't go to uplink vport on RX rule
e5783345bdb9 net/mlx5: DR, Align mlx5dv_dr API vport action with FW behavior
8e215c249a73 net/mlx5: DR, Replace local WIRE_PORT macro with the existing MLX5_VPORT_UPLINK
fda9109e15a5 net/mlx5: DR, Use the right GVMI number for drop action
50bd41dcca35 ipv6: init the accept_queue's spinlocks in inet6_create
931366b9f29d netlink: fix potential sleeping issue in mqueue_flush_file
fc0f8e2c9380 tcp: Add memory barrier to tcp_push()
21a2115e0ca0 afs: Hide silly-rename files from userspace
aef1cb00856c tracing: Ensure visibility when inserting an element into tracing_map
00d1ee8e1d02 net/rds: Fix UBSAN: array-index-out-of-bounds in rds_cmsg_recv
c0fe2fe7a5a2 llc: Drop support for ETH_P_TR_802_2.
c22044270da6 llc: make llc_ui_sendmsg() more robust against bonding changes
79eeb85c44dd vlan: skip nested type that is not IFLA_VLAN_QOS_MAPPING
32430251129e bnxt_en: Wait for FLR to complete during probe
d86cc6ab33b0 tcp: make sure init the accept_queue's spinlocks once
68b888d51ac8 net/smc: fix illegal rmb_desc access in SMC-D connection dump
bb27126aefce ksmbd: Add missing set_freezable() for freezable kthread
d7a62b3a3d7c ksmbd: send lease break notification on FILE_RENAME_INFORMATION
6cc508233e54 ksmbd: don't increment epoch if current state and request state are same
5349fd419e4f ksmbd: fix potential circular locking issue in smb2_set_ea()
9ab89353360b ksmbd: set v2 lease version on lease upgrade
dfda2a5eb66a rename(): fix the locking of subdirectories
b2512424c9c5 ubifs: ubifs_symlink: Fix memleak of inode->i_link in error path
689c5f8d894b nouveau/vmm: don't set addr on the fail path to avoid warning
2d07a63b01de rtc: Adjust failure return code for cmos_set_alarm()
3ff34c00db0d mmc: mmc_spi: remove custom DMA mapped buffers
50b8b7a22e90 mmc: core: Use mrq.sbc in close-ended ffu
f0bb5d185f6e scripts/get_abi: fix source path leak
4590f2077ef2 lsm: new security_file_ioctl_compat() hook
cdcd8df577a8 arm64: dts: qcom: sdm845: fix USB DP/DM HS PHY interrupts
8ed011c4e031 arm64: dts: qcom: sm8150: fix USB wakeup interrupt types
aa38eb962673 arm64: dts: qcom: sdm845: fix USB wakeup interrupt types
121d89f0c6d0 arm64: dts: qcom: sc7180: fix USB wakeup interrupt types
33f8bdf37def async: Introduce async_schedule_dev_nocall()
86c8e16252ac async: Split async_schedule_node_domain()
58031306c022 parisc/firmware: Fix F-extend for PDC addresses
176ed1727bad bus: mhi: host: Add spinlock to protect WP access when queueing TREs
6e4c84316e2b bus: mhi: host: Drop chan lock before queuing buffers
cdb15ac80aae mips: Fix max_mapnr being uninitialized on early stages
473f1ae44b8e media: ov9734: Enable runtime PM before registering async sub-device
2d27a7b19cb3 rpmsg: virtio: Free driver_override when rpmsg_remove()
3c1b795124a5 media: imx355: Enable runtime PM before registering async sub-device
a7f580cdb42e crypto: s390/aes - Fix buffer overread in CTR mode
26cc6d7006f9 hwrng: core - Fix page fault dead lock on mmap-ed hwrng
4d4bf19c81a1 PM: hibernate: Enforce ordering during image compression/decompression
a6fec6324f51 crypto: api - Disallow identical driver names
ad23246ccfa9 btrfs: sysfs: validate scrub_speed_max value
cb904f5c7162 ext4: allow for the last group to be marked as trimmed
a604d5f2f983 iio:adc:ad7091r: Move exports into IIO_AD7091R namespace.
72a339554352 scsi: ufs: core: Remove the ufshcd_hba_exit() call from ufshcd_async_scan()
226554bd27a0 scsi: ufs: core: Simplify power management during async scan
047fce470412 dmaengine: fix NULL pointer in channel unregistration function
e44eb4ccad49 iio: adc: ad7091r: Enable internal vref if external vref is not supplied
49f322ce1f26 iio: adc: ad7091r: Allow users to configure device events
6ef852a43090 iio: adc: ad7091r: Set alert bit in config register
81ea755b8fa5 ksmbd: only v2 leases handle the directory
999daf367b92 ksmbd: fix UAF issue in ksmbd_tcp_new_connection()
dd1de9268745 ksmbd: validate mech token in session setup
65cadfb3b05a ksmbd: don't allow O_TRUNC open on read-only share
c917b0529ea9 ksmbd: free ppace array on error in parse_dacl
(From OE-Core rev: 30082a7dd7337b8bc2e0fb38380577bd5fcfce68)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The clear text password support has been dropped. So let's just
use a normal ecrypted one. The password remains to be 'user3'.
(From OE-Core rev: 688ec6a245d3d8a92c358e13baf752c9bac332e2)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit cd8232f9c58980d95180ad320b7b0bb0fcfd9ff5)
Signed-off-by: Fabio Berton <fabio.berton@criticaltechworks.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Commit cc6c3e31526d ("u-boot: Move definitions to common locations") moved
UBOOT_INITIAL_ENV to uboot-config.bbclass, but it should be kept at u-boot.inc
because it encodes ${PN} in it, which should be set by the U-Boot recipe.
Currently, whatever inherits uboot-config bbclass will fill-in its own PN,
which would change the content of UBOOT_INITIAL_ENV per-package.
Cc: Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com>
Cc: Marek Vasut <marex@denx.de>
Fixes: cc6c3e31526d ("u-boot: Move definitions to common locations")
(From OE-Core rev: 18b76259d27dc045f621cd512582c37e8bbab45c)
Signed-off-by: Fabio Estevam <festevam@denx.de>
Backported from master: 0b0c4b37d318b86f100512476ffd861e0ce1f47e
Signed-off-by: Fabio Estevam <festevam@denx.de>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
[Backport cd2072e5d953 from the master without HOSTPKG_CONFIG setting]
The pkg-config workaround has been applied for kernel image building, but
not for module building. So pkg-config variables are different between
do_compile and do_compile_kernelmodules tasks. It may unnecessary trigger
rebuilding of a few host tools at the later task.
Especially when CONFIG_DEBUG_INFO_BTF is enabled in the kernel, it may even
trigger rebuilding vmlinux at do_compile_kernelmodules due to the rebuilt
host tools such as certs/extract-cert or objtool (on x86). This eventually
creates an inconsistent set of kernel binaries.
Here is the repro steps:
- Check out nanbield on x86
- The unexpected rebuild happens on kirkstone or possibly earlier
- Ensure that pahole is available (e.g. via meta-oe)
- Set KERNEL_DEBUG to "True" to properly set up PAHOLE
e.g.
$ export KERNEL_DEBUG="True"
$ export BB_ENV_PASSTHROUGH_ADDITIONS="${BB_ENV_PASSTHROUGH_ADDITIONS} KERNEL_DEBUG"
- Enable CONFIG_DEBUG_INFO_BTF=y
e.g.
$ bitbake -c menuconfig virtual/kernel
-> Kernel hacking
-> Compile-time checks and compiler options
-> Generate BTF typeinfo
- Build the kernel
e.g.
$ bitbake virtual/kernel
The BTF information in the resulting bzImage and kernel modules are
inconsistent, because the module's BTF information is generated using the
"second" vmlinux that doesn't have the identical BTF to the "first" vmlinux.
These modules can't be loaded at runtime due to the BTF mismatch.
This also leads to a build-id mismatch between the installed bzImage and
vmlinux since the bzImage is created from the first vmlinux, but the
installed vmlinux is the second one.
$ eu-readelf -n tmp/work/qemux86_64-poky-linux/linux-yocto/6.5.13+git/image/boot/{bzImage*,vmlinux*} | grep "Build ID"
Build ID: 4a0d62ee7fef0244950f0f604253729875bea493
Build ID: fb99b3d91399dbe42bf67ddee59e0f5a0c7f74d9
To avoid the unexpected rebuilding that results in such inconsistency, set
the same pkg-config variables when building kernel and modules. For kernel
5.19 and above, simply set the HOSTPKG_CONFIG in the make command line.
(From OE-Core rev: d63af11e92094487d6e358f27283e5385937e7a8)
Signed-off-by: Munehisa Kamata <kamatam@amazon.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Primarily list the number of patches found, useful when debugging.
Also clean up some bad escaping that caused warnings and use
re.IGNORECASE instead of manually doing case-insenstive rang matches.
(From OE-Core rev: 1745208bc08037497ad9de1be15a3cc4a22ceff5)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 10acc75b7f3387b968bacd51aade6a8dc11a463f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- The current recipe only contains one (out of three) valid product
names for dbus package in NVD.
- This could result in reporting of lesser number CVEs than actual.
- Added missing names to get a proper list.
(From OE-Core rev: 6488fc1a8ffa68268d9d4b71cb017eeb9a645cbe)
Signed-off-by: Dhairya Nagodra <dnagodra@cisco.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
1. scsi-disk: allow MODE SELECT block descriptor to set the block size
Link: 356c4c441e
The MODE SELECT command can contain an optional block descriptor that can be used
to set the device block size. If the block descriptor is present then update the
block size on the SCSI device accordingly.
This allows CDROMs to be used with A/UX which requires a CDROM drive which is
capable of switching from a 2048 byte sector size to a 512 byte sector size.
2. scsi-disk: ensure block size is non-zero and changes limited to bits 8-15
Link: 55794c904d
The existing code assumes that the block size can be generated from p[1] << 8
in multiple places which ignores the top and bottom 8 bits. If the block size
is allowed to be set to an arbitrary value then this causes a mismatch
between the value written by the guest in the block descriptor and the value
subsequently read back using READ CAPACITY causing the guest to generate
requests that can crash QEMU.
For now restrict block size changes to bits 8-15 and also ignore requests to
set the block size to 0 which causes the SCSI emulation to crash in at least
one place with a divide by zero error.
3. Disallow block sizes smaller than 512 [CVE-2023-42467]
Link: 7cfcc79b0a
We are doing things like
nb_sectors /= (s->qdev.blocksize / BDRV_SECTOR_SIZE);
in the code here (e.g. in scsi_disk_emulate_mode_sense()), so if
the blocksize is smaller than BDRV_SECTOR_SIZE (=512), this crashes
with a division by 0 exception. Thus disallow block sizes of 256
bytes to avoid this situation.
(From OE-Core rev: e9af3d328db8a32c22bb0798fa8dbb749e3f607b)
Signed-off-by: Poonam Jadhav <poonam.jadhav@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The current implementation only performs a git lfs fetch alongside of a
regular git fetch. This causes issues when the downloaded revision is
already part of the fetched repository (e.g. because of moving back in
history or the updated revision already being part of the repository at
the time of the initial clone).
Fix this by explicitly checking whether the required LFS objects are
available in the downloade directory before confirming that a downloaded
repository is up-to-date.
This issue previously went unnoticed as git lfs would silently fetch the
missing objects during the `unpack` task. With network isolation turned
on, this no longer works, and unpacking fails.
(cherry picked from commit cfae1556bf671acec119a6c8bbc4b667a856b9ae)
(Bitbake rev: 40fd5f4eef7460ca67f32cfce8e229e67e1ff607)
Signed-off-by: Philip Lorenz <philip.lorenz@bmw.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Philip Lorenz <philip.lorenz@bmw.de>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Added tests that verify that git-lfs works with an actual
real git-lfs server. This was not previously the case because
the repo in the test was a simulation of git-lfs but not
a real git lfs repo.
The 2 added tests are almost the same but test that the
git lfs file checkout is successfult with or without the
lfs=1 flag. The lfs=1 URI parameter is a quirk that triggers
2 different code paths for git lfs.
lfs=1, when used on git lfs repositories triggers the git lfs
downloading at the fetch bare stage.
lfs query parameter unset triggers the git lfs downloading only
on checkout as an implicit behavior of git. This leads to possible
network access on the unpack stage and outside the DL_DIR.
lfs=0 actually disables git-lfs functionality even if supported.
(cherry picked from commit d2be7f7f652360f13cd66d0850f3e19ffe2afb0a)
(Bitbake rev: 2a6fd774405a58f3ef2953a0dc3eca063e0cf890)
Signed-off-by: Paulo Neves <paulo@myneves.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Philip Lorenz <philip.lorenz@bmw.de>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Not restoring the mocked _find_git_lfs leads to other tests
failing.
(cherry picked from commit 70f848631450bd723c223227c21c60e815ee033d)
(Bitbake rev: 1d5d4a46c772f44ab652f95b37f508b890828e67)
Signed-off-by: Paulo Neves <paulo@myneves.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Philip Lorenz <philip.lorenz@bmw.de>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Python 3 interprets string literals as Unicode strings, and therefore
\s is treated as an escaped Unicode character which is not correct.
Declaring the RegEx pattern as a raw string instead of unicode is
required for Python 3.
(Bitbake rev: 7efed7bc09c56e41d3074a26388581a62f145625)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Specifically:
/srv/work/alex/poky/bitbake/lib/bb/codeparser.py:279: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead
if isinstance(node.args[0], ast.Str):
/srv/work/alex/poky/bitbake/lib/bb/codeparser.py:280: DeprecationWarning: Attribute s is deprecated and will be removed in Python 3.14; use value instead
value = node.args[0].s
(Bitbake rev: 6c19b6cf105ac321ec89da1a876a317020c45ab7)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
To align this document with the version in the master branch
(From yocto-docs rev: 08ce7db2aa3a38deb8f5aa59bafc78542986babb)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- This allows to continue sharing the updated Ubuntu/Debian requirements
with the brief-yoctoprojectqs/index.rst without indentation mismatches
(caused by using the same macro in two different contexts: in direct
text and in a bullet list).
- Update poky.yaml.in to adapt the number of spaces at the beginning
of lines.
- brief-yoctoprojectqs/index.rst: fix bad number of spaces
before quote block.
(From yocto-docs rev: 488731c09bf63fadc02ddcdd94fb3374dafce528)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- Use the Wikipedia naming scheme: WSL 2 instead of WSLv2
- Take into account Windows Server 2019 and 2022 which are
supported too.
- Improve some explanations
(From yocto-docs rev: e64c1154c358128d76b1b8e3a5809dbaa8dc6881)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Reviewed-by: Quentin Schulz <foss@0leil.net>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Also minor correction to supported distribution notes
(From yocto-docs rev: cb417cef74b87b53300eb05c21675b5e24a10ca7)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Suggested-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
To align with the "master" branch
(From yocto-docs rev: aaeb061fa8ff73496175eba59f53a19fdcf08f64)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Also fix number of corresponding paragraphs
(From yocto-docs rev: 28ee2d91fe4dd0549940dc5df1ff1d59363fcc0f)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Measured by generating a "core-image-sato" image for a "qemux86-64"
machine from an Ubuntu 22.04 VM with 4 cores.
Less memory was not enough and caused Out of Memory failures.
(From yocto-docs rev: 5009d3898a1649074d1fc252ed33ecbf3235ed75)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Tests made on Poky master on March 16, 2023.
Add a "Free Disk Space" section to the "System Requirements" document.
(From yocto-docs rev: 6e88a53c47f15376c4eec8b34d14239dcf285da3)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Enough free storage space is needed to apply package upgrades.
(From yocto-docs rev: d020b170917a47487ffda3beb0a2ca223c3d37ed)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
To simplify the style, replace "Following is" and "Following are"
by "here is" and "here are", sounding more natural.
In some cases, also go further by simplifying "Here are/is xxx"
by "xxx are/is" when the "are" or "is" are not two far at
the end of the sentence.
In some cases too, completely remove the sentence, when
it's redundant with the preceding title.
(From yocto-docs rev: 2539f1b9cbf9bdd40eff93c6522dc76133debed7)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
CC: Daniel Ammann <daniel.ammann@bytesatwork.ch>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Make the options more clear by providing them in a list instead of plain prosa.
Also add a ref for a presentation wrt spdx 3.0 in the Yocto project.
Fixes [YOCTO 7476]
(From yocto-docs rev: 9e5956736a9b6e6c99967d120303d5142550fdb1)
Signed-off-by: Simone Weiß <simone.p.weiss@posteo.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The initial fix for localversion setting in 6.3+ broke older
recipes and also broke recipes setting localversion in a kernel
recipe, as make-mod-scripts (and other locations) can trigger
a regeneration of files and don't have access to the variable.
Moving the setting of this variable to the global namespace
doesn't make sense, so we follow the example of the kernel-abiversion
and save a kernel-localversion to the build artifacts.
Recipes that may regenerate scripts/dynamic files, must
depend on the do_shared_workedir of the kernel and use the helper
function to read the file storing the localversion.
(From OE-Core rev: cca0971a7d92d823cc0c2b16cf14a7b2ed8ecb61)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
cherry-picked from master b378eec156998eea55ba61e59103cb34fab0d07c
Signed-off-by: Andreas Helbech Kleist <andreaskleist@gmail.com>
Acked-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
During testing of the v6.4 reference kernel, it was noticed that
on-target modules no longer matched the magic value of the running
kernel.
This was due to a different localversion in the cross built kernel
and the scripts / resources created on target.
This was due to changes in the setlocalversion script introduced
in the v6.3 series.
The .scmversion file is no longer used (or packaged) to inhibit
the addition of a "+" (through querying of the git status of the
kernel) or the setting of a local version.
We recently introduced the KERNEL_LOCALVERSION variable to allow
recipes to place a value in .scmversion, so we extend the use of
that variable to kernel-arch.bbclass and use it to set the
exported variable LOCALVERSION.
We must do it at the kernel-arch level, as the variable must be
exported in any kernel build to ensure that setlocalversion always
correctly sets the localversion.
(From OE-Core rev: 74897e505db19a23a5b864a48a4fa97d657605c8)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
cherry-picked from master 765b13b7305c8d2f222cfc66d77c02e6a088c691
Signed-off-by: Andreas Helbech Kleist <andreaskleist@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Just like UBOOT_LOCALVERSION, an end user can set KERNEL_LOCALVERSION
to append a string to the name of the local version of the kernel
image.
(From OE-Core rev: 29a0d2a49df8e24f3948a2ddf03743f0cb5d09dd)
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
cherry-picked from master 229435a52f36ddec5f85fb6d5ccd42044b688397
Signed-off-by: Andreas Helbech Kleist <andreaskleist@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
All the regexes throw a warning like this:
WARNING: scripts/lib/recipetool/create_buildsys.py:140:
SyntaxWarning: invalid escape sequence '\s'
proj_re = re.compile('project\s*\(([^)]*)\)', re.IGNORECASE)
Python 3 interprets string literals as Unicode strings, and therefore
\s is treated as an escaped Unicode character which is not correct.
Declaring the RegEx pattern as a raw string instead of unicode is
required for Python 3.
(From OE-Core rev: 63998f13d5263ce19a60ed3fba1ac8b6f23558e3)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Backported from master: 24b0ba00d4f0b4d9834f7693ecb6032dfc534a80
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Python 3 interprets string literals as Unicode strings, and therefore
\s is treated as an escaped Unicode character which is not correct.
Declaring the RegEx pattern as a raw string instead of unicode is
required for Python 3.
(From OE-Core rev: d4e11eebdfe50acc124a87341721a12bc1c15024)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Cherry-picked from master: f2d80817baea298b953d6e14daad65087b3b50c9
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Python 3 interprets string literals as Unicode strings, and therefore
\s is treated as an escaped Unicode character which is not correct.
Declaring the RegEx pattern as a raw string instead of unicode is
required for Python 3.
(From OE-Core rev: 939046c5e9ddd71b941c9e389fa4a4687bfcdec0)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Cherry-picked from master: 9002850f0c2e409d3bc629e36bb360b96326bb64
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Python 3 interprets string literals as Unicode strings, and therefore
\s is treated as an escaped Unicode character which is not correct.
Declaring the RegEx pattern as a raw string instead of unicode is
required for Python 3.
(From OE-Core rev: 2331982cf4f4649f1ec271640f8f7d33fa6ea88d)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
feature-microblaze-versions.inc#
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Cherry-picked from master: 662f52f1713c9f070550fc0c874eb62312218ea4
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
On hosts with git defaulting to main branch the following exception
occures:
File .../buildhistory.py", line 99, in test_compare_dict_blobs_default
blob1 = self.repo.heads.master.commit.tree.blobs[0]
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/site-packages/git/util.py", line 1114, in __getattr__
return list.__getattribute__(self, attr)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'IterableList' object has no attribute 'master'
Support main and master branch for these test cases.
Note: setting the default branch with --initial-branch requires git
version 2.28 or later. Some of the still supported host distros do not
provide this feature yet.
(From OE-Core rev: 095598eb7c9aa64797c8a41255fa28b695398054)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Cherry-picked from master: 7df99843d8f31d8e0c2872ff625f4a5abf28f740
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Latest recipetool from master branch generates a pyhton3-meson.bb recipe
while the older version from kirkstone generates a meson.bb. Change the
test to pass with meson.bb.
(From OE-Core rev: 979b216330b2f4e8ab9d4e615d4e83997d59def0)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
recipetool's pyproject.toml parsing needs tomllib (python 3.11+) or
tomli (not a hard dependency), so is prone to failing depending on the
host configuration.
Downgrade the Meson release used for the checks to 0.52.1, which was the
last release before moving to pyproject.toml.
(From OE-Core rev: 24bf7bbd1fb21f84539b7a4263d76a33dbacacde)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Backported from master: 6dfe573d83687e5431841f062442b54b9fa22ff3
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
test_recipetool_create_github and test_recipetool_create_github_tarball
fail because the old meson version used by these tests cases does not
run on Python 3.12. The issue is in the dependencies.py which comes with
meson:
ERROR: build/tmp/work/recipetool-3z4osyl7/source/git/mesonbuild/
dependencies.py:777: SyntaxWarning: invalid escape sequence '\.'
Use meson 1.3.1 (what is currently also used on master) as a reference
for these tests.
With this version of meson, recipetool creates recipes named
meson_git.bb or meson_1.3.1.bb. Since this looks more reasonable than
e.g. python3-meson_git.bb the test gets adapted.
(From OE-Core rev: 9c1a1110a317e1d64668badb13e74e474f96a7a9)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Backported from master: 7374a8a2810a6cf027bfefefe87691a3529123ff
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add support for qmp sockets and defaults to unix:qmp.sock if unspecified
(From OE-Core rev: 31de620e9d899b93c6e982d3a563bbf618ce79c6)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Eilís 'pidge' Ní Fhlannagáin <pidge@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Backported from master: 380631797f0d63124a8c21efa93ab672dbd79283
Qemu throws many warnings without qmp and many runtime tests fail
without this patch also on kirkstone.
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
SafeConfigParser was renamed to ConfigParser in 3.2, and the
SafeConfigParser alias will be removed in 3.12.
(From OE-Core rev: 50815c328e677ac079d38dc8555a909f049cf5be)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Cherry-picked from master: 71b3e7f71727137b4b996cc4160c9cc1581824b8
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When invoking runqemu with Python 3.12, the following warning is
encountered:
|SyntaxWarning: invalid escape sequence '\.'
This is because the interpreter scans the string before it is processed
by the regex module, and it interprets the backslash as part of an
escape sequence, but not a standard one. This will be registered as an
error rather than a warning in future Python versions. To avoid the it,
simply add an extra backslash so that Python doesn't misinterpret the
string, while the regex parser still sees an escaped '.' character.
(From OE-Core rev: 2f8982ef4c903f43867da56fcfd080a6556daa8b)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Backported from master: 0e8a4142bb90a92d175df6b2537d24a372356f98
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
'imp' was deprecated in Python 3.4 and removed in 3.12. The
piece of importlib we use has been around since 3.3.
(From OE-Core rev: b9dcdf2346bb24866c5f3db96a3f79eba20e4662)
Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Cherry-picked from master: 457f0dad87b4e45a53865b5ad2c150215bd74019
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
With mesa 23.0, it is not longer possible to use the host drivers, as
mesa upstream has added strict checks for matching builds between
drivers and libraries that load them.
Add a check and a hint to runqemu so that there is a helpful error when
there is no native/nativesdk opengl/virgl support.
(From OE-Core rev: 5103ce67741782e43612f495bcc851c6509b734b)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit f0946844df7270fe368858d8929e6b380675b78b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
These tests should be able to work on qemuarm64, but this is untested
and the runners will need configuration.
(From OE-Core rev: 16a9037d28303af250bd379de53edb7a00a8ce49)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 09b9558e20e58b473154895b93cff16261c7f561)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
As discussion in [YOCTO #14717] cmake contains a OEToolchainConfig.cmake
file to configure the toolchain correctly in cross-compile build for recipes
using cmake.
The variable CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES value updates incorrectly
during do_compile the code. Due to this getting sporadic error like below,
fatal error: stdlib.h: No such file or directory
| 75 | #include_next <stdlib.h>
| | ^~~~~~~~~~
| compilation terminated.
| ninja: build stopped: subcommand failed.
| WARNING: exit code 1 from a shell command.
As cmake already correctly initializes the variable from environment,
So we have to unset it in the toolchain file to avoid overwriting the
variable definition again.
(From OE-Core rev: 2b0b47fd0cafdb9de5025efda4140e11ea447afa)
Signed-off-by: aszh07 <mail2szahir@gmail.com>
Signed-off-by: Zahir Hussain <zahir.basha@kpit.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5aeada5793af53e8c93940952d4f314474dca4c2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In oe-core 27824261 --enable-debug was added to the configure arguments
to turn on debugging symbols. However, enabling debug mode does more
than turn on debugging symbols and introduces some codepaths that can be
controlled with environment variables. Bluntly, the curl maintainer
says that --enable-debug should not be used in production:
https://curl.se/mail/lib-2023-01/0039.html
I did a build and verified that the curl-dbg package doesn't massively
shrink, so the debug symbols are still being built.
Remove the debug options and hide them behind a PACKAGECONFIG, with a
comment that it should not be used in production.
(From OE-Core rev: 01440b4968ded30c1970c335fe1598b684527831)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
6139f2a02fe0 Linux 5.15.148
84c39986fe6d Revert "Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d""
c8483a4845a0 arm64: dts: armada-3720-turris-mox: set irq type for RTC
98052220f174 netfilter: nft_quota: copy content when cloning expression
3be3c6123275 netfilter: nft_last: copy content when cloning expression
42d461784889 netfilter: nft_limit: Clone packet limits' cost value
d80880585128 netfilter: nft_limit: fix stateful object memory leak
e562d8422555 netfilter: nft_connlimit: memleak if nf_ct_netns_get() fails
10823cfe8e91 netfilter: nf_tables: typo NULL check in _clone() function
0f2dca516541 block: Remove special-casing of compound pages
08bf561118ca i2c: s3c24xx: fix transferring more than one message in polling mode
38ce342a19ea i2c: s3c24xx: fix read transfers in polling mode
62b3387beef1 ipv6: mcast: fix data-race in ipv6_mc_down / mld_ifc_work
58485b95fde6 selftests: mlxsw: qos_pfc: Adjust the test to support 8 lanes
348112522a35 mlxsw: spectrum_acl_tcam: Fix stack corruption
005f2d10f915 mlxsw: spectrum_acl_tcam: Reorder functions to avoid forward declarations
077c4776d798 mlxsw: spectrum_acl_tcam: Make fini symmetric to init
d28048d31975 mlxsw: spectrum_acl_tcam: Add missing mutex_destroy()
196f3595e869 mlxsw: spectrum: Use 'bitmap_zalloc()' when applicable
87c54033935b mlxsw: spectrum_acl_erp: Fix error flow of pool allocation failure
3732db294ea3 ethtool: netlink: Add missing ethnl_ops_begin/complete
7f3d781e0df1 kdb: Fix a potential buffer overflow in kdb_local()
995d6099d8b1 ipvs: avoid stat macros calls from preemptible context
27513eff4c0c netfilter: nf_tables: reject NFT_SET_CONCAT with not field length description
d6420b66ad70 netfilter: nf_tables: skip dead set elements in netlink dump
77be8c495a3f netfilter: nf_tables: do not allow mismatch field size and set key length
b8eb65bd13a6 netfilter: nft_limit: do not ignore unsupported flags
d7b5da4fde7f netfilter: nf_tables: memcg accounting for dynamically allocated objects
3bb4403d20b7 netfilter: nft_limit: move stateful fields out of expression data
8a6635074a65 netfilter: nft_limit: rename stateful structure
e2e8fdd0ad8e netfilter: nft_quota: move stateful fields out of expression data
b147911d2a7b netfilter: nft_last: move stateful fields out of expression data
36997eb13d53 netfilter: nft_connlimit: move stateful fields out of expression data
713a13885579 netfilter: nf_tables: reject invalid set policy
78e85466460d net: dsa: vsc73xx: Add null pointer check to vsc73xx_gpio_probe
29ffa63f21bc bpf: Reject variable offset alu on PTR_TO_FLOW_KEYS
684290895aa0 net: stmmac: ethtool: Fixed calltrace caused by unbalanced disable_irq_wake calls
8e481c7f81e2 net: ravb: Fix dma_addr_t truncation in error case
f05301ad0574 mptcp: use OPTION_MPTCP_MPJ_SYN in subflow_check_req()
413b91350732 mptcp: use OPTION_MPTCP_MPJ_SYNACK in subflow_finish_connect()
9b82d5f5d042 mptcp: strict validation before using mp_opt->hmac
c99f490a422b mptcp: drop unused sk in mptcp_get_options
cbe983d0e4d5 mptcp: mptcp_parse_option() fix for MPTCPOPT_MP_JOIN
4f2c4ba3216d net: phy: micrel: populate .soft_reset for KSZ9131
890bc96ef147 net: ethernet: ti: am65-cpsw: Fix max mtu to fit ethernet frames
3b5254862258 net: qualcomm: rmnet: fix global oob in rmnet_policy
18babcfa365d s390/pci: fix max size calculation in zpci_memcpy_toio()
bf3304054e45 PCI: keystone: Fix race condition when initializing PHYs
a300f741f692 nvmet-tcp: Fix the H2C expected PDU len calculation
b02a005b19bb nvmet: re-fix tracing strncpy() warning
763c67e96b05 serial: imx: Correct clock error message in function probe()
1ed3c202051c usb: xhci-mtk: fix a short packet issue of gen1 isoc-in transfer
0a12db736edb apparmor: avoid crash when parsed profile name is empty
367d061a1864 perf env: Avoid recursively taking env->bpf_progs.lock
0613a2fbdf8d nvmet-tcp: fix a crash in nvmet_req_complete()
4cb3cf7177ae nvmet-tcp: Fix a kernel panic when host sends an invalid H2C PDU length
013d7878c729 usb: cdc-acm: return correct error code on unsupported break
c50f88954cd0 tty: use 'if' in send_break() instead of 'goto'
a222bd01ca5a tty: don't check for signal_pending() in send_break()
370b18aefe40 tty: early return from send_break() on TTY_DRIVER_HARDWARE_BREAK
6f98751fa44d tty: change tty_write_lock()'s ndelay parameter to bool
7ab8ef24fd0f perf genelf: Set ELF program header addresses properly
08715e4fa58e iio: adc: ad9467: fix scale setting
d7773702f813 iio: adc: ad9467: don't ignore error codes
fd1957c706f3 iio: adc: ad9467: fix reset gpio handling
71204292a722 iio: adc: ad9467: Benefit from devm_clk_get_enabled() to simplify
fbcc37f4b409 selftests/sgx: Skip non X86_64 platform
71005a1d9b38 selftests/sgx: Fix uninitialized pointer dereference in error path
ff168d4fdb0e serial: imx: fix tx statemachine deadlock
714778c29947 software node: Let args be NULL in software_node_get_reference_args
c203812b4e89 libapi: Add missing linux/types.h header to get the __u64 type on io.h
828cd829483f serial: 8250: omap: Don't skip resource freeing if pm_runtime_resume_and_get() failed
96d289b57daf power: supply: bq256xx: fix some problem in bq256xx_hw_init
435671571ef8 power: supply: cw2015: correct time_to_empty units in sysfs
07733ca556ad MIPS: Alchemy: Fix an out-of-bound access in db1550_dev_setup()
4590f46c1551 MIPS: Alchemy: Fix an out-of-bound access in db1200_dev_setup()
c1669b54c3c0 riscv: Fix module_alloc() that did not reset the linear mapping permissions
938f70d14618 riscv: Check if the code to patch lies in the exit section
8e0935435bfd mips: Fix incorrect max_low_pfn adjustment
4b88c9c83fc0 mips: dmi: Fix early remap on MIPS32
d1c8c7ef3928 mfd: intel-lpss: Fix the fractional clock divider flags
6109ff5ad5e9 leds: aw2013: Select missing dependency REGMAP_I2C
c3e3a2144bf5 mfd: syscon: Fix null pointer dereference in of_syscon_register()
a004323a384c ARM: 9330/1: davinci: also select PINCTRL
77c20b4cbcd0 iommu/dma: Trace bounce buffer usage when mapping buffers
fc7c3be66502 serial: sc16is7xx: set safe default SPI clock frequency
160ef3fc3561 serial: sc16is7xx: add check for unsupported SPI modes during probe
b1effdda4f60 HID: wacom: Correct behavior when processing some confidence == false touches
400ad6fe2436 iio: adc: ad7091r: Pass iio_dev to event handler
12c2759ab134 KVM: arm64: vgic-its: Avoid potential UAF in LPI translation cache
d99976d145b9 KVM: arm64: vgic-v4: Restore pending state on host userspace write
9bd4c6e6581a x86/kvm: Do not try to disable kvmclock if it was not enabled
a4563156c353 PCI: mediatek: Clear interrupt status before dispatching handler
0f59d3772a2d PCI: dwc: endpoint: Fix dw_pcie_ep_raise_msix_irq() alignment support
25aab84f1a4e wifi: mwifiex: configure BSSID consistently when starting AP
a61373d32cd3 wifi: rtlwifi: Convert LNKCTL change to PCIe cap RMW accessors
1f0b69791317 wifi: rtlwifi: Remove bogus and dangerous ASPM disable/enable code
5600943b0cdc wifi: mt76: fix broken precal loading from MTD for mt7915
4124a004d55c iommu/arm-smmu-qcom: Add missing GMU entry to match table
a7b98aa10f89 bpf: Fix re-attachment branch in bpf_tracing_prog_attach
4c71c01df8ef Bluetooth: Fix atomicity violation in {min,max}_key_size_set
27e58d3b5253 rootfs: Fix support for rootfstype= when root= is given
79ea1c6f06be io_uring/rw: ensure io->bytes_done is always initialized
801c8adb85e0 pwm: jz4740: Don't use dev_err_probe() in .request()
c9ed30eea4f7 netfilter: nf_tables: check if catch-all set element is active in next generation
5010c2712096 block: add check that partition length needs to be aligned with block size
6a73c9fdb78a scsi: mpi3mr: Refresh sdev queue depth after controller reset
610ca0cadb07 fbdev: flush deferred work in fb_deferred_io_fsync()
cb32c0e1bdd9 ALSA: hda/relatek: Enable Mute LED on HP Laptop 15s-fq2xxx
d37d61c07764 ALSA: oxygen: Fix right channel of capture volume mixer
314cf7c2dd65 serial: imx: Ensure that imx_uart_rs485_config() is called with enabled clock
ac0c3a2fe7de usb: mon: Fix atomicity violation in mon_bin_vma_fault
d7ce8ebd50a3 usb: typec: class: fix typec_altmode_put_partner to put plugs
4212a9ff6533 Revert "usb: typec: class: fix typec_altmode_put_partner to put plugs"
2c64904a0e63 usb: cdns3: Fix uvc fail when DMA cross 4k boundery since sg enabled
e1b3be9bab6f usb: cdns3: fix iso transfer error when mult is not zero
9cdf2c915982 usb: cdns3: fix uvc failure work since sg support enabled
2e349cf0d0c4 usb: chipidea: wait controller resume finished for wakeup irq
295b4fa3219c Revert "usb: dwc3: don't reset device side if dwc3 was configured as host-only"
4f5a109b8f80 Revert "usb: dwc3: Soft reset phy on probe for host"
ea968824c485 usb: dwc: ep0: Update request status in dwc3_ep0_stall_restart
e3e35301f1d8 usb: phy: mxs: remove CONFIG_USB_OTG condition for mxs_phy_is_otg_host()
41e05f246fe4 tick-sched: Fix idle and iowait sleeptime accounting vs CPU hotplug
98fee5bee97a binder: fix race between mmput() and do_exit()
e03023fcdb5e xen-netback: don't produce zero-size SKB frags
409c30ff6cac virtio-crypto: fix memory leak in virtio_crypto_alg_skcipher_close_session()
f97f61286464 dma-mapping: Fix build error unused-value
72d29dcdf526 Input: atkbd - use ab83 as id when skipping the getid command
9c1fa9eedc3d binder: fix unused alloc->free_async_space
c44b276bc151 binder: fix async space check for 0-sized buffers
0921867f77ea keys, dns: Fix size check of V1 server-list header
10193a5001d6 selftests/bpf: Add assert for user stacks in test_task_stack
cc9c60b2537d of: unittest: Fix of_count_phandle_with_args() expected value message
454100408452 of: Fix double free in of_parse_phandle_with_args_map
83f5d6c1efe3 ksmbd: validate the zero field of packet header
4af4674158f7 drm/amd/pm/smu7: fix a memleak in smu7_hwmgr_backend_init
bf1acc6258aa IB/iser: Prevent invalidating wrong MR
106136f2099b mmc: sdhci_omap: Fix TI SoC dependencies
da9eae2c1a45 mmc: sdhci_am654: Fix TI SoC dependencies
e517645ead5e ALSA: scarlett2: Add clamp() in scarlett2_mixer_ctl_put()
3a09488f4f67 ALSA: scarlett2: Add missing error checks to *_ctl_get()
12023666f22d ALSA: scarlett2: Allow passing any output to line_out_remap()
51d5697e1c03 ALSA: scarlett2: Add missing error check to scarlett2_usb_set_config()
0ba9386e19a8 ALSA: scarlett2: Add missing error check to scarlett2_config_save()
c60490b81740 ASoC: rt5645: Drop double EF20 entry from dmi_platform_data[]
cf55afb5a522 pwm: stm32: Fix enable count for clk in .probe()
df19bf404437 pwm: stm32: Use hweight32 in stm32_pwm_detect_channels
c82c21e7d97d pwm: stm32: Use regmap_clear_bits and regmap_set_bits where applicable
fa019c01db8b clk: fixed-rate: fix clk_hw_register_fixed_rate_with_accuracy_parent_hw
256d1232c847 clk: fixed-rate: add devm_clk_hw_register_fixed_rate
a30ca04dde09 clk: asm9260: use parent index to link the reference clock
c45ca73b0194 clk: si5341: fix an error code problem in si5341_output_clk_set_rate
347f9d725830 watchdog: rti_wdt: Drop runtime pm reference count when watchdog is unused
3646d83db836 watchdog: bcm2835_wdt: Fix WDIOC_SETTIMEOUT handling
1711bdfe5e13 watchdog/hpwdt: Only claim UNKNOWN NMI if from iLO
b9bced8ca7b1 watchdog: set cdev owner before adding
9117fc44fd3a drivers: clk: zynqmp: update divider round rate logic
8f4941940da2 clk: zynqmp: Add a check for NULL pointer
f46c0ec5a50e clk: zynqmp: make bestdiv unsigned
e27660be6f46 drivers: clk: zynqmp: calculate closest mux rate
8aff5f672358 clk: qcom: videocc-sm8150: Add missing PLL config property
b31526b8c5dd clk: qcom: videocc-sm8150: Update the videocc resets
1dd84d5e8303 dt-bindings: clock: Update the videocc resets for sm8150
c72dbb780d97 gpu/drm/radeon: fix two memleaks in radeon_vm_init
b6dcba02ee17 drivers/amd/pm: fix a use-after-free in kv_parse_power_table
2bf47c89bbac drm/amd/pm: fix a double-free in si_dpm_init
11d1f2d895a4 drm/amdgpu/debugfs: fix error code when smc register accessors are NULL
720919b58daa media: dvb-frontends: m88ds3103: Fix a memory leak in an error handling path of m88ds3103_probe()
0a50ca097a6d media: dvbdev: drop refcount on error path in dvb_device_open()
11e60be4086e f2fs: fix the f2fs_file_write_iter tracepoint
f3a220d97530 f2fs: fix to update iostat correctly in f2fs_filemap_fault()
df2571b4d5d1 f2fs: fix to check compress file in f2fs_move_file_range()
a3316290a83d media: rkisp1: Disable runtime PM in probe error path
f4176c518546 clk: qcom: gpucc-sm8150: Update the gpu_cc_pll1 config
d3a8c5c783f2 media: cx231xx: fix a memleak in cx231xx_init_isoc
9f583fc91c34 drm/bridge: tc358767: Fix return value on error case
a3cb0b5b1bd4 drm/bridge: cdns-mhdp8546: Fix use of uninitialized variable
a5934df4dfcd drm/radeon/trinity_dpm: fix a memleak in trinity_parse_power_table
1a6cccd7fded drm/radeon/dpm: fix a memleak in sumo_parse_power_table
14bbfaa5df27 drm/radeon: check the alloc_workqueue return value in radeon_crtc_init()
929af5cd8ae1 drm/drv: propagate errors from drm_modeset_register_all()
cbf207b17111 drm/msm/dsi: Use pm_runtime_resume_and_get to prevent refcnt leaks
6d8dc619857d drm/msm/mdp4: flush vblank event on disable
d3aa670bbab9 ASoC: cs35l34: Fix GPIO name and drop legacy include
a0f27f673ebe ASoC: cs35l33: Fix GPIO name and drop legacy include
528844bb1e15 drm/radeon: check return value of radeon_ring_lock()
4e57efe03a30 drm/radeon/r100: Fix integer overflow issues in r100_cs_track_check()
1f7008dd122d drm/radeon/r600_cs: Fix possible int overflows in r600_cs_check_reg()
f100ba617d8b f2fs: fix to avoid dirent corruption
4c5e6a02dcff drm/bridge: Fix typo in post_disable() description
ec3634ebe23f media: pvrusb2: fix use after free on context disconnection
1821c4d1c3c8 drm/tilcdc: Fix irq free on unload
08ccff6ece35 drm/bridge: tpd12s015: Drop buggy __exit annotation for remove function
45c4c4b04ae8 drm/nouveau/fence:: fix warning directly dereferencing a rcu pointer
ab45a15a503d drm/panel-elida-kd35t133: hold panel in reset for unprepare
a811031da2b5 RDMA/hns: Fix inappropriate err code for unsupported operations
5245c05cd9cd RDMA/usnic: Silence uninitialized symbol smatch warnings
ab8038e7bc12 Revert "drm/omapdrm: Annotate dma-fence critical section in commit path"
d847363bc5d7 Revert "drm/tidss: Annotate dma-fence critical section in commit path"
13e3dd2df06d ARM: davinci: always select CONFIG_CPU_ARM926T
4329426cf6b8 ip6_tunnel: fix NEXTHDR_FRAGMENT handling in ip6_tnl_parse_tlv_enc_lim()
d0464a7edf5c mlxbf_gige: Enable the GigE port in mlxbf_gige_open
8d632d0fd203 net: mellanox: mlxbf_gige: Replace non-standard interrupt handling
86f3df04956c mlxbf_gige: Fix intermittent no ip issue
172ba7d46c20 net/sched: act_ct: fix skb leak and crash on ooo frags
c3d8edb17086 null_blk: don't cap max_hw_sectors to BLK_DEF_MAX_SECTORS
8676b014e49d block: make BLK_DEF_MAX_SECTORS unsigned
ce3440b6992f Bluetooth: btmtkuart: fix recv_buf() return value
cede5d0c2957 Bluetooth: Fix bogus check for re-auth no supported with non-ssp
166d65b0d522 netfilter: nf_tables: mark newset as dead on transaction abort
e907e9572943 wifi: iwlwifi: mvm: send TX path flush in rfkill
8d6c61421282 wifi: iwlwifi: mvm: set siso/mimo chains to 1 in FW SMPS request
5f4ea050bbc1 wifi: rtlwifi: rtl8192se: using calculate_bit_shift()
aaf4723f5272 wifi: rtlwifi: rtl8192ee: using calculate_bit_shift()
dbbbd2cc8fe9 wifi: rtlwifi: rtl8192de: using calculate_bit_shift()
7e0d54f5dc05 wifi: rtlwifi: rtl8192ce: using calculate_bit_shift()
5dbc5c522208 wifi: rtlwifi: rtl8192cu: using calculate_bit_shift()
62de5647263a wifi: rtlwifi: rtl8192c: using calculate_bit_shift()
aec0dee37b49 wifi: rtlwifi: rtl8188ee: phy: using calculate_bit_shift()
37871c978d7e wifi: rtlwifi: add calculate_bit_shift()
493cfed24766 arm64: dts: qcom: sc7280: Mark SDHCI hosts as cache-coherent
2c97f945003c block: add check of 'minors' and 'first_minor' in device_add_disk()
df4f5a35c5b9 arm64: dts: qcom: sm8150-hdk: fix SS USB regulators
6f20058dad79 soc: qcom: llcc: Fix dis_cap_alloc and retain_on_pc configuration
ccc94806d0e6 dma-mapping: clear dev->dma_mem to NULL after freeing it
99326214f90c dma-mapping: Add dma_release_coherent_memory to DMA API
930cd34add1d virtio/vsock: fix logic which reduces credit update messages
a18eff8ba05e selftests/net: fix grep checking for fib_nexthop_multiprefix
62c904c472a2 scsi: hisi_sas: Correct the number of global debugfs registers
6bf21261078f scsi: hisi_sas: Rollback some operations if FLR failed
84e174afb54f scsi: hisi_sas: Replace with standard error code return value
0d17931d7e88 scsi: hisi_sas: Prevent parallel FLR and controller reset
0760d1d6d850 scsi: hisi_sas: Rename HISI_SAS_{RESET -> RESETTING}_BIT
80b0b7c79f8b block: Set memalloc_noio to false on device_add_disk() error path
02962684258e bpf: Fix verification of indirect var-off stack access
8c2127dc936b arm64: dts: qcom: sc7280: fix usb_2 wakeup interrupt types
97c60adff104 arm64: dts: qcom: sdm845-db845c: correct LED panic indicator
6211a043abb5 arm64: dts: qcom: qrb5165-rb5: correct LED panic indicator
609c7d556ccd scsi: fnic: Return error if vmalloc() failed
67e6707f0735 bpf: fix check for attempt to corrupt spilled pointer
f40cd60f3f44 arm64: dts: qcom: sm8250: Make watchdog bark interrupt edge triggered
a413fdd3ea21 arm64: dts: qcom: sm8150: Make watchdog bark interrupt edge triggered
a78ae1060786 arm64: dts: qcom: sdm845: Make watchdog bark interrupt edge triggered
06ec7a3961f8 arm64: dts: qcom: sc7280: Make watchdog bark interrupt edge triggered
0c55ace45d6d arm64: dts: qcom: sc7180: Make watchdog bark interrupt edge triggered
65b28cad7509 ARM: dts: qcom: sdx65: correct SPMI node name
bb88e2174a30 bpf: enforce precision of R0 on callback return
fa5b150abfe4 arm64: dts: ti: k3-am65-main: Fix DSS irq trigger type
18051358d992 wifi: rtlwifi: rtl8821ae: phy: fix an undefined bitwise shift behavior
bf98ac3288dd firmware: meson_sm: populate platform devices from sm device tree data
41b3228281c3 firmware: ti_sci: Fix an off-by-one in ti_sci_debugfs_create()
7e36646237c7 net/ncsi: Fix netlink major/minor version numbers
024e24086e14 ARM: dts: qcom: apq8064: correct XOADC register address
ef2373f31f62 wifi: libertas: stop selecting wext
69f7c1f5d221 wifi: ath11k: Defer on rproc_get failure
131afd9a5765 bpf: Add crosstask check to __bpf_get_stack
1ed921e42a99 bpf, lpm: Fix check prefixlen before walking trie
2b67863c5b2d wifi: rtw88: fix RX filter in FIF_ALLMULTI flag
9d4f4dea824a NFSv4.1/pnfs: Ensure we handle the error NFS4ERR_RETURNCONFLICT
d0e09a7ba33f blocklayoutdriver: Fix reference leak of pnfs_device_node
a5f2f91b3fd7 crypto: scomp - fix req->dst buffer overflow
dc6779550fae crypto: sahara - do not resize req->src when doing hash operations
a5e0e39dac06 crypto: sahara - fix processing hash requests with req->nbytes < sg->length
2dc0f23ac4c6 crypto: sahara - improve error handling in sahara_sha_process()
faa25455f738 crypto: sahara - fix wait_for_completion_timeout() error handling
2104f405af91 crypto: sahara - fix ahash reqsize
34c6a33567b4 crypto: sahara - handle zero-length aes requests
a7b435e816a0 crypto: sahara - avoid skcipher fallback code duplication
b1664c53349c crypto: virtio - Wait for tasklet to complete on device remove
ee0586d73cba gfs2: Fix kernel NULL pointer dereference in gfs2_rgrp_dump
00e3321c65eb fs: indicate request originates from old mount API
8fb12524c86b pstore: ram_core: fix possible overflow in persistent_ram_init_ecc()
8dd9e58c6936 crypto: sahara - fix error handling in sahara_hw_descriptor_create()
3413d878fd6a crypto: sahara - fix processing requests with cryptlen < sg->length
a962882a35e5 crypto: sahara - fix ahash selftest failure
6f31caf8aa10 crypto: sahara - fix cbc selftest failure
6fb7db05ad39 crypto: sahara - remove FLAGS_NEW_KEY logic
d2205b9b57b9 crypto: af_alg - Disallow multiple in-flight AIO requests
088123ddb4d8 crypto: ccp - fix memleak in ccp_init_dm_workarea
d3ff5362b4e0 crypto: sa2ul - Return crypto_aead_setkey to transfer the error
75cba72ddb78 crypto: virtio - Handle dataq logic with tasklet
5e37fa0b4c42 selinux: Fix error priority for bind with AF_UNSPEC on PF_INET6 socket
d8ac2537763b mtd: Fix gluebi NULL pointer dereference caused by ftl notifier
a252d5c1ef9d kunit: debugfs: Fix unchecked dereference in debugfs_print_results()
f23aa841a097 ACPI: extlog: Clear Extended Error Log status when RAS_CEC handled the error
f5de4ad61da0 ACPI: LPSS: Fix the fractional clock divider flags
6b15fb99b0b2 spi: sh-msiof: Enforce fixed DTDL for R-Car H3
2aa141f8bc58 efivarfs: force RO when remounting if SetVariable is not supported
a4529a08d370 calipso: fix memory leak in netlbl_calipso_add_pass()
dd645fc8f8e8 cpufreq: scmi: process the result of devm_of_clk_add_hw_provider()
aead146e8817 cpufreq: Use of_property_present() for testing DT property presence
435841c1065a of: Add of_property_present() helper
c5df417936ec of: property: define of_property_read_u{8,16,32,64}_array() unconditionally
c1814a4ffd01 ACPI: LPIT: Avoid u32 multiplication overflow
3a370502a568 ACPI: video: check for error while searching for backlight device parent
45f6080748fa mtd: rawnand: Increment IFC_TIMEOUT_MSECS for nand controller response
9c92f01bb9c3 spi: spi-zynqmp-gqspi: fix driver kconfig dependencies
f105c2630098 powerpc/imc-pmu: Add a null pointer check in update_events_in_group()
6b58d1603721 powerpc/powernv: Add a null pointer check in opal_powercap_init()
c0b111ea786d powerpc/powernv: Add a null pointer check in opal_event_init()
2a82c4439b90 powerpc/powernv: Add a null pointer check to scom_debug_init_one()
5daf0ef6268c selftests/powerpc: Fix error handling in FPU/VMX preemption tests
999a27b3ce9a powerpc/pseries/memhp: Fix access beyond end of drmem array
5d69c8859e25 powerpc/44x: select I2C for CURRITUCK
467c9c9dc0a7 powerpc: add crtsavres.o to always-y instead of extra-y
0b11a145eb00 powerpc: remove checks for binutils older than 2.25
63ecb08533b5 powerpc/toc: Future proof kernel toc
2de654d858ee powerpc: Mark .opd section read-only
700cf4bead80 EDAC/thunderx: Fix possible out-of-bounds string access
b53730a40ea8 x86/lib: Fix overflow when counting digits
0a43304cf682 coresight: etm4x: Fix width of CCITMIN field
b67064bd3723 PCI: Add ACS quirk for more Zhaoxin Root Ports
e62243b3538d leds: ledtrig-tty: Free allocated ttyname buffer on deactivate
6c3388c0af3c parport: parport_serial: Add Brainboxes device IDs and geometry
72095a54301b parport: parport_serial: Add Brainboxes BAR details
5cf604ee538e uio: Fix use-after-free in uio_open
659be220e692 binder: fix comment on binder_alloc_new_buf() return value
2900c0ee59fb binder: fix trivial typo of binder_free_buf_locked()
8ad4d580e8af binder: fix use-after-free in shinker's callback
1263bd9e08f5 binder: use EPOLLERR from eventpoll.h
0ee3ded745ca Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d"
12b07f443d78 kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list
66cb0868b123 bpf: Add --skip_encoding_btf_inconsistent_proto, --btf_gen_optimized to pahole flags for v1.25
2a2495b6a32d Revert "ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek"
313cfcaefa0b ACPI: resource: Add another DMI match for the TongFang GMxXGxx
dec512974c45 drm/crtc: fix uninitialized variable use
21eea9b6c4fd ARM: sun9i: smp: fix return code check of of_property_match_string
dc26b6770450 net: qrtr: ns: Return 0 if server port is not present
5dbcdaf4dbfe ida: Fix crash in ida_free when the bitmap is empty
c9f5b801bce6 i2c: rk3x: fix potential spinlock recursion on poll
3f0dc646b50b ASoC: Intel: bytcr_rt5640: Add quirk for the Medion Lifetab S10346
adf4616a440d Input: xpad - add Razer Wolverine V2 support
d66ffc87ba42 wifi: iwlwifi: pcie: avoid a NULL pointer dereference
fd13543dbbc1 ARC: fix spare error
b3f44f21d3d4 s390/scm: fix virtual vs physical address confusion
46445552ed27 Input: i8042 - add nomux quirk for Acer P459-G2-M
0f0da2d6bd6c Input: atkbd - skip ATKBD_CMD_GETID in translated mode
274b4c816208 reset: hisilicon: hi6220: fix Wvoid-pointer-to-enum-cast warning
5d307038fa09 ring-buffer: Do not record in NMI if the arch does not support cmpxchg in NMI
a9655e7e4bd5 tracing: Fix uaf issue when open the hist or hist_debug file
64d81f61ad60 MIPS: dts: loongson: drop incorrect dwmac fallback compatible
3f483a39e23d stmmac: dwmac-loongson: drop useless check for compatible fallback
aeb0d506f779 tracing: Add size check when printing trace_marker output
c3729567de3a tracing: Have large events show up as '[LINE TOO BIG]' instead of nothing
c8af7ad72968 jbd2: fix soft lockup in journal_finish_inode_data_buffers()
7b0586ada944 platform/x86: intel-vbtn: Fix missing tablet-mode-switch events
6511772fc0bc neighbour: Don't let neigh_forced_gc() disable preemption for long
2e1846b0c044 drm/crtc: Fix uninit-value bug in drm_mode_setcrtc
c01c44559a8e jbd2: correct the printing of write_flags in jbd2_write_superblock()
5378fd3c43cf clk: rockchip: rk3128: Fix HCLK_OTG gate register
a14da83838ef hwmon: (corsair-psu) Fix probe when built-in
794540520582 drm/exynos: fix a wrong error checking
e02a2693aed5 drm/exynos: fix a potential error pointer dereference
10250096f3d5 drm/amdgpu: Add NULL checks for function pointers
8b985248216f nvme: introduce helper function to get ctrl state
c11fc224e58e ASoC: ops: add correct range check for limiting volume
09c0f2814b5a ASoC: da7219: Support low DC impedance headset
16d3a65eaa60 net/tg3: fix race condition in tg3_reset_task()
9904379f19ee nouveau/tu102: flush all pdbs on vmm flush
7a3ff8a2bb26 ASoC: rt5650: add mutex to avoid the jack detection failure
ebf8d5ec4af3 ASoC: cs43130: Fix incorrect frame delay configuration
ec52e3e241ff ASoC: cs43130: Fix the position of const qualifier
ce6cce079948 ASoC: Intel: Skylake: mem leak in skl register function
cb6b6ff7a79b ASoC: nau8822: Fix incorrect type in assignment and cast to restricted __be16
4ec0f3b3d8d1 ASoC: Intel: Skylake: Fix mem leak in few functions
20e23f6b1453 ASoC: wm8974: Correct boost mixer inputs
05d753d74c3a nvme-core: check for too small lba shift
9ad8b171c4e6 drm/amdgpu: Fix cat debugfs amdgpu_regs_didt causes kernel null pointer
f8eadbe713a3 debugfs: fix automount d_fsdata usage
473fb46aa376 wifi: cfg80211: lock wiphy mutex for rfkill poll
5d520ae3dad0 mptcp: fix uninit-value in mptcp_incoming_options
8d40e3514a09 ALSA: hda - Fix speaker and headset mic pin config for CHUWI CoreBook XPro
3dec0bd9c01a pinctrl: lochnagar: Don't build on MIPS
32a6cfc67675 f2fs: explicitly null-terminate the xattr list
(From OE-Core rev: f1326d008a2a37b3860f25eb082efabdeba7cc32)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
ddcaf4999061 Linux 5.15.147
231752a0a05d net: usb: ax88179_178a: move priv to driver_priv
d800d18ba132 net: usb: ax88179_178a: remove redundant init code
329197033bb0 tracing/kprobes: Fix symbol counting logic by looking at modules as well
ccb7eef5f2f3 kallsyms: Make module_kallsyms_on_each_symbol generally available
ab3a3aadb373 netfilter: nf_tables: Reject tables of unsupported family
0eb556b2386d perf inject: Fix GEN_ELF_TEXT_OFFSET for jit
b8a5308feedd ipv6: remove max_size check inline with ipv4
ba5efd8544fa net: tls, update curr on splice as well
06bb52d2efb3 mmc: sdhci-sprd: Fix eMMC init failure after hw reset
6722186854a7 mmc: core: Cancel delayed work before releasing host
edaefc210e10 mmc: rpmb: fixes pause retune on all RPMB partitions.
41f20ac9bdc4 mmc: meson-mx-sdhc: Fix initialization frozen issue
91432aebce51 mm: fix unmap_mapping_range high bits shift bug
5e44f5da1266 i2c: core: Fix atomic xfer check for non-preempt config
1d5c1617e1e1 x86/kprobes: fix incorrect return address calculation in kprobe_emulate_call_indirect
10086ff58ce4 firewire: ohci: suppress unexpected system reboot in AMD Ryzen machines and ASM108x/VT630x PCIe cards
660b3c3bc8a7 mm/memory-failure: check the mapcount of the precise page
80eb449f809c selftests: secretmem: floor the memory size to the multiple of page_size
a58ae5ab714d net: Implement missing SO_TIMESTAMPING_NEW cmsg support
500c7f32ad43 bnxt_en: Remove mis-applied code from bnxt_cfg_ntp_filters()
fda00eb3cd41 asix: Add check for usbnet_get_endpoints
0817c1b21561 octeontx2-af: Re-enable MAC TX in otx2_stop processing
20fce91b4fa0 octeontx2-af: Always configure NIX TX link credits based on max frame size
6bbbcff3c798 octeontx2-af: Set NIX link credits based on max LMAC
6ef9a28e1bb2 octeontx2-af: Don't enable Pause frames by default
bc56ed720e06 net/qla3xxx: fix potential memleak in ql_alloc_buffer_queues
cfcf5490145a igc: Fix hicredit calculation
6c853b57684e i40e: Restore VF MSI-X state during PCI reset
9400f854facd ASoC: meson: g12a-tohdmitx: Fix event generation for S/PDIF mux
e08b666e4415 ASoC: meson: g12a-toacodec: Fix event generation
3a78a57764f0 ASoC: meson: g12a-tohdmitx: Validate written enum values
f74281f241ff ASoC: meson: g12a-toacodec: Validate written enum values
947db598acb8 i40e: fix use-after-free in i40e_aqc_add_filters()
975d6f66f2b6 net: Save and restore msg_namelen in sock_sendmsg
b2869e7600f4 netfilter: nft_immediate: drop chain reference counter on error
51976846f202 net: bcmgenet: Fix FCS generation for fragmented skbuffs
c748c358debe sfc: fix a double-free bug in efx_probe_filters
5c161f2220f5 ARM: sun9i: smp: Fix array-index-out-of-bounds read in sunxi_mc_smp_init
fd2e7829239e net-timestamp: extend SOF_TIMESTAMPING_OPT_ID to HW timestamps
dc5643abc1ac can: raw: add support for SO_MARK
464fb49ca9bb can: raw: add support for SO_TXTIME/SCM_TXTIME
ba80ff7a85b6 net: Implement missing getsockopt(SO_TIMESTAMPING_NEW)
5636941e42d5 r8169: Fix PCI error on system resume
0ce9a244d33b net: sched: em_text: fix possible memory leak in em_text_destroy()
c0b56aa9d1a6 mlxbf_gige: fix receive packet race condition
271567afd4c2 ASoC: fsl_rpmsg: Fix error handler with pm_runtime_enable
1867a9094743 igc: Check VLAN EtherType mask
f24370ddf75d igc: Check VLAN TCI mask
4ec5efdb9034 igc: Report VLAN EtherType matching back to user
b17f8024a5f0 i40e: Fix filter input checks to prevent config with invalid values
def90597ef5b drm/i915/dp: Fix passing the correct DPCD_REV for drm_dp_set_phy_test_pattern
a7b67635de1a octeontx2-af: Fix marking couple of structure as __packed
802af3c88ad1 nfc: llcp_core: Hold a ref to llcp_local->dev when holding a ref to llcp_local
5d3e98ef12f6 drm/bridge: ti-sn65dsi86: Never store more than msg->size bytes in AUX xfer
2f8cefc8b638 wifi: iwlwifi: pcie: don't synchronize IRQs from IRQ
1f2f662c8bec Revert "PCI/ASPM: Remove pcie_aspm_pm_state_change()"
200cecd6ff1e ALSA: hda/realtek: Fix mute and mic-mute LEDs for HP ProBook 440 G6
90ab9a70f0d8 block: Don't invalidate pagecache for invalid falloc modes
c496c35310e6 keys, dns: Fix missing size check of V1 server-list header
(From OE-Core rev: f4f1964a7a2922f3253484852b76602af5f31a89)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
d93fa2c78854 Linux 5.15.145
ee41f667aa64 kasan: disable kasan_non_canonical_hook() for HW tags
f30f893143b9 tracing/kprobes: Return EADDRNOTAVAIL when func matches several symbols
7aa33c99b513 Revert "drm/bridge: lt9611uxc: Switch to devm MIPI-DSI helpers"
4a8350a0ea76 Revert "drm/bridge: lt9611uxc: Register and attach our DSI device at probe"
e21817ce167e Revert "drm/bridge: lt9611uxc: fix the race in the error path"
811b5eaee70e ksmbd: don't update ->op_state as OPLOCK_STATE_NONE on error
bd47f9c8b53b ksmbd: move setting SMB2_FLAGS_ASYNC_COMMAND and AsyncId
5e1f31378a81 ksmbd: release interim response after sending status pending response
c21d0445088d ksmbd: move oplock handling after unlock parent dir
772d81aeecd3 ksmbd: separately allocate ci per dentry
8ed1118da8c4 ksmbd: fix possible deadlock in smb2_open
ae3356cbe9ac ksmbd: prevent memory leak on error return
8dc9eb7d3503 ksmbd: handle malformed smb1 message
1f50c418d47a ksmbd: fix kernel-doc comment of ksmbd_vfs_kern_path_locked()
3fecda5d853c ksmbd: no need to wait for binded connection termination at logoff
841bcade0964 ksmbd: add support for surrogate pair conversion
0eaeb8aec49f ksmbd: fix missing RDMA-capable flag for IPoIB device in ksmbd_rdma_capable_netdev()
20b4f6bd4cf9 ksmbd: fix recursive locking in vfs helpers
f30a2ff71561 ksmbd: fix kernel-doc comment of ksmbd_vfs_setxattr()
df79244f7339 ksmbd: reorganize ksmbd_iov_pin_rsp()
845837fbfe79 ksmbd: Remove unused field in ksmbd_user struct
fab0175b7f8e ksmbd: fix potential double free on smb2_read_pipe() error path
ef435dec8a84 ksmbd: fix Null pointer dereferences in ksmbd_update_fstate()
4b9b7ea1ffb1 ksmbd: fix wrong error response status by using set_smb2_rsp_status()
dd45db4d9bbc ksmbd: fix race condition between tree conn lookup and disconnect
0901be8dc6ea ksmbd: fix race condition from parallel smb2 lock requests
50e13932ba55 ksmbd: fix race condition from parallel smb2 logoff requests
f99d5d1d2a25 ksmbd: fix race condition with fp
c77fd3e25a51 ksmbd: fix race condition between session lookup and expire
b9a3e4549676 ksmbd: check iov vector index in ksmbd_conn_write()
01df133b1a7d ksmbd: return invalid parameter error response if smb2 request is invalid
4a67467f1134 ksmbd: fix passing freed memory 'aux_payload_buf'
fbed0adfe507 ksmbd: remove unneeded mark_inode_dirty in set_info_sec()
a9128c4134f1 ksmbd: remove experimental warning
6997fa65bf9e ksmbd: add missing calling smb2_set_err_rsp() on error
bd554ed4fdc3 ksmbd: fix slub overflow in ksmbd_decode_ntlmssp_auth_blob()
7019440463df ksmbd: Fix one kernel-doc comment
c5aa74449a41 ksmbd: reduce descriptor size if remaining bytes is less than request size
e12b09241693 ksmbd: fix `force create mode' and `force directory mode'
6f0207218c4c ksmbd: fix wrong interim response on compound
f2283680a805 ksmbd: add support for read compound
d7ad0ac5a8f6 ksmbd: switch to use kmemdup_nul() helper
5c0df9d30c28 ksmbd: fix out of bounds in init_smb2_rsp_hdr()
017d85c94f02 ksmbd: validate session id and tree id in compound request
4a027b96515e ksmbd: check if a mount point is crossed during path lookup
cf63b94fec60 ksmbd: Fix unsigned expression compared with zero
5f36e22910c2 ksmbd: Replace one-element array with flexible-array member
d9902ad14f82 ksmbd: Use struct_size() helper in ksmbd_negotiate_smb_dialect()
97f5c1e3086c ksmbd: add missing compound request handing in some commands
676392184785 ksmbd: fix out of bounds read in smb2_sess_setup
d91ba80185e4 ksmbd: Replace the ternary conditional operator with min()
2222ada0959b ksmbd: use kvzalloc instead of kvmalloc
638043bef94a ksmbd: Change the return value of ksmbd_vfs_query_maximal_access to void
7585898ddf5a ksmbd: return a literal instead of 'err' in ksmbd_vfs_kern_path_locked()
4910a79a5f61 ksmbd: use kzalloc() instead of __GFP_ZERO
b657622862ba ksmbd: remove unused ksmbd_tree_conn_share function
ce95f7d2dcdf ksmbd: add mnt_want_write to ksmbd vfs functions
0d1a3f97efbe ksmbd: validate smb request protocol id
df3a4518aee6 ksmbd: check the validation of pdu_size in ksmbd_conn_handler_loop
ae33f07c87ab ksmbd: fix posix_acls and acls dereferencing possible ERR_PTR()
55ceeb4e1c71 ksmbd: fix out-of-bound read in parse_lease_state()
4adb4fbd7481 ksmbd: fix out-of-bound read in deassemble_neg_contexts()
049ed0f953da ksmbd: call putname after using the last component
b423ddab6138 ksmbd: fix UAF issue from opinfo->conn
19b2b9af315e ksmbd: fix multiple out-of-bounds read during context decoding
61a306c1cc75 ksmbd: fix uninitialized pointer read in smb2_create_link()
ea799dd27584 ksmbd: fix uninitialized pointer read in ksmbd_vfs_rename()
b36295c17fb9 ksmbd: fix racy issue under cocurrent smb2 tree disconnect
ae06b798f72d ksmbd: fix racy issue from smb2 close and logoff with multichannel
dff87902d960 ksmbd: block asynchronous requests when making a delay on session setup
a6a9601ba995 ksmbd: destroy expired sessions
708c304b583d ksmbd: fix racy issue from session setup and logoff
019aae488dbc ksmbd: fix racy issue from using ->d_parent and ->d_name
b31e1ef30107 fs: introduce lock_rename_child() helper
380a0fe8bd60 ksmbd: remove unused compression negotiate ctx packing
0dbfcc34efab ksmbd: avoid duplicate negotiate ctx offset increments
2ca23947df89 ksmbd: set NegotiateContextCount once instead of every inc
39f5b4b313b4 ksmbd: avoid out of bounds access in decode_preauth_ctxt()
921536046bd1 ksmbd: fix slab-out-of-bounds in init_smb2_rsp_hdr
9494242c8e76 ksmbd: delete asynchronous work from list
427caadf90e9 ksmbd: remove unused is_char_allowed function
289b46fd11dd ksmbd: fix wrong signingkey creation when encryption is AES256
bfe8372ef2db ksmbd: fix possible memory leak in smb2_lock()
d625db885a10 ksmbd: Fix parameter name and comment mismatch
0d3f06fd65fe ksmbd: Fix spelling mistake "excceed" -> "exceeded"
1f1aca1d500d ksmbd: update Kconfig to note Kerberos support and fix indentation
a35ebf658993 ksmbd: Remove duplicated codes
b15734ec29b6 ksmbd: fix typo, syncronous->synchronous
1f485b54d04a ksmbd: Implements sess->rpc_handle_list as xarray
b1caecbf34b8 ksmbd: Implements sess->ksmbd_chann_list as xarray
d7f088dc2794 ksmbd: send proper error response in smb2_tree_connect()
bcab5c810544 ksmbd: Convert to use sysfs_emit()/sysfs_emit_at() APIs
46c517bc0ac6 ksmbd: Fix resource leak in smb2_lock()
9ea6b43d8a7d ksmbd: use F_SETLK when unlocking a file
8263acd267f7 ksmbd: set SMB2_SESSION_FLAG_ENCRYPT_DATA when enforcing data encryption for this share
64b4d72c596a ksmbd: replace one-element arrays with flexible-array members
2bdd995f139c ksmbd: validate share name from share config response
ef97ccd0fc64 ksmbd: call ib_drain_qp when disconnected
b3e852bea8a7 ksmbd: make utf-8 file name comparison work in __caseless_lookup()
131e308593e6 ksmbd: hide socket error message when ipv6 config is disable
507cb106c3b9 ksmbd: reduce server smbdirect max send/receive segment sizes
fe4d09792bc6 ksmbd: decrease the number of SMB3 smbdirect server SGEs
d5a3b1024aab ksmbd: set NTLMSSP_NEGOTIATE_SEAL flag to challenge blob
4d796ff8995a ksmbd: fix encryption failure issue for session logoff response
e925de7defff ksmbd: fill sids in SMB_FIND_FILE_POSIX_INFO response
95b72edca5d2 ksmbd: set file permission mode to match Samba server posix extension behavior
813ef06ea2a3 ksmbd: change security id to the one samba used for posix extension
62e6846ee3ba ksmbd: casefold utf-8 share names and fix ascii lowercase conversion
43e2963be171 ksmbd: remove generic_fillattr use in smb2_open()
aa77fc81825b ksmbd: constify struct path
b79a9f991eb9 ksmbd: don't open-code %pD
d6686d57919d ksmbd: don't open-code file_path()
a7ddc4951f0f ksmbd: remove unnecessary generic_fillattr in smb2_open
ebb8c616574a ksmbd: request update to stale share config
c7aff8b8ffdb ksmbd: use wait_event instead of schedule_timeout()
1f82ecbc7f1e ksmbd: remove unused ksmbd_share_configs_cleanup function
8d0f823193f1 ksmbd: remove duplicate flag set in smb2_write
d4b374ff2a3a ksmbd: smbd: Remove useless license text when SPDX-License-Identifier is already used
ff403dbe43a1 ksmbd: smbd: relax the count of sges required
9d609b52f952 ksmbd: smbd: fix connection dropped issue
32af379e13df ksmbd: Fix some kernel-doc comments
81602ee1c4fb ksmbd: fix wrong smbd max read/write size check
918a690d8ab6 ksmbd: smbd: handle multiple Buffer descriptors
673c186f8105 ksmbd: smbd: change the return value of get_sg_list
30bd0df6e667 ksmbd: smbd: simplify tracking pending packets
f17ed7b33899 ksmbd: smbd: introduce read/write credits for RDMA read/write
982fcdec10ff ksmbd: smbd: change prototypes of RDMA read/write related functions
6bb439930338 ksmbd: validate length in smb2_write()
8e32e1584025 ksmbd: remove filename in ksmbd_file
e9a325124611 smb3: fix ksmbd bigendian bug in oplock break, and move its struct to smbfs_common
dc232946d108 ksmbd: replace usage of found with dedicated list iterator variable
a5213868c62b ksmbd: Remove a redundant zeroing of memory
7ee6f9ba9783 ksmbd: shorten experimental warning on loading the module
a5a8c9133d97 ksmbd: store fids as opaque u64 integers
170598b6f354 ksmbd: use netif_is_bridge_port
c5049d2d73b2 ksmbd: add support for key exchange
09b4c603831d ksmbd: smbd: validate buffer descriptor structures
858b9644518f ksmbd: smbd: fix missing client's memory region invalidation
51d0b879d6f5 ksmbd: add smb-direct shutdown
d15077ad35af ksmbd: smbd: change the default maximum read/write, receive size
ba7c3ff9053b ksmbd: smbd: create MR pool
97b3a08892c0 ksmbd: smbd: call rdma_accept() under CM handler
8a49ab3e59ed ksmbd: set 445 port to smbdirect port by default
178ecc325728 ksmbd: register ksmbd ib client with ib_register_client()
91d730756980 ksmbd: Fix smb2_get_name() kernel-doc comment
dd56eb361f3a ksmbd: Delete an invalid argument description in smb2_populate_readdir_entry()
36167446ce68 ksmbd: Fix smb2_set_info_file() kernel-doc comment
2fa426c9d741 ksmbd: Fix buffer_check_err() kernel-doc comment
e5b04973e720 ksmbd: set both ipv4 and ipv6 in FSCTL_QUERY_NETWORK_INTERFACE_INFO
a63256708a99 ksmbd: Remove unused fields from ksmbd_file struct definition
de203cdf1ee5 ksmbd: Remove unused parameter from smb2_get_name()
82ae5fe3e629 ksmbd: use oid registry functions to decode OIDs
7833bd31bc6b ksmbd: change LeaseKey data type to u8 array
199b8b5ceba3 ksmbd: remove smb2_buf_length in smb2_transform_hdr
e0c58420570c ksmbd: remove smb2_buf_length in smb2_hdr
6cd90c01b032 ksmbd: remove md4 leftovers
84af59bcab8e ksmbd: Remove redundant 'flush_workqueue()' calls
a33bb607a1b2 ksmdb: use cmd helper variable in smb2_get_ksmbd_tcon()
5fed9cbbafcb ksmbd: use ksmbd_req_buf_next() in ksmbd_verify_smb_message()
1d146b1875fc Linux 5.15.144
4c117984824b r8152: fix the autosuspend doesn't work
aa3cc80e8eda r8152: remove rtl_vendor_mode function
07ba21627ebb r8152: avoid to change cfg for all devices
fa5f992dcf89 powerpc/ftrace: Fix stack teardown in ftrace_no_trace
4624f5f298e2 powerpc/ftrace: Create a dummy stackframe to fix stack unwind
410c05b60c1a RDMA/irdma: Prevent zero-length STAG registration
93e765523b34 USB: gadget: core: adjust uevent timing on gadget unbind
529f020f7b5f ring-buffer: Do not try to put back write_stamp
b8d59ea20346 ring-buffer: Fix a race in rb_time_cmpxchg() for 32 bit archs
fb63b1f99414 ring-buffer: Fix writing to the buffer with max_data_size
e9587314fd1f ring-buffer: Have saved event hold the entire event
8ed7d2800fa6 ring-buffer: Do not update before stamp when switching sub-buffers
547937457fe2 tracing: Update snapshot buffer on resize if it is allocated
97e70d6698f5 ring-buffer: Fix memory leak of free page
f94942885e84 drm/amdgpu/sdma5.2: add begin/end_use ring callbacks
8175dad2ad41 team: Fix use-after-free when an option instance allocation fails
c2134ed53261 arm64: mm: Always make sw-dirty PTEs hw-dirty in pte_modify
1bc91916e8ef ext4: prevent the normalized size from exceeding EXT_MAX_BLOCKS
1a4da77ef61b soundwire: stream: fix NULL pointer dereference for multi_link
5a95499843e8 btrfs: do not allow non subvolume root targets for snapshot
7b427d8cb7a8 perf: Fix perf_event_validate_size() lockdep splat
27714a22a1c2 HID: hid-asus: add const to read-only outgoing usb buffer
11c17f42765a net: usb: qmi_wwan: claim interface 4 for ZTE MF290
ca15561c99da asm-generic: qspinlock: fix queued_spin_value_unlocked() implementation
0a3f27d9ad10 HID: multitouch: Add quirk for HONOR GLO-GXXX touchpad
41759fab26b4 HID: hid-asus: reset the backlight brightness level on resume
9f093e15faee HID: add ALWAYS_POLL quirk for Apple kb
61fc877f7c34 HID: glorious: fix Glorious Model I HID report
23b08531d8f3 platform/x86: intel_telemetry: Fix kernel doc descriptions
7020385effce bcache: avoid NULL checking to c->root in run_cache_set()
f891bbf13a94 bcache: add code comments for bch_btree_node_get() and __bch_btree_node_alloc()
8758b0532f79 bcache: remove redundant assignment to variable cur_idx
d38288af6f30 bcache: avoid oversize memory allocation by small stripe_size
252c2a4795e9 blk-cgroup: bypass blkcg_deactivate_policy after destroying
8146f7a8809b blk-throttle: fix lockdep warning of "cgroup_mutex or RCU read lock required!"
b7d82e5dbe5a stmmac: dwmac-loongson: Add architecture dependency
46412b2fb1f9 usb: aqc111: check packet for fixup for true limit
fe13b6a6ddb1 drm/mediatek: Add spinlock for setting vblank event in atomic_begin
6f709907ea90 PCI: loongson: Limit MRRS to 256
4f4a9fc6b0cd Revert "PCI: acpiphp: Reassign resources on bridge if necessary"
2d099b274e43 ALSA: hda/realtek: Apply mute LED quirk for HP15-db
0239375ecb66 ALSA: hda/hdmi: add force-connect quirks for ASUSTeK Z170 variants
d6df72b2f566 ALSA: hda/hdmi: add force-connect quirk for NUC5CPYB
45f53ca3065b fuse: dax: set fc->dax to NULL in fuse_dax_conn_free()
f21b7610d55f cred: switch to using atomic_long_t
3a1428640259 net: atlantic: fix double free in ring reinit logic
5b87ac25e8cf appletalk: Fix Use-After-Free in atalk_ioctl
de73f41fd658 net: stmmac: Handle disabled MDIO busses from devicetree
6f3b49a4158c net: stmmac: use dev_err_probe() for reporting mdio bus registration failure
90715e0a4cbb dpaa2-switch: fix size of the dma_unmap
444339f3aaff vsock/virtio: Fix unsigned integer wrap around in virtio_transport_has_space()
a5ab70a9c547 sign-file: Fix incorrect return values check
8eec2dcc4b83 stmmac: dwmac-loongson: Make sure MDIO is initialized before use
abb40550adeb net: ena: Fix XDP redirection error
5d45225702f3 net: ena: Fix xdp drops handling due to multibuf packets
39082715bd8e net: ena: Destroy correct number of xdp queues upon failure
e2b48f94802e net: Remove acked SYN flag from packet in the transmit queue correctly
d3b174db0cd6 qed: Fix a potential use-after-free in qed_cxt_tables_alloc
3f1f6a94d885 net/rose: Fix Use-After-Free in rose_ioctl
3bb41dc361bf atm: Fix Use-After-Free in do_vcc_ioctl
db400b1f8b6e octeontx2-af: Update RSS algorithm index
e0676d37bb1a octeontx2-pf: Fix promisc mcam entry action
86f50bb2a487 octeontx2-af: fix a use-after-free in rvu_nix_register_reporters
af7a77216660 net: fec: correct queue selection
3c4dcfbff15b net: vlan: introduce skb_vlan_eth_hdr()
fe779dbb42fb atm: solos-pci: Fix potential deadlock on &tx_queue_lock
e16f961f8bc5 atm: solos-pci: Fix potential deadlock on &cli_queue_lock
d525bbd9dd2d qca_spi: Fix reset behavior
4ec0e0e65bb6 qca_debug: Fix ethtool -G iface tx behavior
173fc3212c31 qca_debug: Prevent crash on TX ring changes
9846d8c8c383 net: ipv6: support reporting otherwise unknown prefix flags in RTM_NEWPREFIX
77443956e635 HID: lenovo: Restrict detection of patched firmware only to USB cptkbd
d37f44beef92 afs: Fix refcount underflow from error handling race
a69d8ee03c88 ksmbd: fix memory leak in smb2_lock()
fd0d9b167459 MIPS: Loongson64: Handle more memory types passed from firmware
d9a9d8effdb2 memblock: allow to specify flags with memblock_add_node()
49e0fcb522f3 mm/memory_hotplug: handle memblock_add_node() failures in add_memory_resource()
5b77f41fb71c netfilter: nf_tables: fix 'exist' matching on bigendian arches
3d4ad03bf1ee r8152: add vendor/device ID pair for ASUS USB-C2500
404ce6ee69d3 r8152: add vendor/device ID pair for D-Link DUB-E250
ca75274b17b8 r8152: add USB device driver for config selection
f5494d96bcbe perf/x86/uncore: Don't WARN_ON_ONCE() for a broken discovery table
d0fc081c6241 Linux 5.15.143
2eba64dcbf26 devcoredump: Send uevent once devcd is ready
97a9a7cf7f2f devcoredump : Serialize devcd_del work
e5071ae7d829 smb: client: fix potential NULL deref in parse_dfs_referrals()
d2bafe84dd7a cifs: Fix non-availability of dedup breaking generic/304
c7a0a2651831 Revert "btrfs: add dmesg output for first mount and last unmount of a filesystem"
1ed694fec589 MIPS: Loongson64: Enable DMA noncoherent support
a71b6a615252 MIPS: Loongson64: Reserve vgabios memory on boot
72bdf3445012 KVM: SVM: Update EFER software model on CR0 trap for SEV-ES
15a8088786d1 KVM: s390/mm: Properly reset no-dat
19e10526460a x86/CPU/AMD: Check vendor in the AMD microcode callback
e5731380b753 serial: 8250_omap: Add earlycon support for the AM654 UART controller
17c2ed9a99e4 serial: 8250: 8250_omap: Do not start RX DMA on THRI interrupt
8718c0ab94e6 serial: 8250: 8250_omap: Clear UART_HAS_RHR_IT_DIS bit
9bf8bc456f30 serial: sc16is7xx: address RX timeout interrupt errata
87ac27041255 ARM: PL011: Fix DMA support
9402252dda0c usb: typec: class: fix typec_altmode_put_partner to put plugs
e24f2b219f39 Revert "xhci: Loosen RPM as default policy to cover for AMD xHC 1.1"
742ecc1b1c2d parport: Add support for Brainboxes IX/UC/PX parallel cards
86240d91ec40 usb: gadget: f_hid: fix report descriptor allocation
f7a0cab502f5 drm/amdgpu: correct the amdgpu runtime dereference usage count
091c77c287b4 drm/amd/amdgpu: Fix warnings in amdgpu/amdgpu_display.c
324df6ecda16 gpiolib: sysfs: Fix error handling on failed export
ebc7597ce971 perf: Fix perf_event_validate_size()
00f8c6dc8274 perf/core: Add a new read format to get a number of lost samples
4aed524081cf arm64: dts: mt8183: kukui: Fix underscores in node names
1e64d6ddbd9f arm64: dts: mediatek: add missing space before {
6276d125aa75 arm64: dts: mediatek: mt8183: Move thermal-zones to the root node
a6b7222bbd3f arm64: dts: mediatek: align thermal zone node names with dtschema
ab9ac2cb5740 tools headers UAPI: Sync linux/perf_event.h with the kernel sources
dc52117cd797 docs/process/howto: Replace C89 with C11
7aed508668ff platform/x86: asus-wmi: Fix kbd_dock_devid tablet-switch reporting
e65128616faa netfilter: nft_set_pipapo: skip inactive elements during set walk
bcedd497b3b4 io_uring/af_unix: disable sending io_uring over sockets
c5a09d163184 mm: fix oops when filemap_map_pmd() without prealloc_pte
c755e7cdacfe r8169: fix rtl8125b PAUSE frames blasting when suspended
9234835fcc33 tracing: Stop current tracer when resizing buffer
5a9cbf824225 tracing: Set actual size after ring buffer resize
40a36f08a198 ring-buffer: Force absolute timestamp on discard of event
0ccca12b7dd8 misc: mei: client.c: fix problem of return '-EOVERFLOW' in mei_cl_write
271b563063e3 misc: mei: client.c: return negative error code in mei_cl_write
4511b3650e53 coresight: etm4x: Remove bogous __exit annotation for some functions
192352bd4bbe coresight: etm4x: Make etm4_remove_dev() return void
318a206633c2 kallsyms: Make kallsyms_on_each_symbol generally available
61b68b608954 binder: fix memory leaks of spam and pending work
1665a875add8 arm64: dts: mediatek: mt8183: Fix unit address for scp reserved memory
dca1bfdb407e arm64: dts: mediatek: mt8173-evb: Fix regulator-fixed node names
d052b5ade240 arm64: dts: mediatek: mt8183-kukui-jacuzzi: fix dsi unnecessary cells properties
e37aa926447f arm64: dts: mediatek: mt7622: fix memory node warning check
d849cf64c553 platform/surface: aggregator: fix recv_buf() return value
d91fb1b7b799 regmap: fix bogus error on regcache_sync success
d08a96e5ffdb packet: Move reference count in packet_sock to atomic_long_t
c86b76896f6e tracing: Fix a possible race when disabling buffered events
e733a6f84462 tracing: Fix incomplete locking when disabling buffered events
fb0219bf9665 tracing: Disable snapshot buffer when stopping instance tracers
9e41d92e2884 tracing: Always update snapshot buffer size
ac3ccec33b92 checkstack: fix printed address
762b0d529c95 nilfs2: prevent WARNING in nilfs_sufile_set_segment_usage()
fd85766c7c3e nilfs2: fix missing error check for sb_set_blocksize call
4bbf011bd6cc ALSA: hda/realtek: Enable headset on Lenovo M90 Gen5
e5571507a1a4 ALSA: pcm: fix out-of-bounds in snd_pcm_state_names
f82e39f75c23 ALSA: usb-audio: Add Pioneer DJM-450 mixer controls
ea3291cb9075 io_uring: fix mutex_unlock with unreferenced ctx
09f9d1fbaff9 nvme-pci: Add sleep quirk for Kingston drives
7e765ec2f17c kprobes: consistent rcu api usage for kretprobe holder
f5311389262d md: don't leave 'MD_RECOVERY_FROZEN' in error path of md_set_readonly()
4a52acc91015 md: introduce md_ro_state
940a7bcd4f77 riscv: fix misaligned access handling of C.SWSP and C.SDSP
6e2f71188f23 ARM: dts: imx28-xea: Pass the 'model' property
976eb1730717 ARM: dts: imx7: Declare timers compatible with fsl,imx6dl-gpt
cb2034c02ffa ARM: imx: Check return value of devm_kasprintf in imx_mmdc_perf_init
800aabe1eda1 scsi: be2iscsi: Fix a memleak in beiscsi_init_wrb_handle()
48987eef55b8 tracing: Fix a warning when allocating buffered events fails
6daed3710c1d ARM: dts: imx6ul-pico: Describe the Ethernet PHY clock
2ea7438af1f0 arm64: dts: imx8mp: imx8mq: Add parkmode-disable-ss-quirk on DWC3
8a21980df069 arm64: dts: imx8mq: drop usb3-resume-missing-cas from usb
0511a9c56e58 RDMA/irdma: Avoid free the non-cqp_request scratch
b7b24a7ffced RDMA/core: Fix umem iterator when PAGE_SIZE is greater then HCA pgsz
9d2854cc2554 ASoC: wm_adsp: fix memleak in wm_adsp_buffer_populate
1d31ea4df805 hwmon: (nzxt-kraken2) Fix error handling path in kraken2_probe()
9deab0c35ea4 hwmon: (acpi_power_meter) Fix 4.29 MW bug
8ef49679a2f1 RDMA/bnxt_re: Correct module description string
0b21a39bf1ad RDMA/rtrs-clt: Remove the warnings for req in_use check
6cef8ca19140 RDMA/rtrs-clt: Fix the max_send_wr setting
855b433468a4 RDMA/rtrs-srv: Destroy path files after making sure no IOs in-flight
7df9d0d06475 RDMA/rtrs-srv: Free srv_mr iu only when always_invalidate is true
00e54da50bf1 RDMA/rtrs-srv: Check return values while processing info request
59cab0ae4873 RDMA/rtrs-clt: Start hb after path_up
7f0460db1b88 RDMA/rtrs-srv: Do not unconditionally enable irq
18556be80b2b arm64: dts: rockchip: Expand reg size of vdec node for RK3399
583dec140d39 RDMA/irdma: Add wait for suspend on SQD
f78b8b7f5bd5 RDMA/irdma: Do not modify to SQD on error
754797722491 RDMA/hns: Fix unnecessary err return when using invalid congest control algorithm
01c13d8a95e0 tee: optee: Fix supplicant based device enumeration
d3d254e63ef4 drop_monitor: Require 'CAP_SYS_ADMIN' when joining "events" group
30d4881a757d net: add missing kdoc for struct genl_multicast_group::flags
5299bca8c64f psample: Require 'CAP_NET_ADMIN' when joining "packets" group
81b0c3d2824e bpf: sockmap, updating the sg structure should also update curr
0d4e0afdd665 tcp: do not accept ACK of bytes we never sent
38bae9cda82d netfilter: xt_owner: Fix for unsafe access of sk->sk_socket
9de311e5d142 netfilter: nf_tables: validate family when identifying table via handle
cf5f113c41eb netfilter: nf_tables: bail out on mismatching dynset and set expressions
219c6b558414 octeontx2-af: Update Tx link register range
4fe599a7cd7b net: hns: fix fake link up on xge port
a5c2f9f7f882 ipv4: ip_gre: Avoid skb_pull() failure in ipgre_xmit()
c8aca57e235d ionic: Fix dim work handling in split interrupt mode
04022c185e45 ionic: fix snprintf format length warning
246bc719ef0c net: bnxt: fix a potential use-after-free in bnxt_init_tc
b14d6d404c22 i40e: Fix unexpected MFS warning message
6113cba29f2f octeontx2-af: fix a use-after-free in rvu_npa_register_reporters
e047a1fc12d3 net: stmmac: fix FPE events losing
75c53a4c4329 arcnet: restoring support for multiple Sohard Arcnet cards
789fed570205 platform/mellanox: Check devm_hwmon_device_register_with_groups() return value
a24071448e9b platform/mellanox: Add null pointer checks for devm_kasprintf()
45171e5eb7d5 mlxbf-bootctl: correctly identify secure boot with development keys
401d9bab5108 r8152: Add RTL8152_INACCESSIBLE to r8153_aldps_en()
5b9bf02f1c00 r8152: Add RTL8152_INACCESSIBLE to r8153_pre_firmware_1()
0a53ed0b0068 r8152: Add RTL8152_INACCESSIBLE to r8156b_wait_loading_flash()
a637801347e8 r8152: Add RTL8152_INACCESSIBLE checks to more loops
00beca907a7b r8152: Rename RTL8152_UNPLUG to RTL8152_INACCESSIBLE
89c619b1b656 hv_netvsc: rndis_filter needs to select NLS
f258a0bed308 octeontx2-af: Check return value of nix_get_nixlf before using nixlf
51e7868e5df9 octeontx2-pf: Add missing mutex lock in otx2_get_pauseparam
a239affd93d3 ipv6: fix potential NULL deref in fib6_add()
9008af83efa3 platform/x86: wmi: Skip blocks with zero instances
29783a17a30a platform/x86: wmi: Allow duplicate GUIDs for drivers that use struct wmi_driver
0f06d9bd2ef8 of: dynamic: Fix of_reconfig_get_state_change() return value documentation
5dd9a481da29 platform/x86: asus-wmi: Move i8042 filter install to shared asus-wmi code
450f8c95a5cb platform/x86: asus-wmi: Simplify tablet-mode-switch handling
f277c14b6d5f platform/x86: asus-wmi: Simplify tablet-mode-switch probing
36ede1474698 platform/x86: asus-wmi: Add support for ROG X13 tablet mode
e8aed5133f6a platform/x86: asus-wmi: Adjust tablet/lidflip handling to use enum
bfac5cc5a6da drm/amdgpu: correct chunk_ptr to a pointer to chunk.
94e5ed1620f4 kconfig: fix memory leak from range properties
c5ab980acfc0 tg3: Increment tx_dropped in tg3_tso_bug()
d188dcb9db40 tg3: Move the [rt]x_dropped counters to tg3_napi
8bb930c3a1ea netfilter: ipset: fix race condition between swap/destroy and kernel side add/del/test
89a057818db3 i2c: designware: Fix corrupted memory seen in the ISR
6fcbcc6c8e52 hrtimers: Push pending hrtimers away from outgoing CPU earlier
ef93d8853129 vdpa/mlx5: preserve CVQ vringh index
(From OE-Core rev: 03794866c1333113c909ef88dc232bcc47a7c459)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
8a1d809b0545 Linux 5.15.142
4d9bd1b108d7 iomap: update ki_pos a little later in iomap_dio_complete
6ed02493ef14 r8169: fix deadlock on RTL8125 in jumbo mtu mode
0249024aa48e r8169: disable ASPM in case of tx timeout
8912dbddb25f mmc: sdhci-sprd: Fix vqmmc not shutting down after the card was pulled
68156ce2527f mmc: core: add helpers mmc_regulator_enable/disable_vqmmc
9807860f6ad4 iommu/vt-d: Make context clearing consistent with context mapping
7960f2cf4378 iommu/vt-d: Omit devTLB invalidation requests when TES=0
cfd842b71db2 cpufreq: imx6q: Don't disable 792 Mhz OPP unnecessarily
f0b6880658f5 cpufreq: imx6q: don't warn for disabling a non-existing frequency
bb08df40d451 smb3: fix caching of ctime on setxattr
15b4158c872d fs: add ctime accessors infrastructure
db78835b68c6 fbdev: stifb: Make the STI next font pointer a 32-bit signed offset
711ee151a303 ASoC: SOF: sof-pci-dev: Fix community key quirk detection
81952f82e32b ASoC: SOF: sof-pci-dev: don't use the community key on APL Chromebooks
fa0a570d84b7 ASoC: SOF: sof-pci-dev: add parameter to override topology filename
0d38d659a9d2 ASoC: SOF: sof-pci-dev: use community key on all Up boards
f3db01e4d012 ASoC: Intel: Move soc_intel_is_foo() helpers to a generic header
b4329a3a93d3 smb3: fix touch -h of symlink
b60187f610fb selftests/resctrl: Move _GNU_SOURCE define into Makefile
072c17d4003a selftests/resctrl: Add missing SPDX license to Makefile
1e9973aea221 perf intel-pt: Fix async branch flags
0a6b5321dcb0 net: ravb: Stop DMA in case of failures on ravb_open()
a4515a2f5b1e net: ravb: Start TX queues after HW initialization succeeded
2ba0a8330dae net: ravb: Use pm_runtime_resume_and_get()
5823191fb2ba net: ravb: Check return value of reset_control_deassert()
24681e92e517 ravb: Fix races between ravb_tx_timeout_work() and net related ops
9750941783a2 r8169: prevent potential deadlock in rtl8169_close
666250692881 Revert "workqueue: remove unused cancel_work()"
2587d8fe1484 octeontx2-pf: Fix adding mbox work queue entry when num_vfs > 64
54260f148377 net: stmmac: xgmac: Disable FPE MMC interrupts
9af4884b8ae6 octeontx2-af: Fix possible buffer overflow
f4499f0fc1e6 selftests/net: ipsec: fix constant out of range
8454f0e090d4 uapi: propagate __struct_group() attributes to the container union
0bf95654e999 dpaa2-eth: increase the needed headroom to account for alignment
c4a00c47a140 ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet
64c27b7b2357 usb: config: fix iteration issue in 'usb_get_bos_descriptor()'
e704db8ea64a USB: core: Change configuration warnings to notices
bec3ae293810 hv_netvsc: fix race of netvsc and VF register_netdevice
69732d2151b5 rcu: Avoid tracing a few functions executed in stop machine
02caa78cbc22 vlan: move dev_put into vlan_dev_uninit
842801181864 vlan: introduce vlan_dev_free_egress_priority
a8604a90e1db Input: xpad - add HyperX Clutch Gladiate Support
875eeda48161 btrfs: make error messages more clear when getting a chunk map
47693835edb1 btrfs: send: ensure send_fd is writable
36b98806d243 btrfs: fix off-by-one when checking chunk map includes logical address
0ffd9d356ea0 btrfs: ref-verify: fix memory leaks in btrfs_ref_tree_mod()
a480eb262b17 btrfs: add dmesg output for first mount and last unmount of a filesystem
2e931b33060c parisc: Drop the HP-UX ENOSYM and EREMOTERELEASE error codes
f0d052223488 powerpc: Don't clobber f0/vs0 during fp|altivec register save
d48f9008e892 iommu/vt-d: Add MTL to quirk list to skip TE disabling
0c7fa41e3e74 bcache: revert replacing IS_ERR_OR_NULL with IS_ERR
c986cb72eb41 dm verity: don't perform FEC for failed readahead IO
9a2590b400d4 dm-verity: align struct dm_verity_fec_io properly
61a982f9a575 ALSA: hda/realtek: Add supported ALC257 for ChromeOS
5fe4d96502e8 ALSA: hda/realtek: Headset Mic VREF to 100%
4ed5ad052286 ALSA: hda: Disable power-save on KONTRON SinglePC
a75793684734 mmc: block: Be sure to wait while busy in CQE error recovery
8dfdd6038e32 mmc: block: Do not lose cache flush during CQE error recovery
129984dc9b1b mmc: block: Retry commands in CQE error recovery
85afaefa9568 mmc: cqhci: Fix task clearing in CQE error recovery
ceec82319989 mmc: cqhci: Warn of halt or task clear failure
9edc063598c9 mmc: cqhci: Increase recovery halt timeout
443829382220 firewire: core: fix possible memory leak in create_units()
b20f71c8098b pinctrl: avoid reload of p state in list iteration
(From OE-Core rev: 4deed206f92fc207d18cdb4c8bc35ce1bf0fb0f6)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
9b91d36ba301 Linux 5.15.141
313a34d1c0ee io_uring: fix off-by one bvec index
49ae2e4e8ed3 USB: dwc3: qcom: fix wakeup after probe deferral
eb17fb4b160a USB: dwc3: qcom: fix software node leak on probe errors
98f0e9b6276f usb: dwc3: set the dma max_seg_size
1a3dcb1d811d usb: dwc3: Fix default mode initialization
a22702a81844 USB: dwc2: write HCINT with INTMASK applied
1134fde92088 usb: typec: tcpm: Skip hard reset when in error recovery
64830d041515 USB: serial: option: don't claim interface 4 for ZTE MF290
9611cbc6a132 USB: serial: option: fix FM101R-GL defines
a8d80b1fbacf USB: serial: option: add Fibocom L7xx modules
de8c6fce8d09 usb: cdnsp: Fix deadlock issue during using NCM gadget
dd0cc4b69f7d bcache: fixup lock c->root error
a912742d8411 bcache: fixup init dirty data errors
137660f84462 bcache: prevent potential division by zero error
f7077ce8d97b bcache: check return value from btree_node_alloc_replacement()
1eed01092101 dm-delay: fix a race between delay_presuspend and delay_bio
d181a7a1d55d hv_netvsc: Mark VF as slave before exposing it to user-mode
97683466e24c hv_netvsc: Fix race of register_netdevice_notifier and VF register
3841921018a2 USB: serial: option: add Luat Air72*U series products
6062c527d040 s390/dasd: protect device queue against concurrent access
35b5d86e43ec io_uring/fs: consider link->flags when getting path for LINKAT
2bb75a2c3490 bcache: fixup multi-threaded bch_sectors_dirty_init() wake-up race
6f09318fd90a md: fix bi_status reporting in md_end_clone_io
72ecb9753cbe bcache: replace a mistaken IS_ERR() by IS_ERR_OR_NULL() in btree_gc_coalesce()
e09ba90f1ad0 swiotlb-xen: provide the "max_mapping_size" method
0f05021e937c ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CVA
f95e9f7afe86 proc: sysctl: prevent aliased sysctls from getting passed to init
3f3880fc011c ext4: make sure allocate pending entry not fail
e33eb4997585 ext4: fix slab-use-after-free in ext4_es_insert_extent()
859893f61906 ext4: using nofail preallocation in ext4_es_insert_extent()
048e7f38b31c ext4: using nofail preallocation in ext4_es_insert_delayed_block()
580b9dd6ab0b ext4: using nofail preallocation in ext4_es_remove_extent()
66bc78a295b3 ext4: use pre-allocated es in __es_remove_extent()
b1995ba6269c ext4: use pre-allocated es in __es_insert_extent()
edec12712ae1 ext4: factor out __es_alloc_extent() and __es_free_extent()
e82d05cf5ccb ext4: add a new helper to check if es must be kept
612edd488872 media: qcom: camss: Fix csid-gen2 for test pattern generator
ceb5276d8c99 media: qcom: camss: Fix set CSI2_RX_CFG1_VC_MODE when VC is greater than 3
f001e6f62693 media: camss: sm8250: Virtual channels for CSID
9fb81ca7aa05 media: camss: Replace hard coded value with parameter
8ef9b32f20ab MIPS: KVM: Fix a build warning about variable set but not used
6ddaca6b20f7 lockdep: Fix block chain corruption
61747778a88b USB: dwc3: qcom: fix ACPI platform device leak
027472889970 USB: dwc3: qcom: fix resource leaks on probe deferral
e26c6febac43 nvmet: nul-terminate the NQNs passed in the connect command
b5d50c6a609d afs: Fix file locking on R/O volumes to operate in local mode
84ebfbed3ae0 afs: Return ENOENT if no cell DNS record can be found
6aeac88a45de net: axienet: Fix check for partial TX checksum
293acba84108 amd-xgbe: propagate the correct speed and duplex status
b3874cc25a70 amd-xgbe: handle the corner-case during tx completion
e949dbc28cd5 amd-xgbe: handle corner-case during sfp hotplug
01a8b94726b1 octeontx2-pf: Fix ntuple rule creation to direct packet to VF with higher Rx queue than its PF
fcc4a03ad3b1 arm/xen: fix xen_vcpu_info allocation alignment
90072af9efe8 net/smc: avoid data corruption caused by decline
66c023469b3e net: usb: ax88179_178a: fix failed operations during ax88179_reset
ba81c5228ef8 ipv4: Correct/silence an endian warning in __ip_do_redirect
364406d4c114 HID: fix HID device resource race between HID core and debugging support
52badc06b119 HID: core: store the unique system identifier in hid_device
221be624a55d drm/rockchip: vop: Fix color for RGB888/BGR888 format on VOP full
b0c835fd7d89 ata: pata_isapnp: Add missing error check for devm_ioport_map()
9754a498aa5b octeontx2-pf: Fix memory leak during interface down
be41c0c4a632 wireguard: use DEV_STATS_INC()
f163a6d17a95 drm/panel: simple: Fix Innolux G101ICE-L01 timings
608de3a587eb drm/panel: simple: Fix Innolux G101ICE-L01 bus flags
18bd108a13cb drm/panel: auo,b101uan08.3: Fine tune the panel power sequence
9fe5718d3f09 drm/panel: boe-tv101wum-nl6: Fine tune the panel power sequence
c8a49336e1de afs: Make error on cell lookup failure consistent with OpenAFS
ac239fccf5a5 afs: Fix afs_server_list to be cleaned up with RCU
a78d278e01b1 Linux 5.15.140
947c9e12ddd6 driver core: Release all resources during unbind before updating device links
5a434d5c3823 Input: xpad - add VID for Turtle Beach controllers
cbc7c29dff0f tracing: Have trace_event_file have ref counters
1dcf90c9fa01 powerpc/powernv: Fix fortify source warnings in opal-prd.c
3d7912710e5e io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pid
595b051c83a1 drm/amd/display: Change the DMCUB mailbox memory location from FB to inbox
a2a6e97c4b33 drm/amdgpu: fix error handling in amdgpu_bo_list_get()
e380992c479b drm/amdgpu: don't use ATRM for external devices
4ff985b8810c drm/i915: Fix potential spectre vulnerability
ea0c4d5ec57f drm/amd/pm: Handle non-terminated overdrive commands.
9ce842d7762a ext4: add missed brelse in update_backups
ce19c20064b6 ext4: remove gdb backup copy for meta bg in setup_new_flex_group_blocks
ac45d8e34bed ext4: correct the start block of counting reserved clusters
8f9842c4b925 ext4: correct return value of ext4_convert_meta_bg
8798d3b2722d ext4: correct offset of gdb backup in non meta_bg group to update_backups
8a3bb38bfdaf ext4: apply umask if ACL support is disabled
d5c380149b96 Revert "net: r8169: Disable multicast filter for RTL8168H and RTL8107E"
6ad3d8594d5e media: qcom: camss: Fix missing vfe_lite clocks check
e0376cf06950 media: qcom: camss: Fix VFE-17x vfe_disable_output()
8f733387d17f media: qcom: camss: Fix vfe_get() error jump
841fc648fbb5 media: qcom: camss: Fix pm_domain_on sequence in probe
4c9c43f79a12 mmc: sdhci-pci-gli: GL9750: Mask the replay timer timeout of AER
72bf271c5a77 r8169: fix network lost after resume on DASH systems
468e3ebf4786 mm: kmem: drop __GFP_NOFAIL when allocating objcg vectors
0387978fda07 mmc: sdhci-pci-gli: A workaround to allow GL9750 to enter ASPM L1.2
070b3ccb9b8b riscv: kprobes: allow writing to x0
cd0e9f475a46 nfsd: fix file memleak on client_opens_release
114c9d732cf9 media: ccs: Correctly initialise try compose rectangle
6c8aeeb2c549 media: venus: hfi: add checks to handle capabilities from firmware
cdeb0a4cf327 media: venus: hfi: fix the check to handle session buffer requirement
7d62570f75fe media: venus: hfi_parser: Add check to keep the number of codecs within range
d0d831e7d68d media: sharp: fix sharp encoding
6003733c8f95 media: lirc: drop trailing space from scancode transmit
e4088d7d8f11 f2fs: avoid format-overflow warning
12055238d046 i2c: i801: fix potential race in i801_block_transaction_byte_by_byte
336e6db5c120 net: phylink: initialize carrier state at creation
d8cb287d31cb net: dsa: lan9303: consequently nested-lock physical MDIO
656262cb0f95 net: ethtool: Fix documentation of ethtool_sprintf()
acca20cc16f3 s390/ap: fix AP bus crash on early config change callback invocation
019b7d42a416 i2c: designware: Disable TX_EMPTY irq while waiting for block length byte
c6e89348fd58 sbsa_gwdt: Calculate timeout with 64-bit math
132670ae9ffb lsm: fix default return value for inode_getsecctx
223196b50605 lsm: fix default return value for vm_enough_memory
06d320ca170b Revert "i2c: pxa: move to generic GPIO recovery"
ddec3d04f874 Revert ncsi: Propagate carrier gain/loss events to the NCSI controller
ad0b74d0f331 powerpc/pseries/ddw: simplify enable_ddw()
b3e993de400e arm64: dts: qcom: ipq6018: Fix tcsr_mutex register size
b99ac20612ca arm64: dts: qcom: ipq6018: switch TCSR mutex to MMIO
aaf0a07d6088 ksmbd: fix slab out of bounds write in smb_inherit_dacl()
1c701423bb03 Bluetooth: btusb: Add 0bda:b85b for Fn-Link RTL8852BE
36a573b32550 Bluetooth: btusb: Add RTW8852BE device 13d3:3570 to device tables
c4976160a0a4 bluetooth: Add device 13d3:3571 to device tables
603e77e9e8c0 bluetooth: Add device 0bda:887b to device tables
e9bb966c50a7 Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x0cb8:0xc559
cf642ee641ce cpufreq: stats: Fix buffer overflow detection in trans_stats()
63e09cdfe948 regmap: Ensure range selector registers are updated after cache sync
0c49e74e95bf tty: serial: meson: fix hard LOCKUP on crtscts mode
6f26b6a61b08 serial: meson: Use platform_get_irq() to get the interrupt
450fa8bf803f ALSA: hda/realtek - Enable internal speaker of ASUS K6500ZC
cc549ba50bb8 ALSA: hda/realtek - Add Dell ALC295 to pin fall back table
767c988771cb ALSA: info: Fix potential deadlock at disconnection
09022ae66261 xhci: Enable RPM on controllers that support low-power states
68574fe2e488 parisc/pgtable: Do not drop upper 5 address bits of physical address
ea7593c18ff7 parisc: Prevent booting 64-bit kernels on PA1.x machines
2c9092e8b29a i3c: master: svc: fix SDA keep low when polling IBIWON timeout happen
da754f92fc02 i3c: master: svc: fix check wrong status register in irq handler
5ba77b6b45d6 i3c: master: svc: fix ibi may not return mandatory data byte
e0a70ed4a580 i3c: master: svc: fix wrong data return when IBI happen during start frame
7383675aba2f i3c: master: svc: fix race condition in ibi work thread
cc7efd1054f4 i3c: master: cdns: Fix reading status register
d3c6a08c2b77 mtd: cfi_cmdset_0001: Byte swap OTP info
a4668088128d mm/memory_hotplug: use pfn math in place of direct struct page manipulation
792a796085cf mm/cma: use nth_page() in place of direct struct page manipulation
9b59fc31226e s390/cmma: fix detection of DAT pages
45bb94aab891 dmaengine: stm32-mdma: correct desc prep when channel running
91659b77e937 mcb: fix error handling for different scenarios when parsing
534790fde890 tracing: Have the user copy of synthetic event address use correct context
f6237afabc34 i2c: core: Run atomic i2c xfer when !preemptible
931aa7154bc4 kernel/reboot: emergency_restart: Set correct system_state
7a3424c3b76a quota: explicitly forbid quota files from being encrypted
47f509832168 jbd2: fix potential data lost in recovering journal raced with synchronizing fs bdev
f13e1ea45699 ASoC: codecs: wsa-macro: fix uninitialized stack variables with name prefix
28436d8092ad selftests/resctrl: Reduce failures due to outliers in MBA/MBM tests
6ce63598a1fb selftests/resctrl: Remove duplicate feature check from CMT test
e90efe17fc07 netfilter: nf_tables: split async and sync catchall in two functions
0d9506c766c9 netfilter: nf_tables: remove catchall element in GC sync path
96fc7a50a278 PCI: keystone: Don't discard .probe() callback
e0d394df9812 PCI: keystone: Don't discard .remove() callback
f4f12667167c KEYS: trusted: Rollback init_trusted() consistently
c407ff72fb3a genirq/generic_chip: Make irq_remove_generic_chip() irqdomain aware
bc8a14e3c630 mmc: meson-gx: Remove setting of CMD_CFG_ERROR
3a51e6b4da71 wifi: ath11k: fix htt pktlog locking
426e718ce9ba wifi: ath11k: fix dfs radar event locking
e9d84413b1b7 wifi: ath11k: fix temperature event locking
5ff849948c11 ima: detect changes to the backing overlay file
4584a421a6d9 ima: annotate iint mutex to avoid lockdep false positive warnings
4049576c639f ACPI: FPDT: properly handle invalid FPDT subtables
628e76e684c8 firmware: qcom_scm: use 64-bit calling convention only when client is 64-bit
6eb8c191e360 btrfs: don't arbitrarily slow down delalloc if we're committing
0b99626b28ca rcu: kmemleak: Ignore kmemleak false positives when RCU-freeing objects
71f5344f477c PM: hibernate: Clean up sync_read handling in snapshot_write_next()
57dbc0eb8abe PM: hibernate: Use __get_safe_page() rather than touching the list
87a30633b5d3 arm64: dts: qcom: ipq6018: Fix hwlock index for SMEM
ebaee06a7292 rcu/tree: Defer setting of jiffies during stall reset
057d1034d012 svcrdma: Drop connection after an RDMA Read error
541b3757fd44 wifi: wilc1000: use vmm_table as array in wilc struct
b156f62f19da PCI: exynos: Don't discard .remove() callback
f88796721002 PCI/ASPM: Fix L1 substate handling in aspm_attr_store_common()
467864d55b52 mmc: sdhci_am654: fix start loop index for TAP value parsing
ef34a97bb9cb mmc: vub300: fix an error code
36adb6204cff clk: qcom: ipq6018: drop the CLK_SET_RATE_PARENT flag from PLL clocks
090b167b2c41 clk: qcom: ipq8074: drop the CLK_SET_RATE_PARENT flag from PLL clocks
18640a1818f1 clk: socfpga: Fix undefined behavior bug in struct stratix10_clock_data
4d17b54c9be3 parisc/pdc: Add width field to struct pdc_model
936c9c10efae arm64: Restrict CPU_BIG_ENDIAN to GNU as or LLVM IAS 15.x or newer
8b24bb54bf3a ACPI: resource: Do IRQ override on TongFang GMxXGxx
5619c34d3c4c watchdog: move softlockup_panic back to early_param
a6c3a1fe09a2 PCI/sysfs: Protect driver's D3cold preference from user space
01975bee0a14 hvc/xen: fix event channel handling for secondary consoles
cfd543c10871 hvc/xen: fix error path in xen_hvc_init() to always register frontend driver
730e08cb9101 hvc/xen: fix console unplug
fa0b93a3de40 tty/sysrq: replace smp_processor_id() with get_cpu()
92e6c0f00d38 audit: don't WARN_ON_ONCE(!current->mm) in audit_exe_compare()
e29c095f1ad4 audit: don't take task_lock() in audit_exe_compare() code path
5eb6519f483e KVM: x86: Ignore MSR_AMD64_TW_CFG access
1c49ef7041f2 KVM: x86: hyper-v: Don't auto-enable stimer on write from user-space
fe6b461c37cb x86/cpu/hygon: Fix the CPU topology evaluation for real
3a2adf48d8b1 crypto: x86/sha - load modules based on CPU features
be079aa71a12 scsi: qla2xxx: Fix system crash due to bad pointer access
6ba3569f78d3 scsi: megaraid_sas: Increase register read retry rount from 3 to 30 for selected registers
6a33b5810031 scsi: mpt3sas: Fix loop logic
3c5aede46cdc bpf: Fix precision tracking for BPF_ALU | BPF_TO_BE | BPF_END
403470431b15 bpf: Fix check_stack_write_fixed_off() to correctly spill imm
ba115f6c3a8c randstruct: Fix gcc-plugin performance mode to stay in group
2771fac4382b powerpc/perf: Fix disabling BHRB and instruction sampling
7e450cc9ad54 media: venus: hfi: add checks to perform sanity on queue pointers
1566e8be73fd i915/perf: Fix NULL deref bugs with drm_dbg() calls
35c17257ef09 xfs: Fix unreferenced object reported by kmemleak in xfs_sysfs_init()
5db146322b17 xfs: fix memory leak in xfs_errortag_init
c540284d8488 xfs: fix exception caused by unexpected illegal bestcount in leaf dir
5212d586e76f xfs: avoid a UAF when log intent item recovery fails
ba179cc12109 xfs: fix inode reservation space for removing transaction
b7847653a2d6 xfs: Fix false ENOSPC when performing direct write on a delalloc extent in cow fork
92d38b87e886 xfs: add missing cmap->br_state = XFS_EXT_NORM update
8d0baec78e8a xfs: fix intermittent hang during quotacheck
76545c0e881b xfs: don't leak memory when attr fork loading fails
eb888caf27d9 xfs: fix use-after-free in xattr node block inactivation
4cb3842967e6 xfs: flush inode gc workqueue before clearing agi bucket
188594c64a1e xfs: prevent a UAF when log IO errors race with unmount
921c96215850 xfs: use invalidate_lock to check the state of mmap_lock
efd194800b69 xfs: convert buf_cancel_table allocation to kmalloc_array
074fee186931 xfs: don't leak xfs_buf_cancel structures when recovery fails
b8effd31a862 xfs: refactor buffer cancellation table allocation
4968c2aa6a1f cifs: fix check of rc in function generate_smb3signingkey
8d725bf0d16d cifs: spnego: add ';' in HOST_KEY_LEN
21accf149161 tools/power/turbostat: Enable the C-state Pre-wake printing
0045c1ff7ac0 tools/power/turbostat: Fix a knl bug
5bcce23f387b macvlan: Don't propagate promisc change to lower dev in passthru
7574b5e65e92 net/mlx5e: Check return value of snprintf writing to fw_version buffer for representors
55553c5b53ae net/mlx5e: Reduce the size of icosq_str
51655fd35703 net/mlx5e: Fix pedit endianness
a990dd7410ec net/mlx5e: Refactor mod header management API
39f95b1d0d8f net/mlx5e: Move mod hdr allocation to a single place
c0f37a3715cb net/mlx5e: Remove incorrect addition of action fwd flag
6974fd92d5f1 net/mlx5e: fix double free of encap_header in update funcs
f3c4a7044201 net/mlx5e: fix double free of encap_header
931e9e8e30bf net: stmmac: fix rx budget limit check
b8b514b2a6cd netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval()
25da0f582119 netfilter: nf_tables: add and use BE register load-store helpers
a48f6be5bdb7 netfilter: nf_tables: use the correct get/put helpers
7d3901bf3baa netfilter: nf_conntrack_bridge: initialize err to 0
75bcfc188abf af_unix: fix use-after-free in unix_stream_read_actor()
0b480c654ef2 net: ethernet: cortina: Fix MTU max setting
097588e20c6b net: ethernet: cortina: Handle large frames
f9269b274cdf net: ethernet: cortina: Fix max RX frame define
53064e8239dd bonding: stop the device in bond_setup_by_slave()
cda210a4bdf7 ptp: annotate data-race around q->head and q->tail
b67d16b2373b xen/events: fix delayed eoi list handling
8531a4194e59 ppp: limit MRU to 64K
9ae82308d184 tipc: Fix kernel-infoleak due to uninitialized TLV value
359c65daf6b5 net: hns3: fix VF wrong speed and duplex issue
406be003d698 net: hns3: fix VF reset fail issue
cfc131b078a3 net: hns3: fix variable may not initialized problem in hns3_init_mac_addr()
070581829c1a net: hns3: fix incorrect capability bit display for copper port
a3c65cf7854d net: hns3: add barrier in vf mailbox reply process
e671d8203758 net: hns3: add byte order conversion for PF to VF mailbox message
bb0f14257c04 net: hns3: refine the definition for struct hclge_pf_to_vf_msg
1d8f66d4060a net: hns3: fix add VLAN fail issue
4b3b2541d40e tty: Fix uninit-value access in ppp_sync_receive()
1f64cad3ac38 ipvlan: add ipvlan_route_v6_outbound() helper
6c71b9b177c6 net: set SOCK_RCU_FREE before inserting socket into hashtable
427165421c25 net: inet: Retire port only listening_hash
be1ceb8b7c58 net: inet: Open code inet_hash2 and inet_unhash2
bb9bcf47fba7 net: inet: Remove count from inet_listen_hashbucket
de634368e079 mptcp: listen diag dump support
870f438aca56 mptcp: diag: switch to context structure
be020f658c63 gfs2: Silence "suspicious RCU usage in gfs2_permission" warning
194454afa6aa SUNRPC: Fix RPC client cleaned up the freed pipefs dentries
319ed0cba164 NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO
809684f5b388 SUNRPC: Add an IS_ERR() check back to where it was
46d6b768072b SUNRPC: ECONNRESET might require a rebind
a7032d4d6499 media: cec: meson: always include meson sub-directory in Makefile
16e78f28517d media: cadence: csi2rx: Unregister v4l2 async notifier
20c2ca9abb78 sched/core: Optimize in_task() and in_interrupt() a bit
9894c58c1777 tracing/perf: Add interrupt_context_level() helper
48fef664d7e9 tracing: Reuse logic from perf's get_recursion_context()
670b3e902f62 wifi: iwlwifi: Use FW rate for non-data frames
a7ee519e8095 pwm: Fix double shift bug
7054366cd076 drm/amdgpu: fix software pci_unplug on some chips
e48a5e78d077 drm/qxl: prevent memory leak
0835e7f296ca ASoC: ti: omap-mcbsp: Fix runtime PM underflow warnings
38ada2f304f6 i2c: dev: copy userspace array safely
610244988f32 kgdb: Flush console before entering kgdb on panic
4e497f1acd99 drm/amd/display: Avoid NULL dereference of timing generator
5e0b788fb96b media: imon: fix access to invalid resource for the second interface
ae6bcafe1f6b media: ccs: Fix driver quirk struct documentation
d01b0ad79ecd media: cobalt: Use FIELD_GET() to extract Link Width
03ce0655bf8e gfs2: fix an oops in gfs2_permission
5bfda356e903 gfs2: ignore negated quota changes
16631907d013 media: vivid: avoid integer overflow
09cd8b561aa9 media: gspca: cpia1: shift-out-of-bounds in set_flicker
39c71357e68e i3c: master: mipi-i3c-hci: Fix a kernel panic for accessing DAT_data.
72775cad7f57 virtio-blk: fix implicit overflow on virtio_max_dma_size
f7f3bdb225e3 i2c: sun6i-p2wi: Prevent potential division by zero
d23ad76f240c i3c: mipi-i3c-hci: Fix out of bounds access in hci_dma_irq_handler
e6fbad3cc880 9p: v9fs_listxattr: fix %s null argument warning
a18be976be41 9p/trans_fd: Annotate data-racy writes to file::f_flags
2cc5e191d671 usb: gadget: f_ncm: Always set current gadget in ncm_bind()
6c80f48912b5 tty: vcc: Add check for kstrdup() in vcc_probe()
2ff61106d6b4 exfat: support handle zero-size directory
c86a3007a685 HID: Add quirk for Dell Pro Wireless Keyboard and Mouse KM5221W
3453f945af89 PCI: Use FIELD_GET() in Sapphire RX 5600 XT Pulse quirk
0a93a0f99a09 misc: pci_endpoint_test: Add Device ID for R-Car S4-8 PCIe controller
03dbd6a9ea4e PCI: Disable ATS for specific Intel IPU E2000 devices
a9a0b3444845 PCI: Extract ATS disabling to a helper function
fe511d24418a PCI: Use FIELD_GET() to extract Link Width
56d78b5495eb scsi: libfc: Fix potential NULL pointer dereference in fc_lport_ptp_setup()
37a51e7f36b7 atm: iphase: Do PCI error checks on own line
f05ae00106aa PCI: tegra194: Use FIELD_GET()/FIELD_PREP() with Link Width fields
631a96e9eb42 ALSA: hda: Fix possible null-ptr-deref when assigning a stream
1c805b9cd2e3 ARM: 9320/1: fix stack depot IRQ stack filter
8d25ec69f8f1 HID: lenovo: Detect quirk-free fw on cptkbd and stop applying workaround
64f062baf202 jfs: fix array-index-out-of-bounds in diAlloc
da3da5e1e6f7 jfs: fix array-index-out-of-bounds in dbFindLeaf
1f74d336990f fs/jfs: Add validity check for db_maxag and db_agpref
5f148b16972e fs/jfs: Add check for negative db_l2nbperpage
e1d1f79b1929 scsi: ibmvfc: Remove BUG_ON in the case of an empty event pool
f0bfc8a5561f scsi: hisi_sas: Set debugfs_dir pointer to NULL after removing debugfs
5904dee70771 RDMA/hfi1: Use FIELD_GET() to extract Link Width
546c1796ad1e crypto: pcrypt - Fix hungtask for PADATA_RESET
bc443a199f8c ASoC: soc-card: Add storage for PCI SSID
9f2082067c5f selftests/efivarfs: create-read: fix a resource leak
428cad17f53b arm64: dts: ls208xa: use a pseudo-bus to constrain usb dma size
174f62a0aa15 drm/amdgpu: Fix a null pointer access when the smc_rreg pointer is NULL
3f7a400d5e80 drm/amdkfd: Fix shift out-of-bounds issue
300589d551d4 drm/panel: st7703: Pick different reset sequence
eaa03ea366c8 drm/amdgpu/vkms: fix a possible null pointer dereference
84c923d89890 drm/panel/panel-tpo-tpg110: fix a possible null pointer dereference
2381f6b628b3 drm/panel: fix a possible null pointer dereference
c11cf5e117f5 drm/amdgpu: Fix potential null pointer derefernce
a237675aa1e6 drm/amd: Fix UBSAN array-index-out-of-bounds for Polaris and Tonga
acdb6830de02 drm/amd: Fix UBSAN array-index-out-of-bounds for SMU7
829ce8e995a8 drm/msm/dp: skip validity check for DP CTS EDID checksum
689b33b94f09 drm: vmwgfx_surface.c: copy user-array safely
22260dabcfe3 kernel: watch_queue: copy user-array safely
d4f2c09d4672 kernel: kexec: copy user-array safely
24b17d530c42 string.h: add array-wrappers for (v)memdup_user()
3a3a6dc9a330 drm/amd/display: use full update for clip size increase of large plane source
7d43cdd22cd8 drm/amdkfd: Fix a race condition of vram buffer unref in svm code
eea81424c5b8 drm/komeda: drop all currently held locks if deadlock happens
812886866be6 platform/x86: thinkpad_acpi: Add battery quirk for Thinkpad X120e
ba7088769800 Bluetooth: Fix double free in hci_conn_cleanup
f9de14bde56d Bluetooth: btusb: Add date->evt_skb is NULL check
a43cf6acf017 wifi: ath10k: Don't touch the CE interrupt registers after power up
6f42bd243327 net: annotate data-races around sk->sk_dst_pending_confirm
19ab5fd26441 net: annotate data-races around sk->sk_tx_queue_mapping
f3be63f7a8ee wifi: ath10k: fix clang-specific fortify warning
02a0547b8da0 wifi: ath9k: fix clang-specific fortify warnings
cf353904a828 bpf: Detect IP == ksym.end as part of BPF program
c29a89b23f67 atl1c: Work around the DMA RX overflow issue
21a0f310a9f3 wifi: mac80211: don't return unset power in ieee80211_get_tx_power()
3073e38086d0 wifi: mac80211_hwsim: fix clang-specific fortify warning
e8e55fa44435 x86/mm: Drop the 4 MB restriction on minimal NUMA node memory size
f9d3ba62e87b workqueue: Provide one lock class key per work_on_cpu() callsite
0a5b512d526c clocksource/drivers/timer-atmel-tcb: Fix initialization on SAM9 hardware
465b88c0873b clocksource/drivers/timer-imx-gpt: Fix potential memory leak
fd0df3f87192 perf/core: Bail out early if the request AUX area is out of bound
e89d0ed45a41 locking/ww_mutex/test: Fix potential workqueue corruption
2a910f4af54d Linux 5.15.139
3443337acd37 btrfs: use u64 for buffer sizes in the tree search ioctls
f9f5e8cecba9 Revert "mmc: core: Capture correct oemid-bits for eMMC cards"
824829c2c6b4 tracing/kprobes: Fix the order of argument descriptions
560680f745fc fbdev: fsl-diu-fb: mark wr_reg_wa() static
8e4b510fe917 fbdev: imsttfb: fix a resource leak in probe
3648582181b6 fbdev: imsttfb: Fix error path of imsttfb_probe()
30959f9f4540 spi: spi-zynq-qspi: add spi-mem to driver kconfig dependencies
9cf044cc36c1 ASoC: hdmi-codec: register hpd callback on component probe
705e5a28ec1d drm/syncobj: fix DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE
0ca05fae2790 netfilter: nat: fix ipv6 nat redirect with mapped and scoped addresses
1652f57f02eb netfilter: nft_redir: use `struct nf_nat_range2` throughout and deduplicate eval call-backs
d28c17abe098 netfilter: xt_recent: fix (increase) ipv6 literal buffer length
f30567fcbc4d i2c: iproc: handle invalid slave state
38f5ac54b917 r8169: respect userspace disabling IFF_MULTICAST
fd01115b033c blk-core: use pr_warn_ratelimited() in bio_check_ro()
b80148710983 block: remove unneeded return value of bio_check_ro()
d8d94d6b3bd3 tg3: power down device only on SYSTEM_POWER_OFF
5ea06a23f8f4 net/smc: put sk reference if close work was canceled
884606f8283c net/smc: allow cdc msg send rather than drop it with NULL sndbuf_desc
a62af7146daa net/smc: fix dangling sock under state SMC_APPFINCLOSEWAIT
866606826f16 selftests: pmtu.sh: fix result checking
2d117ac1b8f8 net: stmmac: xgmac: Enable support for multiple Flexible PPS outputs
95a99ac112c5 Fix termination state for idr_for_each_entry_ul()
70ef755f126b net: r8169: Disable multicast filter for RTL8168H and RTL8107E
0dad0e75d62b dccp/tcp: Call security_inet_conn_request() after setting IPv6 addresses.
c340713bdf32 dccp: Call security_inet_conn_request() after setting IPv4 addresses.
d1b7e6562a4c octeontx2-pf: Fix holes in error code
f60297ef59d4 octeontx2-pf: Fix error codes
794d360b1d65 inet: shrink struct flowi_common
8943083bbb64 bpf: Check map->usercnt after timer->timer is assigned
3907b89cd17f tipc: Change nla_policy for bearer-related names to NLA_NUL_STRING
a1a485e45d24 hsr: Prevent use after free in prp_create_tagged_frame()
352887b3edd0 llc: verify mac len before reading mac header
303766bb92c5 Input: synaptics-rmi4 - fix use after free in rmi_unregister_function()
741e4c15d7c0 pwm: brcmstb: Utilize appropriate clock APIs in suspend/resume
895ac9a21f69 pwm: sti: Reduce number of allocations and drop usage of chip_data
db64ddddeeec regmap: prevent noinc writes from clobbering cache
004d4002534e media: dvb-usb-v2: af9035: fix missing unlock
a0beda184756 media: cedrus: Fix clock/reset sequence
980be4c3b0d5 media: vidtv: mux: Add check and kfree for kstrdup
d17269fb9161 media: vidtv: psi: Add check for kstrdup
db89f551b706 media: s3c-camif: Avoid inappropriate kfree()
51c94256a83f media: bttv: fix use after free error due to btv->timeout timer
d3937f9e25d9 media: i2c: max9286: Fix some redundant of_node_put() calls
9d060f2fc40c pcmcia: ds: fix possible name leak in error path in pcmcia_device_add()
24e9df588e2e pcmcia: ds: fix refcount leak in pcmcia_device_add()
24e73ab542c7 pcmcia: cs: fix possible hung task and memory leak pccardd()
b3eaa0d43c74 rtc: pcf85363: fix wrong mask/val parameters in regmap_update_bits call
20bd0198bebd cxl/mem: Fix shutdown order
d48fe8d98171 i3c: Fix potential refcount leak in i3c_master_register_new_i3c_devs
855d6fb2cc7b 9p/net: fix possible memory leak in p9_check_errors()
0d456ebaad30 perf hist: Add missing puts to hist__account_cycles
924e8d0b7645 perf machine: Avoid out of bounds LBR memory read
76b0eab987c4 usb: host: xhci-plat: fix possible kernel oops while resuming
c9c4dab06a5a xhci: Loosen RPM as default policy to cover for AMD xHC 1.1
92c9ef156431 powerpc/pseries: fix potential memory leak in init_cpu_associativity()
516235e7b35f powerpc/imc-pmu: Use the correct spinlock initializer.
945dc61d7840 powerpc/xive: Fix endian conversion size
bce31a2bcb1e powerpc/40x: Remove stale PTE_ATOMIC_UPDATES macro
1308e55eb09c modpost: fix tee MODULE_DEVICE_TABLE built on big-endian host
863a9c3fdec2 powerpc: Only define __parse_fpscr() when required
01f62c6bd2db f2fs: fix to initialize map.m_pblk in f2fs_precache_extents()
dfebea7114e0 dmaengine: pxa_dma: Remove an erroneous BUG_ON() in pxad_free_desc()
72f8fa6c4b78 USB: usbip: fix stub_dev hub disconnect
168697f15a53 tools: iio: iio_generic_buffer ensure alignment
a61c3c647ffd misc: st_core: Do not call kfree_skb() under spin_lock_irqsave()
732aa0cb2601 dmaengine: ti: edma: handle irq_of_parse_and_map() errors
2941a29fe9d6 usb: chipidea: Simplify Tegra DMA alignment code
58e8316b200b usb: chipidea: Fix DMA overwrite for Tegra
fcaafb574fc8 usb: dwc2: fix possible NULL pointer dereference caused by driver concurrency
c956be5641cc dmaengine: idxd: Register dsa_bus_type before registering idxd sub-drivers
ca46d7ce1fbe livepatch: Fix missing newline character in klp_resolve_symbols()
b77f7c025e85 tty: tty_jobctrl: fix pid memleak in disassociate_ctty()
e9f598a5cc9a f2fs: compress: fix to avoid redundant compress extension
8c4504cc0c64 f2fs: compress: fix to avoid use-after-free on dic
ca0aae3837a6 leds: trigger: ledtrig-cpu:: Fix 'output may be truncated' issue for 'cpu'
206a972511a8 leds: pwm: Don't disable the PWM when the LED should be off
893eedf596dd leds: turris-omnia: Do not use SMBUS calls
aec3706971b3 leds: turris-omnia: Drop unnecessary mutex locking
c9a4f13c58f1 mfd: arizona-spi: Set pdata.hpdet_channel for ACPI enumerated devs
63a99d7b57b4 mfd: dln2: Fix double put in dln2_probe
2742c860e0b7 mfd: core: Ensure disabled devices are skipped without aborting
94eb5423d75e mfd: core: Un-constify mfd_cell.of_reg
8890d4d5f25e ASoC: ams-delta.c: use component after check
a2ae48bd82ee crypto: qat - fix deadlock in backlog processing
0dd34a7ad395 padata: Fix refcnt handling in padata_free_shell()
93e4aa8545ab ASoC: Intel: Skylake: Fix mem leak when parsing UUIDs fails
cd1c2df64d6b HID: logitech-hidpp: Move get_wireless_feature_index() check to hidpp_connect_event()
99893b7c4592 HID: logitech-hidpp: Revert "Don't restart communication if not necessary"
5f2f38602583 HID: logitech-hidpp: Don't restart IO, instead defer hid_connect() only
1f80041c5867 HID: logitech-hidpp: Remove HIDPP_QUIRK_NO_HIDINPUT quirk
d3b196a1da3e Revert "HID: logitech-hidpp: add a module parameter to keep firmware gestures"
6885e5ffa09d sh: bios: Revive earlyprintk support
b0c25e957f9b hid: cp2112: Fix IRQ shutdown stopping polling for all IRQs on chip
d06dc0f99f72 RDMA/hfi1: Workaround truncation compilation error
086cd44204bb scsi: ufs: core: Leave space for '\0' in utf8 desc string
a0f1999090b3 ASoC: fsl: Fix PM disable depth imbalance in fsl_easrc_probe
904fc0103776 RDMA/hns: The UD mode can only be configured with DCQCN
9f8db02d30ad RDMA/hns: Fix signed-unsigned mixed comparisons
2de683e27e1d RDMA/hns: Fix uninitialized ucmd in hns_roce_create_qp_common()
611260e36f16 IB/mlx5: Fix rdma counter binding for RAW QP
922b2693b9af ASoC: fsl: mpc5200_dma.c: Fix warning of Function parameter or member not described
001f90cd9d2f ext4: move 'ix' sanity check to corrent position
c24a3c9e373e ARM: 9321/1: memset: cast the constant byte to unsigned char
012d0c66f939 hid: cp2112: Fix duplicate workqueue initialization
1ce09238e8e8 crypto: qat - increase size of buffers
62df66b726f9 crypto: caam/jr - fix Chacha20 + Poly1305 self test failure
61f25d4686bf crypto: caam/qi2 - fix Chacha20 + Poly1305 self test failure
66eb7b7f23dd nd_btt: Make BTT lanes preemptible
6563e0f79d63 libnvdimm/of_pmem: Use devm_kstrdup instead of kstrdup and check its return value
d4ad0c1a83ce scsi: ibmvfc: Fix erroneous use of rtas_busy_delay with hcall return code
b79c7d684c3f RDMA/core: Use size_{add,sub,mul}() in calls to struct_size()
a5c83c8043d7 hwrng: geode - fix accessing registers
a8607725b20a crypto: hisilicon/hpre - Fix a erroneous check after snprintf()
b01b9dc5487a selftests/resctrl: Ensure the benchmark commands fits to its array
2d2300fcf8f6 selftests/pidfd: Fix ksft print formats
8bc9c9447489 arm64: dts: imx8mn: Add sound-dai-cells to micfil node
1abd658492b5 arm64: dts: imx8mm: Add sound-dai-cells to micfil node
cf7abb54f8b1 arm64: dts: imx8qm-ss-img: Fix jpegenc compatible entry
8704bf18a888 clk: scmi: Free scmi_clk allocated when the clocks with invalid info are skipped
bdb0428aa294 firmware: arm_ffa: Assign the missing IDR allocation ID to the FFA device
b0ffdc164365 firmware: ti_sci: Mark driver as non removable
995ee1e84e8d soc: qcom: llcc: Handle a second device without data corruption
19b8098f73c6 ARM: dts: qcom: mdm9615: populate vsdcc fixed regulator
a8ab88f84b89 arm64: dts: qcom: apq8016-sbc: Add missing ADV7533 regulators
ddc0df81eeac ARM64: dts: marvell: cn9310: Use appropriate label for spi1 pins
12d9de01c09c arm64: dts: qcom: sdm845-mtp: fix WiFi configuration
690b89255971 arm64: dts: qcom: sc7280: Add missing LMH interrupts
2a4cce4168f7 arm64: dts: qcom: msm8992-libra: drop duplicated reserved memory
eb9daf47806b arm64: dts: qcom: msm8916: Fix iommu local address range
541640dcbf48 ARM: dts: renesas: blanche: Fix typo in GP_11_2 pin name
0e1e88bba286 perf: hisi: Fix use-after-free when register pmu fails
4067d39f3c57 drm: mediatek: mtk_dsi: Fix NO_EOT_PACKET settings/handling
a6a6f70aedca drm/msm/dsi: use msm_gem_kernel_put to free TX buffer
aea6f32a4318 xen-pciback: Consider INTx disabled when MSI/MSI-X is enabled
e588ca45bf55 drm/rockchip: Fix type promotion bug in rockchip_gem_iommu_map()
a00a293d57a5 arm64/arm: xen: enlighten: Fix KPTI checks
d0d01bb4a560 drm/bridge: lt9611uxc: fix the race in the error path
29aba28ea195 drm/bridge: lt9611uxc: Register and attach our DSI device at probe
f53a04579328 drm/bridge: lt9611uxc: Switch to devm MIPI-DSI helpers
517a5137a57b drm/rockchip: cdn-dp: Fix some error handling paths in cdn_dp_probe()
865ccd4ca674 drm/mediatek: Fix iommu fault during crtc enabling
8e3c8253b34f drm/mediatek: Fix iommu fault by swapping FBs after updating plane state
e11e339faa11 drm/amdkfd: fix some race conditions in vram buffer alloc/free of svm code
30cb99e09648 drm/bridge: tc358768: Fix bit updates
1cd4ae681a6a drm/bridge: tc358768: Disable non-continuous clock mode
c13591b859be drm/bridge: tc358768: Fix use of uninitialized variable
d78bddd94b80 drm/bridge: lt8912b: Add missing drm_bridge_attach call
5cc2bc519afd drm/bridge: lt8912b: Manually disable HPD only if it was enabled
42071feab712 drm/bridge: lt8912b: Fix crash on bridge detach
d9217286d0ab drm/bridge: lt8912b: Fix bridge_detach
cc3057958c5c drm/bridge: lt8912b: Add hot plug detection
ef4a40953c80 drm/bridge: lt8912b: Register and attach our DSI device at probe
3580b8a01305 drm/bridge: lt8912b: Switch to devm MIPI-DSI helpers
52541851a8d1 drm/mipi-dsi: Create devm device attachment
a20d6ecd261a drm/mipi-dsi: Create devm device registration
347f025a02b3 drm/radeon: possible buffer overflow
b163b371d741 drm/rockchip: vop: Fix call to crtc reset helper
9a96bed1df7b drm/rockchip: vop: Fix reset of state in duplicate state crtc funcs
1b0bc99cf316 hwmon: (coretemp) Fix potentially truncated sysfs attribute name
b3e7eb23a6e9 hwmon: (axi-fan-control) Fix possible NULL pointer dereference
e0bf076b734a platform/x86: wmi: Fix opening of char device
c57e81d5e538 platform/x86: wmi: remove unnecessary initializations
2ca4e461a298 platform/x86: wmi: Fix probe failure when failing to register WMI devices
f75e11f54d98 clk: qcom: config IPQ_APSS_6018 should depend on QCOM_SMEM
d1175cf4bd2b clk: mediatek: clk-mt2701: Add check for mtk_alloc_clk_data
e964d21dc034 clk: mediatek: clk-mt7629: Add check for mtk_alloc_clk_data
c4070ada5d51 clk: mediatek: clk-mt7629-eth: Add check for mtk_alloc_clk_data
3aefc6fcfbad clk: mediatek: clk-mt6797: Add check for mtk_alloc_clk_data
ca6d565a2319 clk: mediatek: clk-mt6779: Add check for mtk_alloc_clk_data
533ca5153ad6 clk: mediatek: clk-mt6765: Add check for mtk_alloc_clk_data
e531e4e73734 clk: npcm7xx: Fix incorrect kfree
761c2a690d8f clk: ti: fix double free in of_ti_divider_clk_setup()
1c37faca0908 clk: ti: change ti_clk_register[_omap_hw]() API
28b72fba1e19 clk: ti: Update component clocks to use ti_dt_clk_name()
c4bffed2e52b clk: ti: Update pll and clockdomain clocks to use ti_dt_clk_name()
9b5e9d8bf9a6 clk: ti: Add ti_dt_clk_name() helper to use clock-output-names
f45fff806ebb clk: keystone: pll: fix a couple NULL vs IS_ERR() checks
7ff8ca9beefb spi: nxp-fspi: use the correct ioremap function
26206c858dae clk: renesas: rzg2l: Fix computation formula
1966bf2a79e6 clk: renesas: rzg2l: Use FIELD_GET() for PLL register fields
7ece2efa87af clk: renesas: rzg2l: Simplify multiplication/shift logic
e2239f716529 clk: imx: imx8qxp: Fix elcdif_pll clock
7d416973cd12 clk: imx: imx8mq: correct error handling path
608ebb098b79 clk: imx: Select MXC_CLK for CLK_IMX8QXP
8861b2925a84 clk: qcom: gcc-sm8150: Fix gcc_sdcc2_apps_clk_src
76e8f00f54a8 clk: qcom: mmcc-msm8998: Fix the SMMU GDSC
56c4bb46a5a0 clk: qcom: mmcc-msm8998: Don't check halt bit on some branch clks
0881d24cf5ca clk: qcom: clk-rcg2: Fix clock rate overflow for high parent frequencies
b64683f5d728 spi: tegra: Fix missing IRQ check in tegra_slink_probe()
b13e8b38be51 regmap: debugfs: Fix a erroneous check after snprintf()
8fafac407346 ipvlan: properly track tx_errors
3eedc19a9d0f net: add DEV_STATS_READ() helper
359bce81b841 ipv6: avoid atomic fragment on GSO packets
6b413d52f6ab ACPI: sysfs: Fix create_pnp_modalias() and create_of_modalias()
32aaa3b98789 wifi: iwlwifi: empty overflow queue during flush
0e3ad00be4e8 wifi: iwlwifi: pcie: synchronize IRQs before NAPI
a8ebe549e0ce wifi: iwlwifi: call napi_synchronize() before freeing rx/tx queues
627a3b3f5c80 iwlwifi: pcie: adjust to Bz completion descriptor
0d91506a40ec tcp: fix cookie_init_timestamp() overflows
4f6e904ed4e3 chtls: fix tp->rcv_tstamp initialization
5d7bec7ae4db r8169: fix rare issue with broken rx after link-down on RTL8125
e143a3c82d33 r8169: use tp_to_dev instead of open code
3a8f4e58e1ee thermal: core: prevent potential string overflow
bfd4ed4988aa netfilter: nf_tables: Drop pointless memset when dumping rules
80986257d2cd PM / devfreq: rockchip-dfi: Make pmu regmap mandatory
826120c9ba68 can: dev: can_put_echo_skb(): don't crash kernel if can_priv::echo_skb is accessed out of bounds
28e9e015916e can: dev: can_restart(): fix race condition between controller restart and netif_carrier_on()
ada4dc4788f1 can: dev: can_restart(): don't crash kernel if carrier is OK
d4eb4182a823 wifi: rtlwifi: fix EDCA limit set by BT coexistence
2027e74150ee tcp_metrics: do not create an entry from tcp_init_metrics()
3f7cb7c47ce0 tcp_metrics: properly set tp->snd_ssthresh in tcp_init_metrics()
ca7b6fa9e61a tcp_metrics: add missing barriers on delete
227709a0e47c wifi: mt76: mt7603: improve stuck beacon handling
eab5b0aa5065 mt76: pass original queue id from __mt76_tx_queue_skb to the driver
75336a762539 mt76: add support for overriding the device used for DMA mapping
77b2ab5cd1a4 mt76: dma: use kzalloc instead of devm_kzalloc for txwi
064b32f18db1 wifi: mt76: mt7603: rework/fix rx pse hang check
1afbb9ececd3 wifi: rtw88: debug: Fix the NULL vs IS_ERR() bug for debugfs_create_file()
ebcbf5f5e047 net: spider_net: Use size_add() in call to struct_size()
56e7424c6efc tipc: Use size_add() in calls to struct_size()
3e51efcb2909 mlxsw: Use size_mul() in call to struct_size()
dc3fef310732 gve: Use size_add() in call to struct_size()
70f032db8516 tcp: call tcp_try_undo_recovery when an RTOd TFO SYNACK is ACKed
a2d540c74549 udp: add missing WRITE_ONCE() around up->encap_rcv
8f7eef3a13df selftests/bpf: Correct map_fd to data_fd in tailcalls
3eefb2fbf4ec selftests/bpf: Test tail call counting with bpf2bpf and data on stack
ab91992ec4d4 i40e: fix potential memory leaks in i40e_remove()
702742373650 genirq/matrix: Exclude managed interrupts in irq_matrix_allocated()
379b120e4f27 pstore/platform: Add check for kstrdup
81b8638e4ef4 x86/boot: Fix incorrect startup_gdt_descr.size
c7e8c7452e5a x86/sev-es: Allow copy_from_kernel_nofault() in earlier boot
0b5da8ce0f18 x86: Share definition of __is_canonical_address()
90b263db856d futex: Don't include process MM in futex key on no-MMU
f0d6e5841172 x86/srso: Fix SBPB enablement for (possible) future fixed HW
565f9337b68e writeback, cgroup: switch inodes with dirty timestamps to release dying cgwbs
2bb46b20825d vfs: fix readahead(2) on block devices
20195f87db19 sched: Fix stop_one_cpu_nowait() vs hotplug
13cde955e52e sched/uclamp: Ignore (util == 0) optimization in feec() when p_util_max = 0
cc6198ff20c0 iov_iter, x86: Be consistent about the __user tag on copy_mc_to_user()
80529b4968a8 Linux 5.15.138
3d8344a7c4a3 ALSA: hda: intel-dsp-config: Fix JSL Chromebook quirk detection
f049c0c0037d misc: pci_endpoint_test: Add deviceID for J721S2 PCIe EP device support
28b8ad8ccecd tty: 8250: Add Brainboxes Oxford Semiconductor-based quirks
44c4dfac3f02 tty: 8250: Add support for Intashield IX cards
d541ccb34de2 tty: 8250: Add support for additional Brainboxes PX cards
60debc01fcbb tty: 8250: Fix up PX-803/PX-857
1f5649aed527 tty: 8250: Fix port count of PX-257
3fe3cc63c730 tty: 8250: Add support for Intashield IS-100
a5b6390fd609 tty: 8250: Add support for Brainboxes UP cards
738fe41b6443 tty: 8250: Add support for additional Brainboxes UC cards
ff6059c3d234 tty: 8250: Remove UC-257 and UC-431
81a4dd5e6c78 tty: n_gsm: fix race condition in status line change on dead connections
e25197747f0e usb: raw-gadget: properly handle interrupted requests
e5f53a68a596 usb: typec: tcpm: Fix NULL pointer dereference in tcpm_pd_svdm()
7c4855b22a3f usb: storage: set 1.50 as the lower bcdDevice for older "Super Top" compatibility
c48aae53850c PCI: Prevent xHCI driver from claiming AMD VanGogh USB3 DRD device
6628c3627c02 drm/amd: Disable ASPM for VI w/ all Intel systems
b6c3c7786e24 drm/amd: Move helper for dynamic speed switch check out of smu13
9015169f00ee can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior
d72ff6478323 can: isotp: isotp_bind(): do not validate unused address information
e163ad6a8639 can: isotp: add local echo tx processing and tx without FC
b4e78ea26638 can: isotp: handle wait_event_interruptible() return values
2fc6f337257f can: isotp: check CAN address family in isotp_bind()
f8c3bd211cf3 can: isotp: isotp_bind(): return -EINVAL on incorrect CAN ID formatting
615c4dd64050 can: isotp: set max PDU size to 64 kByte
6627b96851f1 powerpc/mm: Fix boot crash with FLATMEM
f0f998648887 r8152: Check for unplug in r8153b_ups_en() / r8153c_ups_en()
78c939a88729 r8152: Check for unplug in rtl_phy_patch_request()
51cc28ce742e net: chelsio: cxgb4: add an error code check in t4_load_phy_fw
bbc926199321 platform/mellanox: mlxbf-tmfifo: Fix a warning message
db4416ea3a5d scsi: mpt3sas: Fix in error path
d48b2e8189d5 fbdev: uvesafb: Call cn_del_callback() at the end of uvesafb_exit()
e39440c3268b drm/ttm: Reorder sys manager cleanup step
aade33d3d9bb ASoC: rt5650: fix the wrong result of key button
fa32e21c0568 netfilter: nfnetlink_log: silence bogus compiler warning
dfcbb983eb6e spi: npcm-fiu: Fix UMA reads when dummy.nbytes == 0
64ae128b095d fs/ntfs3: Avoid possible memory leak
27a0bed1285e fs/ntfs3: Fix directory element type detection
94524980ee75 fs/ntfs3: Fix NULL pointer dereference on error in attr_allocate_frame()
2de328398b50 fs/ntfs3: Fix possible NULL-ptr-deref in ni_readpage_cmpr()
962a3d3d731c fs/ntfs3: Use kvmalloc instead of kmalloc(... __GFP_NOWARN)
393966e79ba1 fs/ntfs3: Write immediately updated ntfs state
59e629fc7157 fs/ntfs3: Add ckeck in ni_update_parent()
738a3adc7c8b fbdev: atyfb: only use ioremap_uc() on i386 and ia64
afef8af919d2 Input: synaptics-rmi4 - handle reset delay when using SMBus trsnsport
abc62fc06d4a powerpc/85xx: Fix math emulation exception
4bdde4dca00e dmaengine: ste_dma40: Fix PM disable depth imbalance in d40_probe
39d2c10367a8 irqchip/stm32-exti: add missing DT IRQ flag translation
c57aef9075e0 irqchip/riscv-intc: Mark all INTC nodes as initialized
eb99b6e204cd net: sched: cls_u32: Fix allocation size in u32_init()
5e78ebe7c1db ASoC: simple-card: fixup asoc_simple_probe() error handling
65fd21aa3805 x86: Fix .brk attribute in linker script
d4c8bf5635c4 rpmsg: Fix possible refcount leak in rpmsg_register_device_override()
a82e0fda8a2f rpmsg: glink: Release driver_override
bfd4a664ddfb rpmsg: Fix calling device_lock() on non-initialized device
2e76b4f6218c rpmsg: Fix kfree() of static memory on setting driver_override
5c0da71871d3 rpmsg: Constify local variable in field store macro
389190b25472 driver: platform: Add helper for safer setting of driver_override
37ffa428d58c objtool/x86: add missing embedded_insn check
f031e15d0bb8 ext4: avoid overlapping preallocations due to overflow
f2c3a3aa6f11 ext4: fix BUG in ext4_mb_new_inode_pa() due to overflow
7a992726f727 ext4: add two helper functions extent_logical_end() and pa_logical_end()
9e78e7709f7d x86/mm: Fix RESERVE_BRK() for older binutils
d3201c718058 x86/mm: Simplify RESERVE_BRK()
897b56acf126 x86/i8259: Skip probing when ACPI/MADT advertises PCAT compatibility
77db87c4a4ed gve: Fix GFP flags when allocing pages
8b424bdf6c9c iio: afe: rescale: Accept only offset channels
c1eeb494f684 iio: afe: rescale: add offset support
7c76b7db5521 iio: afe: rescale: expose scale processing function
c60671502dc2 iio: afe: rescale: reorder includes
27dd09f5ec7f clk: Sanitize possible_parent_show to Handle Return Value of of_clk_get_parent_name
c27ca4aebbee sparc32: fix a braino in fault handling in csum_and_copy_..._user()
21b07a2e6095 perf/core: Fix potential NULL deref
6efd498009b9 nvmem: imx: correct nregs for i.MX6UL
0c2948118c34 nvmem: imx: correct nregs for i.MX6SLL
6e22bf6f00d5 nvmem: imx: correct nregs for i.MX6ULL
e0f95b831b4a misc: fastrpc: Clean buffers on remote invocation failures
c4957f00f9e2 tracing/kprobes: Fix the description of variable length arguments
cdc57093b470 i2c: aspeed: Fix i2c bus hang in slave read
e97d374a2506 i2c: stm32f7: Fix PEC handling in case of SMBUS transfers
2766a872103b i2c: muxes: i2c-demux-pinctrl: Use of_get_i2c_adapter_by_node()
48b58f7469e5 i2c: muxes: i2c-mux-gpmux: Use of_get_i2c_adapter_by_node()
cb65e692765b i2c: muxes: i2c-mux-pinctrl: Use of_get_i2c_adapter_by_node()
eace761f35a1 iio: adc: xilinx-xadc: Correct temperature offset/scale for UltraScale
70322a446ef2 iio: adc: xilinx-xadc: Don't clobber preset voltage/temperature thresholds
3c1312b5d49a iio: exynos-adc: request second interupt only when touchscreen mode is used
4e14f2d5885f kasan: print the original fault addr when access invalid shadow
bdfa4fa7588d i40e: Fix wrong check for I40E_TXR_FLAGS_WB_ON_ITR
d5c175f4cea6 gtp: fix fragmentation needed check with gso
c0dad0c0924c gtp: uapi: fix GTPA_MAX
852fb4ce426d tcp: fix wrong RTO timeout when received SACK reneging
83cfa3b51a78 r8152: Release firmware if we have an error in probe
e0f9231ccd6c r8152: Cancel hw_phy_work if we have an error in probe
ff42b0a55659 r8152: Run the unload routine if we have errors during probe
6fa3b9f9478e r8152: Increase USB control msg timeout to 5000ms as per spec
76873f2eadc0 net: usb: smsc95xx: Fix uninit-value access in smsc95xx_read_reg
6afd112c3f95 net: ieee802154: adf7242: Fix some potential buffer overflow in adf7242_stats_show()
46cd35e4e774 igc: Fix ambiguity in the ethtool advertising
49529413eaed neighbour: fix various data-races
667554946360 igb: Fix potential memory leak in igb_add_ethtool_nfc_entry
263421905346 treewide: Spelling fix in comment
bc0c4bc119d2 i40e: Fix I40E_FLAG_VF_VLAN_PRUNING value
c532c5df01ad r8169: fix the KCSAN reported data race in rtl_rx while reading desc->opts1
6afb294c88c6 r8169: fix the KCSAN reported data-race in rtl_tx while reading TxDescArray[entry].opts1
9d7b3838428c r8169: fix the KCSAN reported data-race in rtl_tx() while reading tp->cur_tx
04dbfa4122e0 firmware/imx-dsp: Fix use_after_free in imx_dsp_setup_channels()
0d587b86cd0d drm/dp_mst: Fix NULL deref in get_mst_branch_device_by_guid_helper()
8860f0175e51 vsock/virtio: initialize the_virtio_vsock before using VQs
762c251c7f5c vsock/virtio: add support for device suspend/resume
1e02df6f6907 vsock/virtio: factor our the code to initialize and delete VQs
15a8cac3c250 drm/i915/pmu: Check if pmu is closed before stopping event
43bd431a5dd9 nfsd: lock_rename() needs both directories to live on the same fs
556b68d9b95f mm/migrate: fix do_pages_move for compat pointers
c4071c6114de mm/page_alloc: correct start page when guard page debug is enabled
3a6cee2bfb53 vhost: Allow null msg.size on VHOST_IOTLB_INVALIDATE
fbc9a8718f31 virtio-mmio: fix memory leak of vm_dev
862a356bc986 virtio_balloon: Fix endless deflation and inflation on arm64
41bb770e42bc mcb-lpc: Reallocate memory region to avoid memory overlapping
f2ac8b2643dd mcb: Return actual parsed size when reading chameleon table
90918ef995b5 mptcp: more conservative check for zero probes
fd2b2dab6f5b tcp: cleanup tcp_remove_empty_skb() use
68342755b9b2 tcp: remove dead code from tcp_sendmsg_locked()
0f482ad7b1a5 pinctrl: qcom: lpass-lpi: fix concurrent register updates
51b054f6fe01 ASoC: codecs: wcd938x: fix runtime PM imbalance on remove
cb34f4e79e54 ASoC: codecs: wcd938x: fix resource leaks on bind errors
12952a23a5da Linux 5.15.137
dff33880d40a xfrm6: fix inet6_dev refcount underflow problem
5a9d05a4f1c3 Bluetooth: hci_sock: Correctly bounds check and pad HCI_MON_NEW_INDEX name
a6df96ee0b45 Bluetooth: hci_sock: fix slab oob read in create_monitor_event
c08d609fb2b6 phy: mapphone-mdm6600: Fix pinctrl_pm handling for sleep pins
e1b030b101f6 phy: mapphone-mdm6600: Fix runtime PM for remove
59f1095ab58e phy: mapphone-mdm6600: Fix runtime disable on probe
b618062c0b13 serial: 8250: omap: Move uart_write() inside PM section
67f29cd2f851 ASoC: pxa: fix a memory leak in probe()
76d04c339508 gpio: vf610: set value before the direction to avoid a glitch
4b129e3964b3 platform/x86: asus-wmi: Map 0x2a code, Ignore 0x2b and 0x2c events
e1a058cc2467 platform/x86: asus-wmi: Change ASUS_WMI_BRN_DOWN code from 0x20 to 0x2e
c6bbe51dcdf3 platform/surface: platform_profile: Propagate error if profile registration fails
a73c8d716938 s390/cio: fix a memleak in css_alloc_subchannel
c8b6c2df1e7d selftests/ftrace: Add new test case which checks non unique symbol
3ad81e6affcb s390/pci: fix iommu bitmap allocation
71d224acc4d1 perf: Disallow mis-matched inherited group reads
5aa89a11a2a6 USB: serial: option: add Fibocom to DELL custom modem FM101R-GL
8c376d863618 USB: serial: option: add entry for Sierra EM9191 with new firmware
483221216176 USB: serial: option: add Telit LE910C4-WWX 0x1035 composition
e750fb71dc6a nvme-rdma: do not try to stop unallocated queues
a9fd6d44abbc nvme-pci: add BOGUS_NID for Intel 0a54 device
071382bda1da ACPI: irq: Fix incorrect return value in acpi_register_gsi()
431a5010bce2 NFSv4.1: fixup use EXCHGID4_FLAG_USE_PNFS_DS for DS server
5762e72ef1b0 pNFS: Fix a hang in nfs4_evict_inode()
5a3abee2eee9 Revert "pinctrl: avoid unsafe code pattern in find_pinctrl()"
24959825377f mmc: core: Capture correct oemid-bits for eMMC cards
8041e7b7e7e9 mmc: core: sdio: hold retuning if sdio in 1-bit mode
262029c0c58c mmc: mtk-sd: Use readl_poll_timeout_atomic in msdc_reset_hw
3e363db1c13a mtd: physmap-core: Restore map_rom fallback
71823463b1b2 mtd: spinand: micron: correct bitmask for ecc status
a50d2f17d562 mtd: rawnand: arasan: Ensure program page operations are successful
ae53c92e928c mtd: rawnand: marvell: Ensure program page operations are successful
c0ca2ab23098 mtd: rawnand: pl353: Ensure program page operations are successful
a7070628043e mtd: rawnand: qcom: Unmap the right resource upon probe failure
3f928d1362f7 net: fix ifname in netlink ntf during netns move
ac43ec299a6f net: move from strlcpy with unused retval to strscpy
30e2db403032 net: introduce a function to check if a netdev name is in use
38ba5479355b Bluetooth: hci_event: Fix using memcmp when comparing keys
3b2da6d62b42 net/mlx5: Handle fw tracer change ownership event based on MTRC
f6e263824539 platform/x86: touchscreen_dmi: Add info for the Positivo C4128B
ca56d8afe648 HID: multitouch: Add required quirk for Synaptics 0xcd7e device
ca5bec7ecf26 btrfs: error out when reallocating block for defrag using a stale transaction
2692fd37aaf4 btrfs: error when COWing block from a root that is being deleted
ef491d9560d9 btrfs: error out when COWing block using a stale transaction
f89ed0a09673 btrfs: fix some -Wmaybe-uninitialized warnings in ioctl.c
df486b75feca drm: panel-orientation-quirks: Add quirk for One Mix 2S
d5ba30ee4f6d ipv4/fib: send notify when delete source address routes
9d07b7abd277 sky2: Make sure there is at least one frag_addr available
f652eb4adf27 regulator/core: Revert "fix kobject release warning and memory leak in regulator_register()"
aa77b187b1f0 wifi: cfg80211: avoid leaking stack data into trace
30a2285a2e18 wifi: mac80211: allow transmitting EAPOL frames with tainted key
b64eb31a1b53 wifi: cfg80211: Fix 6GHz scan configuration
bbec1724519e Bluetooth: hci_core: Fix build warnings
02b0e6991838 Bluetooth: Avoid redundant authentication
38681af225b6 Bluetooth: btusb: add shutdown function for QCA6174
e6e9a32c3e60 HID: holtek: fix slab-out-of-bounds Write in holtek_kbd_input_event
06aabf7715da wifi: iwlwifi: Ensure ack flag is properly cleared.
6063f6f64fa4 wifi: mwifiex: Sanity check tlv_len and tlv_bitmap_len
59ebfeb7b319 tracing: relax trace_event_eval_update() execution with cond_resched()
3d85fb391fa7 ata: libata-eh: Fix compilation warning in ata_eh_link_report()
89e3cc1b0703 ata: libata-core: Fix compilation warning in ata_dev_config_ncq()
137c658ea3ce gpio: timberdale: Fix potential deadlock on &tgpio->lock
68f106c2b2ab overlayfs: set ctime when setting mtime and atime
ef3c62e2f0f1 i2c: mux: Avoid potential false error message in i2c_mux_add_adapter
e2f64f3eebaa btrfs: initialize start_slot in btrfs_log_prealloc_extents
266dab0ce42d btrfs: return -EUCLEAN for delayed tree ref with a ref count not equals to 1
bc424f18fbdc fs-writeback: do not requeue a clean inode having skipped pages
92609823592c ARM: dts: ti: omap: Fix noisy serial with overrun-throttle-ms for mapphone
3898d8d685ab ksmbd: not allow to open file if delelete on close bit is set
d3dc26c4fdc2 nfp: flower: avoid rmmod nfp crash issues
6c52b1215904 mctp: perform route lookups under a RCU read-side lock
db3f17e571e8 mctp: Allow local delivery to the null EID
29017ab1a539 powerpc/47x: Fix 47x syscall return crash
558ee0fafd40 powerpc/32s: Do kuep_lock() and kuep_unlock() in assembly
d00f4ae3accf powerpc/32s: Remove capability to disable KUEP at boottime
fcb3f09e8173 drm/atomic-helper: relax unregistered connector check
403d201d1fd1 perf/x86/lbr: Filter vsyscall addresses
419ac18d8808 perf/x86: Move branch classifier
030099bc9115 perf: Add irq and exception return branch types
ae80d5290c14 iio: adc: ad7192: Correct reference voltage
569a126f244b iio: cros_ec: fix an use-after-free in cros_ec_sensors_push_data()
a9c471892d75 iio: core: introduce iio_device_{claim|release}_buffer_mode() APIs
eafbb1966152 iio: core: Hide read accesses to iio_dev->currentmode
919721348c04 iio: Un-inline iio_buffer_enabled()
7f74bc91eb00 serial: 8250_omap: Fix errors with no_console_suspend
d67d831e1dbc serial: 8250: omap: Fix imprecise external abort for omap_8250_pm()
aff3019b553e selftests/mm: fix awk usage in charge_reserved_hugetlb.sh and hugetlb_reparenting_test.sh that may cause error
4f1d3d1ca500 net: pktgen: Fix interface flags printing
8bdf95e29f86 netfilter: nf_tables: revert do not remove elements if set backend implements .abort
cc19daa037f5 netfilter: nf_tables: do not remove elements if set backend implements .abort
db33720697c8 netfilter: nft_set_rbtree: .deactivate fails if element has expired
44768cad012c neighbor: tracing: Move pin6 inside CONFIG_IPV6=y section
b33179dbf3f2 net/sched: sch_hfsc: upgrade 'rt' to 'sc' when it becomes a inner curve
0426d7bc17b8 bonding: Return pointer to data after pull on skb
66982023d741 net: dsa: bcm_sf2: Fix possible memory leak in bcm_sf2_mdio_register()
0ea476863ef7 i40e: prevent crash on probe if hw registers have invalid values
f9202217a6ea net: usb: smsc95xx: Fix an error code in smsc95xx_reset()
a2ceb30cc1fc ipv4: fib: annotate races around nh->nh_saddr_genid and nh->nh_saddr
a270aa7a47db tun: prevent negative ifindex
9d55719f983d tcp: tsq: relax tcp_small_queue_check() when rtx queue contains a single skb
8ae344291e38 tcp: fix excessive TLP and RACK timeouts from HZ rounding
8b6b4ca42a94 net: rfkill: gpio: prevent value glitch during probe
4df9ba0d7a82 net: ipv6: fix return value check in esp_remove_trailer
a9651e66d0bd net: ipv4: fix return value check in esp_remove_trailer
26a3c734cb8a xfrm: interface: use DEV_STATS_INC()
f8bc4b708b11 xfrm: fix a data-race in xfrm_gen_index()
b660e58ef72d qed: fix LL2 RX buffer allocation
d35f398b88a1 ASoC: codecs: wcd938x: fix unbind tear down order
d182d8ed7b7e ASoC: codecs: wcd938x: drop bogus bind error handling
8d32a6b67e77 ASoC: codecs: wcd938x-sdw: fix runtime PM imbalance on probe errors
6df571a6c153 ASoC: codecs: wcd938x-sdw: fix use after free on driver unbind
36eabe87031f drm/i915: Retry gtt fault when out of fence registers
34f62612be2a nvmet-tcp: Fix a possible UAF in queue intialization setup
04e0eef74b8f netfilter: nft_payload: fix wrong mac header matching
efe43d1bcbcb fs/ntfs3: fix deadlock in mark_as_free_ex
ab40c7ab7a93 fs/ntfs3: fix panic about slab-out-of-bounds caused by ntfs_list_ea()
24badb9dd8b8 fs/ntfs3: Fix possible null-pointer dereference in hdr_find_e()
ff38d2a705e1 tcp: check mptcp-level constraints for backlog coalescing
582f7993353c x86/sev: Check for user-space IOIO pointing to kernel space
5c2c01be809d x86/sev: Check IOBM for IOIO exceptions from user-space
6797c6d09e50 x86/sev: Disable MMIO emulation from user mode
0b4e772a6a89 KVM: x86: Mask LVTPC when handling a PMI
f61c43be1eb9 regmap: fix NULL deref on lookup
ffdc881f6807 nfc: nci: fix possible NULL pointer dereference in send_acknowledge()
d42aeae14fc4 ice: reset first in crash dump kernels
e42cecb513af ice: fix over-shifted variable
f6c093b97761 Bluetooth: avoid memcmp() out of bounds warning
e5f8b43c9c90 Bluetooth: hci_event: Fix coding style
1597c1ed0e7d Bluetooth: vhci: Fix race when opening vhci device
1ef071526848 Bluetooth: Fix a refcnt underflow problem for hci_conn
dd6b62fdd245 Bluetooth: Reject connection with the device which has same BD_ADDR
848a05c4423f Bluetooth: hci_event: Ignore NULL link key
e7a2aa7770d3 xfs: don't expose internal symlink metadata buffers to the vfs
fe5c6fbc5e4a Documentation: sysctl: align cells in second content column
1815844652cc lib/Kconfig.debug: do not enable DEBUG_PREEMPT by default
00c03985402e Linux 5.15.136
5266b5b6e975 eth: remove remaining copies of the NAPI_POLL_WEIGHT define
528f0ba9f7a4 usb: hub: Guard against accesses to uninitialized BOS descriptors
542a3f1a3cc1 Revert "kernel/sched: Modify initial boot task idle setup"
737ce5518a9c arm64: armv8_deprecated: fix unused-function error
2e10931e2d77 arm64: armv8_deprecated: rework deprected instruction handling
abd4aa081905 arm64: armv8_deprecated: move aarch32 helper earlier
f10abdb04c3d arm64: armv8_deprecated move emulation functions
0b4eec015fa5 arm64: armv8_deprecated: fold ops into insn_emulation
a8d2910be6f8 arm64: rework EL0 MRS emulation
057f9123b1a8 arm64: factor insn read out of call_undef_hook()
3f82927cabaf arm64: factor out EL1 SSBS emulation hook
474385adcd84 arm64: split EL0/EL1 UNDEF handlers
de0358635401 arm64: allow kprobes on EL0 handlers
7154e2db8890 arm64: rework BTI exception handling
cd5ceadc2b37 arm64: rework FPAC exception handling
b6358002fd0c arm64: consistently pass ESR_ELx to die()
7ddb1ef2bb42 arm64: die(): pass 'err' as long
9a3e177ef570 arm64: report EL1 UNDEFs better
d6808be3ff94 powerpc/64e: Fix wrong test in __ptep_test_and_clear_young()
9c0dc3e2c996 powerpc/8xx: Fix pte_access_permitted() for PAGE_NONE
4da05eba66e6 dmaengine: mediatek: Fix deadlock caused by synchronize_irq()
82f61b2d5187 dmaengine: idxd: use spin_lock_irqsave before wait_event_lock_irq
ecba5afe86f3 x86/alternatives: Disable KASAN in apply_alternatives()
cbd2aac00498 usb: cdnsp: Fixes issue with dequeuing not queued requests
7014807fb7ef usb: gadget: ncm: Handle decoding of multiple NTB's in unwrap call
50259cf71a1b usb: gadget: udc-xilinx: replace memcpy with memcpy_toio
308f19249641 counter: microchip-tcb-capture: Fix the use of internal GCLK logic
5a6ce81d7c16 pinctrl: avoid unsafe code pattern in find_pinctrl()
1c790191cab4 cgroup: Remove duplicates in cgroup v1 tasks file
1680c82929bc tee: amdtee: fix use-after-free vulnerability in amdtee_close_session
b8ec40a90acd Input: goodix - ensure int GPIO is in input for gpio_count == 1 && gpio_int_idx == 0 case
d092630e8a20 Input: i8042 - add Fujitsu Lifebook E5411 to i8042 quirk table
7cea6fa2d73f Input: xpad - add PXN V900 support
6ff4e50e2d2a Input: psmouse - fix fast_reconnect function for PS/2 mode
6a4a39638640 Input: powermate - fix use-after-free in powermate_config_complete
6ad7f52d8c58 ceph: fix type promotion bug on 32bit systems
c0c4acd53a98 ceph: fix incorrect revoked caps assert in ceph_fill_file_size()
58f0e6324ec7 libceph: use kernel_connect()
d727b97f8f2e thunderbolt: Check that lane 1 is in CL0 before enabling lane bonding
04c38bedd07c thunderbolt: Workaround an IOMMU fault on certain systems with Intel Maple Ridge
a586742a3780 mcb: remove is_added flag from mcb_device struct
4382d1a996e5 x86/cpu: Fix AMD erratum #1485 on Zen4-based CPUs
763167003a80 ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA
510d4a01d84c drm/amd/display: Don't set dpms_off for seamless boot
9cb61ab9f4ca drm/amdgpu: add missing NULL check
f9a1af37b801 iio: pressure: ms5611: ms5611_prom_is_valid false negative bug
09b8ed9547f1 iio: pressure: dps310: Adjust Timeout Settings
4c80ecef859d iio: pressure: bmp280: Fix NULL pointer exception
a625de7e5464 usb: musb: Modify the "HWVers" register address
eb28694f6da8 usb: musb: Get the musb_qh poniter after musb_giveback
ee88141873a8 usb: cdns3: Modify the return value of cdns_set_active () to void when CONFIG_PM_SLEEP is disabled
3b2dbc4f3302 usb: dwc3: Soft reset phy on probe for host
42c56e015653 net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read
524f45361789 usb: xhci: xhci-ring: Use sysdev for mapping bounce buffer
1d8e7fe85528 xhci: Keep interrupt disabled in initialization until host is running.
cb34e3b25c37 dmaengine: stm32-mdma: abort resume if no ongoing transfer
d56dbfe750a8 media: mtk-jpeg: Fix use after free bug due to uncanceled work
5e13e69ddf0d net: release reference to inet6_dev pointer
aade10d51ddc net: change accept_ra_min_rtr_lft to affect all RA lifetimes
8f12d2d66cba net: add sysctl accept_ra_min_rtr_lft
bc9f6cbeb999 workqueue: Override implicit ordered attribute in workqueue_apply_unbound_cpumask()
25dd54b95abf nfc: nci: assert requested protocol is valid
b2bb3b43b94a pinctrl: renesas: rzn1: Enable missing PINMUX
c4140dd77c3b net/smc: Fix pos miscalculation in statistics
d888d3f70b0d net: nfc: fix races in nfc_llcp_sock_get() and nfc_llcp_sock_get_sn()
249a1fdb95d5 net/mlx5e: Again mutually exclude RX-FCS and RX-port-timestamp
2112cacb38aa ixgbe: fix crash with empty VF macvlan list
935a15334d77 net: phy: mscc: macsec: reject PN update requests
667fe9101a3a net: macsec: indicate next pn update when offloading
2dcb31e65d26 bpf: Fix verifier log for async callback return values
6a217af2c67f drm/vmwgfx: fix typo of sizeof argument
72ef70886556 riscv, bpf: Sign-extend return values
7795592e0818 riscv, bpf: Factor out emit_call for kernel and bpf context
58941cc742ca xen-netback: use default TX queue size for vifs
cffdced18af8 eth: remove copies of the NAPI_POLL_WEIGHT define
5c360eec5332 mlxsw: fix mlxsw_sp2_nve_vxlan_learning_set() return type
84c6aa0ae5c4 ieee802154: ca8210: Fix a potential UAF in ca8210_probe
616761cf9df9 ravb: Fix use-after-free issue in ravb_tx_timeout_work()
30ebd4177593 ravb: Fix up dma_free_coherent() call in ravb_remove()
3f39de2bd1d2 drm/msm/dpu: change _dpu_plane_calc_bw() to use u64 to avoid overflow
85ae07d4dcc6 drm/msm/dsi: fix irq_of_parse_and_map() error checking
9a890c7d4d0f drm/msm/dsi: skip the wait for video mode done if not applicable
b9de60b6830c drm/msm/dp: do not reinitialize phy unless retry during link training
afe5f596b588 KEYS: trusted: Remove redundant static calls usage
20e73ece06b3 KEYS: trusted: allow use of kernel RNG for key material
a01d68b6c666 ALSA: usb-audio: Fix microphone sound on Opencomm2 Headset
5b5e58299eac net: prevent address rewrite in kernel_bind()
56e96b38d2f7 quota: Fix slow quotaoff
28ddc1e0b898 HID: logitech-hidpp: Fix kernel crash on receiver USB disconnect
b930f0f7bbc2 lib/test_meminit: fix off-by-one error in test_pages()
982bd86fd659 platform/x86: hp-wmi:: Mark driver struct with __refdata to prevent section mismatch warning
124cf0ea4b82 platform/x86: think-lmi: Fix reference leak
3d2a16f878f0 of: overlay: Reorder struct fragment fields kerneldoc
10f4a0b6657e perf/arm-cmn: Fix the unhandled overflow status of counter 4 to 7
b7966e2191d0 RDMA/cxgb4: Check skb value for failure to allocate
b9bdffb3f9aa RDMA/srp: Do not call scsi_done() from srp_abort()
7d4999589ebc scsi: ib_srp: Call scsi_done() directly
d2746cdfd5e5 scsi: core: Rename scsi_mq_done() into scsi_done() and export it
8f2350e204da scsi: core: Use a structure member to track the SCSI command submitter
29298c85a81a iommu/vt-d: Avoid memory allocation in iommu_suspend()
02e21884dcf2 Linux 5.15.135
c8af81a9d36e xen/events: replace evtchn_rwlock with RCU
c346494ec7f1 parisc: Restore __ldcw_align for PA-RISC 2.0 processors
694e13732e83 ksmbd: fix uaf in smb20_oplock_break_ack
e914c3a47e45 RDMA/mlx5: Fix NULL string error
81b7bf367eea RDMA/siw: Fix connection failure handling
5d8bd138204f RDMA/uverbs: Fix typo of sizeof argument
60c9ed88526d RDMA/cma: Fix truncation compilation warning in make_cma_ports
7f6136ced1b8 RDMA/cma: Initialize ib_sa_multicast structure to 0 when join
1dd6095fc727 gpio: pxa: disable pinctrl calls for MMP_GPIO
844fcf4c697c gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config()
1878d6666c32 IB/mlx4: Fix the size of a buffer in add_port_entries()
718d9b44afca of: dynamic: Fix potential memory leak in of_changeset_action()
e0878f38b661 RDMA/core: Require admin capabilities to set system parameters
18a839064fc6 dm zoned: free dmz->ddev array in dmz_put_zoned_devices
8781fe259dd5 HID: intel-ish-hid: ipc: Disable and reenable ACPI GPE bit
949ccc91c35b HID: sony: remove duplicate NULL check before calling usb_free_urb()
a02c02adc2bd sctp: update hb timer immediately after users change hb_interval
7783b471bfce sctp: update transport state when processing a dupcook packet
1abac613c0d5 tcp: fix delayed ACKs for MSS boundary condition
821b3b00bc0f tcp: fix quick-ack counting to count actual ACKs of new data
24fb22bddb71 tipc: fix a potential deadlock on &tx->lock
2e53585e233c net: stmmac: dwmac-stm32: fix resume on STM32 MCU
74e569324050 ipv4: Set offload_failed flag in fibmatch results
a4b9bbd1d12f netfilter: nf_tables: nft_set_rbtree: fix spurious insertion failure
88497f74d684 netfilter: handle the connecting collision properly in nf_conntrack_proto_sctp
0c9cf5e8807f ibmveth: Remove condition to recompute TCP header checksum.
5a899e2ce848 net: ethernet: ti: am65-cpsw: Fix error code in am65_cpsw_nuss_init_tx_chns()
4837a192f6d0 net: nfc: llcp: Add lock when modifying device list
cda10784a176 net: usb: smsc75xx: Fix uninit-value access in __smsc75xx_read_reg
2801a1ddb26d net: dsa: mv88e6xxx: Avoid EEPROM timeout when EEPROM is absent
cb145e6c2070 ptp: ocp: Fix error handling in ptp_ocp_device_init
cd1189956393 ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data()
147d89ee4143 net: fix possible store tearing in neigh_periodic_work()
bdb4fcf18e16 modpost: add missing else to the "of" check
bc8b89b69638 bpf, sockmap: Reject sk_msg egress redirects to non-TCP sockets
9fb4dfb8e212 NFSv4: Fix a nfs4_state_manager() race
fcdd79fda38a ima: rework CONFIG_IMA dependency block
b67adca1e1be scsi: target: core: Fix deadlock due to recursive locking
9a103e0b100c ima: Finish deprecation of IMA_TRUSTED_KEYRING Kconfig
bb6aee0696c6 regmap: rbtree: Fix wrong register marked as in-cache when creating new node
0cee8c1b3af3 wifi: mt76: mt76x02: fix MT76x0 external LNA gain handling
3f6fbbccba2d drivers/net: process the result of hdlc_open() and add call of hdlc_close() in uhdlc_close()
ebad2e4c4847 bpf: Fix tr dereferencing
5afb996349cb wifi: mwifiex: Fix oob check condition in mwifiex_process_rx_packet
7c8faa310803 wifi: iwlwifi: mvm: Fix a memory corruption issue
5db7af530ebd iwlwifi: avoid void pointer arithmetic
6ff75f524dae wifi: iwlwifi: dbg_ini: fix structure packing
0ea2a6349733 ubi: Refuse attaching if mtd's erasesize is 0
bb0707fde749 HID: sony: Fix a potential memory leak in sony_probe()
8afbacf61919 arm64: Add Cortex-A520 CPU part definition
0da6d21ba235 drm/amd: Fix detection of _PR3 on the PCIe root port
1ad7ccd45a65 net: prevent rewrite of msg_name in sock_sendmsg()
0fb3df94274b net: replace calls to sock->ops->connect() with kernel_connect()
37b54e8acea5 wifi: mwifiex: Fix tlv_buf_left calculation
e80f55d6d2a9 qed/red_ll2: Fix undefined behavior bug in struct qed_ll2_info
1e69422efcc6 vringh: don't use vringh_kiov_advance() in vringh_iov_xfer()
4e2f83952b1d scsi: zfcp: Fix a double put in zfcp_port_enqueue()
310bca649b30 Revert "clk: imx: pll14xx: dynamically configure PLL for 393216000/361267200Hz"
3f59e63568ad block: fix use-after-free of q->q_usage_counter
b75b017b3f37 rbd: take header_rwsem in rbd_dev_refresh() only when updating
33229d783466 rbd: decouple parent info read-in from updating rbd_dev
ab73e7ed79d3 rbd: decouple header read-in from updating rbd_dev->header
b4ddad3fb0ea rbd: move rbd_dev_refresh() definition
bb1fae816c90 iommu/arm-smmu-v3: Avoid constructing invalid range commands
c4edc7b5c836 iommu/arm-smmu-v3: Set TTL invalidation hint better
a98ad3adf60d arm64: Avoid repeated AA64MMFR1_EL1 register read on pagefault path
aad6ba1715ec ring-buffer: Fix bytes info in per_cpu buffer stats
8012d0b05158 ring-buffer: remove obsolete comment for free_buffer_page()
65a218ca516e NFSv4: Fix a state manager thread deadlock regression
8454a2f5e930 NFS: rename nfs_client_kset to nfs_kset
f8b0b6a8e196 NFS: Cleanup unused rpc_clnt variable
686746be7bfb ASoC: tegra: Fix redundant PLLA and PLLA_OUT0 updates
0a210e63844b ASoC: soc-utils: Export snd_soc_dai_is_dummy() symbol
b4f7f1556813 spi: zynqmp-gqspi: fix clock imbalance on probe failure
e514f897ad66 spi: zynqmp-gqspi: Convert to platform remove callback returning void
1edcec18cfb7 Linux 5.15.134
09a683023785 netfilter: nf_tables: fix kdoc warnings after gc rework
66cb6d74f5a1 drm/meson: fix memory leak on ->hpd_notify callback
91f1f025b6d9 fs: binfmt_elf_efpic: fix personality for ELF-FDPIC
1cae7473a6dd ata: libata-sata: increase PMP SRST timeout to 10s
e74adc589922 ata: libata-core: Do not register PM operations for SAS ports
4cbd55a81965 ata: libata-core: Fix port and device removal
ddc525fffb44 ata: libata-core: Fix ata_port_request_pm() locking
2990a195edb5 net: thunderbolt: Fix TCPv6 GSO checksum calculation
132a5ae4136b bpf: Fix BTF_ID symbol generation collision in tools/
58d560e98da5 bpf: Fix BTF_ID symbol generation collision
f8673f651bc1 btrfs: properly report 0 avail for very full file systems
b5d00cd7db66 ring-buffer: Update "shortest_full" in polling
00d2cb8066cb proc: nommu: /proc/<pid>/maps: release mmap read lock
40527ebb3e45 Revert "SUNRPC dont update timeout value on connection reset"
a2b1d486fb70 io_uring/fs: remove sqe->rw_flags checking from LINKAT
111fe77cb13f sched/rt: Fix live lock between select_fallback_rq() and RT push
3569ad59664f kernel/sched: Modify initial boot task idle setup
07f78e97676c i2c: i801: unregister tco_pdev in i801_probe() error path
70df8b9c59bc ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES
a7e0c10a8c33 ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre M70q
0c5fd85fb01f netfilter: nf_tables: disallow rule removal from chain binding
3936e8714907 nilfs2: fix potential use after free in nilfs_gccache_submit_read_data()
2b837f13a818 serial: 8250_port: Check IRQ data before use
a48d2bcd23f2 Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux"
78e70c6238d2 misc: rtsx: Fix some platforms can not boot and move the l1ss judgment to probe
f090a8b4d2e3 x86/srso: Add SRSO mitigation for Hygon processors
f5a604757aa8 iommu/arm-smmu-v3: Fix soft lockup triggered by arm_smmu_mm_invalidate_range
efce75bd2dbc Smack:- Use overlay inode label in smack_inode_copy_up()
0e3450487f99 smack: Retrieve transmuting information in smack_inode_getsecurity()
3586b3feed1b smack: Record transmuting in smk_transmuted
9690ad557d94 nvme-pci: always return an ERR_PTR from nvme_pci_alloc_dev
3c29c6e8cd7c scsi: qla2xxx: Fix NULL pointer dereference in target mode
6e5e4223c897 i40e: fix potential NULL pointer dereferencing of pf->vf i40e_sync_vsi_filters()
aff3994d4bdd watchdog: iTCO_wdt: Set NO_REBOOT if the watchdog is not already running
83a30e945571 watchdog: iTCO_wdt: No need to stop the timer in probe
1e8c573f50a7 nvme-pci: do not set the NUMA node of device if it has none
182d13dadb03 nvme-pci: factor out a nvme_pci_alloc_dev helper
af58072e867c nvme-pci: factor the iod mempool creation into a helper
c8bc44936f2c cgroup: Fix suspicious rcu_dereference_check() usage warning
ce6b88a5853d sched/cpuacct: Optimize away RCU read lock
b1deb155524e perf build: Define YYNOMEM as YYNOABORT for bison < 3.81
86e65ffc4d0f fbdev/sh7760fb: Depend on FB=y
4bf0044fe43f ncsi: Propagate carrier gain/loss events to the NCSI controller
288990ec3580 powerpc/watchpoints: Annotate atomic context in more places
47a94e87f00c powerpc/watchpoint: Disable pagefaults when getting user instruction
7eb09f70d9c2 powerpc/watchpoints: Disable preemption in thread_change_pc()
134b01a39077 media: vb2: frame_vector.c: replace WARN_ONCE with a comment
baf7cf0fdb83 ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link
9da93c74490c bpf: Clarify error expectations from bpf_clone_redirect
e1a8b79ad768 ASoC: fsl: imx-pcm-rpmsg: Add SNDRV_PCM_INFO_BATCH flag
45e028accbdf spi: stm32: add a delay before SPI disable
25850bf83dcd spi: nxp-fspi: reset the FLSHxCR1 registers
50662d21e414 ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset()
8e3cdab909db smb3: correct places where ENOTSUPP is used instead of preferred EOPNOTSUPP
d540a4370aba scsi: pm80xx: Avoid leaking tags when processing OPC_INB_SET_CONTROLLER_CONFIG command
fde57d7ba9b3 scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command
a1589abd7c4a drm/amdgpu: Handle null atom context in VBIOS info ioctl
fd334cfd8412 drm/amd/display: Don't check registers, if using AUX BL control
a8bc0f6357af platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig
344f2f3e61a9 ring-buffer: Do not attempt to read past "commit"
3db9b420709b selftests: fix dependency checker script
4aa90e624c30 btrfs: improve error message after failure to add delayed dir index item
53e7c559b7bf ring-buffer: Avoid softlockup in ring_buffer_resize()
b4874f72cf57 selftests/ftrace: Correctly enable event in instance-event.tc
8c5c9ecbfa8d scsi: ufs: core: Move __ufshcd_send_uic_cmd() outside host_lock
e08e61d50a30 scsi: qedf: Add synchronization between I/O completions and abort
ada7fcba2d6a parisc: irq: Make irq_stack_union static to avoid sparse warning
b7e376a26b0c parisc: drivers: Fix sparse warning
d8c6fad00282 parisc: iosapic.c: Fix sparse warnings
1ecdcfec4e4a parisc: sba: Fix compile warning wrt list of SBA devices
bd1ec7f9983b spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain
ff05ed4ae214 spi: sun6i: reduce DMA RX transfer width to single byte
ac0d06809934 dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lock
d938c3d278d5 i2c: npcm7xx: Fix callback completion ordering
0c615323a745 gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip
2a47ee15a6ab soc: imx8m: Enable OCOTP clock for imx8mm before reading registers
7c59b882b9b3 xtensa: boot/lib: fix function prototypes
70460e81e2d1 xtensa: boot: don't add include-dirs
bc51434b6612 xtensa: iss/network: make functions static
8e0f78a84f64 xtensa: add default definition for XCHAL_HAVE_DIV32
be57fc50dc3c firmware: imx-dsp: Fix an error handling path in imx_dsp_setup_channels()
1df81ea9e4db power: supply: ucs1002: fix error code in ucs1002_get_property()
6937e44ffb91 bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up
0e75aa86a7d0 ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot
1b39eae11752 ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4
fcbf770c66ef ARM: dts: omap: correct indentation
f5e12de36ab3 treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_56.RULE (part 1)
6829bc7978e0 clk: tegra: fix error return case for recalc_rate
78277b096d4c bus: ti-sysc: Fix missing AM35xx SoC matching
5435a49b3b66 bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset()
c39df101d8ca drm/bridge: ti-sn65dsi83: Do not generate HFP/HBP/HSA and EOT packet
4bf10fd51ca5 MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled
d2640d86876e btrfs: reset destination buffer when read_extent_buffer() gets invalid range
1a541999f31f scsi: qla2xxx: Use raw_smp_processor_id() instead of smp_processor_id()
532a23960566 scsi: qla2xxx: Select qpair depending on which CPU post_cmd() gets called
6642b4eb083b ata: ahci: Add Elkhart Lake AHCI controller
072611960741 ata: ahci: Rename board_ahci_mobile
8274154712a0 ata: ahci: Add support for AMD A85 FCH (Hudson D4)
bd69c74dca70 ata: libata: Rename link flag ATA_LFLAG_NO_DB_DELAY
f5ba6d9d6bec netfilter: nft_exthdr: Fix non-linear header modification
7ca3a1b0f474 netfilter: exthdr: add support for tcp option removal
fb6f65780c9c Input: i8042 - add quirk for TUXEDO Gemini 17 Gen1/Clevo PD70PN
191fc23cfa9a Input: i8042 - rename i8042-x86ia64io.h to i8042-acpipnpio.h
5d2b57c0bc40 xfs: fix xfs_inodegc_stop racing with mod_delayed_work
657f842859c4 xfs: disable reaping in fscounters scrub
8444467eadb2 xfs: check that per-cpu inodegc workers actually run on that cpu
67db9ecb84d5 xfs: explicitly specify cpu when forcing inodegc delayed work to run immediately
99e65f075e6c xfs: introduce xfs_inodegc_push()
2df381963240 xfs: bound maximum wait time for inodegc work
08dc21596751 i2c: mux: gpio: Add missing fwnode_handle_put()
f912d9d87421 i2c: mux: gpio: Replace custom acpi_get_local_address()
1aa39eee57f6 i2c: mux: demux-pinctrl: check the return value of devm_kstrdup()
9910b1411e7e gpio: tb10x: Fix an error handling path in tb10x_gpio_probe()
d7acb7031758 Fix up backport of 136191703038 ("interconnect: Teach lockdep about icc_bw_lock order")
d645206e9be2 igc: Expose tx-usecs coalesce setting to user
d7a2bf6faa82 bnxt_en: Flush XDP for bnxt_poll_nitroa0()'s NAPI
56d2418a079a net: ena: Flush XDP packets on error.
07b569051f6e locking/seqlock: Do the lockdep annotation before locking in do_write_seqcount_begin_nested()
a70dbdede0c7 netfilter: ipset: Fix race between IPSET_CMD_CREATE and IPSET_CMD_SWAP
0dcc9b4097d8 netfilter: nf_tables: disable toggling dormant table state more than once
ea82139e6e35 net: rds: Fix possible NULL-pointer dereference
cd05eec2ee0c team: fix null-ptr-deref when team device type is changed
8bc97117b51d net: bridge: use DEV_STATS_INC()
0d3939cccb20 net: hns3: add 5ms delay before clear firmware reset irq source
d6d182d856d0 net: hns3: fix fail to delete tc flower rules during reset issue
7c47b238f4ec net: hns3: only enable unicast promisc when mac table full
96af9a55b782 net: hns3: fix GRE checksum offload issue
13ea4b92e875 x86/srso: Fix SBPB enablement for spec_rstack_overflow=off
e2c34afe8362 x86/srso: Fix srso_show_state() side effect
21efa88e777f platform/x86: intel_scu_ipc: Fail IPC send if still busy
0a5d236b52cf platform/x86: intel_scu_ipc: Don't override scu in intel_scu_ipc_dev_simple_command()
ab78000c38b4 platform/x86: intel_scu_ipc: Check status upon timeout in ipc_wait_for_interrupt()
47329633b3f0 platform/x86: intel_scu_ipc: Check status after timeout in busy_loop()
26df9ab5de30 dccp: fix dccp_v4_err()/dccp_v6_err() again
3b14e8431855 powerpc/perf/hv-24x7: Update domain value check
8860d354f653 ipv4: fix null-deref in ipv4_link_failure
c196ecd3f893 igc: Fix infinite initialization loop with early XDP redirect
a2d69dcb6ccb ionic: fix 16bit math issue when PAGE_SIZE >= 64KB
3796e449a03e i40e: Fix VF VLAN offloading when port VLAN is configured
a628f3b5cd8d i40e: Add VF VLAN pruning
7a9eee3b5d4d iavf: do not process adminq tasks when __IAVF_IN_REMOVE_TASK is set
f3c6a17900e8 ASoC: imx-audmix: Fix return error with devm_clk_get()
f90a7b9586d7 net/core: Fix ETH_P_1588 flow dissector
55629e616452 selftests: tls: swap the TX and RX sockets in some tests
acabf5df49aa bpf: Avoid deadlock when using queue and stack maps from NMI
c6e44f4c31c5 netfilter: nf_tables: disallow element removal on anonymous sets
6a8de7775329 ASoC: meson: spdifin: start hw on dai probe
ef99506eaf1d netfilter: nf_tables: fix memleak when more than 255 elements expired
8d7a00b904da netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration
83d3a4607c58 netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation fails
949369f9f0d9 netfilter: nft_set_pipapo: call nft_trans_gc_queue_sync() in catchall GC
2e6846b613fa netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention
9af7dfb3c9d7 netfilter: nft_set_rbtree: skip sync GC for new elements in this transaction
9366966caf1a netfilter: nf_tables: defer gc run if previous batch is still pending
082791b42123 netfilter: nf_tables: use correct lock to protect gc_list
b44a459c6561 netfilter: nf_tables: GC transaction race with abort path
24707fa1e1f9 netfilter: nf_tables: GC transaction race with netns dismantle
6796800f0d8e netfilter: nf_tables: fix GC transaction races with netns and netlink event exit path
af78b0489e88 netfilter: nf_tables: don't fail inserts if duplicate has expired
8f24fe69e3ca netfilter: nf_tables: remove busy mark and gc batch API
b290795bd26f netfilter: nft_set_hash: mark set element as dead when deleting from packet path
479a2cf52593 netfilter: nf_tables: adapt set backend to use GC transaction API
d19e8bf3ea41 netfilter: nf_tables: GC transaction API to avoid race with control plane
7c7e658a36f8 netfilter: nf_tables: don't skip expired elements during walk
a2d1125ee04e tracing: Have event inject files inc the trace array ref count
6b6c088c38f7 ext4: do not let fstrim block system suspend
a9d3bb58da95 ext4: move setting of trimmed bit into ext4_try_to_trim_range()
d91abea15c61 ext4: replace the traditional ternary conditional operator with with max()/min()
656f0495e4ac ext4: change s_last_trim_minblks type to unsigned long
be57857fb3c3 ext4: scope ret locally in ext4_try_to_trim_range()
e832b55881a1 ata: libahci: clear pending interrupt status
f6189f373151 ata: ahci: Drop pointless VPRINTK() calls and convert the remaining ones
fa6d449e4d02 tracing: Increase trace array ref count on enable and filter files
7a688f191a17 tracing: Make trace_marker{,_raw} stream-like
68fc0e75c793 NFSv4.1: fix pnfs MDS=DS session trunking
0ff78c455494 NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server
d381bfe13895 SUNRPC: Mark the cred for revalidation if the server rejects it
f1c434ddafe6 NFS/pNFS: Report EINVAL errors from connect() to the server
0c0a7e1f2a6a NFS: More fixes for nfs_direct_write_reschedule_io()
a354b4a367f5 NFS: Use the correct commit info in nfs_join_page_group()
b911329317b4 Linux 5.15.133
e3a29b80e9e6 interconnect: Teach lockdep about icc_bw_lock order
c6244cd00c97 drm/amd/display: enable cursor degamma for DCN3+ DRM legacy gamma
08569c92f7f3 net/sched: Retire rsvp classifier
6b080fa8aae1 drm/amdgpu: fix amdgpu_cs_p1_user_fence
6386a2d4dc01 drm/amd/display: fix the white screen issue when >= 64GB DRAM
e04b7073bdce ext4: fix rec_len verify error
93763d58705a scsi: pm8001: Setup IRQs on resume
72a22696cf19 scsi: megaraid_sas: Fix deadlock on firmware crashdump
54603e8a88bc ata: libata: disallow dev-initiated LPM transitions to unsupported states
01c7c38a90bc i2c: aspeed: Reset the i2c controller when timeout occurs
763d39f4e8fb tracefs: Add missing lockdown check to tracefs_create_dir()
bf195968e362 nfsd: fix change_info in NFSv4 RENAME replies
bf38c1d29f8b tracing: Have option files inc the trace array ref count
85ad4688b7a7 tracing: Have current_trace inc the trace array ref count
962e6723239b tracing: Have tracing_max_latency inc the trace array ref count
380bbd46d61c btrfs: release path before inode lookup during the ino lookup ioctl
779c3cf2749c btrfs: fix lockdep splat and potential deadlock after failure running delayed items
f9c78afcee46 ovl: fix incorrect fdput() on aio completion
05a7289a5d4b ovl: fix failed copyup of fileattr on a symlink
8bcb80293be7 attr: block mode changes of symlinks
d30af15e460f md/raid1: fix error: ISO C90 forbids mixed declarations
abdfde037712 samples/hw_breakpoint: fix building without module unloading
58787ff3d023 x86/purgatory: Remove LTO flags
8abf1ec895d5 x86/boot/compressed: Reserve more memory for page tables
e1a27664fcf5 scsi: lpfc: Fix the NULL vs IS_ERR() bug for debugfs_create_file()
f0fd24f1fae0 selftests: tracing: Fix to unmount tracefs for recovering environment
dded6b81ad68 scsi: qla2xxx: Fix NULL vs IS_ERR() bug for debugfs_create_dir()
1d5caeac9655 drm: gm12u320: Fix the timeout usage for usb_bulk_msg()
b9f0572b38c1 btrfs: compare the correct fsid/metadata_uuid in btrfs_validate_super
cba491ee38e2 btrfs: add a helper to read the superblock metadata_uuid
cb3671a2eeac btrfs: move btrfs_pinned_by_swapfile prototype into volumes.h
f16fe29368fd perf test shell stat_bpf_counters: Fix test on Intel
ad73216e006f perf test: Remove bash construct from stat_bpf_counters.sh test
d8f81baeb9eb MIPS: Use "grep -E" instead of "egrep"
dfe961b1e476 mtd: rawnand: brcmnand: Fix ECC level field setting for v7.2 controller
56cf9f446b33 mtd: rawnand: brcmnand: Allow SoC to provide I/O operations
34fcb59437a7 jbd2: correct the end of the journal recovery scan range
a4605449cc9f jbd2: rename jbd_debug() to jbd2_debug()
db6c90f2671c jbd2: kill t_handle_lock transaction spinlock
e9270898222a jbd2: fix use-after-free of transaction_t race
b0412dd1c24b jbd2: refactor wait logic for transaction updates into a common function
f980bf1586ef printk: Consolidate console deferred printing
9be2957f014d interconnect: Fix locking for runpm vs reclaim
f3f6bf22a4f5 kobject: Add sanity check for kset->kobj.ktype in kset_register()
81bbe6667024 media: pci: ipu3-cio2: Initialise timing struct to avoid a compiler warning
d4ef3c9c7947 usb: ehci: add workaround for chipidea PORTSC.PEC bug
c829d25e26fb serial: cpm_uart: Avoid suspicious locking
5353df78c226 scsi: target: iscsi: Fix buffer overflow in lio_target_nacl_info_show()
b97aaf9faf89 tools: iio: iio_generic_buffer: Fix some integer type and calculation
60a71fd1910e usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc
c861a61be6d3 usb: cdns3: Put the cdns set active part outside the spin lock
930c60e13947 media: pci: cx23885: replace BUG with error return
48bb6a9fa5cb media: tuners: qt1010: replace BUG_ON with a regular error
2a33fc57133d media: dvb-usb-v2: gl861: Fix null-ptr-deref in gl861_i2c_master_xfer
5b1ea100ad36 media: az6007: Fix null-ptr-deref in az6007_i2c_xfer()
3dd5846a8739 media: anysee: fix null-ptr-deref in anysee_master_xfer
033b0c0780ad media: af9005: Fix null-ptr-deref in af9005_i2c_xfer
903566208ae6 media: dw2102: Fix null-ptr-deref in dw2102_i2c_transfer()
d9ef84a7c222 media: dvb-usb-v2: af9035: Fix null-ptr-deref in af9035_i2c_master_xfer
ca49cef3acaa PCI: fu740: Set the number of MSI vectors
d35e7ae10eb8 powerpc/pseries: fix possible memory leak in ibmebus_bus_init()
46870eea5496 ARM: 9317/1: kexec: Make smp stop calls asynchronous
ef7311101ca4 jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount
aa5b019a3e0f fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount()
7ac65c29b6c2 ext2: fix datatype of block number in ext2_xattr_set2()
4f96c0665f9f md: raid1: fix potential OOB in raid1_remove_disk()
f3e9fc7b02b9 bus: ti-sysc: Configure uart quirks for k3 SoC
3157aa794c75 drm/exynos: fix a possible null-pointer dereference due to data race in exynos_drm_crtc_atomic_disable()
78bc9d25997a drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN31
5eca70c14b31 ALSA: hda: intel-dsp-cfg: add LunarLake support
e8ba418d4926 samples/hw_breakpoint: Fix kernel BUG 'invalid opcode: 0000'
961df5a3f5cc arm64: dts: qcom: sm8250-edo: correct ramoops pmsg-size
49cd54900078 arm64: dts: qcom: sm8150-kumano: correct ramoops pmsg-size
1e0a38bb840a arm64: dts: qcom: sm6125-pdx201: correct ramoops pmsg-size
201071956ec6 drm/bridge: tc358762: Instruct DSI host to generate HSE packets
c64ee9dd3358 wifi: mac80211_hwsim: drop short frames
66594a1e6ddd netfilter: ebtables: fix fortify warnings in size_entry_mwt()
fedd9377dd9c wifi: mac80211: check S1G action frame size
e08333e2abae alx: fix OOB-read compiler warning
2b0a093cdf59 mmc: sdhci-esdhc-imx: improve ESDHC_FLAG_ERR010450
0a1f87f0ca76 tpm_tis: Resend command to recover from data transfer errors
67589d247909 crypto: lib/mpi - avoid null pointer deref in mpi_cmp_ui()
389106425dee wifi: wil6210: fix fortify warnings
ddb8f358b5e0 wifi: mwifiex: fix fortify warning
a7ebe459c72e wifi: ath9k: fix printk specifier
3de6b6ab69e2 wifi: ath9k: fix fortify warnings
6b0adfafb073 crypto: lrw,xts - Replace strlcpy with strscpy
dc100292e503 devlink: remove reload failed checks in params get/set callbacks
7b7964cd9db3 ACPI: x86: s2idle: Catch multiple ACPI_TYPE_PACKAGE objects
eda268b5b7ad hw_breakpoint: fix single-stepping when using bpf_overflow_handler
6e743b7261ef perf/imx_ddr: speed up overflow frequency of cycle
f9a2c79c2970 perf/smmuv3: Enable HiSilicon Erratum 162001900 quirk for HIP08/09
ed1afb597280 ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470
f685311dbe05 scftorture: Forgive memory-allocation failure if KASAN
4f03fba096bf rcuscale: Move rcu_scale_writer() schedule_timeout_uninterruptible() to _idle()
f1ceff37ac6b kernel/fork: beware of __put_task_struct() calling context
430787056dd3 ACPICA: Add AML_NO_OPERAND_RESOLVE flag to Timer
766e56faddbe locks: fix KASAN: use-after-free in trace_event_raw_event_filelock_lock
6994f806c6d1 btrfs: output extra debug info if we failed to find an inline backref
71eeddcad734 autofs: fix memory leak of waitqueues in autofs_catatonic_mode
35ecaa3632bf Linux 5.15.132
0c0d79f3366a pcd: fix error codes in pcd_init_unit()
893978f1b4d1 drm/amd/display: Fix a bug when searching for insert_above_mpcc
0b8e09b39ef3 MIPS: Only fiddle with CHECKFLAGS if `need-compiler'
55d2e7c1ab8e kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg().
e80228b27487 ixgbe: fix timestamp configuration code
5b55dac919ec ipv6: fix ip6_sock_set_addr_preferences() typo
481bd6dcc5fe net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict()
3600c0dc0deb platform/mellanox: mlxbf-pmc: Fix reading of unprogrammed events
07c0abc80604 platform/mellanox: mlxbf-pmc: Fix potential buffer overflows
7c34ea34516d platform/mellanox: mlxbf-tmfifo: Drop jumbo frames
694035201aac platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors
97275339c34c kcm: Fix memory leak in error path of kcm_sendmsg()
864da4a5d5eb r8152: check budget for r8152_poll()
fbdc4e9908b2 net: dsa: sja1105: hide all multicast addresses from "bridge fdb show"
6a4480c5e6eb hsr: Fix uninit-value access in fill_frame_info()
072324cfab9b net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in mtk_hwlro_get_fdir_all()
5bb09dddc724 net: ethernet: mvpp2_main: fix possible OOB write in mvpp2_ethtool_get_rxnfc()
06b4934ab2b5 net/smc: use smc_lgr_list.lock to protect smc_lgr_list.list iterate in smcr_port_add
aea3801c234d kselftest/runner.sh: Propagate SIGTERM to runner child
2f1e86014d0c net: ipv4: fix one memleak in __inet_del_ifa()
f086e859ddc2 ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2
8173d9027031 ARM: dts: samsung: exynos4210-i9100: Fix LCD screen's physical size
072cd213c64f block: don't add or resize partition on the disk with GENHD_FL_NO_PART
c6ce1c5dd327 block: rename GENHD_FL_NO_PART_SCAN to GENHD_FL_NO_PART
6c06a7f6b41c block: move GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE to disk->event_flags
8247ff0d5036 block: move GENHD_FL_NATIVE_CAPACITY to disk->state
5ad42b999a42 pcd: cleanup initialization
7607bc7fe6cc pcd: move the identify buffer into pcd_identify
242bbe218814 perf hists browser: Fix the number of entries for 'e' key
4d7a8a44e030 perf tools: Handle old data in PERF_RECORD_ATTR
a8f91f480c62 perf hists browser: Fix hierarchy mode header
4ee1cf2a5bcc MIPS: Fix CONFIG_CPU_DADDI_WORKAROUNDS `modules_install' regression
df4d8d5ab647 drm/amd/display: prevent potential division by zero errors
3b51d016bbbf mtd: rawnand: brcmnand: Fix potential false time out warning
2353b7bb61e4 mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write
b59ff750bf80 mtd: rawnand: brcmnand: Fix crash during the panic_write
ca5218aef9e5 btrfs: use the correct superblock to compare fsid in btrfs_validate_super
f3260733894a btrfs: don't start transaction when joining with TRANS_JOIN_NOSTART
7ef0e8b812e0 btrfs: free qgroup rsv on io failure
5fd6f40d17e8 fuse: nlookup missing decrement in fuse_direntplus_link
65b6890c3d01 ata: pata_ftide010: Add missing MODULE_DESCRIPTION
0b62825dc6c3 ata: sata_gemini: Add missing MODULE_DESCRIPTION
81dd61cb1caa ata: pata_falcon: fix IO base selection for Q40
20bc2c470369 lib: test_scanf: Add explicit type cast to result initialization in test_number_prefix()
4315b4a95ecf ext4: add correct group descriptors and reserved GDT blocks to system zone
ef5fea70e591 jbd2: check 'jh->b_transaction' before removing it from checkpoint
6778a3857266 jbd2: fix checkpoint cleanup performance regression
6b195e07a2cf dmaengine: sh: rz-dmac: Fix destination and source data size setting
0476f2016ddc ARC: atomics: Add compiler barrier to atomic operations...
3375186d5e3f net/mlx5: Free IRQ rmap and notifier on kernel shutdown
2348a375ee16 sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory()
f5160dc17e81 net: hns3: remove GSO partial feature bit
6d548b7cb216 net: hns3: fix the port information display when sfp is absent
cc3c67e08169 net: hns3: fix invalid mutex between tc qdisc and dcb ets command issue
2c9643fa6360 net: hns3: fix debugfs concurrency issue between kfree buffer and read
8bfa87cf4a86 net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read()
19280e8dfb52 netfilter: nfnetlink_osf: avoid OOB read
1ad7b189cc14 netfilter: nftables: exthdr: fix 4-byte stack OOB write
347f765176db net: dsa: sja1105: complete tc-cbs offload support on SJA1110
cb4494cfe4b7 net: dsa: sja1105: fix -ENOSPC when replacing the same tc-cbs too many times
77b850b84d21 net: dsa: sja1105: fix bandwidth discrepancy between tc-cbs software and offload
d11109c03d6e ip_tunnels: use DEV_STATS_INC()
fcfb5842ef9c idr: fix param name in idr_alloc_cyclic() doc
131cd74a8e38 s390/zcrypt: don't leak memory if dev_set_name() fails
12de76fdddb5 igb: Change IGB_MIN to allow set rx/tx value between 64 and 80
7c2f90b1c213 igbvf: Change IGBVF_MIN to allow set rx/tx value between 64 and 80
f4c5640d6d38 igc: Change IGC_MIN to allow set rx/tx value between 64 and 80
9210b3dd74ac octeontx2-af: Fix truncation of smq in CN10K NIX AQ enqueue mbox handler
1840f08c2a1b kcm: Destroy mutex in kcm_exit_net()
6ea277b2c626 net: sched: sch_qfq: Fix UAF in qfq_dequeue()
3868de7c5361 af_unix: Fix data race around sk->sk_err.
d95456660fae af_unix: Fix data-races around sk->sk_shutdown.
e5edc6e44a88 af_unix: Fix data-race around unix_tot_inflight.
9151ed4b0061 af_unix: Fix data-races around user->unix_inflight.
907fbed65cec net: phy: micrel: Correct bit assignments for phy_device flags
5d2d3f2300c3 net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr
77dd55f5ec6a veth: Fixing transmit return status for dropped packets
56603b2c82e3 igb: disable virtualization features on 82580
149bc7834d6f ipv4: ignore dst hint for multipath routes
e18b49495a52 drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt()
5979985f2d6b xsk: Fix xsk_diag use-after-free error during socket cleanup
49acc5c5b280 net: fib: avoid warn splat in flow dissector
ed4e0adfa407 net: read sk->sk_family once in sk_mc_loop()
e0b483a0584f ipv4: annotate data-races around fi->fib_dead
74df0319e4e2 sctp: annotate data-races around sk->sk_wmem_queued
973a4c302d7f net/sched: fq_pie: avoid stalls in fq_pie_timer()
5e22217c1142 pwm: lpc32xx: Remove handling of PWM channels
676152264dec watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load
d6aa2be1379d perf top: Don't pass an ERR_PTR() directly to perf_session__delete()
79bd17c99ec9 perf vendor events: Drop some of the JSON/events for power10 platform
1356eaceef34 perf vendor events: Update the JSON/events descriptions for power10 platform
24481d5c7413 x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm()
6e9863165674 perf annotate bpf: Don't enclose non-debug code with an assert()
184be0d59242 Input: tca6416-keypad - fix interrupt enable disbalance
0b79f5a19cfb Input: tca6416-keypad - always expect proper IRQ number in i2c client
1e3167aa4ba2 backlight: gpio_backlight: Drop output GPIO direction check for initial power state
6fc8bdc3cf4c pwm: atmel-tcb: Fix resource freeing in error path and remove
6b2bb1a1a63c pwm: atmel-tcb: Harmonize resource allocation order
d4734ef765eb pwm: atmel-tcb: Convert to platform remove callback returning void
c3bc668581e7 perf trace: Really free the evsel->priv area
8e96f741b328 perf trace: Use zfree() to reduce chances of use after free
414cf7a2cc87 kconfig: fix possible buffer overflow
be9ce0dbde4f gfs2: low-memory forced flush fixes
751facd3634c gfs2: Switch to wait_event in gfs2_logd
d0245b066971 kbuild: do not run depmod for 'make modules_sign'
05333a6a21e3 bus: mhi: host: Skip MHI reset if device is in RDDM
e2964c98ec31 NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info
da302f1d476a NFS: Fix a potential data corruption
0db19df21be5 clk: qcom: mss-sc7180: fix missing resume during probe
f64f682be7c8 clk: qcom: q6sstop-qcs404: fix missing resume during probe
b2f39b813d1e soc: qcom: qmi_encdec: Restrict string length in decode
e61db8922631 clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock
a8474506c912 clk: imx: pll14xx: dynamically configure PLL for 393216000/361267200Hz
a69b951c8398 dt-bindings: clock: xlnx,versal-clk: drop select:false
ead2436cf05e pinctrl: cherryview: fix address_space_handler() argument
8859f58c1790 parisc: led: Reduce CPU overhead for disk & lan LED computation
2655e1d970cf parisc: led: Fix LAN receive and transmit LEDs
7ad44409cd3b lib/test_meminit: allocate pages up to order MAX_ORDER
2d8138cea71d clk: qcom: turingcc-qcs404: fix missing resume during probe
9f5db4ab19f8 drm/ast: Fix DRAM init on AST2200
cfc47807a482 clk: qcom: camcc-sc7180: fix async resume during probe
309c27162afe fbdev/ep93xx-fb: Do not assign to struct fb_info.dev
4316e951f164 scsi: qla2xxx: Fix firmware resource tracking
7b89c3727bff scsi: qla2xxx: Error code did not return to upper layer
15a71bb25beb scsi: qla2xxx: Fix smatch warn for qla_init_iocb_limit()
106392156273 scsi: qla2xxx: Flush mailbox commands on chip reset
def49a05aef4 scsi: qla2xxx: Remove unsupported ql2xenabledif option
be12c9f4c60c scsi: qla2xxx: Fix TMF leak through
4322f3de9f21 scsi: qla2xxx: Fix session hang in gnl
a4708402c458 scsi: qla2xxx: Turn off noisy message log
b0453b0cf506 scsi: qla2xxx: Fix erroneous link up failure
5934b2125f5b scsi: qla2xxx: Fix command flush during TMF
4a16a46c8481 scsi: qla2xxx: fix inconsistent TMF timeout
f1ea164be545 scsi: qla2xxx: Fix deletion race condition
683945b17724 scsi: qla2xxx: Limit TMF to 8 per function
fde268c234d1 scsi: qla2xxx: Adjust IOCB resource on qpair create
c29848249f78 io_uring: break iopolling on signal
0def123f1254 io_uring: break out of iowq iopoll on teardown
1a0aba2bf293 io_uring: always lock in io_apoll_task_func
2920cc4c64a1 net/ipv6: SKB symmetric hash should incorporate transport ports
529bcc70c49c udf: initialize newblock to 0
fae2d591f3cb Revert "drm/amdgpu: install stub fence into potential unused fence pointers"
f01e21d6c7ed md/md-bitmap: remove unnecessary local variable in backlog_store()
99a8d14d7965 tracing: Zero the pipe cpumask on alloc to avoid spurious -EBUSY
05c581ad3e7b perf/x86/uncore: Correct the number of CHAs on EMR
861cfdc51f22 x86/sgx: Break up long non-preemptible delays in sgx_vepc_release()
7e3ddbea87a9 USB: core: Fix oversight in SuperSpeed initialization
7fe9d8799606 USB: core: Fix race by not overwriting udev->descriptor in hub_port_init()
eda9a2966582 USB: core: Change usb_get_device_descriptor() API
56c49a3328e9 USB: core: Unite old scheme and new scheme descriptor reads
0ad6bad31da6 usb: typec: bus: verify partner exists in typec_altmode_attention
31220bd89c22 usb: typec: tcpm: set initial svdm version based on pd revision
3acc6b9f266f cpufreq: brcmstb-avs-cpufreq: Fix -Warray-bounds bug
cb65ad51f1bd crypto: stm32 - fix loop iterating through scatterlist for DMA
9ab2c149c2e7 s390/ipl: add missing secure/has_secure file to ipl type 'unknown'
6aff2732577c arm64: sdei: abort running SDEI handlers during crash
fedecaeef888 pstore/ram: Check start of empty przs during init
8d68582b93e6 mmc: renesas_sdhi: register irqs before registering controller
5294144b6ad2 fsverity: skip PKCS#7 parser when keyring is empty
86608e1b0c6f net: handle ARPHRD_PPP in dev_is_mac_header_xmit()
51ffed9ca1a4 X.509: if signature is unsupported skip validation
6ecf09699eb1 dccp: Fix out of bounds access in DCCP error handler
7a2978e8d3c0 dlm: fix plock lookup when using multiple lockspaces
703cf47d47ba parisc: Fix /proc/cpuinfo output for lscpu
49a49d442075 procfs: block chmod on /proc/thread-self/comm
44f6ec589353 Revert "PCI: Mark NVIDIA T4 GPUs to avoid bus reset"
d73d3787c9d1 ntb: Fix calculation ntb_transport_tx_free_entry()
da0c7293f4db ntb: Clean up tx tail index on link down
bfa051f650a7 ntb: Drop packets when qp link is down
8f4edcd65534 scsi: mpt3sas: Perform additional retries if doorbell read returns 0
58388f2958f6 Revert "scsi: qla2xxx: Fix buffer overrun"
bd188d1e3855 media: venus: hfi_venus: Write to VIDC_CTRL_INIT after unmasking interrupts
6e9632a01e6d media: dvb: symbol fixup for dvb_attach()
9a43563cfd6b arm64: csum: Fix OoB access in IP checksum code for negative lengths
a0a49da2a79a i3c: master: svc: fix probe failure when no i3c device exist
a905ac21b2ab xtensa: PMU: fix base address for the newer hardware
8742dbf9c25d backlight/lv5207lp: Compare against struct fb_info.device
568132f74cb1 backlight/bd6107: Compare against struct fb_info.device
4e7b4ddc900c backlight/gpio_backlight: Compare against struct fb_info.device
3b018c3d1016 ARM: OMAP2+: Fix -Warray-bounds warning in _pwrdm_state_switch()
cbb7d8a4b4be ipmi_si: fix a memleak in try_smi_init()
6043dd31f771 PCI: rockchip: Use 64-bit mask on MSI 64-bit PCI address
aba1bf197467 media: i2c: ccs: Check rules is non-NULL
df64819dd6a0 mm/vmalloc: add a safer version of find_vm_area() for debug
20b7d0a62ad1 scsi: core: Fix the scsi_set_resid() documentation
20990d6a8543 printk: ringbuffer: Fix truncating buffer size min_t cast
0a22f9c17b1a rcu: dump vmalloc memory info safely
d479c841b18d ALSA: pcm: Fix missing fixup call in compat hw_refine ioctl
111bafa210ae PM / devfreq: Fix leak in devfreq_dev_release()
be7353af5b35 igb: set max size RX buffer when store bad packet is enabled
d5790386595d skbuff: skb_segment, Call zero copy functions before using skbuff frags
267a29f8bfdb netfilter: xt_sctp: validate the flag_info count
b3d07714ad24 netfilter: xt_u32: validate user space input
a9e6142e5f8f netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for ip_set_hash_netportnet.c
3e48f741e98a igmp: limit igmpv3_newpack() packet size to IP_MAX_MTU
de16cb7986f2 virtio_ring: fix avail_wrap_counter in virtqueue_add_packed
d6f80ddb9eda cpufreq: Fix the race condition while updating the transition_task of policy
42d8c7fa0bf6 dmaengine: ste_dma40: Add missing IRQ check in d40_probe
329d0f168c8f um: Fix hostaudio build errors
58d17e766093 mtd: rawnand: fsmc: handle clk prepare error in fsmc_nand_resume()
679a71b31179 mtd: spi-nor: Check bus width while setting QE bit
8869fd166f23 leds: trigger: tty: Do not use LED_ON/OFF constants, use led_blink_set_oneshot instead
0f715ea7d36e leds: multicolor: Use rounded division when calculating color components
1a68bef23726 leds: pwm: Fix error code in led_pwm_create_fwnode()
abd740db896b rpmsg: glink: Add check for kstrdup
b45cf29f97a2 phy/rockchip: inno-hdmi: do not power on rk3328 post pll on reg write
40d637359f3f phy/rockchip: inno-hdmi: round fractal pixclock in rk3328 recalc_rate
52942a47d034 phy/rockchip: inno-hdmi: use correct vco_div_5 macro on rk3328
31d7e6c7689b mtd: rawnand: brcmnand: Fix mtd oobsize
6182318ac046 tracing: Fix race issue between cpu buffer write and swap
548f48ec1915 tracing: Remove extra space at the end of hwlat_detector/mode
2ba8bb00720a x86/speculation: Mark all Skylake CPUs as vulnerable to GDS
dde88ab4e45b HID: multitouch: Correct devm device reference for hidinput input_dev name
4fb28379b3c7 HID: logitech-dj: Fix error handling in logi_dj_recv_switch_to_dj_mode()
1bb42aca7a96 Revert "IB/isert: Fix incorrect release of isert connection"
4f1807fddd9b amba: bus: fix refcount leak
1c3701373463 serial: tegra: handle clk prepare error in tegra_uart_hw_init()
076fb40cf27a scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock
c4772759abe1 scsi: core: Use 32-bit hostnum in scsi_host_lookup()
6248f4305378 cgroup:namespace: Remove unused cgroup_namespaces_init()
04824d50e6b5 media: i2c: rdacm21: Fix uninitialized value
f3572eef8551 media: ov2680: Fix regulators being left enabled on ov2680_power_on() errors
205f71744176 media: ov2680: Fix ov2680_set_fmt() which == V4L2_SUBDEV_FORMAT_TRY not working
89ecb4b40094 media: ov2680: Add ov2680_fill_format() helper function
784d1b83ae2c media: ov2680: Don't take the lock for try_fmt calls
dbb717b4ee68 media: ov2680: Remove VIDEO_V4L2_SUBDEV_API ifdef-s
4c1a5c2885d4 media: ov2680: Fix vflip / hflip set functions
958905ed42b8 media: ov2680: Fix ov2680_bayer_order()
cdd5fca7200d media: ov2680: Remove auto-gain and auto-exposure controls
322a805ffdff media: i2c: ov2680: Set V4L2_CTRL_FLAG_MODIFY_LAYOUT on flips
abba34017e16 media: ov5640: Enable MIPI interface in ov5640_set_power_mipi()
1717f67be875 USB: gadget: f_mass_storage: Fix unused variable warning
121b8d30f42c media: venus: hfi_venus: Only consider sys_idle_indicator on V1
f6b483ead6dc media: go7007: Remove redundant if statement
d079a3e1ccdd platform/x86: dell-sysman: Fix reference leak
426bd7418701 iommu/vt-d: Fix to flush cache of PASID directory table
9dc6f660815a iommu/qcom: Disable and reset context bank before programming
3274e32fc969 fsi: aspeed: Reset master errors after CFAM reset
7a17deca33e1 IB/uverbs: Fix an potential error pointer dereference
42d111304dd7 RDMA/hns: Fix CQ and QP cache affinity
b051c3bf3bdf RDMA/hns: Fix incorrect post-send with direct wqe of wr-list
154822356e4d RDMA/hns: Fix port active speed
de4aca5b284e iommu/sprd: Add missing force_aperture
46b76f13f1ad driver core: test_async: fix an error code
a6992ecefe5d dma-buf/sync_file: Fix docs syntax
d3256d80406c coresight: tmc: Explicit type conversions to prevent integer overflow
93a5b461a4e1 RDMA/irdma: Replace one-element array with flexible-array member
97097ea2f37e scsi: qedf: Do not touch __user pointer in qedf_dbg_fp_int_cmd_read() directly
1c996be7f233 scsi: qedf: Do not touch __user pointer in qedf_dbg_debug_cmd_read() directly
cb6d20a8b5d7 scsi: qedf: Do not touch __user pointer in qedf_dbg_stop_io_on_error_cmd_read() directly
2f0d202d82b9 x86/APM: drop the duplicate APM_MINOR_DEV macro
f34508d934c4 serial: sprd: Fix DMA buffer leak issue
c54c66d904fa serial: sprd: Assign sprd_port after initialized to avoid wrong access
f61fc650c478 scsi: qla4xxx: Add length check when parsing nlattrs
46ad449efde1 scsi: be2iscsi: Add length check when parsing nlattrs
4bd57d889099 scsi: iscsi: Add strlen() check in iscsi_if_set{_host}_param()
e9bac3cc744f scsi: iscsi: Add length check for nlattr payload
9285efd95996 scsi: iscsi: Rename iscsi_set_param() to iscsi_if_set_param()
7231d60d41c4 scsi: RDMA/srp: Fix residual handling
484ddaa90b7e usb: phy: mxs: fix getting wrong state with mxs_phy_is_otg_host()
cbb8f7097e11 media: mediatek: vcodec: Return NULL if no vdec_fb is found
18dc93de9019 media: rkvdec: increase max supported height for H.264
f1e7d999f37e scsi: hisi_sas: Fix normally completed I/O analysed as failed
46d1b2a3d5a6 scsi: hisi_sas: Fix warnings detected by sparse
e454e985950b scsi: hisi_sas: Modify v3 HW SATA completion error processing
7caac45b52f4 scsi: hisi_sas: Modify v3 HW SSP underflow error processing
f64d02822b82 media: cx24120: Add retval check for cx24120_message_send()
7ca7cd02114a media: dvb-usb: m920x: Fix a potential memory leak in m920x_i2c_xfer()
fb24b65aaccd media: dib7000p: Fix potential division by zero
56a3d8ae4576 drivers: usb: smsusb: fix error handling code in smsusb_init_device
d1b51b130d32 iommu: rockchip: Fix directory table address encoding
a50d60b8f2af iommu/amd/iommu_v2: Fix pasid_state refcount dec hit 0 warning on pasid unbind
caf058833b6f media: v4l2-core: Fix a potential resource leak in v4l2_fwnode_parse_link()
711e9e44f6c4 media: i2c: tvp5150: check return value of devm_kasprintf()
30d4380eb030 media: ad5820: Drop unsupported ad5823 from i2c_ and of_device_id tables
663114dfc178 RDMA/qedr: Remove a duplicate assignment in irdma_query_ah()
1473e40b3912 pNFS: Fix assignment of xprtdata.cred
fb7ddc1138b0 NFSv4.2: fix handling of COPY ERR_OFFLOAD_NO_REQ
53a1e5ab1b11 NFS: Guard against READDIR loop when entry names exceed MAXNAMELEN
19a648a07572 NFSD: da_addr_body field missing in some GETDEVICEINFO replies
b0f127a7c635 fs: lockd: avoid possible wrong NULL parameter
8f994b830dd0 jfs: validate max amount of blocks before allocation.
f6a84ef1d080 ext4: fix unttached inode after power cut with orphan file feature enabled
a9ddbfed5346 powerpc/iommu: Fix notifiers being shared by PCI and VIO buses
a70c8de30514 nfs/blocklayout: Use the passed in gfp flags
2935443dc9c2 powerpc/pseries: Rework lppaca_shared_proc() to avoid DEBUG_PREEMPT
75dcb650a7ef powerpc: Don't include lppaca.h in paca.h
cefcb002c5c9 PCI: layerscape: Add workaround for lost link capabilities during reset
4be323c73797 PCI: layerscape: Add the endpoint linkup notifier support
69c712389e1f PCI: dwc: Add start_link/stop_link inlines
aac0a9a1577b wifi: ath10k: Use RMW accessors for changing LNKCTL
3539bab5f9de wifi: ath11k: Use RMW accessors for changing LNKCTL
ea670d0146a3 net/mlx5: Use RMW accessors for changing LNKCTL
348ef09df984 drm/radeon: Use RMW accessors for changing LNKCTL
5468237382ed drm/amdgpu: Use RMW accessors for changing LNKCTL
00f79e78bf4b powerpc/perf: Convert fsl_emb notifier to state machine callbacks
a26a5e4be2c4 powerpc/fadump: reset dump area size if fadump memory reserve fails
13fd667db999 vfio/type1: fix cap_migration information leak
6b708243d3d9 powerpc/radix: Move some functions into #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
dbde1d9c54e2 clk: imx: composite-8m: fix clock pauses when set_rate would be a no-op
824e97302fd8 clk: imx8mp: fix sai4 clock
66ef144dbdf9 PCI/ASPM: Use RMW accessors for changing LNKCTL
f46fa8ab8d82 PCI: pciehp: Use RMW accessors for changing LNKCTL
759d978e831b pinctrl: mcp23s08: check return value of devm_kasprintf()
02faf0bd6fdc PCI: Mark NVIDIA T4 GPUs to avoid bus reset
4c20a4143276 PCI: microchip: Correct the DED and SEC interrupt bit offsets
377f7aeddda0 clk: qcom: gcc-sm6350: Fix gcc_sdcc2_apps_clk_src
1c4a98c55fa3 clk: qcom: reset: Use the correct type of sleep/delay based on length
bd4eff9c835a clk: qcom: gcc-sm8250: Fix gcc_sdcc2_apps_clk_src
b1cb8bf42b36 ext4: avoid potential data overflow in next_linear_group
3e24082f1682 ext4: correct grp validation in ext4_mb_good_group
febacbefe451 EDAC/igen6: Fix the issue of no error events
964f62caac08 clk: qcom: gcc-sc7180: Fix up gcc_sdcc2_apps_clk_src
f1399e1543e7 clk: sunxi-ng: Modify mismatched function name
92913d32e719 drivers: clk: keystone: Fix parameter judgment in _of_pll_clk_init()
3ad53071fe85 ipmi:ssif: Fix a memory leak when scanning for an adapter
7792869495b6 ipmi:ssif: Add check for kstrdup
53abafedfeb7 ALSA: ac97: Fix possible error value of *rac97
48fc5717b249 of: unittest: Fix overlay type in apply/revert check
01bb96ad3808 of: overlay: Call of_changeset_init() early
30f04a41e7d7 md: raid0: account for split bio in iostat accounting
9643cc0b1771 md/raid0: Fix performance regression for large sequential writes
17fbf7da491f md/raid0: Factor out helper for mapping and submitting a bio
d04f1e322f52 md: add error_handlers for raid0 and linear
d8b6adb84041 md: Set MD_BROKEN for RAID1 and RAID10
a68fabdad970 bus: ti-sysc: Fix cast to enum warning
7636dfc42b66 arm64: dts: qcom: apq8016-sbc: Fix ov5640 regulator supply names
fff4d36247e8 drm/mediatek: Fix potential memory leak if vmap() fail
e5758ad9a34f drm/mediatek: Remove freeing not dynamic allocated memory
97274bea0136 bus: ti-sysc: Fix build warning for 64-bit build
cc6b09671d0c io_uring: fix drain stalls by invalid SQE
0152e7758cc4 audit: fix possible soft lockup in __audit_inode_child()
48e4c4819039 drm/msm/a2xx: Call adreno_gpu_init() earlier
76c3ad12441f drm/amd/pm: fix variable dereferenced issue in amdgpu_device_attr_create()
32e060927351 smackfs: Prevent underflow in smk_set_cipso()
502dfc5875ba firmware: meson_sm: fix to avoid potential NULL pointer dereference
c0b1eee64870 drm/msm/mdp5: Don't leak some plane state
d0b82c217feb drm: xlnx: zynqmp_dpsub: Add missing check for dma_set_mask
b7b0c48851c4 ima: Remove deprecated IMA_TRUSTED_KEYRING Kconfig
8025396b76e9 drm/panel: simple: Add missing connector type and pixel format for AUO T215HVN01
27eee65b2e31 drm/armada: Fix off-by-one error in armada_overlay_get_property()
cc9254b24a4b arm64: dts: qcom: sm8150: Fix the I2C7 interrupt
ea5bc6f5aa09 of: unittest: fix null pointer dereferencing in of_unittest_find_node_by_name()
4197eeb55f4b drm/tegra: dpaux: Fix incorrect return value of platform_get_irq
9712279e9743 drm/msm: Update dev core dump to not print backwards
8ef5d1f16d92 md/md-bitmap: hold 'reconfig_mutex' in backlog_store()
382638364711 md/bitmap: don't set max_write_behind if there is no write mostly device
a3d36107ee48 md/raid10: use dereference_rdev_and_rrdev() to get devices
94ca5eed9530 md/raid10: factor out dereference_rdev_and_rrdev()
246bac7d3c3e drm/amdgpu: Update min() to min_t() in 'amdgpu_info_ioctl'
de93b4711ac2 arm64: dts: qcom: sdm845: Fix the min frequency of "ice_core_clk"
a9e56fa8a0ca arm64: dts: qcom: sdm845: Add missing RPMh power domain to GCC
db0ba312542d ARM: dts: BCM53573: Fix Ethernet info for Luxul devices
c4413633ef78 drm: adv7511: Fix low refresh rate register for ADV7533/5
57b6d92c79e9 ARM: dts: samsung: s5pv210-smdkv210: correct ethernet reg addresses (split)
b7f47031e319 ARM: dts: s5pv210: add dummy 5V regulator for backlight on SMDKv210
2f0246b3c7ff ARM: dts: samsung: s3c6410-mini6410: correct ethernet reg addresses (split)
d12beb1b1ee5 ARM: dts: s3c64xx: align pinctrl with dtschema
188f2d41fa5d x86/mm: Fix PAT bit missing from page protection modify mask
1dd43e1e54d5 drm/etnaviv: fix dumping of active MMU context
1634fe406c34 arm64: dts: qcom: pmi8994: Add missing OVP interrupt
4b7eb5e2c1c4 arm64: dts: qcom: Move WLED num-strings from pmi8994 to sony-xperia-tone
92919d98e673 arm64: dts: qcom: pmi8994: Remove hardcoded linear WLED enabled-strings
365909857242 arm64: dts: qcom: pm660l: Add missing short interrupt
ea48fd91df12 arm64: dts: qcom: correct SPMI WLED register range encoding
eee01e0d6abe arm64: dts: qcom: pmi8998: Add node for WLED
b788afdbfd5a arm64: dts: qcom: sm8250-sony-xperia: correct GPIO keys wakeup again
2840d9b9c875 ARM: dts: BCM53573: Use updated "spi-gpio" binding properties
b35f3ca1877e ARM: dts: BCM53573: Add cells sizes to PCIe node
bed08bb83292 drm/amdgpu: avoid integer overflow warning in amdgpu_device_resize_fb_bar()
261e69456617 arm64: dts: qcom: sm8250: Mark PCIe hosts as DMA coherent
12a93e53eaf0 arm64: dts: qcom: pmk8350: fix ADC-TM compatible string
4c9a637258bb arm64: dts: qcom: sm8350: Use proper CPU compatibles
4c918fb77dea arm64: dts: qcom: sm8350: Add missing LMH interrupts to cpufreq
9c022ab2db40 arm64: dts: qcom: msm8996: Add missing interrupt to the USB2 controller
bda65ecaec97 arm64: dts: qcom: sm8250-edo: Rectify gpio-keys
6119aaced94f arm64: dts: qcom: sm8250-edo: Add GPIO line names for PMIC GPIOs
c0dc9d7d3f2b arm64: dts: qcom: sm8250-edo: Add gpio line names for TLMM
d2d698daa1fa arm64: dts: qcom: sm8250: correct dynamic power coefficients
510bae3d37f7 soc: qcom: ocmem: Fix NUM_PORTS & NUM_MACROS macros
b08c7a31baeb soc: qcom: ocmem: Add OCMEM hardware version print
dc04034502e6 ASoC: stac9766: fix build errors with REGMAP_AC97
89602de9a2d7 quota: fix dqput() to follow the guarantees dquot_srcu should provide
1df46e717ee9 quota: add new helper dquot_active()
bd0a6452f070 quota: rename dquot_active() to inode_quota_active()
5b8240223407 quota: factor out dquot_write_dquot()
6c6efd3a1d06 drm/bridge: tc358764: Fix debug print parameter order
a48e7def0006 netrom: Deny concurrent connect().
4cf994d3f4ff net/sched: sch_hfsc: Ensure inner classes have fsc curve
edb5b1b3b9f8 hwmon: (tmp513) Fix the channel number in tmp51x_is_visible()
a85fd8116555 mlxsw: i2c: Limit single transaction buffer size
7790b6a2f5f0 mlxsw: i2c: Fix chunk size setting in output mailbox buffer
510e0cbd6408 net: arcnet: Do not call kfree_skb() under local_irq_disable()
93a572b9d42f wifi: ath9k: use IS_ERR() with debugfs_create_dir()
5138beea8e7f Bluetooth: btusb: Do not call kfree_skb() under spin_lock_irqsave()
d7fd24b8d1bb wifi: mwifiex: avoid possible NULL skb pointer dereference
71ce8be48bf0 wifi: nl80211/cfg80211: add forgotten nla_policy for BSS color attribute
11f93fff6e8a wifi: ath9k: protect WMI command response buffer replacement with a lock
6904c7afd512 wifi: ath9k: fix races between ath9k_wmi_cmd and ath9k_wmi_ctrl_rx
cec7db9ea031 samples/bpf: fix broken map lookup probe
89f19a9a055d wifi: mwifiex: Fix missed return in oob checks failed path
308eb3a609ac wifi: mwifiex: fix memory leak in mwifiex_histogram_read()
9c00731bf05d fs: ocfs2: namei: check return value of ocfs2_add_entry()
f683992d30ee lwt: Check LWTUNNEL_XMIT_CONTINUE strictly
e3f647e4b642 lwt: Fix return values of BPF xmit ops
4ff998134025 hwrng: iproc-rng200 - Implement suspend and resume calls
5a70ab6b59b2 crypto: caam - fix unchecked return value error
660b6b1c5cf8 ice: ice_aq_check_events: fix off-by-one check when filling buffer
55fab9389d65 net-memcg: Fix scope of sockmem pressure indicators
41c40d84838d selftests/bpf: Clean up fmod_ret in bench_rename test script
50c78e71446d net: tcp: fix unexcepted socket die when snd_wnd is 0
942d8cefb022 Bluetooth: Fix potential use-after-free when clear keys
7b0243d26a71 Bluetooth: nokia: fix value check in nokia_bluetooth_serdev_probe()
048545d9fc64 crypto: api - Use work queue in crypto_destroy_instance
56cb7bbefcaf crypto: stm32 - Properly handle pm_runtime_get failing
e3c4a6b073e4 selftests/bpf: fix static assert compilation issue for test_cls_*.c
43423b3e0467 wifi: mwifiex: fix error recovery in PCIE buffer descriptor management
7c54b6fc39eb wifi: mwifiex: Fix OOB and integer underflow when rx packets
a20b96cf6925 wifi: mt76: mt7915: fix power-limits while chan_switch
5c75a4379589 can: gs_usb: gs_usb_receive_bulk_callback(): count RX overflow errors also in case of OOM
890843254f38 spi: tegra20-sflash: fix to check return value of platform_get_irq() in tegra_sflash_probe()
2ff9ac0cf25f wifi: mt76: testmode: add nla_policy for MT76_TM_ATTR_TX_LENGTH
802008e8c73a ipv6: Add reasons for skb drops to __udp6_lib_rcv
7dcbc0bb0e5c bpf: reject unhashed sockets in bpf_sk_assign
caa2883b1885 udp: re-score reuseport groups when connected sockets are present
b60dfa4559d8 regmap: rbtree: Use alloc_flags for memory allocations
34f1180658d9 hwrng: pic32 - use devm_clk_get_enabled
5af3c8676b36 hwrng: nomadik - keep clock enabled while hwrng is registered
14c6d1e80847 tcp: tcp_enter_quickack_mode() should be static
7b75b4c90a9e bpf: Clear the probe_addr for uprobe
75d3960be702 bpftool: Use a local bpf_perf_event_value to fix accessing its fields
8ea6871116d5 cpufreq: powernow-k8: Use related_cpus instead of cpus in driver.exit()
be2092d2a703 x86/efistub: Fix PCI ROM preservation in mixed mode
9eb25ea7b65d ACPI: x86: s2idle: Fix a logic error parsing AMD constraints table
26097a7f28b3 ACPI: x86: s2idle: Post-increment variables when getting constraints
8a962f11a95b s390/paes: fix PKEY_TYPE_EP11_AES handling for secure keyblobs
7833a74f8d00 s390/pkey: fix/harmonize internal keyblob headers
208383d68510 selftests/futex: Order calls to futex_lock_pi
c7802ff51adc perf/imx_ddr: don't enable counter0 if none of 4 counters are used
0a872a0521c8 x86/decompressor: Don't rely on upper 32 bits of GPRs being preserved
3af6f77e8090 selftests/resctrl: Close perf value read fd on errors
4505ad996b66 selftests/resctrl: Unmount resctrl FS if child fails to run benchmark
c68a196e7ff6 selftests/resctrl: Don't leak buffer in fill_cache()
fdcb63afd3f6 selftests/resctrl: Add resctrl.h into build deps
b2ba11ed4d10 selftests/resctrl: Make resctrl_tests run using kselftest framework
e0478944f4a5 OPP: Fix passing 0 to PTR_ERR in _opp_attach_genpd()
ec9d118ad99d refscale: Fix uninitalized use of wait_queue_head_t
e280033ef135 ARM: ptrace: Restore syscall skipping for tracers
4c3f33904dea ARM: ptrace: Restore syscall restart tracing
0481251b7cd6 selftests/harness: Actually report SKIP for signal tests
060ca3f7899a tmpfs: verify {g,u}id mount options correctly
d412e9b34b90 fs: Fix error checking for d_hash_and_lookup()
a4229f93bc54 eventfd: prevent underflow for eventfd semaphores
cedb8719333d reiserfs: Check the return value from __getblk()
c1a4117f1544 Revert "net: macsec: preserve ingress frame ordering"
40671f90d5b5 udf: Handle error when adding extent to a file
099bf90d7fc4 udf: Check consistency of Space Bitmap Descriptor
7039aa1be9cc of: kexec: Mark ima_{free,stable}_kexec_buffer() as __init
759d51eda2d0 net: Avoid address overwrite in kernel_connect
7c4cce5700b9 arm64: lib: Import latest version of Arm Optimized Routines' strncmp
104df1c695c1 crypto: rsa-pkcs1pad - Use helper to set reqsize
273f4615314f platform/mellanox: Fix mlxbf-tmfifo not handling all virtio CONSOLE notifications
9ef5c25bcf1b tracing: Introduce pipe_cpumask to avoid race on trace_pipes
8c1b60dad0f5 ALSA: seq: oss: Fix racy open/close of MIDI devices
fa05aea28195 scsi: lpfc: Fix incorrect big endian type assignment in bsg loopback path
f0bf8a071134 scsi: storvsc: Always set no_report_opcodes
e9e62419e797 sctp: handle invalid error codes without calling BUG()
3714bb4a1df8 bnx2x: fix page fault following EEH recovery
53b8cc2f9685 netlabel: fix shift wrapping bug in netlbl_catmap_setlong()
867cdd7f9544 drm/amdgpu: Match against exact bootloader status
0863204deb3c net: hns3: restore user pause configure when disable autoneg
ac93def0dbb4 scsi: qedi: Fix potential deadlock on &qedi_percpu->p_work_lock
bef6c89a92d0 scsi: lpfc: Remove reftag check in DIF paths
b439e33a8c93 idmaengine: make FSL_EDMA and INTEL_IDMA64 depends on HAS_IOMEM
156b803194ae wifi: brcmfmac: Fix field-spanning write in brcmf_scan_params_v2_to_v1()
87ea5e89407e net: usb: qmi_wwan: add Quectel EM05GV2
e1313fa9d2e3 vmbus_testing: fix wrong python syntax for integer value comparison
5faad57ba6c7 clk: fixed-mmio: make COMMON_CLK_FIXED_MMIO depend on HAS_IOMEM
e13f0dd5fbe2 kprobes: Prohibit probing on CFI preamble symbol
ee49b97cb5ae security: keys: perform capable check only on privileged operations
f44f50305de2 ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer()
a85c523aeccd ovl: Always reevaluate the file signature for IMA
3faa126258a9 drm/amd/display: Exit idle optimizations before attempt to access PHY
c152ca4f219b platform/x86: huawei-wmi: Silence ambient light sensor
a9988b9c7a31 platform/x86/intel/hid: Add HP Dragonfly G2 to VGBS DMI quirks
7f3901b04c8f platform/x86: intel: hid: Always call BTNL ACPI method
23151421ed01 ASoC: atmel: Fix the 8K sample parameter in I2SC master
c934d2a6970c ASoC: rt711-sdca: fix for JD event handling in ClockStop Mode0
20587011d271 ASoC: rt711: fix for JD event handling in ClockStop Mode0
b41f79896456 ASoc: codecs: ES8316: Fix DMIC config
cc2b0a2055dc ASoC: rt5682-sdw: fix for JD event handling in ClockStop Mode0
5b64fc2471f9 fs/nls: make load_nls() take a const parameter
f85908f6bfd2 s390/dasd: fix hanging device after request requeue
a4845e694893 s390/dasd: use correct number of retries for ERP requests
e062aa1acf9b m68k: Fix invalid .section syntax
bbfa7d712b24 vxlan: generalize vxlan_parse_gpe_hdr and remove unused args
b10215ffdb01 ethernet: atheros: fix return value check in atl1c_tso_csum()
6bb94f46d31a ASoC: da7219: Check for failure reading AAD IRQ events
279a6dad0cd9 ASoC: da7219: Flush pending AAD IRQ when suspending
d424c636b750 ksmbd: no response from compound read
82373d1b763e ksmbd: fix out of bounds in smb3_decrypt_req()
20d449a08749 9p: virtio: make sure 'offs' is initialized in zc_request
c4269c7258d9 media: pci: cx23885: fix error handling for cx23885 ATSC boards
17d75773b66e media: pulse8-cec: handle possible ping error
f281a3739399 phy: qcom-snps-femto-v2: use qcom_snps_hsphy_suspend/resume error code
dfff9c91cbb0 ARM: dts: imx: Set default tuning step for imx7d usdhc
4e364cab1331 ARM: dts: imx: Adjust dma-apbh node name
99319298fd9a ARM: dts: imx7s: Drop dma-apb interrupt-names
1dc2c12854b6 ARM: dts: imx: update sdma node name format
aff03380bda4 Linux 5.15.131
cd8ab566cf17 usb: typec: tcpci: clear the fault status bit
403b2e940910 usb: typec: tcpci: move tcpci.h to include/linux/usb/
f29483873e24 pinctrl: amd: Don't show `Invalid config param` errors
b911bef132a0 nilfs2: fix WARNING in mark_buffer_dirty due to discarded buffer reuse
1c6ddf739f15 nilfs2: fix general protection fault in nilfs_lookup_dirty_data_buffers()
f6e61aef5c5d tcpm: Avoid soft reset when partner does not support get_status
da0e7d435e31 fsi: master-ast-cf: Add MODULE_FIRMWARE macro
72eca651d732 firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe
907216337bea serial: sc16is7xx: fix bug when first setting GPIO direction
45d9611ebff2 serial: sc16is7xx: fix broken port 0 uart init
f90e267dd27e serial: qcom-geni: fix opp vote on shutdown
46d13013b574 wifi: mt76: mt7921: do not support one stream on secondary antenna only
a5c2a467e9e7 Bluetooth: btsdio: fix use after free bug in btsdio_remove due to race condition
f49294ad6898 staging: rtl8712: fix race condition
d17cec60e87c HID: wacom: remove the battery when the EKR is off
842c7da3eee2 usb: chipidea: imx: improve logic if samsung,picophy-* parameter is 0
276a906f81a7 usb: dwc3: meson-g12a: do post init to fix broken usb after resumption
60f938e84fbb ALSA: usb-audio: Fix init call orders for UAC1
e949dd2a9b6b USB: serial: option: add FOXCONN T99W368/T99W373 product
c41411d8b333 USB: serial: option: add Quectel EM05G variant (0x030e)
09baa839d415 modules: only allow symbol_get of EXPORT_SYMBOL_GPL modules
997a194914c4 rtc: ds1685: use EXPORT_SYMBOL_GPL for ds1685_rtc_poweroff
3d0f6408601b net: enetc: use EXPORT_SYMBOL_GPL for enetc_phc_index
da95090821c4 mmc: au1xmmc: force non-modular build and remove symbol_get usage
e3e68100c036 ARM: pxa: remove use of symbol_get()
bb5bf157b5be ksmbd: replace one-element array with flex-array member in struct smb2_ea_info
2e3f57f74c0a ksmbd: fix wrong DataOffset validation of create context
b3ad7f39fd85 erofs: ensure that the post-EOF tails are all zeroed
8f790700c974 Linux 5.15.130
69347c334071 rcu-tasks: Add trc_inspect_reader() checks for exiting critical section
8046fb611f70 rcu-tasks: Wait for trc_read_check_handler() IPIs
da22db901cc1 rcu-tasks: Fix IPI failure handling in trc_wait_for_one_reader
a0249d365ac8 rcu: Prevent expedited GP from enabling tick on offline CPU
7aec063d6029 ARM: module: Use module_init_layout_section() to spot init sections
4a8976052acd arm64: module: Use module_init_layout_section() to spot init sections
f8a74159d116 arm64: module-plts: inline linux/moduleloader.h
363bbb5008e5 module: Expose module_init_layout_section()
758e3d0cb753 ACPI: thermal: Drop nocrt parameter
9e43368a3393 Linux 5.15.129
d48016d74836 mm,ima,kexec,of: use memblock_free_late from ima_free_kexec_buffer
1c41cd30d5cd mm: memory-failure: fix unexpected return value in soft_offline_page()
0712721e4f4f mm: memory-failure: kill soft_offline_free_page()
efd02b5cadd5 dma-buf/sw_sync: Avoid recursive lock during fence signal
8dbf913520c4 pinctrl: renesas: rza2: Add lock around pinctrl_generic{{add,remove}_group,{add,remove}_function}
f1c0402b8e22 clk: Fix undefined reference to `clk_rate_exclusive_{get,put}'
10bc3eddc605 scsi: core: raid_class: Remove raid_component_add()
d3d57cdbfda4 scsi: snic: Fix double free in snic_tgt_create()
ef56cc8889be can: raw: add missing refcount for memory leak fix
930f3f164964 drm/i915: Fix premature release of request's reusable memory
3cb86cc565df cgroup/cpuset: Free DL BW in case can_attach() fails
ffff4fc4bad7 sched/deadline: Create DL BW alloc, free & check overflow interface
86aa90795979 cgroup/cpuset: Iterate only if DEADLINE tasks are present
43d8cbfefa7c sched/cpuset: Keep track of SCHED_DEADLINE task in cpusets
d0eb4917f4d3 sched/cpuset: Bring back cpuset_mutex
918879de0e23 cgroup/cpuset: Rename functions dealing with DEADLINE accounting
78efab71a649 torture: Fix hang during kthread shutdown phase
c8fb97dd7fe6 nfsd: use vfs setgid helper
01966511868e nfs: use vfs setgid helper
a7a1849899aa x86/fpu: Set X86_FEATURE_OSXSAVE feature after enabling OSXSAVE in CR4
ad79f943c869 x86/fpu: Invalidate FPU state correctly on exec()
b190cf1f277a drm/display/dp: Fix the DP DSC Receiver cap size
c8aab333d41a drm/vmwgfx: Fix shader stage validation
b53ed415163e PCI: acpiphp: Use pci_assign_unassigned_bridge_resources() only for non-root bus
60ba1bfa036a media: vcodec: Fix potential array out-of-bounds in encoder queue_setup
544cd10defa1 of: dynamic: Refactor action prints to not use "%pOF" inside devtree_lock
f1d4a5881856 of: unittest: Fix EXPECT for parse_phandle_with_args_map() test
ce66cd478636 radix tree: remove unused variable
898c8c5b1114 lib/clz_ctz.c: Fix __clzdi2() and __ctzdi2() for 32-bit kernels
ff90a4c6edf8 batman-adv: Hold rtnl lock during MTU update via netlink
ea38c0d9aaa2 batman-adv: Fix batadv_v_ogm_aggr_send memory leak
7f3f72eb8f5b batman-adv: Fix TT global entry leak when client roamed back
f7667b49880a batman-adv: Do not get eth header before batadv_check_management_packet
3f9312dd7581 batman-adv: Don't increase MTU when set by user
cde5a240d72d batman-adv: Trigger events for auto adjusted MTU
22426e1ce679 selinux: set next pointer before attaching to list
711595bfdccf nfsd: Fix race to FREE_STATEID and cl_revoked
bd1697e12230 NFS: Fix a use after free in nfs_direct_join_group()
5f642613746e mm: add a call to flush_cache_vmap() in vmap_pfn()
440c10034b4d ALSA: ymfpci: Fix the missing snd_card_free() call at probe error
5cc7d81cf576 clk: Fix slab-out-of-bounds error in devm_clk_release()
0f72859acfa2 NFSv4: Fix dropped lock for racing OPEN and delegation return
9c025420fef2 ibmveth: Use dcbf rather than dcbfl
7e546bd08943 Revert "KVM: x86: enable TDP MMU by default"
67af12f5582b net/ncsi: change from ndo_set_mac_address to dev_set_mac_address
4451457d61e0 net/ncsi: make one oem_gma function for all mfr id
f683f4be802b bonding: fix macvlan over alb bond support
0fa8046e923a net: remove bond_slave_has_mac_rcu()
f0ec97fca629 rtnetlink: Reject negative ifindexes in RTM_NEWLINK
00247cfd2b69 rtnetlink: return ENODEV when ifname does not exist and group is given
75cfb7de44e5 netfilter: nf_tables: fix out of memory error handling
f22954f8c58f netfilter: nf_tables: flush pending destroy work before netlink notifier
ff34403fef98 net/sched: fix a qdisc modification with ambiguous command request
30624ea3f8b6 igc: Fix the typo in the PTM Control macro
f697c3ead109 igb: Avoid starting unnecessary workqueues
d7823d752ce1 ice: fix receive buffer size miscalculation
ace1b0ae3097 net: validate veth and vxcan peer ifindexes
335be585416d net: bcmgenet: Fix return value check for fixed_phy_register()
60a5034584ea net: bgmac: Fix return value check for fixed_phy_register()
5b52c9ba42c0 ipvlan: Fix a reference count leak warning in ipvlan_ns_exit()
2bad37b6f675 dccp: annotate data-races in dccp_poll()
9b015360e86f sock: annotate data-races around prot->memory_pressure
c52c6c0223e1 octeontx2-af: SDP: fix receive link config
ce6e2b14bc09 tracing: Fix memleak due to race between current_tracer and trace
ef748360ba91 tracing: Fix cpu buffers unavailable due to 'record_disabled' missed
fdf5804d7475 can: raw: fix lockdep issue in raw_release()
278fccf587dd drm/amd/display: check TG is non-null before checking if enabled
a955e6a0e39d drm/amd/display: do not wait for mpc idle if tg is disabled
e0bd4f0c60b4 can: raw: fix receiver memory leak
b832174b7f89 jbd2: fix a race when checking checkpoint buffer busy
9c31bb2684f8 jbd2: remove journal_clean_one_cp_list()
d91783e6864a jbd2: remove t_checkpoint_io_list
a0ab49e7a758 ALSA: pcm: Fix potential data race at PCM memory allocation helpers
2e56d380daa9 fbdev: fix potential OOB read in fast_imageblit()
14163f4a4fa6 fbdev: Fix sys_imageblit() for arbitrary image widths
5b60bd9081a9 fbdev: Improve performance of sys_imageblit()
166f0bf4560b MIPS: cpu-features: Use boot_cpu_type for CPU type based features
8f106e97409d MIPS: cpu-features: Enable octeon_cache by cpu_type
d1d0b239f974 fs: dlm: fix mismatch of plock results from userspace
77d334c44681 fs: dlm: use dlm_plock_info for do_unlock_close
f9a33cc7d946 fs: dlm: change plock interrupted message to debug again
7ac088841ffb fs: dlm: add pid to debug log
df9c842ab0a4 dlm: replace usage of found with dedicated list iterator variable
33e9c610e337 dlm: improve plock logging if interrupted
d9ce077f8b1f PCI: acpiphp: Reassign resources on bridge if necessary
8cc8645dd3e1 xprtrdma: Remap Receive buffers after a reconnect
91a707507e83 NFSv4: fix out path in __nfs4_get_acl_uncached
323b830eebd1 NFSv4.2: fix error handling in nfs42_proc_getxattr
5de0a325c45e objtool/x86: Fix SRSO mess
5ddfe5cc8716 Linux 5.15.128
9080f4fcc202 x86/srso: Correct the mitigation status when SMT is disabled
484eefc6ff9c objtool/x86: Fixup frame-pointer vs rethunk
55f1cbeaa159 x86/retpoline,kprobes: Fix position of thunk sections with CONFIG_LTO_CLANG
fa24cd0fbcb7 x86/srso: Disable the mitigation on unaffected configurations
aa0777ce0d3d x86/CPU/AMD: Fix the DIV(0) initial fix attempt
bbe585239d4f x86/retpoline: Don't clobber RFLAGS during srso_safe_ret()
19f23d16b0e0 x86/static_call: Fix __static_call_fixup()
df6495f203a7 x86/srso: Explain the untraining sequences a bit more
43548590ad7e x86/cpu: Cleanup the untrain mess
035e906bfc93 x86/cpu: Rename srso_(.*)_alias to srso_alias_\1
19c1c0499650 x86/cpu: Rename original retbleed methods
f77dbb90962b x86/cpu: Clean up SRSO return thunk mess
f624ce6c7fc2 x86/ibt: Add ANNOTATE_NOENDBR
f1171d455d94 objtool: Add frame-pointer-specific function ignore
08f7cfd44f77 x86/alternative: Make custom return thunk unconditional
0d810eff090c x86/cpu: Fix up srso_safe_ret() and __x86_return_thunk()
8089aae6020e x86/cpu: Fix __x86_return_thunk symbol type
5b28fda5fdee mmc: f-sdh30: fix order of function calls in sdhci_f_sdh30_remove
e8c5081da2cc net: fix the RTO timer retransmitting skb every 1ms if linear option is enabled
431db3f48c28 virtio-net: set queues after driver_ok
d39fc9b94dc0 af_unix: Fix null-ptr-deref in unix_stream_sendpage().
9a4d8dc706c2 arm64: dts: rockchip: Disable HS400 for eMMC on ROCK Pi 4
6b64974e02ea exfat: check if filename entries exceeds max filename length
6065b3017107 netfilter: set default timeout to 3 secs for sctp shutdown send and recv state
a00c5d2c208b drm/amd: flush any delayed gfxoff on suspend entry
d578c919deb7 drm/qxl: fix UAF on handle creation
ff09f9e671ff mmc: block: Fix in_flight[issue_type] value error
b803fedb6e50 mmc: wbsd: fix double mmc_free_host() in wbsd_init()
961f7ce16223 cifs: Release folio lock on fscache read hit.
cc3f194f46e7 ALSA: usb-audio: Add support for Mythware XA001AU capture and playback interfaces.
18e27df4f2b4 serial: 8250: Fix oops for port->pm on uart_change_pm()
e9b8ee715dbc riscv: uaccess: Return the number of bytes effectively not copied
b2a331abcb03 ALSA: hda/realtek - Remodified 3k pull low procedure
dfb9676ed25b soc: aspeed: socinfo: Add kfree for kstrdup
c5ac7522a8db ASoC: meson: axg-tdm-formatter: fix channel slot allocation
fd346ef1cd2d ASoC: rt5665: add missed regulator_bulk_disable
e878458d820c ARM: dts: imx: Set default tuning step for imx6sx usdhc
430c29a54e4a arm64: dts: qcom: qrb5165-rb5: fix thermal zone conflict
03522d73a498 bus: ti-sysc: Flush posted write on enable before reset
578371ce0d7f net: do not allow gso_size to be set to GSO_BY_FRAGS
5fc4fd3f3eb8 sock: Fix misuse of sk_under_memory_pressure()
fc3d82d295d1 net: dsa: mv88e6xxx: Wait for EEPROM done before HW reset
f11c2802e143 i40e: fix misleading debug logs
5ba2b936f3e1 iavf: fix FDIR rule fields masks validation
ae6834689fd6 team: Fix incorrect deletion of ETH_P_8021AD protocol vid from slaves
0ffbc341cfae net: phy: broadcom: stub c45 read/write for 54810
bf221e5e4b19 netfilter: nft_dynset: disallow object maps
9177869b85dd ipvs: fix racy memcpy in proc_do_sync_threshold
1adaec4758d1 netfilter: nf_tables: deactivate catchall elements in next generation
82109740d610 netfilter: nf_tables: fix false-positive lockdep splat
b2f6d73395cb drm/panel: simple: Fix AUO G121EAN01 panel timings according to the docs
7207ee323afa selftests: mirror_gre_changes: Tighten up the TTL test match
c2a6ffe3f1a3 net: phy: fix IRQ-based wake-on-lan over hibernate / power off
8e5e967348ca xfrm: add forgotten nla_policy for XFRMA_MTIMER_THRESH
075448a2eb75 xfrm: add NULL check in xfrm_update_ae_params
e1e04cc2ef2c ip_vti: fix potential slab-use-after-free in decode_session6
a1639a82ce14 ip6_vti: fix slab-use-after-free in decode_session6
44b3d4096700 xfrm: fix slab-use-after-free in decode_session6
a465ace883ac net: xfrm: Amend XFRMA_SEC_CTX nla_policy structure
fed1cd2cd3aa net: af_key: fix sadb_x_filter validation
1960f468078b net: xfrm: Fix xfrm_address_filter OOB read
080dedb1cad8 i2c: designware: Handle invalid SMBus block data response length value
416c538684bd i2c: designware: Correct length byte validation logic
b966e9e1e250 btrfs: fix BUG_ON condition in btrfs_cancel_balance
77698e6ff6f0 tty: serial: fsl_lpuart: Clear the error flags by writing 1 for lpuart32 platforms
2a5234464383 tty: n_gsm: fix the UAF caused by race condition in gsm_cleanup_mux
8ef25fb13494 powerpc/rtas_flash: allow user copy to flash block cache objects
bb70e2b70f8d fbdev: mmp: fix value check in mmphw_probe()
184f1b68bb99 i2c: hisi: Only handle the interrupt of the driver's transfer
c4e671dae50e i2c: bcm-iproc: Fix bcm_iproc_i2c_isr deadlock issue
b99f490ea87e cifs: fix potential oops in cifs_oplock_break
a5ae5a81bc19 vduse: Use proper spinlock for IRQ injection
5b7d5c2dd664 virtio-mmio: don't break lifecycle of vm_dev
edf3b5aadb25 btrfs: move out now unused BG from the reclaim list
170773563ef6 ARM: dts: nxp/imx6sll: fix wrong property name in usbphy node
4ffbfe1c980f ARM: dts: imx6sll: fixup of operating points
e2ff5cf681a8 mmc: sunxi: fix deferred probing
f93e8c5a7bd9 mmc: bcm2835: fix deferred probing
4eeba5d476fe USB: dwc3: fix use-after-free on core driver unbind
a78fe5c9d8d5 USB: dwc3: qcom: fix NULL-deref on suspend
8a6b7534020d tty: serial: fsl_lpuart: reduce RX watermark to 0 on LS1028A
701bb5fee7c3 tty: serial: fsl_lpuart: make rx_watermark configurable for different platforms
fa254ab7d02d tty: serial: fsl_lpuart: Add i.MXRT1050 support
20351ddb1f41 usb: dwc3: gadget: Improve dwc3_gadget_suspend() and dwc3_gadget_resume()
31a0e60fe16b USB: dwc3: gadget: drop dead hibernation code
d9e004104e45 usb: dwc3: Fix typos in gadget.c
2fa487a94667 usb: dwc3: Remove DWC3 locking during gadget suspend/resume
7dfb384e76ee usb: dwc3: gadget: Synchronize IRQ between soft connect/disconnect
d3c82f24ee69 drm/amd/display: fix access hdcp_workqueue assert
0ba6c7ba081e drm/amd/display: phase3 mst hdcp for multiple displays
99c444d3c3c4 drm/amd/display: save restore hdcp state when display is unplugged from mst hub
4f1beb75f652 ARM: dts: aspeed: asrock: Correct firmware flash SPI clocks
f84c2ca3490c igc: read before write to SRRCTL register
9fa82f031af8 iio: addac: stx104: Fix race condition when converting analog-to-digital
d31d04ec404c iio: addac: stx104: Fix race condition for stx104_write_raw()
89a007f3a383 iio: stx104: Move to addac subdirectory
cadf8f2d7c9d iio: adc: stx104: Implement and utilize register structures
6089d354346f iio: adc: stx104: Utilize iomap interface
565b96d9a7ab iio: add addac subdirectory
49b830d75f03 ring-buffer: Do not swap cpu_buffer during resize process
6657ecbcc39c powerpc/kasan: Disable KCOV in KASAN code
8703b26387e1 ALSA: hda: fix a possible null-pointer dereference due to data race in snd_hdac_regmap_sync()
5ed4dbc13726 ALSA: hda/realtek: Add quirks for Unis H3C Desktop B760 & Q760
c7d8b5f46f06 fs/ntfs3: Mark ntfs dirty when on-disk struct is corrupted
3a00ec562f8c fs: ntfs3: Fix possible null-pointer dereferences in mi_read()
e7799bb4dbe2 fs/ntfs3: Enhance sanity check while generating attr_list
ef568da1fd84 drm/amdgpu: Fix potential fence use-after-free v2
5720c7e185d4 Bluetooth: btusb: Add MT7922 bluetooth ID for the Asus Ally
548a6b64b3c0 Bluetooth: L2CAP: Fix use-after-free
302d04596364 watchdog: sp5100_tco: support Hygon FCH/SCH (Server Controller Hub)
2ea70379e4f4 firewire: net: fix use after free in fwnet_finish_incoming_packet()
97fd1c8e9c5a pcmcia: rsrc_nonstatic: Fix memory leak in nonstatic_release_resource_db()
85e888150075 gfs2: Fix possible data races in gfs2_show_options()
eafb79d2448a usb: chipidea: imx: add missing USB PHY DPDM wakeup setting
7bdb4c963049 usb: chipidea: imx: don't request QoS for imx8ulp
25decbbb66e4 thunderbolt: Read retimer NVM authentication status prior tb_retimer_set_inbound_sbtx()
776b34615a29 media: platform: mediatek: vpu: fix NULL ptr dereference
cb174344bf85 usb: gadget: u_serial: Avoid spinlock recursion in __gs_console_push
1676748aa290 media: v4l2-mem2mem: add lock to protect parameter num_rdy
985086704267 smb: client: fix warning in cifs_smb3_do_mount()
a3f252436e57 ovl: check type and offset of struct vfsmount in ovl_entry
1a650d3ccd79 RDMA/mlx5: Return the firmware result upon destroying QP/RQ
9631d88503ab HID: add quirk for 03f0:464a HP Elite Presenter Mouse
4921792e04f2 drm/amdgpu: install stub fence into potential unused fence pointers
fd41646d4350 HID: logitech-hidpp: Add USB and Bluetooth IDs for the Logitech G915 TKL Keyboard
ff10cd3e9b3a dma-remap: use kvmalloc_array/kvfree for larger dma memory remap
e9ce774052ee ASoC: SOF: Intel: fix SoundWire/HDaudio mutual exclusion
7d53d1e4765c iopoll: Call cpu_relax() in busy loops
ca66e9dd98ef ARM: dts: imx6dl: prtrvt, prtvt7, prti6q, prtwd2: fix USB related warnings
cc1590830859 PCI: tegra194: Fix possible array out of bounds access
e2d10f1de1fa net: tls: avoid discarding data on record close
9a15ca893909 net/tls: Multi-threaded calls to TX tls_dev_del
2d93157b7e2d net/tls: Perform immediate device ctx cleanup when possible
51222e1c77a1 macsec: use DEV_STATS_INC()
3d64a232e4d9 macsec: Fix traffic counters/statistics
396a1921406a selftests: forwarding: tc_actions: Use ncat instead of nc
d61a0886d336 selftests: forwarding: tc_actions: cleanup temporary files when test is aborted
a798977df6d0 mmc: sdhci-f-sdh30: Replace with sdhci_pltfm
f6f7927ac664 Linux 5.15.127
c597d8cb0d33 timers/nohz: Last resort update jiffies on nohz_full IRQ entry
b4d36e6c5dc4 timers/nohz: Switch to ONESHOT_STOPPED in the low-res handler when the tick is stopped
c3b954a51b64 tick: Detect and fix jiffies update stall
af99918f0e39 sch_netem: fix issues in netem_change() vs get_dist_table()
5d094d4e7b99 alpha: remove __init annotation from exported page_is_ram()
f8d6d25756ea scsi: qedf: Fix firmware halt over suspend and resume
85db1cd1744e scsi: qedi: Fix firmware halt over suspend and resume
e70469c28953 scsi: fnic: Replace return codes in fnic_clean_pending_aborts()
6bc7f4c8c27d scsi: core: Fix possible memory leak if device_add() fails
461f8ac666fa scsi: snic: Fix possible memory leak if device_add() fails
171e117cdc0a scsi: 53c700: Check that command slot is not NULL
7a792b3d888a scsi: storvsc: Fix handling of virtual Fibre Channel timeouts
0f52d7b78251 scsi: core: Fix legacy /proc parsing buffer overflow
b757ef99df39 netfilter: nf_tables: report use refcount overflow
9bdbbcf9d148 nvme-rdma: fix potential unbalanced freeze & unfreeze
d68f8ef6ef70 nvme-tcp: fix potential unbalanced freeze & unfreeze
ae6e21f8bb2a btrfs: set cache_block_group_error if we find an error
314135b7bae9 btrfs: reject invalid reloc tree root keys with stack dump
69dd147de419 btrfs: exit gracefully if reloc roots don't match
c40d4b60c58d btrfs: don't stop integrity writeback too early
555e126dd30b ibmvnic: Handle DMA unmapping of login buffs in release functions
34fcc823823a ibmvnic: Unmap DMA login rsp buffer on send login fail
cee62753cf2e ibmvnic: Enforce stronger sanity checks on login response
27e8db8380eb net/mlx5: Skip clock update work when device is in error state
f638fc2f7377 net/mlx5: Allow 0 for total host VFs
086a80eb6213 dmaengine: mcf-edma: Fix a potential un-allocated memory access
7e1dc94b2d50 nexthop: Fix infinite nexthop bucket dump when using maximum nexthop ID
608a4327c257 nexthop: Make nexthop bucket dump more efficient
4457300cfd84 nexthop: Fix infinite nexthop dump when using maximum nexthop ID
91307347d632 net: hns3: add wait until mac link down
094310eb2b93 net: hns3: refactor hclge_mac_link_status_wait for interface reuse
1ae9703c2e32 net: phy: at803x: remove set/get wol callbacks for AR8032
7d496cd83a9d RDMA/umem: Set iova in ODP flow
f78a4238a873 wifi: cfg80211: fix sband iftype data lookup for AP_VLAN
26a27dd76054 drm/rockchip: Don't spam logs in atomic check
918c1e6843b7 IB/hfi1: Fix possible panic during hotplug remove
df21468bfdc8 iavf: fix potential races for FDIR filters
b1f985cf1c52 drivers: net: prevent tun_build_skb() to exceed the packet size limit
f239c9e1d98b dccp: fix data-race around dp->dccps_mss_cache
49a1fee22fae bonding: Fix incorrect deletion of ETH_P_8021AD protocol vid from slaves
789fcd94c9ca xsk: fix refcount underflow in error path
e95808121953 tunnels: fix kasan splat when generating ipv4 pmtu error
7903311b2cec net/packet: annotate data-races around tp->status
f4614e379bf9 mISDN: Update parameter type of dsp_cmx_send()
3961761af392 bpf, sockmap: Fix bug that strp_done cannot be called
20d53895d5c0 bpf, sockmap: Fix map type error in sock_map_del_link
a09c258cfa77 net: core: remove unnecessary frame_sz check in bpf_xdp_adjust_tail()
85af0b226c0b selftests: forwarding: tc_flower: Relax success criterion
7b3fa99526f9 selftests: forwarding: Switch off timeout
e410f85ebca9 selftests: forwarding: Skip test when no interfaces are specified
4a4499452620 selftests: forwarding: ethtool_extended_state: Skip when using veth pairs
b8d216e9c607 selftests: forwarding: ethtool: Skip when using veth pairs
b9dfb80d9fb2 selftests: forwarding: Add a helper to skip test when using veth pairs
b973eb76dff3 selftests/rseq: Fix build with undefined __weak
b8b8db5857d4 drm/nouveau/disp: Revert a NULL check inside nouveau_connector_get_modes
4c6767c8bf5e x86: Move gds_ucode_mitigated() declaration to header
f919cbc90441 x86/speculation: Add cpu_show_gds() prototype
9290ef14c96b x86/mm: Fix VDSO and VVAR placement on 5-level paging machines
829409510d00 x86/cpu/amd: Enable Zenbleed fix for AMD Custom APU 0405
c41a22b93d7c x86/srso: Fix build breakage with the LLVM linker
c2372b1559d4 usb: typec: tcpm: Fix response to vsafe0V event
f776b94ccdf0 usb: common: usb-conn-gpio: Prevent bailing out if initial role is none
00cc14b52d6f usb: dwc3: Properly handle processing of pending events
7a11d1e2625b usb-storage: alauda: Fix uninit-value in alauda_check_media()
945e1b3c361b misc: rtsx: judge ASPM Mode to set PETXCFG Reg
03eebad96233 binder: fix memory leak in binder_init()
a8e2ae6296d5 iio: adc: ina2xx: avoid NULL pointer dereference on OF device match
2df8ae1e42b8 iio: cros_ec: Fix the allocation size for cros_ec_command
a7cedc2b7612 io_uring: correct check for O_TMPFILE
697bc234632c selftests/bpf: Fix sk_assign on s390x
127277262110 selftests/bpf: Workaround verification failure for fexit_bpf2bpf/func_replace_return_code
ee701208f4cc selftests/bpf: make test_align selftest more robust
683d2969a082 bpf: aggressively forget precise markings during state checkpointing
2516deeb872a bpf: stop setting precise in current state
c47d0178ad86 bpf: allow precision tracking for programs with subprogs
3645510cf926 nilfs2: fix use-after-free of nilfs_root in dirtying inodes via iput
36a3b560c78d radix tree test suite: fix incorrect allocation size for pthreads
8d10284243b7 hwmon: (pmbus/bel-pfe) Enable PMBUS_SKIP_STATUS_CHECK for pfe1100
3ad4ba2b6112 drm/amd/display: check attr flag before set cursor degamma on DCN3+
621204fca047 drm/shmem-helper: Reset vma->vm_ops before calling dma_buf_mmap()
64e6253f6489 drm/nouveau/gr: enable memory loads on helper invocation on all channels
bcd9eeb3a309 riscv,mmio: Fix readX()-to-delay() ordering
57772ae9b339 dmaengine: pl330: Return DMA_PAUSED when transaction is paused
3ca8f5c733c4 ipv6: adjust ndisc_is_useropt() to also return true for PIO
6cde60777675 mmc: moxart: read scr register without changing byte order
3f00757ab416 wireguard: allowedips: expand maximum node depth
aeb974907642 ksmbd: fix wrong next length validation of ea buffer in smb2_set_ea()
595679098bdc ksmbd: validate command request size
24c4de4069cb Linux 5.15.126
aeb4db8ab7f1 PM: sleep: wakeirq: fix wake irq arming
b5d3a4251bd2 PM / wakeirq: support enabling wake-up irq after runtime_suspend called
a36b522767f3 soundwire: fix enumeration completion
7996facaf0ee soundwire: bus: pm_runtime_request_resume on peripheral attachment
c91c07ae0849 selftests/rseq: Play nice with binaries statically linked against glibc 2.35+
1cdb50faf7f7 selftests/rseq: check if libc rseq support is registered
0f1f471b91f4 drm/imx/ipuv3: Fix front porch adjustment upon hactive aligning
5058c1444040 powerpc/mm/altmap: Fix altmap boundary check
eb7a5e4d14c8 mtd: rawnand: fsl_upm: Fix an off-by one test in fun_exec_op()
70643e98cbc3 mtd: rawnand: rockchip: Align hwecc vs. raw page helper layouts
1796b492f8cc mtd: rawnand: rockchip: fix oobfree offset and description
f6807b62fb0e mtd: rawnand: omap_elm: Fix incorrect type in assignment
596be6716bc5 ext2: Drop fragment support
0ccfe21949bc fs: Protect reconfiguration of sb read-write from racing writes
27d0f755d649 net: usbnet: Fix WARNING in usbnet_start_xmit/usb_submit_urb
fbe5a2fed815 Bluetooth: L2CAP: Fix use-after-free in l2cap_sock_ready_cb
afd9a31b5aa4 fs/sysv: Null check to prevent null-ptr-deref bug
80ec112c1996 fs/ntfs3: Use __GFP_NOWARN allocation at ntfs_load_attr_list()
0d6f639f1dcd file: reinstate f_pos locking optimization for regular files
b44d28b98f18 bpf, cpumap: Make sure kthread is running before map update returns
8089eb93d678 drm/ttm: check null pointer before accessing when swapping
ef0d07c66843 open: make RESOLVE_CACHED correctly test for O_TMPFILE
c81bdf8f9f2b bpf: Disable preemption in bpf_event_output
ae07cfe2b099 rbd: prevent busy loop when requesting exclusive lock
7978bcca4c1f wifi: mt76: mt7615: do not advertise 5 GHz on first phy of MT7615D (DBDC)
32ca6a55e10e net: tap_open(): set sk_uid from current_fsuid()
4ed3eed99ee6 net: tun_chr_open(): set sk_uid from current_fsuid()
adacc3a954fa arm64: dts: stratix10: fix incorrect I2C property for SCL signal
b92c88009da1 mtd: rawnand: meson: fix OOB available bytes for ECC
b0875c583e41 mtd: spinand: toshiba: Fix ecc_get_status
1c33ca1e1974 exfat: release s_lock before calling dir_emit()
8a34a242cf03 exfat: use kvmalloc_array/kvfree instead of kmalloc_array/kfree
a74878207b02 x86/CPU/AMD: Do not leak quotient data after a division by 0
b8f029fc4075 firmware: arm_scmi: Drop OF node reference in the transport channel setup
287c2c8677ed ceph: defer stopping mdsc delayed_work
98b521d10e73 USB: zaurus: Add ID for A-300/B-500/C-700
cd6872f2cf56 libceph: fix potential hang in ceph_osdc_notify()
e5f5b4a89809 scsi: storvsc: Limit max_sectors for virtual Fibre Channel devices
212a9a3c67be scsi: zfcp: Defer fc_rport blocking until after ADISC response
dac382725394 tcp_metrics: fix data-race in tcpm_suck_dst() vs fastopen
4517782e1bc3 tcp_metrics: annotate data-races around tm->tcpm_net
e842a68667d4 tcp_metrics: annotate data-races around tm->tcpm_vals[]
d3184bea4ace tcp_metrics: annotate data-races around tm->tcpm_lock
9a7367cbe33d tcp_metrics: annotate data-races around tm->tcpm_stamp
6f6bd67f4894 tcp_metrics: fix addr_same() helper
b0acbcf1e7a1 prestera: fix fallback to previous version on same major version
d6d9d0f5a5e0 net/mlx5: fs_core: Skip the FTs in the same FS_TYPE_PRIO_CHAINS fs_prio
c999fb1039dd net/mlx5: fs_core: Make find_closest_ft more generic
32ef2c0c6cf1 vxlan: Fix nexthop hash size
1bb54a21f4d9 ip6mr: Fix skb_under_panic in ip6mr_cache_report()
64e3affee288 s390/qeth: Don't call dev_close/dev_open (DOWN/UP)
a0da2684db18 net: dcb: choose correct policy to parse DCB_ATTR_BCN
193333229aac net: netsec: Ignore 'phy-mode' on SynQuacer in DT mode
766c9dd00c5f net: korina: handle clk prepare error in korina_probe()
6cecfdf65053 net: ll_temac: fix error checking of irq_of_parse_and_map()
3761ff4f8670 net: ll_temac: Switch to use dev_err_probe() helper
5c534640a7da bpf: sockmap: Remove preempt_disable in sock_map_sk_acquire
79c3d81c9ad1 net/sched: cls_route: No longer copy tcf_result on update to avoid use-after-free
9edf7955025a net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after-free
262430dfc618 net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after-free
b58d34068fd9 bpf, cpumap: Handle skb as well when clean up ptr_ring
f04f6d9b3b06 net/sched: taprio: Limit TCA_TAPRIO_ATTR_SCHED_CYCLE_TIME to INT_MAX.
2c55d4941518 net: add missing data-race annotation for sk_ll_usec
e934c50c48e2 net: add missing data-race annotations around sk->sk_peek_off
fdd8d8d54d6a net: add missing READ_ONCE(sk->sk_rcvbuf) annotation
98f0d1db3a27 net: add missing READ_ONCE(sk->sk_sndbuf) annotation
0d1047b77b23 net: add missing READ_ONCE(sk->sk_rcvlowat) annotation
6c058a1f67f0 net: annotate data-races around sk->sk_max_pacing_rate
2950c5ac65b3 qed: Fix scheduling in a tasklet while getting stats
a19952dbb5b6 qed: Fix kernel-doc warnings
6d8c259f4827 mISDN: hfcpci: Fix potential deadlock on &hc->lock
8dedcc6af341 net: sched: cls_u32: Fix match key mis-addressing
675d29de69c7 perf test uprobe_from_different_cu: Skip if there is no gcc
0f6e3d8d7f91 net: dsa: fix value check in bcm_sf2_sw_probe()
047508edd602 rtnetlink: let rtnl_bridge_setlink checks IFLA_BRIDGE_MODE length
cc9ebceaa6d0 bpf: Add length check for SK_DIAG_BPF_STORAGE_REQ_MAP_FD parsing
8f9a04c742e1 net/mlx5e: fix return value check in mlx5e_ipsec_remove_trailer()
00cecb0a8f9e net/mlx5: DR, fix memory leak in mlx5dr_cmd_create_reformat_ctx
4c224ea31bed wifi: cfg80211: Fix return value in scan logic
8e72db3ffa5d KVM: s390: fix sthyi error handling
809edb4262f0 word-at-a-time: use the same return type for has_zero regardless of endianness
b7880809d75d arm64: dts: imx8mn-var-som: add missing pull-up for onboard PHY reset pinmux
804e72062be4 iommu/arm-smmu-v3: Document nesting-related errata
744e6b80b830 iommu/arm-smmu-v3: Add explicit feature for nesting
fd86b5944215 iommu/arm-smmu-v3: Document MMU-700 erratum 2812531
2de9f3dcfe63 iommu/arm-smmu-v3: Work around MMU-600 erratum 1076982
a850fa85d477 arm64: errata: Add detection for TRBE write to out-of-range
073699df4a09 arm64: errata: Add workaround for TSB flush failures
44b45e8161a5 net/mlx5: Free irqs only on shutdown callback
40601542c43c perf: Fix function pointer case
c12fa4ac8997 io_uring: gate iowait schedule on having pending requests
c275eaaaa342 Linux 5.15.125
754e0c7c4a30 x86: fix backwards merge of GDS/SRSO bit
b14a3924c267 xen/netback: Fix buffer overrun triggered by unusual packet
153f9a7b02d4 x86/srso: Tie SBPB bit setting to microcode patch detection
df4c3823cba5 x86/srso: Fix return thunks in generated code
0071b17eb66b x86/srso: Add IBPB on VMEXIT
5398faac76a6 x86/srso: Add IBPB
c24aaa7dde5f x86/srso: Add SRSO_NO support
4e9115e194a8 x86/srso: Add IBPB_BRTYPE support
b35087763a44 x86/srso: Add a Speculative RAS Overflow mitigation
c3b4c644525e x86/cpu, kvm: Add support for CPUID_80000021_EAX
236dd7133394 x86/bugs: Increase the x86 bugs vector size to two u32s
0242a8bdef56 Documentation/x86: Fix backwards on/off logic about YMM support
27a72e350869 x86/mm: Initialize text poking earlier
d0317b9502ea mm: Move mm_cachep initialization to mm_init()
8e4c2530879d x86/mm: Use mm_alloc() in poking_init()
13ec5cb4c113 x86/mm: fix poking_init() for Xen PV guests
3e90080d5665 x86/xen: Fix secondary processors' FPU initialization
348741a9e4d3 KVM: Add GDS_NO support to KVM
59d78655f808 x86/speculation: Add Kconfig option for GDS
0cc5643b63ae x86/speculation: Add force option to GDS mitigation
348a89e20184 x86/speculation: Add Gather Data Sampling mitigation
a094d3b30967 x86/fpu: Move FPU initialization into arch_cpu_finalize_init()
59f2739111ca x86/fpu: Mark init functions __init
bb9c20d903f6 x86/fpu: Remove cpuinfo argument from init functions
de8b7ce4c533 x86/init: Initialize signal frame size late
041d929233bb init, x86: Move mem_encrypt_init() into arch_cpu_finalize_init()
8ae795ed6115 init: Invoke arch_cpu_finalize_init() earlier
7e270cebaffd init: Remove check_bugs() leftovers
285384ac24c3 um/cpu: Switch to arch_cpu_finalize_init()
6ea421786426 sparc/cpu: Switch to arch_cpu_finalize_init()
21a1fc8d13d8 sh/cpu: Switch to arch_cpu_finalize_init()
dfeb371a2707 mips/cpu: Switch to arch_cpu_finalize_init()
4baf46a3ba00 m68k/cpu: Switch to arch_cpu_finalize_init()
8c8165cd25cf ia64/cpu: Switch to arch_cpu_finalize_init()
de8c592cc5a1 ARM: cpu: Switch to arch_cpu_finalize_init()
75da6209d3ba x86/cpu: Switch to arch_cpu_finalize_init()
0774fc2177c3 init: Provide arch_cpu_finalize_init()
(From OE-Core rev: 5832eebee3c150a30bd489699ca693240d11beda)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.10 to the latest korg -stable release that comprises
the following commits:
16ad71c250c1 Linux 5.10.209
66e4f4a84791 arm64: dts: armada-3720-turris-mox: set irq type for RTC
2e23761beb90 i2c: s3c24xx: fix transferring more than one message in polling mode
da60686bab6b i2c: s3c24xx: fix read transfers in polling mode
8ba74e90162e selftests: mlxsw: qos_pfc: Adjust the test to support 8 lanes
3e1ca8065926 selftests: mlxsw: qos_pfc: Convert to iproute2 dcb
56750ea5d154 mlxsw: spectrum_acl_tcam: Fix stack corruption
a9b233b287aa mlxsw: spectrum_acl_tcam: Reorder functions to avoid forward declarations
d3669ebc4c2a mlxsw: spectrum_acl_tcam: Make fini symmetric to init
a557dbda6407 mlxsw: spectrum_acl_tcam: Add missing mutex_destroy()
936d06d699c3 mlxsw: spectrum: Use 'bitmap_zalloc()' when applicable
e8bfdf630142 mlxsw: spectrum_acl_erp: Fix error flow of pool allocation failure
f90b1cebc442 ethtool: netlink: Add missing ethnl_ops_begin/complete
b44e1aec8038 kdb: Fix a potential buffer overflow in kdb_local()
977c2cf5637a ipvs: avoid stat macros calls from preemptible context
00a86f81c80e netfilter: nf_tables: reject NFT_SET_CONCAT with not field length description
9a4d25267d50 netfilter: nf_tables: skip dead set elements in netlink dump
2d4c0798a1ef netfilter: nf_tables: do not allow mismatch field size and set key length
b099b495e1da net: dsa: vsc73xx: Add null pointer check to vsc73xx_gpio_probe
6c8a5bbca6e6 net: ravb: Fix dma_addr_t truncation in error case
ba77c8b4e106 net: phy: micrel: populate .soft_reset for KSZ9131
1658d7a7a207 net: ethernet: ti: am65-cpsw: Fix max mtu to fit ethernet frames
2295c22348fa net: qualcomm: rmnet: fix global oob in rmnet_policy
b55808b96e63 s390/pci: fix max size calculation in zpci_memcpy_toio()
178b4373446d PCI: keystone: Fix race condition when initializing PHYs
0de2e62067d2 nvmet-tcp: Fix the H2C expected PDU len calculation
172276460ab5 serial: imx: Correct clock error message in function probe()
5ff00408e502 apparmor: avoid crash when parsed profile name is empty
866d32bff035 perf env: Avoid recursively taking env->bpf_progs.lock
39669fae69f3 nvmet-tcp: fix a crash in nvmet_req_complete()
f775f2621c2a nvmet-tcp: Fix a kernel panic when host sends an invalid H2C PDU length
1550b870ae9c usb: cdc-acm: return correct error code on unsupported break
d7c74b010aae tty: use 'if' in send_break() instead of 'goto'
3483ca0390c1 tty: don't check for signal_pending() in send_break()
2cf81d344032 tty: early return from send_break() on TTY_DRIVER_HARDWARE_BREAK
4e76dbd7c360 tty: change tty_write_lock()'s ndelay parameter to bool
abcc25a23731 perf genelf: Set ELF program header addresses properly
1e17feb4ada9 iio: adc: ad9467: fix scale setting
a3167e5ab5b8 iio: adc: ad9467: don't ignore error codes
00e916d9985f iio: adc: ad9467: fix reset gpio handling
8083d6840179 iio: adc: ad9467: Benefit from devm_clk_get_enabled() to simplify
6e04a9d30509 serial: imx: fix tx statemachine deadlock
6746f3e8939d software node: Let args be NULL in software_node_get_reference_args
381bea33a86e acpi: property: Let args be NULL in __acpi_node_get_property_reference
7166e8e9135e libapi: Add missing linux/types.h header to get the __u64 type on io.h
bc57f3ef8a9e serial: 8250: omap: Don't skip resource freeing if pm_runtime_resume_and_get() failed
89b97e6b19a8 power: supply: cw2015: correct time_to_empty units in sysfs
5e3995ec39c4 MIPS: Alchemy: Fix an out-of-bound access in db1550_dev_setup()
c3ed63f6a1c2 MIPS: Alchemy: Fix an out-of-bound access in db1200_dev_setup()
9995dee8b952 mips: Fix incorrect max_low_pfn adjustment
5cdda6239ce6 mips: dmi: Fix early remap on MIPS32
b1528687739b leds: aw2013: Select missing dependency REGMAP_I2C
927626a20738 mfd: syscon: Fix null pointer dereference in of_syscon_register()
c964a0597b50 HID: wacom: Correct behavior when processing some confidence == false touches
c7883c9f83e6 iio: adc: ad7091r: Pass iio_dev to event handler
ba7be6667408 KVM: arm64: vgic-its: Avoid potential UAF in LPI translation cache
9b5a278594b9 KVM: arm64: vgic-v4: Restore pending state on host userspace write
7521ea8f62b2 x86/kvm: Do not try to disable kvmclock if it was not enabled
322c5fe40f7f wifi: mwifiex: configure BSSID consistently when starting AP
ba8a4fba622a wifi: rtlwifi: Convert LNKCTL change to PCIe cap RMW accessors
3dc3122b0be3 wifi: rtlwifi: Remove bogus and dangerous ASPM disable/enable code
5e9142b6a200 iommu/arm-smmu-qcom: Add missing GMU entry to match table
394c6c0b6d9b Bluetooth: Fix atomicity violation in {min,max}_key_size_set
3b8d7a1b8519 rootfs: Fix support for rootfstype= when root= is given
8c0b563e9b4d io_uring/rw: ensure io->bytes_done is always initialized
daa61bacd3b9 pwm: jz4740: Don't use dev_err_probe() in .request()
a7d4ec5672b5 fbdev: flush deferred work in fb_deferred_io_fsync()
ff2d54d9ccb4 ALSA: hda/relatek: Enable Mute LED on HP Laptop 15s-fq2xxx
b5c2a32621ae ALSA: oxygen: Fix right channel of capture volume mixer
57f34589e954 serial: imx: Ensure that imx_uart_rs485_config() is called with enabled clock
b7747ca58e85 usb: mon: Fix atomicity violation in mon_bin_vma_fault
5e5ab50effb5 usb: typec: class: fix typec_altmode_put_partner to put plugs
baaa6d8e3f72 Revert "usb: typec: class: fix typec_altmode_put_partner to put plugs"
f5c09e1d6e33 usb: chipidea: wait controller resume finished for wakeup irq
084de4c659bb Revert "usb: dwc3: don't reset device side if dwc3 was configured as host-only"
1af042358781 Revert "usb: dwc3: Soft reset phy on probe for host"
325388866014 usb: dwc: ep0: Update request status in dwc3_ep0_stall_restart
e70b17282a5c usb: phy: mxs: remove CONFIG_USB_OTG condition for mxs_phy_is_otg_host()
d65cade544de tick-sched: Fix idle and iowait sleeptime accounting vs CPU hotplug
7e7a0d86542b binder: fix race between mmput() and do_exit()
cce8ba6fa4ec xen-netback: don't produce zero-size SKB frags
d1e68ad27901 net: ethernet: mtk_eth_soc: remove duplicate if statements
8a2946391531 kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list
c02cdc2c5e87 Revert "ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek"
79026a2d0a1b virtio-crypto: fix memory leak in virtio_crypto_alg_skcipher_close_session()
dfdb686d1b43 virtio-crypto: fix memory-leak
c3b3389ad046 dma-mapping: Fix build error unused-value
0dfe57f1f237 Input: atkbd - use ab83 as id when skipping the getid command
c8c1158ffb00 binder: fix use-after-free in shinker's callback
abbb90928719 binder: fix unused alloc->free_async_space
fa62c9050e9d binder: fix async space check for 0-sized buffers
4533e7623e6d keys, dns: Fix size check of V1 server-list header
9e8a31c1aa4a of: unittest: Fix of_count_phandle_with_args() expected value message
d5f490343c77 of: Fix double free in of_parse_phandle_with_args_map
c9ee325baed1 IB/iser: Prevent invalidating wrong MR
bedecbb5a5fc mmc: sdhci_omap: Fix TI SoC dependencies
613af7d57622 mmc: sdhci_am654: Fix TI SoC dependencies
8da3a51f74e1 pwm: stm32: Fix enable count for clk in .probe()
e33e1bdbe66a pwm: stm32: Use hweight32 in stm32_pwm_detect_channels
5af4ce2a543d pwm: stm32: Use regmap_clear_bits and regmap_set_bits where applicable
bed5ec2a5984 clk: fixed-rate: fix clk_hw_register_fixed_rate_with_accuracy_parent_hw
764b78b927e7 clk: fixed-rate: add devm_clk_hw_register_fixed_rate
e5236e58cc65 clk: si5341: fix an error code problem in si5341_output_clk_set_rate
428381fbcb1f watchdog: rti_wdt: Drop runtime pm reference count when watchdog is unused
d83662bb9079 watchdog: bcm2835_wdt: Fix WDIOC_SETTIMEOUT handling
6c93290da90b watchdog/hpwdt: Only claim UNKNOWN NMI if from iLO
cbc15095d1ff watchdog: set cdev owner before adding
e4f4a2cb7447 drivers: clk: zynqmp: update divider round rate logic
af0b86199b6c clk: zynqmp: Add a check for NULL pointer
45b4ea38c93c clk: zynqmp: make bestdiv unsigned
7fdcd873c047 drivers: clk: zynqmp: calculate closest mux rate
6cccbfafc0d3 clk: qcom: videocc-sm8150: Add missing PLL config property
84ee04572faa clk: qcom: videocc-sm8150: Update the videocc resets
74bbdacf1bc9 dt-bindings: clock: Update the videocc resets for sm8150
0c8ba6937a8c gpu/drm/radeon: fix two memleaks in radeon_vm_init
520e213a0b97 drivers/amd/pm: fix a use-after-free in kv_parse_power_table
aeed2b4e4a70 drm/amd/pm: fix a double-free in si_dpm_init
d53fee9e34f6 drm/amdgpu/debugfs: fix error code when smc register accessors are NULL
56a79c68b5e3 media: dvb-frontends: m88ds3103: Fix a memory leak in an error handling path of m88ds3103_probe()
b5ebb9b4c1da media: dvbdev: drop refcount on error path in dvb_device_open()
9284f409e407 f2fs: fix to update iostat correctly in f2fs_filemap_fault()
40d36882c7dc f2fs: fix to check compress file in f2fs_move_file_range()
b864287581c5 media: rkisp1: Disable runtime PM in probe error path
962b35733b46 clk: qcom: gpucc-sm8150: Update the gpu_cc_pll1 config
21a30b59693a media: cx231xx: fix a memleak in cx231xx_init_isoc
abd50cebf9c7 drm/bridge: tc358767: Fix return value on error case
3f6932b5baa1 drm/radeon/trinity_dpm: fix a memleak in trinity_parse_power_table
e646308eda40 drm/radeon/dpm: fix a memleak in sumo_parse_power_table
57ca7984806d drm/radeon: check the alloc_workqueue return value in radeon_crtc_init()
c20a6aa0a3f3 drm/drv: propagate errors from drm_modeset_register_all()
da5e0feb12f2 drm/msm/dsi: Use pm_runtime_resume_and_get to prevent refcnt leaks
b704eabe8780 drm/msm/mdp4: flush vblank event on disable
96f5856867f8 ASoC: cs35l34: Fix GPIO name and drop legacy include
defe0327f555 ASoC: cs35l33: Fix GPIO name and drop legacy include
1421b06618f7 drm/radeon: check return value of radeon_ring_lock()
99244692122c drm/radeon/r100: Fix integer overflow issues in r100_cs_track_check()
ca267f79a578 drm/radeon/r600_cs: Fix possible int overflows in r600_cs_check_reg()
6f866885e147 f2fs: fix to avoid dirent corruption
13ea8af95768 drm/bridge: Fix typo in post_disable() description
3233d8bf7893 media: pvrusb2: fix use after free on context disconnection
53926e2a3962 drm/bridge: tpd12s015: Drop buggy __exit annotation for remove function
1eb7ceae4887 drm/nouveau/fence:: fix warning directly dereferencing a rcu pointer
b1a07165be21 rcu: Create an unrcu_pointer() to remove __rcu from a pointer
1d1d5b90ea01 drm/panel-elida-kd35t133: hold panel in reset for unprepare
7794c1481233 RDMA/usnic: Silence uninitialized symbol smatch warnings
d807f4ef22de ARM: davinci: always select CONFIG_CPU_ARM926T
da23bd709b46 ip6_tunnel: fix NEXTHDR_FRAGMENT handling in ip6_tnl_parse_tlv_enc_lim()
4e09df9b24b1 Bluetooth: btmtkuart: fix recv_buf() return value
fd54d16613cf Bluetooth: Fix bogus check for re-auth no supported with non-ssp
15be96e1a628 netfilter: nf_tables: mark newset as dead on transaction abort
6f39bea6629a wifi: rtlwifi: rtl8192se: using calculate_bit_shift()
c7138266538e wifi: rtlwifi: rtl8192ee: using calculate_bit_shift()
99f56c3f7c56 wifi: rtlwifi: rtl8192de: using calculate_bit_shift()
b75b68dde5c1 rtlwifi: rtl8192de: make arrays static const, makes object smaller
df14e4321997 wifi: rtlwifi: rtl8192ce: using calculate_bit_shift()
016781c16e96 wifi: rtlwifi: rtl8192cu: using calculate_bit_shift()
bf277a76d31a wifi: rtlwifi: rtl8192c: using calculate_bit_shift()
483c975e4094 wifi: rtlwifi: rtl8188ee: phy: using calculate_bit_shift()
31b651a7a17d wifi: rtlwifi: add calculate_bit_shift()
64299791d070 dma-mapping: clear dev->dma_mem to NULL after freeing it
a6dd1095640b dma-mapping: Add dma_release_coherent_memory to DMA API
ad43344ab432 virtio/vsock: fix logic which reduces credit update messages
30ae0c663141 selftests/net: fix grep checking for fib_nexthop_multiprefix
7a0f8295e7e1 scsi: hisi_sas: Replace with standard error code return value
afea95d319cc bpf: Fix verification of indirect var-off stack access
419ab8f74a4b arm64: dts: qcom: sdm845-db845c: correct LED panic indicator
812cebdc5f7b arm64: dts: qcom: qrb5165-rb5: correct LED panic indicator
ba31bb08c15c scsi: fnic: Return error if vmalloc() failed
2757f17972d8 bpf: fix check for attempt to corrupt spilled pointer
7e98bbeb0708 arm64: dts: ti: k3-am65-main: Fix DSS irq trigger type
d49863ed285d wifi: rtlwifi: rtl8821ae: phy: fix an undefined bitwise shift behavior
2799324d92a6 firmware: meson_sm: populate platform devices from sm device tree data
3959dbb37595 firmware: ti_sci: Fix an off-by-one in ti_sci_debugfs_create()
01f9feb5edc5 net/ncsi: Fix netlink major/minor version numbers
7bcddd12a947 ncsi: internal.h: Fix a spello
ae98b7f7bbfb ARM: dts: qcom: apq8064: correct XOADC register address
4675cacd6b02 wifi: libertas: stop selecting wext
24d8aef5d93b wifi: ath11k: Defer on rproc_get failure
91f311155884 bpf: Add crosstask check to __bpf_get_stack
d5d181df8d75 bpf, lpm: Fix check prefixlen before walking trie
eb0eac573646 wifi: rtw88: fix RX filter in FIF_ALLMULTI flag
d8caf15ab156 NFSv4.1/pnfs: Ensure we handle the error NFS4ERR_RETURNCONFLICT
722c700dd87a blocklayoutdriver: Fix reference leak of pnfs_device_node
4518dc468cdd crypto: scomp - fix req->dst buffer overflow
1798c8fd0093 crypto: sahara - do not resize req->src when doing hash operations
67ae336f3b83 crypto: sahara - fix processing hash requests with req->nbytes < sg->length
b3287c8a7eab crypto: sahara - improve error handling in sahara_sha_process()
98985edab61f crypto: sahara - fix wait_for_completion_timeout() error handling
69451bf97c83 crypto: sahara - fix ahash reqsize
d8d9580831ea crypto: sahara - handle zero-length aes requests
b839648d0585 crypto: sahara - avoid skcipher fallback code duplication
14f57a013a95 crypto: virtio - Wait for tasklet to complete on device remove
5c28478af371 gfs2: Fix kernel NULL pointer dereference in gfs2_rgrp_dump
57c7b331f0e5 gfs2: Also reflect single-block allocations in rgd->rd_extfail_pt
22f63f9bc851 Revert "gfs2: Don't reject a supposedly full bitmap if we have blocks reserved"
cd48d2a8e6ba fs: indicate request originates from old mount API
acd413da3e1f pstore: ram_core: fix possible overflow in persistent_ram_init_ecc()
c60fd7a66366 crypto: sahara - fix error handling in sahara_hw_descriptor_create()
25b7ca747b0c crypto: sahara - fix processing requests with cryptlen < sg->length
fc91d32c7ded crypto: sahara - fix ahash selftest failure
4f4786b81845 crypto: sahara - fix cbc selftest failure
ccdb86c339d5 crypto: sahara - remove FLAGS_NEW_KEY logic
7f807dc07341 crypto: af_alg - Disallow multiple in-flight AIO requests
97f9d0455bd4 crypto: ccp - fix memleak in ccp_init_dm_workarea
95586bb74bf4 crypto: sa2ul - Return crypto_aead_setkey to transfer the error
0eb69890e867 crypto: virtio - Handle dataq logic with tasklet
0dee72f9b7ba virtio-crypto: wait ctrl queue instead of busy polling
4ee475e76b5e virtio-crypto: use private buffer for control request
7d386768ef66 virtio-crypto: change code style
1ff57428894f virtio-crypto: implement RSA algorithm
f32dfee5a6a6 virtio-crypto: introduce akcipher service
b2092cdcdabc virtio_crypto: Introduce VIRTIO_CRYPTO_NOSPC
1bc7a682edea selinux: Fix error priority for bind with AF_UNSPEC on PF_INET6 socket
001a3f59d8c9 mtd: Fix gluebi NULL pointer dereference caused by ftl notifier
1d7b39c842c8 ACPI: extlog: Clear Extended Error Log status when RAS_CEC handled the error
46e3dc02a4ae spi: sh-msiof: Enforce fixed DTDL for R-Car H3
94c742324ed7 efivarfs: force RO when remounting if SetVariable is not supported
44a88650ba55 calipso: fix memory leak in netlbl_calipso_add_pass()
5ac84b01a09b netlabel: remove unused parameter in netlbl_netlink_auditinfo()
47210a5754ba net: netlabel: Fix kerneldoc warnings
d5ce66bdf6e4 cpufreq: scmi: process the result of devm_of_clk_add_hw_provider()
fda130920584 cpufreq: Use of_property_present() for testing DT property presence
ba7c7e353041 of: Add of_property_present() helper
ded221bf4c74 of: property: define of_property_read_u{8,16,32,64}_array() unconditionally
f39c3d578c7d ACPI: LPIT: Avoid u32 multiplication overflow
c4e1a0ef0b47 ACPI: video: check for error while searching for backlight device parent
11ac297aba78 mtd: rawnand: Increment IFC_TIMEOUT_MSECS for nand controller response
f8df7c9886db spi: spi-zynqmp-gqspi: fix driver kconfig dependencies
5a669f3511d2 powerpc/imc-pmu: Add a null pointer check in update_events_in_group()
a67a04ad05ac powerpc/powernv: Add a null pointer check in opal_powercap_init()
e6ad05e3ae9c powerpc/powernv: Add a null pointer check in opal_event_init()
1eefa93faf69 powerpc/powernv: Add a null pointer check to scom_debug_init_one()
428ab6a9dda5 selftests/powerpc: Fix error handling in FPU/VMX preemption tests
b582aa1f6641 powerpc/pseries/memhp: Fix access beyond end of drmem array
f2ec41874b65 powerpc/pseries/memhotplug: Quieten some DLPAR operations
81dce186f1dd powerpc/44x: select I2C for CURRITUCK
d67339e9c81e powerpc: Remove in_kernel_text()
ecbbd90e7046 powerpc: add crtsavres.o to always-y instead of extra-y
6aa7865ba7ff EDAC/thunderx: Fix possible out-of-bounds string access
36dbbfff2823 x86/lib: Fix overflow when counting digits
83da4fc5aa5c coresight: etm4x: Fix width of CCITMIN field
67d3d17e3166 PCI: Add ACS quirk for more Zhaoxin Root Ports
e5457b54add0 parport: parport_serial: Add Brainboxes device IDs and geometry
937293ff64f4 parport: parport_serial: Add Brainboxes BAR details
5e0be1229ae1 uio: Fix use-after-free in uio_open
214aac202d97 binder: fix comment on binder_alloc_new_buf() return value
689f13128fbc binder: fix trivial typo of binder_free_buf_locked()
e18d60757bca binder: use EPOLLERR from eventpoll.h
19d949b37e4a ACPI: resource: Add another DMI match for the TongFang GMxXGxx
f138fb6e640b drm/crtc: fix uninitialized variable use
7ba78e08238b ARM: sun9i: smp: fix return code check of of_property_match_string
01d89184152f net: qrtr: ns: Return 0 if server port is not present
dbf8b0d9387f ida: Fix crash in ida_free when the bitmap is empty
d8a07ba130da i2c: rk3x: fix potential spinlock recursion on poll
a57c59c85c5a Input: xpad - add Razer Wolverine V2 support
86e4e2eea4ea ARC: fix spare error
9700ff5a4f77 s390/scm: fix virtual vs physical address confusion
6e17155869fb Input: i8042 - add nomux quirk for Acer P459-G2-M
b0e82ef61153 Input: atkbd - skip ATKBD_CMD_GETID in translated mode
6f1614080fc6 reset: hisilicon: hi6220: fix Wvoid-pointer-to-enum-cast warning
8d6913d05025 ring-buffer: Do not record in NMI if the arch does not support cmpxchg in NMI
439f3bbf7554 tracing: Add size check when printing trace_marker output
bc6619c9aa91 tracing: Have large events show up as '[LINE TOO BIG]' instead of nothing
c0f1db7380aa jbd2: fix soft lockup in journal_finish_inode_data_buffers()
cd94f81f7752 neighbour: Don't let neigh_forced_gc() disable preemption for long
3887ba719800 drm/crtc: Fix uninit-value bug in drm_mode_setcrtc
956b740f3e46 jbd2: correct the printing of write_flags in jbd2_write_superblock()
656d684109c6 clk: rockchip: rk3128: Fix HCLK_OTG gate register
05644e636541 drm/exynos: fix a wrong error checking
0fc35b0d9f94 drm/exynos: fix a potential error pointer dereference
fb2f34d93992 nvme: introduce helper function to get ctrl state
a8b1ddeeacd9 ASoC: da7219: Support low DC impedance headset
1059aa41c5a8 net/tg3: fix race condition in tg3_reset_task()
44ad1b9eb37f nouveau/tu102: flush all pdbs on vmm flush
ffe13302b8fd ASoC: rt5650: add mutex to avoid the jack detection failure
8b50b177bf98 ASoC: cs43130: Fix incorrect frame delay configuration
921ff9f2b19e ASoC: cs43130: Fix the position of const qualifier
304529d56449 ASoC: Intel: Skylake: mem leak in skl register function
1e31b47b2e57 ASoC: nau8822: Fix incorrect type in assignment and cast to restricted __be16
9c89777c7dcc ASoC: Intel: Skylake: Fix mem leak in few functions
c78083013bef ASoC: wm8974: Correct boost mixer inputs
06a33eec1dc2 nvme-core: check for too small lba shift
974f127fcf65 drm/amdgpu: Fix cat debugfs amdgpu_regs_didt causes kernel null pointer
52a33dbeacc8 debugfs: fix automount d_fsdata usage
65bde47aaddc mptcp: fix uninit-value in mptcp_incoming_options
6b00598b64dd ALSA: hda - Fix speaker and headset mic pin config for CHUWI CoreBook XPro
94e192054fac pinctrl: lochnagar: Don't build on MIPS
3e47740091b0 f2fs: explicitly null-terminate the xattr list
3fee45ee557a Linux 5.10.208
929ba86476b3 Revert "nvme: use command_id instead of req->tag in trace_nvme_complete_rq()"
8a10841c1a9c PCI: Disable ATS for specific Intel IPU E2000 devices
b74a0c4ddf57 PCI: Extract ATS disabling to a helper function
25d1e7be85cf netfilter: nf_tables: Reject tables of unsupported family
03585b18b715 drm/qxl: fix UAF on handle creation
dd56c5790dc3 ipv6: remove max_size check inline with ipv4
c6b2a6b827d4 net: tls, update curr on splice as well
d36b6b152f47 powerpc: update ppc_save_regs to save current r1 in pt_regs
ae64985e0e9c mmc: sdhci-sprd: Fix eMMC init failure after hw reset
f7796d76bddd mmc: core: Cancel delayed work before releasing host
c29da60e1f6b mmc: rpmb: fixes pause retune on all RPMB partitions.
c82efcaad2a4 mmc: meson-mx-sdhc: Fix initialization frozen issue
73704c6b35c7 mm: fix unmap_mapping_range high bits shift bug
4aca0af44721 i2c: core: Fix atomic xfer check for non-preempt config
0ba8c7ef197c x86/kprobes: fix incorrect return address calculation in kprobe_emulate_call_indirect
23c006a760a7 firewire: ohci: suppress unexpected system reboot in AMD Ryzen machines and ASM108x/VT630x PCIe cards
70168fdc743b mm/memory-failure: check the mapcount of the precise page
18203c4484d5 net: Implement missing SO_TIMESTAMPING_NEW cmsg support
701b03fc14f7 bnxt_en: Remove mis-applied code from bnxt_cfg_ntp_filters()
cfbf618e9a21 asix: Add check for usbnet_get_endpoints
0fc5fe6e4134 net/qla3xxx: fix potential memleak in ql_alloc_buffer_queues
c492f9c7d313 net/qla3xxx: switch from 'pci_' to 'dma_' API
53e92564c56a i40e: Restore VF MSI-X state during PCI reset
6d3465c3dd53 ASoC: meson: g12a-tohdmitx: Fix event generation for S/PDIF mux
e08399e81210 ASoC: meson: g12a-toacodec: Fix event generation
51e88b2cef12 ASoC: meson: g12a-tohdmitx: Validate written enum values
85f8d007deab ASoC: meson: g12a-toacodec: Validate written enum values
21ecce245624 i40e: fix use-after-free in i40e_aqc_add_filters()
f8c03fd8262e net: Save and restore msg_namelen in sock_sendmsg
06ce3b8ec444 netfilter: nft_immediate: drop chain reference counter on error
cf3c516dec82 netfilter: nftables: add loop check helper function
4366b7e1f541 net: bcmgenet: Fix FCS generation for fragmented skbuffs
d1eb795385e1 sfc: fix a double-free bug in efx_probe_filters
cb69cad457fa ARM: sun9i: smp: Fix array-index-out-of-bounds read in sunxi_mc_smp_init
8abb7ab7cf2f net: sched: em_text: fix possible memory leak in em_text_destroy()
ecdfb0970c09 i40e: Fix filter input checks to prevent config with invalid values
8d4ae760c793 drm/i915/dp: Fix passing the correct DPCD_REV for drm_dp_set_phy_test_pattern
3ff482518b8e octeontx2-af: Fix marking couple of structure as __packed
6adeb15cb6ad nfc: llcp_core: Hold a ref to llcp_local->dev when holding a ref to llcp_local
74c9135d1659 ALSA: hda/realtek: Fix mute and mic-mute LEDs for HP ProBook 440 G6
132ba71b4e81 block: Don't invalidate pagecache for invalid falloc modes
ef1d1d7c1048 keys, dns: Fix missing size check of V1 server-list header
03a0e87f70e8 Linux 5.10.207
a7fd5c7ba4b9 scsi: core: Always send batch on reset or error handling command
e30419672e3a Revert "scsi: core: Add scsi_prot_ref_tag() helper"
f60f60e1deca Revert "scsi: core: Introduce scsi_get_sector()"
a5edb4070293 Revert "scsi: core: Make scsi_get_lba() return the LBA"
212929776027 Revert "scsi: core: Use scsi_cmd_to_rq() instead of scsi_cmnd.request"
cea19678bf55 Revert "scsi: core: Use a structure member to track the SCSI command submitter"
6963d049a422 Revert "scsi: core: Always send batch on reset or error handling command"
(From OE-Core rev: bc5c1a8631e65a2e6715987f67b8957b41da5dcc)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/5.10 to the latest korg -stable release that comprises
the following commits:
cf13ba74e8eb Linux 5.10.206
2df1e1887c68 spi: atmel: Fix PDC transfer setup bug
2a0a658ed6ef Bluetooth: SMP: Fix crash when receiving new connection when debug is enabled
ecd50f820d86 Revert "MIPS: Loongson64: Enable DMA noncoherent support"
9175341bd80b dm-integrity: don't modify bio's immutable bio_vec in integrity_metadata()
73117ea03363 netfilter: nf_tables: skip set commit for deleted/destroyed sets
8bf79dec73fe tracing: Fix blocked reader of snapshot buffer
0afe42022865 ring-buffer: Fix wake ups when buffer_percent is set to 100
9db5239d7533 scsi: core: Always send batch on reset or error handling command
f2d30198c053 scsi: core: Use a structure member to track the SCSI command submitter
df83ca8e986d scsi: core: Use scsi_cmd_to_rq() instead of scsi_cmnd.request
d054858a9c9e scsi: core: Make scsi_get_lba() return the LBA
f230e6d4249b scsi: core: Introduce scsi_get_sector()
294d66c35a4e scsi: core: Add scsi_prot_ref_tag() helper
929f475ebaf0 spi: atmel: Fix CS and initialization bug
23d9267c548b spi: atmel: Switch to transfer_one transfer method
db1b14eec8c6 Bluetooth: af_bluetooth: Fix Use-After-Free in bt_sock_recvmsg
0c54b79d1d9b smb: client: fix OOB in smbCalcSize()
203a412e52b5 smb: client: fix OOB in SMB2_query_info_init()
79e158ddc3c7 usb: fotg210-hcd: delete an incorrect bounds test
da448f145f8d Bluetooth: MGMT/SMP: Fix address type when using SMP over BREDR/LE
4bc912140b1c Bluetooth: use inclusive language in SMP
e219c3110a16 Bluetooth: SMP: Convert BT_ERR/BT_DBG to bt_dev_err/bt_dev_dbg
cdbc4a1115a5 ARM: dts: Fix occasional boot hang for am3 usb
1e2db0124c69 9p/net: fix possible memory leak in p9_check_errors()
c4a22227f7eb x86/alternatives: Sync core before enabling interrupts
7d407ef18327 lib/vsprintf: Fix %pfwf when current node refcount == 0
565fadc3ea91 bus: ti-sysc: Flush posted write only after srst_udelay
e50cfb544742 tracing / synthetic: Disable events after testing in synth_event_gen_test_init()
cd6e41593ed7 dt-bindings: nvmem: mxs-ocotp: Document fsl,ocotp
786788bb1396 net: ks8851: Fix TX stall caused by TX buffer overrun
391c1019a005 net: rfkill: gpio: set GPIO direction
6d7b8e5a6d91 net: 9p: avoid freeing uninit memory in p9pdu_vreadf
45b63f09ba89 Input: soc_button_array - add mapping for airplane mode button
2aa744ad0e9e Bluetooth: L2CAP: Send reject on command corrupted request
25a6fdd26d13 Bluetooth: hci_event: Fix not checking if HCI_OP_INQUIRY has been sent
71e1c7654010 USB: serial: option: add Quectel RM500Q R13 firmware support
d521896bcc0b USB: serial: option: add Foxconn T99W265 with new baseline
d0cf8a4bee42 USB: serial: option: add Quectel EG912Y module support
f41f44cea9eb USB: serial: ftdi_sio: update Actisense PIDs constant names
20d84a19466f wifi: cfg80211: fix certs build to not depend on file order
7a0a5cbfea34 wifi: cfg80211: Add my certificate
9dcf50da596d iio: adc: ti_am335x_adc: Fix return value check of tiadc_request_dma()
abbebddb19ac iio: common: ms_sensors: ms_sensors_i2c: fix humidity conversion time table
c40db29812f9 scsi: bnx2fc: Fix skb double free in bnx2fc_rcv()
e3749f85fddc Input: ipaq-micro-keys - add error handling for devm_kmemdup
b5f67cea27fa iio: imu: inv_mpu6050: fix an error code problem in inv_mpu6050_read_raw
505df1c0abe6 interconnect: Treat xlate() returning NULL node as an error
cc5eec86a4ff btrfs: do not allow non subvolume root targets for snapshot
bd267af18f7b smb: client: fix NULL deref in asn1_ber_decoder()
41350e813acf ALSA: hda/hdmi: add force-connect quirk for NUC5CPYB
a4692c38cd57 ALSA: hda/hdmi: Add quirk to force pin connectivity on NUC10
e032ddb0e387 pinctrl: at91-pio4: use dedicated lock class for IRQ
0b85149a9dc1 i2c: aspeed: Handle the coalesced stop conditions with the start conditions.
3dce7a52b2fa afs: Fix overwriting of result of DNS query
97be1e865e70 keys, dns: Allow key types (eg. DNS) to be reclaimed immediately on expiry
9e0d18f946b2 net: check dev->gso_max_size in gso_features_check()
59dc16ce095d net: warn if gso_type isn't set for a GSO SKB
63ad66d4844b afs: Fix dynamic root lookup DNS check
65d2c287fc00 afs: Fix the dynamic root's d_delete to always delete unused dentries
a3218319ee86 net: check vlan filter feature in vlan_vids_add_by_dev() and vlan_vids_del_by_dev()
12e5a4719c99 net/rose: fix races in rose_kill_by_device()
be0988c9b075 ethernet: atheros: fix a memleak in atl1e_setup_ring_resources
8b6f8bfe3a3a net: sched: ife: fix potential use-after-free
f245312e9f4f net/mlx5e: Correct snprintf truncation handling for fw_version buffer used by representors
e8ba688a64f9 net/mlx5: Fix fw tracer first block check
fc4c53f8e929 net/mlx5e: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list()
50aa92e6999d Revert "net/mlx5e: fix double free of encap_header"
b851889e9184 wifi: mac80211: mesh_plink: fix matches_local logic
717f08fb5140 s390/vx: fix save/restore of fpu kernel context
c48219fad182 reset: Fix crash when freeing non-existent optional resets
c999682ce8de ARM: OMAP2+: Fix null pointer dereference and memory leak in omap_soc_device_init
dbc8edb80f05 smb: client: fix OOB in smb2_query_reparse_point()
bc3c57493b20 ksmbd: fix wrong name of SMB2_CREATE_ALLOCATION_SIZE
(From OE-Core rev: 28b884d3ba7854fbddd353f57214a4a24799f29c)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
d330ef1d295d Linux 5.10.203
9c957e2b5254 driver core: Release all resources during unbind before updating device links
2325d3b6b10f r8169: fix deadlock on RTL8125 in jumbo mtu mode
b29e6055db1e r8169: disable ASPM in case of tx timeout
8b76708eb9f1 mmc: sdhci-sprd: Fix vqmmc not shutting down after the card was pulled
b532bc9b73e6 mmc: core: add helpers mmc_regulator_enable/disable_vqmmc
376fabe3677a mmc: block: Retry commands in CQE error recovery
bf62a283a779 mmc: core: convert comma to semicolon
bb785011843e mmc: cqhci: Fix task clearing in CQE error recovery
cb9ca7cc273b mmc: cqhci: Warn of halt or task clear failure
e94ededefc42 mmc: cqhci: Increase recovery halt timeout
2011f06e32ab cpufreq: imx6q: Don't disable 792 Mhz OPP unnecessarily
6b35f36ff8f0 cpufreq: imx6q: don't warn for disabling a non-existing frequency
910566a789a2 scsi: qla2xxx: Fix system crash due to bad pointer access
46a4bf13502f scsi: qla2xxx: Use scsi_cmd_to_rq() instead of scsi_cmnd.request
b19fe82b4b92 scsi: core: Introduce the scsi_cmd_to_rq() function
c2b6f7e48e38 smb3: fix caching of ctime on setxattr
f9aa2857c6e6 fs: add ctime accessors infrastructure
8d4237a149e3 drm/amdgpu: don't use ATRM for external devices
2df04d76c97d driver core: Move the "removable" attribute from USB to core
01fbfcd8105c ima: annotate iint mutex to avoid lockdep false positive warnings
8a3322a35f74 fbdev: stifb: Make the STI next font pointer a 32-bit signed offset
15bc430fc176 misc: pci_endpoint_test: Add deviceID for J721S2 PCIe EP device support
a6128ad78771 misc: pci_endpoint_test: Add deviceID for AM64 and J7200
c922282d11b3 s390/cmma: fix detection of DAT pages
03e07092c6ce s390/mm: fix phys vs virt confusion in mark_kernel_pXd() functions family
cb420e35571c ASoC: SOF: sof-pci-dev: Fix community key quirk detection
b37e1fbe6d30 ASoC: SOF: sof-pci-dev: don't use the community key on APL Chromebooks
3a79fcb743f7 ASoC: SOF: sof-pci-dev: add parameter to override topology filename
4aeb3320d70e ASoC: SOF: sof-pci-dev: use community key on all Up boards
6368a32d26a3 ASoC: Intel: Move soc_intel_is_foo() helpers to a generic header
8e52b19d92e1 smb3: fix touch -h of symlink
889c84e2b200 net: ravb: Start TX queues after HW initialization succeeded
5d428cda38e8 net: ravb: Use pm_runtime_resume_and_get()
f78d0f301395 ravb: Fix races between ravb_tx_timeout_work() and net related ops
a36e00e957a2 r8169: prevent potential deadlock in rtl8169_close
8a909c119827 Revert "workqueue: remove unused cancel_work()"
72ce3379cd5e octeontx2-pf: Fix adding mbox work queue entry when num_vfs > 64
ef7af2105a25 net: stmmac: xgmac: Disable FPE MMC interrupts
f18bcace1294 selftests/net: mptcp: fix uninitialized variable warnings
cb1644f9f005 selftests/net: ipsec: fix constant out of range
fe7fd9c209e8 dpaa2-eth: increase the needed headroom to account for alignment
772fe1da9a8d ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet
9ef94ec8e52e usb: config: fix iteration issue in 'usb_get_bos_descriptor()'
713530d3c8f1 USB: core: Change configuration warnings to notices
ae6e41066e6e hv_netvsc: fix race of netvsc and VF register_netdevice
4937fb36bbb8 Input: xpad - add HyperX Clutch Gladiate Support
5c4d5c8556ee btrfs: make error messages more clear when getting a chunk map
74ff16c84433 btrfs: send: ensure send_fd is writable
12a0ec5ed7cf btrfs: fix off-by-one when checking chunk map includes logical address
baaab02a8c0b btrfs: ref-verify: fix memory leaks in btrfs_ref_tree_mod()
2d6c2238acf8 btrfs: add dmesg output for first mount and last unmount of a filesystem
bab9cec493b6 parisc: Drop the HP-UX ENOSYM and EREMOTERELEASE error codes
b53dc7c766ae powerpc: Don't clobber f0/vs0 during fp|altivec register save
b5cbbc2b2da9 iommu/vt-d: Add MTL to quirk list to skip TE disabling
f62ceb880a71 bcache: revert replacing IS_ERR_OR_NULL with IS_ERR
18ac427906af dm verity: don't perform FEC for failed readahead IO
c3c9f9273822 dm-verity: align struct dm_verity_fec_io properly
5de40a7ffaa0 ALSA: hda/realtek: Add supported ALC257 for ChromeOS
cf80c538061e ALSA: hda/realtek: Headset Mic VREF to 100%
f338f738d7bd ALSA: hda: Disable power-save on KONTRON SinglePC
b02b66194d54 mmc: block: Do not lose cache flush during CQE error recovery
71c9fb31e18b firewire: core: fix possible memory leak in create_units()
d6bac7048f28 pinctrl: avoid reload of p state in list iteration
8fb79be6e980 io_uring: fix off-by one bvec index
f5f85ea5bb6a USB: dwc3: qcom: fix wakeup after probe deferral
5ac96667ea32 usb: dwc3: set the dma max_seg_size
2620c5977f49 usb: dwc3: Fix default mode initialization
d5325ed6eb7c USB: dwc2: write HCINT with INTMASK applied
5d7a5e63dc3b USB: serial: option: don't claim interface 4 for ZTE MF290
f1432dff5dd6 USB: serial: option: fix FM101R-GL defines
14a6e089d610 USB: serial: option: add Fibocom L7xx modules
f49ad460a2c8 bcache: fixup lock c->root error
be327b8f76c2 bcache: fixup init dirty data errors
3ebf83df623a bcache: prevent potential division by zero error
e74c2e6fecb7 bcache: check return value from btree_node_alloc_replacement()
c73dd8f4b476 dm-delay: fix a race between delay_presuspend and delay_bio
a70b6da7c640 hv_netvsc: Mark VF as slave before exposing it to user-mode
ff6c130e48a7 hv_netvsc: Fix race of register_netdevice_notifier and VF register
518ef825016d USB: serial: option: add Luat Air72*U series products
c841de6247e9 s390/dasd: protect device queue against concurrent access
89f9ba7ee702 bcache: fixup multi-threaded bch_sectors_dirty_init() wake-up race
cd7a0695906d bcache: replace a mistaken IS_ERR() by IS_ERR_OR_NULL() in btree_gc_coalesce()
be8af3b6c80d swiotlb-xen: provide the "max_mapping_size" method
8c4b5cc90843 ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CVA
0f312dc1eb2f ASoC: simple-card: fixup asoc_simple_probe() error handling
fcc60c0a1870 nfsd: lock_rename() needs both directories to live on the same fs
ec75d1d0cd2c ext4: make sure allocate pending entry not fail
10341e77e49f ext4: fix slab-use-after-free in ext4_es_insert_extent()
5527898c6a9f ext4: using nofail preallocation in ext4_es_insert_extent()
2ae2be6e7cd7 ext4: using nofail preallocation in ext4_es_insert_delayed_block()
aa6568033cfb ext4: using nofail preallocation in ext4_es_remove_extent()
608758ef8670 ext4: use pre-allocated es in __es_remove_extent()
fcb07d8ea363 ext4: use pre-allocated es in __es_insert_extent()
0cc7653887b0 ext4: factor out __es_alloc_extent() and __es_free_extent()
8234c1c690a3 ext4: add a new helper to check if es must be kept
62526a55fee7 MIPS: KVM: Fix a build warning about variable set but not used
3b2e8b30b0d7 media: ccs: Correctly initialise try compose rectangle
1301467cbe4c lockdep: Fix block chain corruption
cbfa5aadd650 USB: dwc3: qcom: fix ACPI platform device leak
68fe711312f1 USB: dwc3: qcom: fix resource leaks on probe deferral
2be451e7a2f1 nvmet: nul-terminate the NQNs passed in the connect command
86a7f67d7605 nvmet: remove unnecessary ctrl parameter
d24a18cb51bf afs: Fix file locking on R/O volumes to operate in local mode
6e48c3175d0b afs: Return ENOENT if no cell DNS record can be found
497e9b0b21a6 net: axienet: Fix check for partial TX checksum
8fb804dabdda amd-xgbe: propagate the correct speed and duplex status
b7c9e8c038f5 amd-xgbe: handle the corner-case during tx completion
a2e868ad07eb amd-xgbe: handle corner-case during sfp hotplug
ebc7fbd15a64 arm/xen: fix xen_vcpu_info allocation alignment
5ada292b5c50 net/smc: avoid data corruption caused by decline
3ae55e3a3734 net: usb: ax88179_178a: fix failed operations during ax88179_reset
27914bff9602 ipv4: Correct/silence an endian warning in __ip_do_redirect
f8467afa754d HID: fix HID device resource race between HID core and debugging support
2f0ea5e0944a HID: core: store the unique system identifier in hid_device
650e43dfe7d2 drm/rockchip: vop: Fix color for RGB888/BGR888 format on VOP full
cc3b63c089e7 ata: pata_isapnp: Add missing error check for devm_ioport_map()
9942c1948346 wireguard: use DEV_STATS_INC()
939352ad6502 drm/panel: simple: Fix Innolux G101ICE-L01 timings
a5e82e345f4a drm/panel: simple: Fix Innolux G101ICE-L01 bus flags
60660af9577a drm/panel: auo,b101uan08.3: Fine tune the panel power sequence
2c688ae2dd78 drm/panel: boe-tv101wum-nl6: Fine tune the panel power sequence
3b797242d178 afs: Make error on cell lookup failure consistent with OpenAFS
dbc1929a5214 afs: Fix afs_server_list to be cleaned up with RCU
c3bead2f8fca PCI: keystone: Drop __init from ks_pcie_add_pcie_{ep,port}()
ac65f8979b0e RDMA/irdma: Prevent zero-length STAG registration
(From OE-Core rev: 501af4c5f91746f934083178efdb1a59ff82ff51)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The original CVE-2023-29406.patch is not complete, causing docker
failures at runtime, backport a complementary fix from golang upstream.
(From OE-Core rev: 973901530c98bc3f1b10d8bb89d55decf6848713)
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This reverts commit d9273edae80978c34f8426f34f991b9598828aa9.
This commit is causing breakage for some vendor kernel builds.
(From OE-Core rev: 59cc2e75c15f8c6371a4c4a3b7bd2e6c3f145fbc)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The license of ghostscript has switched to Affero GPL since version 9.07
via commit:
* 3cc5318 Switch Ghostscript/GhostPDL to Affero GPL
https://github.com/ArtifexSoftware/ghostpdl/commit/3cc5318
Correct it with `AGPL-3.0-or-later`.
(From OE-Core rev: 8e192a2e0c2fdad18ea4c08774493225f31931a0)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
During testing of the v6.4 reference kernel, it was noticed that
on-target modules no longer matched the magic value of the running
kernel.
This was due to a different localversion in the cross built kernel
and the scripts / resources created on target.
This was due to changes in the setlocalversion script introduced
in the v6.3 series.
The .scmversion file is no longer used (or packaged) to inhibit
the addition of a "+" (through querying of the git status of the
kernel) or the setting of a local version.
We recently introduced the KERNEL_LOCALVERSION variable to allow
recipes to place a value in .scmversion, so we extend the use of
that variable to kernel-arch.bbclass and use it to set the
exported variable LOCALVERSION.
We must do it at the kernel-arch level, as the variable must be
exported in any kernel build to ensure that setlocalversion always
correctly sets the localversion.
(From OE-Core rev: d9273edae80978c34f8426f34f991b9598828aa9)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Cherry-picked from master 765b13b7305c8d2f222cfc66d77c02e6a088c691
Signed-off-by: Andreas Helbech Kleist <andreaskleist@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Currently myhostname is always added to nsswitch.conf even if it is
not included in PACKAGECONFIG.
This is based on changes made in OE-core rev:
ba3a78c08cb0ce08afde049610d3172b9e3b0695
Cc: Chen Qi <Qi.Chen@windriver.com>
(From OE-Core rev: 17e20ce90b5b3abb5a597d4a5b470c8eaa3fd296)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CVE-2024-24575:
libgit2 is a portable C implementation of the Git core methods provided
as a linkable library with a solid API, allowing to build Git functionality
into your application. Using well-crafted inputs to `git_revparse_single`
can cause the function to enter an infinite loop, potentially causing a
Denial of Service attack in the calling application. The revparse function
in `src/libgit2/revparse.c` uses a loop to parse the user-provided spec
string. There is an edge-case during parsing that allows a bad actor to
force the loop conditions to access arbitrary memory. Potentially, this
could also leak memory if the extracted rev spec is reflected back to the
attacker. As such, libgit2 versions before 1.4.0 are not affected. Users
should upgrade to version 1.6.5 or 1.7.2.
CVE-2024-24577:
libgit2 is a portable C implementation of the Git core methods provided
as a linkable library with a solid API, allowing to build Git functionality
into your application. Using well-crafted inputs to `git_index_add` can
cause heap corruption that could be leveraged for arbitrary code execution.
There is an issue in the `has_dir_name` function in `src/libgit2/index.c`,
which frees an entry that should not be freed. The freed entry is later
used and overwritten with potentially bad actor-controlled data leading to
controlled heap corruption. Depending on the application that uses libgit2,
this could lead to arbitrary code execution. This issue has been patched
in version 1.6.5 and 1.7.2.
References:
https://nvd.nist.gov/vuln/detail/CVE-2024-24575https://security-tracker.debian.org/tracker/CVE-2024-24575https://nvd.nist.gov/vuln/detail/CVE-2024-24577https://security-tracker.debian.org/tracker/CVE-2024-24577
(From OE-Core rev: 942254eb3ef29c8672a35015c086721c4fbe5a4f)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When saving HSTS data to an excessively long file name, curl could end up
removing all contents, making subsequent requests using that file unaware
of the HSTS status they should otherwise use.
(From OE-Core rev: e0f503594e7bc0da9771b69ca7243a34dcadbdde)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CVE-2023-45285:
Using go get to fetch a module with the ".git" suffix may unexpectedly
fallback to the insecure "git://" protocol if the module is unavailable
via the secure "https://" and "git+ssh://" protocols, even if GOINSECURE
is not set for said module. This only affects users who are not using
the module proxy and are fetching modules directly (i.e. GOPROXY=off).
CVE-2023-45287:
Before Go 1.20, the RSA based TLS key exchanges used the math/big
library, which is not constant time. RSA blinding was applied to prevent
timing attacks, but analysis shows this may not have been fully effective.
In particular it appears as if the removal of PKCS#1 padding may leak
timing information, which in turn could be used to recover session key
bits. In Go 1.20, the crypto/tls library switched to a fully constant
time RSA implementation, which we do not believe exhibits any timing
side channels.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-45285https://nvd.nist.gov/vuln/detail/CVE-2023-45287https://security-tracker.debian.org/tracker/CVE-2023-45285https://security-tracker.debian.org/tracker/CVE-2023-45287
(From OE-Core rev: 616857b9918e8d2e576239b3db2f9f077d1a7222)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Align with text in the other branches.
(From yocto-docs rev: 394ccddfa357d186006439600833fce917a1ffac)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add the hint to the test setup that runqemu-gen-tapdevs will need the
iptables package installed.
(From yocto-docs rev: ca4c984006972d34aa51f05797ec8bd47dc675bb)
Signed-off-by: Simone Weiß <simone.p.weiss@posteo.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Concept of gcc-source prevents cve-check to detect existing
CVE patch file.
So ignore this CVE in all recipes using gcc-source via this
include file.
(From OE-Core rev: 04511734c6dc8c7dda3a943b385cd273d012d8c7)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This CVE reports that apple had to upgrade curl because of other
already reported CVEs:
* CVE-2023-38039: not affected, introduced in 7.84.0
* CVE-2023-38545: patch already backported
* CVE-2023-38546: patch already backported
* CVE-2023-42915: reference to itself
(From OE-Core rev: 2771a1248a251650f6e2e64731f56ed928c29ce5)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The task for fstypes with compression is the same as the task for the
uncompressed fstypes, e.g. when adding tar.xz to `IMAGE_FSTYPES`, it will
be included into the do_image_tar task and not creating a separate
do_image_tar.xz task.
This commit fixes `LIVE_ROOTFS_TYPE` with compressed fstypes by
depending on the actual task instead of the non-existent
do_image_<fstype>.<compression> task.
Fixes [YOCTO #15331]
(From OE-Core rev: 60d88989698968c13f8e641f0ba1a82fcf700fb7)
Signed-off-by: Ludovic Jozeau <ludovic.jozeau@smile.fr>
Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 67c507e3d42e52a6d452c4a453eeaf7f2e2d68d6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
==========
-Fix compiler error when checking if required blocks in parent templates are empty.
-xmlattr filter does not allow keys with spaces.
-Make error messages stemming from invalid nesting of {% trans %} blocks more helpful
(cherry picked from OE-Core rev: 8a0524464583d69df7746253f5020c2c125a8e1f)
(From OE-Core rev: 0f0dcf520505d809599a63961ecb5b1e74053b24)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(From OE-Core rev: 89974b7fa33f3e9d3e3a4df7ad219898fe400d3a)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
UBOOT_CONFIG accepts a third parameter for the UBOOT_BINARY that isn't
documented. To show its usage another example from the meta-freescale layer
was picked.
(From yocto-docs rev: aba67b58711019a6ba439b2b77337f813ed799ac)
Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The VSCode extension is now officially maintained and published by the
Yocto Project so it should be referenced in the manuals to help users
discover it.
I located the most relevant places to reference the extension by looking
at how the old Eclipse plugin was documented in the 2.6 manuals as well
as the current Toaster references.
(From yocto-docs rev: 21ec0d3b52069dfc85ff47fb4f913a26a092c480)
Signed-off-by: Enguerrand de Ribaucourt <enguerrand.de-ribaucourt@savoirfairelinux.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The yocto website has changed its structure. Update the section for
Accessing the Downloads page to match the new structure.
(From yocto-docs rev: c67d471145cf09162059368ffd99f0c80df92520)
Signed-off-by: Simone Weiß <simone.p.weiss@posteo.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
As used in the rest of the manual.
(From yocto-docs rev: c68954d905f01f6cc4f7c8ceb90e77cf9068e639)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CVE-2024-0553
A vulnerability was found in GnuTLS. The response times to malformed ciphertexts in RSA-PSK ClientKeyExchange differ from response times of ciphertexts with correct PKCS#1 v1.5 padding. This issue may allow a remote attacker to perform a timing side-channel attack in the RSA-PSK key exchange, potentially leading to the leakage of sensitive data. CVE-2024-0553 is designated as an incomplete resolution for CVE-2023-5981.
CVE-2024-0567
A vulnerability was found in GnuTLS, where a cockpit (which uses gnuTLS) rejects a certificate chain with distributed trust. This issue occurs when validating a certificate chain with cockpit-certificate-ensure. This flaw allows an unauthenticated, remote client or attacker to initiate a denial of service attack.
Upstream-Status: Backport
[40dbbd8de4
&
9edbdaa84e]
Reference: https://ubuntu.com/security/CVE-2024-0553https://ubuntu.com/security/CVE-2024-0567
(From OE-Core rev: de74fd5dea8cc71af1d457b4e688cfbe0f39e4d8)
Signed-off-by: Vijay Anusuri <vanusuri@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Documentation for this patch is under
66bc1fcdee
(From OE-Core rev: 626711a95f387090a4705401d2f9406909821f95)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
scripts/pybootchartgui/pybootchartgui/draw.py:820: SyntaxWarning: "is not" with a literal. Did you mean "!="?
if (OPTIONS.show_pid or OPTIONS.show_all) and ipid is not 0:
scripts/pybootchartgui/pybootchartgui/draw.py:918: SyntaxWarning: "is not" with a literal. Did you mean "!="?
if i is not 0:
(From OE-Core rev: ebd61290a644a6d9f2b3701e0e7ea050636da76c)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 8d996616f0ca57220d939a41ca9ba6d696ea2a4f)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This includes fix for CVE-2023-7207.
Drop all submitted patches.
Apply a patch from git to fix the build with clang.
[ YOCTO #11674 ]
$git log --oneline release_2_13..v2.14
4a41909 (HEAD, tag: v2.14) Version 2.14
6f9e5d3 Update NEWS
807b3ea Use GNU ls algorithm for deciding timestamp format
19219d1 Fix integer overflows in timestamp output
ed28f14 Whitespace cleanup
4ab2813 Update version of gnulib
0987d63 Fix appending to archives bigger than 2G
1df0062 Fix combination of --create, --append, --directory
6a94d5e New option --ignore-dirnlink
376d663 Fix 45b0ee2b407913c533f7ded8d6f8cbeec16ff6ca.
beba8c0 Require automake 1.16.5
70fffa7 Update for newer autotools
a1b2f78 Fix calculation of CRC in copy-out mode.
18ea636 Upgrade gnulib
1a61f62 Update copyright years
a1c97c8 Fix wording in the manpage
97fab48 Update copyright years
86dacfe Remove redundant condition check
4d16930 Use inttostr to represent integer values as strings
236684f Fix dynamic string reallocations
dfc801c Fix previous commit
dd96882 Rewrite dynamic string support.
269d204 Improve online version of the documentation.
7dd8ba9 Update gnulib
905907c Update copyright years
4a78d77 Formatting changes in the documentation.
9fe8494 Update copyright years
641d3f4 Minor fix * src/global.c: Remove superfluous declaration of program_name
0c4ffde Fix handling of device numbers (part 2)
df55fb1 Fix handling of device numbers on copy out.
b1c8583 Improve 684b7ac5
684b7ac Fix cpio header verification.
(From OE-Core rev: 203804370997eeb015ef9da90b567ea2c2f9f3a6)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This CVE is for iCPE cloudflare:zlib.
Alternative to ignoring would be to limit CVE_PRODUCT, but
historic CVEs already have two - gnu:zlib and zlib:zlib.
So limiting it could miss future CVEs.
(From OE-Core rev: f46c9105d4253153a5986f2b307273e43ee98c33)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This reverts commit 5eab65275d.
CVE-2023-32001 has been marked "REJECT" in the NVD CVE List as
there is no safe measure against it.
These CVEs are stored in the NVD, but do not show up in search results.
Link: https://nvd.nist.gov/vuln/detail/CVE-2023-32001
(From OE-Core rev: a3b6216bcb3425b6e30ca73488a5eb6ba58e4836)
Signed-off-by: Poonam Jadhav poonam.jadhav@kpit.com
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Sometimes NVD servers are unstable and return too many errors.
There is an option to have higher fetch attempts to increase the chances
of successfully fetching the CVE data.
Additionally, it also makes sense to progressively increase the delay
after a failed request to an already unstable or busy server.
The increase in delay is reset after every successful request and
the maximum delay is limited to 30 seconds.
Also, the logs are improved to give more clarity.
(From OE-Core rev: f2e30f54e1dbb36d7527d0117eb2435f25e7e154)
Signed-off-by: Dhairya Nagodra <dnagodra@cisco.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 7101d654635b707e56b0dbae8c2146b312d211ea)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
As per NVD, the public rate limit is 5 requests in 30s (6s delay).
Using an API key increases the limit to 50 requests in 30s (0.6s delay).
However, NVD still recommends sleeping for several seconds so that the
other legitimate requests are serviced without denial or interruption.
Keeping the default sleep at 6 seconds and 2 seconds with an API key.
For failures, the wait time is unchanged (6 seconds).
Reference: https://nvd.nist.gov/developers/start-here#RateLimits
(From OE-Core rev: 4f7e40652cdf647c28f7dc6052bfa5db6bc9d8fb)
Signed-off-by: Dhairya Nagodra <dnagodra@cisco.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 5c32e2941d1dc3d04a799a1b7cbd275c1ccc9e79)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Sometimes NVD servers are unstable and return too many errors.
Last time we increased number of attempts from 3 to 5, but
further increasing is not reasonable as in normal case
too many retries is just abusive.
Keep retries low as default and allow to increase as needed.
(From OE-Core rev: 036969937e7c84cc068efe0355dd26281cf89f03)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 6b6fd8043d83b99000054ab6ad2c745d07c6bcc1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This variable is not referenced in oe-core anymore.
(From OE-Core rev: 15a79302aa46c58f962e12956aa4fcd0a178cf58)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 905b45a814cb33327503b793741c19b44c8550b3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Adds context manager API for the asyncrcp client class which allow
writing code that will automatically close the connection like so:
with hashserv.create_client(address) as client:
...
Rework the bitbake-hashclient tool and PR server to use this new API to
fix warnings about unclosed event loops when exiting
(Bitbake rev: ee090484cc25d760b8c20f18add17b5eff485b40)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d01d684a0f6398270fe35ed59b7d28f3fd9b7e41)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The target_dumper code is basically broken. It has been reading binary files
over the text base serial communication and runs at every command failure which
makes no sense. Each run might overwrite files from the previous run and the
output appears corrupted due to confusion from the binary data.
It isn't possible to cherry-pick "testimage: Drop target_dumper and most of monitor_dumper"
from master, so just make target_dumper, host_dumper, and monitor_dumper empty
functions.
For further details see:
https://lists.openembedded.org/g/openembedded-architecture/message/1888
(From OE-Core rev: 960e7e3dffa22c2142cb672c68cd9a8f0e3998a3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Some distributions shipping gcc12 end up with stringop-overflow warnings
e.g.
/usr/include/bits/unistd.h:74:10: error: ‘__pread_alias’ specified size between 9223372036854775813 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Werror=stringop-overflow=]
74 | return __glibc_fortify (pread, __nbytes, sizeof (char),
| ^~~~~~~~~~~~~~~
Until fixed, lets not treat this warning as hard error
MJ: this is needed e.g. on ubuntu 24.04 after gcc was upgraded
from 13.2.0-8ubuntu1 to 13.2.0-9ubuntu1 which includes
switch _FORTIFY_SOURCE to 3:
https://changelogs.ubuntu.com/changelogs/pool/main/g/gcc-13/gcc-13_13.2.0-9ubuntu1/changelog
elfutils config.log then shows:
configure:6762: checking whether to add -D_FORTIFY_SOURCE=2 to CFLAGS
configure:6779: gcc -c -D_FORTIFY_SOURCE=2 -isystem/work/x86_64-linux/elfutils-native/0.186-r0/recipe-sysroot-native/usr/include -O2 -pipe -Werror -isystem/work/x86_64-linux/elfutils-native/0.186-r0/recipe-sysroot-native/usr/include conftest.c >&5
<command-line>: error: "_FORTIFY_SOURCE" redefined [-Werror]
<built-in>: note: this is the location of the previous definition
cc1: all warnings being treated as errors
configure:6786: result: no
and -D_FORTIFY_SOURCE=2 missing in CFLAGS later causes the above error
in do_compile
(From OE-Core rev: 94d1640d374c9a8827957cba8dbc1c1f978701b5)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
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>
In ssh in OpenSSH before 9.6, OS command injection might occur if a user name or
host name has shell metacharacters, and this name is referenced by an expansion
token in certain situations. For example, an untrusted Git repository can have a
submodule with shell metacharacters in a user name or host name.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-51385
Upstream patches:
7ef3787c84
(From OE-Core rev: 617640bd045f07b0870dc9f3bc838b3a9fbc3de7)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In ssh-agent in OpenSSH before 9.6, certain destination constraints can be
incompletely applied. When destination constraints are specified during
addition of PKCS#11-hosted private keys, these constraints are only applied
to the first key, even if a PKCS#11 token returns multiple keys.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-51384
Upstream patches:
881d9c6af9
(From OE-Core rev: 7a745dd1aa13fbf110cc4d86ddbc86617975d6ad)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A recipe variable handles its dependencies even on the "contains"
variables within the "inline Python expressions" like bb.utils.filter().
And it also handles those in the append operator correctly, but the
problem is that it does not so in the remove operator.
Fix it by adding the missing dependencies every time the remove
operator has been handled.
Also add a test case to check if the override operators handle
dependencies correctly.
(Bitbake rev: 23639edfbbb3fced7606dce211db8a31c5766585)
Signed-off-by: Insu Park <insu0.park@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Cherry-picked from master: b90520eedb1dbc7f6a3928d089fe74fafb864eb5
- Conflicts in data.py are resolved as the master branch moved
handle_contains() and handle_remove() out of the try block.
- The test code in codeparser.py are modified as the master branch
added three more arguments to the build_dependencies().
Signed-off-by: Insu Park <insu0.park@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
wtmp is filled with binary data which the run_serial command can't cope with.
Catting this results in confusion of the serial interface and potentially large
backlogs of data in the buffers which can hang qemu.
Exclude the problematic files from the command.
(From OE-Core rev: 2afd9a6002cba2a23dd62a1805b4be04083c041b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 599ac08a6f6fb3f6a89a897c8e06367c63c2f979)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
[YOCTO #14933]
test_storlines is yet another Python ptest that fails intermittently on
the Yocto AB, so disable it during ptests for now.
(From OE-Core rev: b71d5ec10f8e64fc6102c66dfc36151f2b0b3c86)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit d7b9f8157e6214a83b5495e8a32e11540ae65ff8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When SRCREV is used, call bb.fetch.get_srcrev() before accessing
SRC_URI. Without this new bb.fetch.get_srcrev() call, SRC_URI might be
accessed before SRCREV had a chance to be processed.
In master, this is fixed by https://git.yoctoproject.org/poky/commit/?id=62afa02d01794376efab75623f42e7e08af08526
However, this commit is not suited for backport since it is quite invasive.
The part of the commit that fix the bug is:
--- a/meta/classes/externalsrc.bbclass
+++ b/meta/classes/externalsrc.bbclass
@@ -63,6 +63,7 @@ python () {
else:
d.setVar('B', '${WORKDIR}/${BPN}-${PV}')
+ bb.fetch.get_hashvalue(d)
local_srcuri = []
fetch = bb.fetch2.Fetch((d.getVar('SRC_URI') or '').split(), d)
for url in fetch.urls:
NB: bb.fetch.get_hashvalue() does not exist in kirkstone but is
equivalent to bb.fetch.get_srcrev().
Fixes [YOCTO #14918]
(From OE-Core rev: f6563cca6c4bf627e904d81fbe5b0b0f2b16a107)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Suggested-by: Chris Wyse <chris.wyse@wysechoice.net>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A malicious HTTP sender can use chunk extensions to cause a receiver
reading from a request or response body to read many more bytes from
the network than are in the body. A malicious HTTP client can further
exploit this to cause a server to automatically read a large amount
of data (up to about 1GiB) when a handler fails to read the entire
body of a request. Chunk extensions are a little-used HTTP feature
which permit including additional metadata in a request or response
body sent using the chunked encoding. The net/http chunked encoding
reader discards this metadata. A sender can exploit this by inserting
a large metadata segment with each byte transferred. The chunk reader
now produces an error if the ratio of real body to encoded bytes grows
too small.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-39326https://security-tracker.debian.org/tracker/CVE-2023-39326
(From OE-Core rev: 448df3bb9277287dd8586987199223b7314fdd01)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Without a CVE tag, It will be recognised as Unpatched by cve_check task.
(From OE-Core rev: afc21d7fe86d26bf62e56fc611750f89fe73aa1a)
Signed-off-by: mark.yang <mark.yang@lge.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Without a CVE tag, It will be recognised as Unpatched by cve_check task.
(From OE-Core rev: ce4ac3d167496d2f3a3029ef83dc418a0794c2fb)
Signed-off-by: mark.yang <mark.yang@lge.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A bug in QEMU could cause a guest I/O operation otherwise
addressed to an arbitrary disk offset to be targeted to
offset 0 instead (potentially overwriting the VM's boot code).
This change is to fix CVE-2023-5088.
Link: 7d7512019f
(From OE-Core rev: aa84c668bfe2436d36f49a422c775119e2412c8b)
Signed-off-by: Sourav Pramanik <sourav.pramanik@kpit.com>
Signed-off-by: Sourav Kumar Pramanik <pramanik.souravkumar@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Align the order from `BB_SIGNATURE_HANDLER` to `SSTATE_MIRRORS` in Quick Build
with the order in the default local conf. While trivial it is easier to find,
if the order matches.
(From yocto-docs rev: 2ab0bdc7ff74aaddd8a556046de3410300ba560a)
Signed-off-by: Simone Weiß <simone.p.weiss@posteo.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Better than using "python unittest" without any
special formatting.
(From yocto-docs rev: 544cc1f950445d2c103c9adfa9147af1513b7a14)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
SRC_URI[md5sum] has been deprecated for a long time. Discourage its use
by removing it from examples and note that it should be replaced by
SRC_URI[sha256sum] when updating recipes.
Also mention that bitbake supports other checksums, though they are not
commonly used.
(From yocto-docs rev: fb5b87cf7322542896c269f404571a655ed6bf91)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
"--subject-prefix" applies to "git format-patch", not "git send-email"
(From yocto-docs rev: cf3697cebc0494a624fa2766d07c3532ec6b4341)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- nanbield is now released
- update the start and end dates
(From yocto-docs rev: 51f26829e89674c55471a6a077e5f49a97db84c3)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
After the following meta-yocto commits, MIRRORS & PREMIRRORS are no
longer set in the poky distro config file:
67b79df4fbff ("poky.conf: remove redundant MIRRORS")
1b71a3b9418f ("poky: Drop PREMIRRORS entries for scms")
(From yocto-docs rev: c7882126a75e8814764379d40bf56f39da5d3c19)
Signed-off-by: Paul Barker <paul.barker.ct@bp.renesas.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Verify that an existing layer path was given when adding a new
layer.
Manually using the shell for globbing is unnecessary, use the glob
function instead for cleaner code.
(Bitbake rev: de1cf0e31f3836a449cbd17490a2f6b6a86b17f9)
Signed-off-by: Marta Rybczynska <marta.rybczynska@syslinbit.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The tests don't actually need sudo on core-image-ptest-openssh.
Based on logs seen in
https://bugzilla.yoctoproject.org/show_bug.cgi?id=15178 it seems
that socket errors from sudo are creeping into stderr which are failing
the banner ptest from openssh. Removing sudo should help removing
the stderr messages and possibly cure the banner test failures.
(From OE-Core rev: 47e754f483b674b207bfddcc8d4c5d9a3008e102)
(From OE-Core rev: bce20153973ceff3ac9fc98b30e726aa6698d8ee)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is required by latest webkit when built with x11 support.
(From OE-Core rev: 024edebf6f722ae4d05411be348730d9eeb3bd7c)
(From OE-Core rev: 9fc0f0a15388af175bd53de5190801750064e60c)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Claus Stovgaard <claus.stovgaard@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bluetooth HID Hosts in BlueZ may permit an unauthenticated Peripheral role
HID Device to initiate and establish an encrypted connection, and accept HID
keyboard reports,potentially permitting injection of HID messages when no user
interaction has occurred in the Central role to authorize such access. An example
affected package is bluez 5.64-0ubuntu1 in Ubuntu 22.04LTS. NOTE: in some cases,
a CVE-2020-0556 mitigation would have already addressed this Bluetooth HID Hosts issue.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-45866
Upstream patches:
https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/profiles/input?id=25a471a83e02e1effb15d5a488b3f0085eaeb675
(From OE-Core rev: f03cb448574a730d85ed6d80bb58561674005ede)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Some recipes reference these. Rather than continually trying to chase down the references
and taskhash issues, clear the variables for an easier life and simpler code. These
wouldn't convey anything useful in a native build.
(From OE-Core rev: 09ecafaf0e128c4dea062d359de37cbef461aed2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f8edeead263708889d31a7ff578ef8274cb678b4)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Match the code in rust-cross-canadian so that further simplifications
can be considered in future.
(From OE-Core rev: 9fb5f81f58306b2d355049698b6a17d045bd5e1e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5cb62d0a33777cb9afb1eea5f736a2580ce50dc7)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
rust-cross had special handling for armv7 targets but we also need this
for cross-canadian. Merge the code into the main function so everything is
consistent.
Also then fix the arm definition to be arm-eabi since ABI is correctly
being looked up.
(From OE-Core rev: 0adada8111c17e8e5a7c32cef86bdb8e7dfd79d3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ff3c3dbbd2bf1bb7bb70b55cca203e9eedcf14a8)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Based upon a patch from Otavio Salvador <otavio@ossystems.com.br>,
ensure the target json files are written in the correct order with
the most specific last incase it overwrites earlier files if the prefixes
match.
(From OE-Core rev: d8c030ef90272e42a1697f5195f887d09878aa01)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1912c4e9e0ecf9655f3b3a41588b54d7956f5899)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When a 'BUILD' target is requested we shouldn't be looking at TARGET_SYS but
at BUILD_SYS. Due to the way rust mangles triplets, we need the HOST_SYS triplet
to work with existing code - fixing that issue is a separate patch.
Also drop the arch_abi argument, it doens't make any sense to a getVar() call
and was a copy and paste error.
Based on a patch from Otavio Salvador <otavio@ossystems.com.br> but separated out
and tweaked.
Fixes: bd36593ba3 ("rust-common: Drop LLVM_TARGET and simplify")
(From OE-Core rev: cccbb8358be830b83a43fe1ff8a88932dee1c228)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d554161a045d12411f288394e253c54aa4c1257c)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Move the default value into a variable which can be overridden to
match more accurately the use case specific scenario.
(From OE-Core rev: 645370e85d8742d0614cd52ca7507b5df2d38ad8)
(From OE-Core rev: 93458c302938bf704e8e9f14dfdfee57454adf7a)
Signed-off-by: Niko Mauno <niko.mauno@vaisala.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
It rarely observes the problem while running shell script aborting
test repeatedly, at the problem, the test shell script never returns
to shell
Steps to reproduce:
1. Run test script and ctrl-c repeatedly
2. Observe whether returns to shell after ctrl-c
Fixed issue:
https://lists.gnu.org/archive/html/bug-bash/2023-10/msg00131.html
(From OE-Core rev: a351d62ca7deff548542c849a6fa696280b5533a)
Signed-off-by: Wenlin Kang <wenlin.kang@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
479e8b892541 Linux 5.10.202
610057f4f6e0 interconnect: qcom: Add support for mask-based BCMs
7ce66afcaaf6 netfilter: nf_tables: disable toggling dormant table state more than once
d9c4da8cb74e netfilter: nf_tables: fix table flag updates
7d1d3f113425 netfilter: nftables: update table flags from the commit phase
a98172e36e5f tracing: Have trace_event_file have ref counters
c6e8af2a8a63 io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pid
aeeb1ad2dd4e drm/amd/display: Change the DMCUB mailbox memory location from FB to inbox
e2bdd437886c drm/amdgpu: fix error handling in amdgpu_bo_list_get()
dfa8e63ca527 drm/amd/pm: Handle non-terminated overdrive commands.
7dc933b4b498 ext4: remove gdb backup copy for meta bg in setup_new_flex_group_blocks
0932764fb54a ext4: correct the start block of counting reserved clusters
3c1ad03a5ff2 ext4: correct return value of ext4_convert_meta_bg
d739a7e38944 ext4: correct offset of gdb backup in non meta_bg group to update_backups
c878db71edc0 ext4: apply umask if ACL support is disabled
3a51aee542b0 Revert "net: r8169: Disable multicast filter for RTL8168H and RTL8107E"
f6e014b5eb1d media: qcom: camss: Fix vfe_get() error jump
e2d2e266089d mm: kmem: drop __GFP_NOFAIL when allocating objcg vectors
6875820f36bf nfsd: fix file memleak on client_opens_release
b51b20c018c6 media: venus: hfi: add checks to handle capabilities from firmware
bcee276a1e02 media: venus: hfi: fix the check to handle session buffer requirement
da240b7bada2 media: venus: hfi_parser: Add check to keep the number of codecs within range
0f887306bd8b media: sharp: fix sharp encoding
dfa9f4ea6502 media: lirc: drop trailing space from scancode transmit
c041f5ddef00 f2fs: avoid format-overflow warning
829f0d5231b7 i2c: i801: fix potential race in i801_block_transaction_byte_by_byte
430603f6de33 net: phylink: initialize carrier state at creation
4dc0484e90a3 net: dsa: lan9303: consequently nested-lock physical MDIO
cb1006640cb3 i2c: designware: Disable TX_EMPTY irq while waiting for block length byte
8e29eebe4c39 lsm: fix default return value for inode_getsecctx
8327f50442d2 lsm: fix default return value for vm_enough_memory
a011391f019c Revert ncsi: Propagate carrier gain/loss events to the NCSI controller
969d994612ff arm64: dts: qcom: ipq6018: Fix tcsr_mutex register size
2b3931eb8e9c arm64: dts: qcom: ipq6018: switch TCSR mutex to MMIO
bdda1c356d58 PCI: exynos: Don't discard .remove() callback
62d15b6a6ec9 Bluetooth: btusb: Add 0bda:b85b for Fn-Link RTL8852BE
dbbf3c456002 Bluetooth: btusb: Add RTW8852BE device 13d3:3570 to device tables
990d4c76d254 bluetooth: Add device 13d3:3571 to device tables
3aba34baa4fb bluetooth: Add device 0bda:887b to device tables
0952747362c1 Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x0cb8:0xc559
8617305611c1 cpufreq: stats: Fix buffer overflow detection in trans_stats()
2ed25af15b32 tty: serial: meson: fix hard LOCKUP on crtscts mode
07c61839582d serial: meson: Use platform_get_irq() to get the interrupt
980c3135f1ae tty: serial: meson: retrieve port FIFO size from DT
1e66cd408353 serial: meson: remove redundant initialization of variable id
ba30578def84 ALSA: hda/realtek - Enable internal speaker of ASUS K6500ZC
ddd47d8d1ba6 ALSA: hda/realtek - Add Dell ALC295 to pin fall back table
a681d28b973f ALSA: info: Fix potential deadlock at disconnection
f04fa1e1997f xhci: Enable RPM on controllers that support low-power states
5e34fe50a976 parisc/pgtable: Do not drop upper 5 address bits of physical address
064c697cac4b parisc: Prevent booting 64-bit kernels on PA1.x machines
c6effcdd7dd0 i3c: master: cdns: Fix reading status register
76320f05b99d mtd: cfi_cmdset_0001: Byte swap OTP info
dce3e7c40055 mm/memory_hotplug: use pfn math in place of direct struct page manipulation
63d2023fbbe1 mm/cma: use nth_page() in place of direct struct page manipulation
d24340f08104 dmaengine: stm32-mdma: correct desc prep when channel running
788322e1ede6 mcb: fix error handling for different scenarios when parsing
25284c46b657 i2c: core: Run atomic i2c xfer when !preemptible
8f8fc95b3a7f kernel/reboot: emergency_restart: Set correct system_state
9386f59759b4 quota: explicitly forbid quota files from being encrypted
f729cf6f3217 jbd2: fix potential data lost in recovering journal raced with synchronizing fs bdev
db5ebaeb8fda PCI: keystone: Don't discard .probe() callback
2bcdc1b6b61e PCI: keystone: Don't discard .remove() callback
943347e53a75 genirq/generic_chip: Make irq_remove_generic_chip() irqdomain aware
b2c194fe8f31 mmc: meson-gx: Remove setting of CMD_CFG_ERROR
03ed26935beb wifi: ath11k: fix htt pktlog locking
f882f5190551 wifi: ath11k: fix dfs radar event locking
c3f61ca48612 wifi: ath11k: fix temperature event locking
cd5a262a07a5 ima: detect changes to the backing overlay file
df4133ebc86a firmware: qcom_scm: use 64-bit calling convention only when client is 64-bit
76211f1dd91d btrfs: don't arbitrarily slow down delalloc if we're committing
175f4b062f69 rcu: kmemleak: Ignore kmemleak false positives when RCU-freeing objects
3c1c1af25d45 PM: hibernate: Clean up sync_read handling in snapshot_write_next()
df8363e468f2 PM: hibernate: Use __get_safe_page() rather than touching the list
21bc829337ca arm64: dts: qcom: ipq6018: Fix hwlock index for SMEM
1fd46d32772d PCI/ASPM: Fix L1 substate handling in aspm_attr_store_common()
e3ed58ee4e4a mmc: sdhci_am654: fix start loop index for TAP value parsing
198366a5ffe6 mmc: vub300: fix an error code
3a4431014cfb clk: qcom: ipq6018: drop the CLK_SET_RATE_PARENT flag from PLL clocks
30af31fc002e clk: qcom: ipq8074: drop the CLK_SET_RATE_PARENT flag from PLL clocks
8dc83cf76290 parisc/pdc: Add width field to struct pdc_model
d08a1e75253b arm64: Restrict CPU_BIG_ENDIAN to GNU as or LLVM IAS 15.x or newer
61695b9aecfe ACPI: resource: Do IRQ override on TongFang GMxXGxx
6edbd6b4811f watchdog: move softlockup_panic back to early_param
85fe64c8dcce PCI/sysfs: Protect driver's D3cold preference from user space
1b0836242900 hvc/xen: fix error path in xen_hvc_init() to always register frontend driver
d5455c421fad hvc/xen: fix console unplug
a158a74e701b tty/sysrq: replace smp_processor_id() with get_cpu()
fc557bcfd7ff audit: don't WARN_ON_ONCE(!current->mm) in audit_exe_compare()
121973ef1ad7 audit: don't take task_lock() in audit_exe_compare() code path
910caee34640 KVM: x86: Ignore MSR_AMD64_TW_CFG access
66406d49ac14 KVM: x86: hyper-v: Don't auto-enable stimer on write from user-space
8cf6b6658541 x86/cpu/hygon: Fix the CPU topology evaluation for real
243c4833f345 scsi: megaraid_sas: Increase register read retry rount from 3 to 30 for selected registers
697bc325b977 scsi: mpt3sas: Fix loop logic
5fb8ec5943b1 bpf: Fix precision tracking for BPF_ALU | BPF_TO_BE | BPF_END
9617a9fe4f41 bpf: Fix check_stack_write_fixed_off() to correctly spill imm
7975f7b2a6fc randstruct: Fix gcc-plugin performance mode to stay in group
d83f4bc0a4db powerpc/perf: Fix disabling BHRB and instruction sampling
e7de8ffbbbc7 media: venus: hfi: add checks to perform sanity on queue pointers
99dbc39c22ce cifs: fix check of rc in function generate_smb3signingkey
e5a0ef02829d cifs: spnego: add ';' in HOST_KEY_LEN
6d388b641c8f tools/power/turbostat: Fix a knl bug
f56e228d67fc macvlan: Don't propagate promisc change to lower dev in passthru
ac4979dbd9b6 net/mlx5e: Check return value of snprintf writing to fw_version buffer for representors
a3ce491b1738 net/mlx5_core: Clean driver version and name
0eaec8126b46 net/mlx5e: fix double free of encap_header
541fece7caa4 net: stmmac: fix rx budget limit check
66dbaa2eecf1 netfilter: nf_conntrack_bridge: initialize err to 0
3f643150563c net: ethernet: cortina: Fix MTU max setting
eac9ef50d6f3 net: ethernet: cortina: Handle large frames
f0d9b80f7624 net: ethernet: cortina: Fix max RX frame define
396baca6683f bonding: stop the device in bond_setup_by_slave()
1f368fd61223 ptp: annotate data-race around q->head and q->tail
ecc74e7acb6d xen/events: fix delayed eoi list handling
144a80ef40a6 ppp: limit MRU to 64K
3ee249a3b993 tipc: Fix kernel-infoleak due to uninitialized TLV value
072f0eb962c9 net: hns3: fix VF reset fail issue
b0eac93bae42 net: hns3: fix variable may not initialized problem in hns3_init_mac_addr()
48fa8a85f8f5 tty: Fix uninit-value access in ppp_sync_receive()
43b781e7cb5c ipvlan: add ipvlan_route_v6_outbound() helper
59fadfa99bcb gfs2: Silence "suspicious RCU usage in gfs2_permission" warning
dedf2a0eb944 SUNRPC: Fix RPC client cleaned up the freed pipefs dentries
39b2bf040510 NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO
37f3aaf7945e SUNRPC: Add an IS_ERR() check back to where it was
c7eacf01ddb1 SUNRPC: ECONNRESET might require a rebind
4ea3b98fa6a1 xhci: turn cancelled td cleanup to its own function
6ebd42a7b713 wifi: iwlwifi: Use FW rate for non-data frames
e52518b9cb9f pwm: Fix double shift bug
53b2393eeba7 drm/amdgpu: fix software pci_unplug on some chips
f1ea84696ea5 ASoC: ti: omap-mcbsp: Fix runtime PM underflow warnings
3cfacacb9caa kgdb: Flush console before entering kgdb on panic
79b6a90f4f24 drm/amd/display: Avoid NULL dereference of timing generator
0f5068519f89 media: imon: fix access to invalid resource for the second interface
cf8519f40ce3 media: cobalt: Use FIELD_GET() to extract Link Width
5f8d51a04baf gfs2: fix an oops in gfs2_permission
2a054b87a1b7 gfs2: ignore negated quota changes
0ac2652b9674 media: vivid: avoid integer overflow
c6b6b8692218 media: gspca: cpia1: shift-out-of-bounds in set_flicker
90e3c3dd9306 i2c: sun6i-p2wi: Prevent potential division by zero
18fa7a30cd0c 9p/trans_fd: Annotate data-racy writes to file::f_flags
76716a7604b2 usb: gadget: f_ncm: Always set current gadget in ncm_bind()
4ef41a7f33ff tty: vcc: Add check for kstrdup() in vcc_probe()
484cc536a3a2 exfat: support handle zero-size directory
491529d383b7 HID: Add quirk for Dell Pro Wireless Keyboard and Mouse KM5221W
65d78d54e4e5 misc: pci_endpoint_test: Add Device ID for R-Car S4-8 PCIe controller
bb83f79f90e9 scsi: libfc: Fix potential NULL pointer dereference in fc_lport_ptp_setup()
5cebe796eaaa atm: iphase: Do PCI error checks on own line
65491968365c PCI: tegra194: Use FIELD_GET()/FIELD_PREP() with Link Width fields
25354bae4fc3 ALSA: hda: Fix possible null-ptr-deref when assigning a stream
e0d739e66bc1 ARM: 9320/1: fix stack depot IRQ stack filter
62d21f9df46d HID: lenovo: Detect quirk-free fw on cptkbd and stop applying workaround
1ba7df5457dc jfs: fix array-index-out-of-bounds in diAlloc
81aa58cd8495 jfs: fix array-index-out-of-bounds in dbFindLeaf
c6c8863fb3f5 fs/jfs: Add validity check for db_maxag and db_agpref
524b4f203afc fs/jfs: Add check for negative db_l2nbperpage
885824a44d35 RDMA/hfi1: Use FIELD_GET() to extract Link Width
e97bf4ada7dd crypto: pcrypt - Fix hungtask for PADATA_RESET
98fa52d89a4f ASoC: soc-card: Add storage for PCI SSID
f161a6b11ae7 selftests/efivarfs: create-read: fix a resource leak
f475d5502f33 drm/amdgpu: Fix a null pointer access when the smc_rreg pointer is NULL
da1409ea0845 drm/panel: st7703: Pick different reset sequence
9acc2bc00135 drm/panel/panel-tpo-tpg110: fix a possible null pointer dereference
c7dc0aca5962 drm/panel: fix a possible null pointer dereference
b93a25de28af drm/amdgpu: Fix potential null pointer derefernce
8c1dbddbfcb0 drm/amd: Fix UBSAN array-index-out-of-bounds for Polaris and Tonga
8af28ae3acb7 drm/amd: Fix UBSAN array-index-out-of-bounds for SMU7
4ffb2b0e48c0 drm/msm/dp: skip validity check for DP CTS EDID checksum
2810a9c40b6f drm/komeda: drop all currently held locks if deadlock happens
a70457f181d6 platform/x86: thinkpad_acpi: Add battery quirk for Thinkpad X120e
53d61daf35b1 Bluetooth: Fix double free in hci_conn_cleanup
9f8e4d1a4ca1 Bluetooth: btusb: Add date->evt_skb is NULL check
bba97f5e8ff3 wifi: ath10k: Don't touch the CE interrupt registers after power up
22fa35ded3ec net: annotate data-races around sk->sk_dst_pending_confirm
67b7de95d1e3 net: annotate data-races around sk->sk_tx_queue_mapping
beb75dccba9d wifi: ath10k: fix clang-specific fortify warning
2d6303cafb7c wifi: ath9k: fix clang-specific fortify warnings
6058e4829696 bpf: Detect IP == ksym.end as part of BPF program
717de20abdcd wifi: mac80211: don't return unset power in ieee80211_get_tx_power()
cdfc689e10e6 wifi: mac80211_hwsim: fix clang-specific fortify warning
a7aa2f1ca855 x86/mm: Drop the 4 MB restriction on minimal NUMA node memory size
89356bee8eda clocksource/drivers/timer-atmel-tcb: Fix initialization on SAM9 hardware
1b8687ed3cf3 clocksource/drivers/timer-imx-gpt: Fix potential memory leak
1a2a4202c60f perf/core: Bail out early if the request AUX area is out of bound
9ed2d68b3925 locking/ww_mutex/test: Fix potential workqueue corruption
6db6caba87ef Linux 5.10.201
4be0407ffcf6 btrfs: use u64 for buffer sizes in the tree search ioctls
2bbbb976faa1 Revert "mmc: core: Capture correct oemid-bits for eMMC cards"
3b092dfdabf2 tracing/kprobes: Fix the order of argument descriptions
3697fda1c671 fbdev: fsl-diu-fb: mark wr_reg_wa() static
a4dfebec32ec fbdev: imsttfb: fix a resource leak in probe
9e8e731571e6 fbdev: imsttfb: Fix error path of imsttfb_probe()
de721d7ef7ac spi: spi-zynq-qspi: add spi-mem to driver kconfig dependencies
876a119790e5 drm/syncobj: fix DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE
b9bc1806b907 x86/sev-es: Allow copy_from_kernel_nofault() in earlier boot
14042d6d80db x86: Share definition of __is_canonical_address()
bc794a667b1e netfilter: nat: fix ipv6 nat redirect with mapped and scoped addresses
b65d851b2eb0 netfilter: nft_redir: use `struct nf_nat_range2` throughout and deduplicate eval call-backs
7764290452d1 netfilter: xt_recent: fix (increase) ipv6 literal buffer length
00b188209196 r8169: respect userspace disabling IFF_MULTICAST
e02824db7c43 tg3: power down device only on SYSTEM_POWER_OFF
34c5a24633bc net/smc: put sk reference if close work was canceled
f652ab15af0a net/smc: allow cdc msg send rather than drop it with NULL sndbuf_desc
4e7bad730160 net/smc: fix dangling sock under state SMC_APPFINCLOSEWAIT
13d6bc35deb1 net: stmmac: xgmac: Enable support for multiple Flexible PPS outputs
eafacef7eeef Fix termination state for idr_for_each_entry_ul()
0a84ffc72f1e net: r8169: Disable multicast filter for RTL8168H and RTL8107E
4969fcebe76d dccp/tcp: Call security_inet_conn_request() after setting IPv6 addresses.
7827667989e1 dccp: Call security_inet_conn_request() after setting IPv4 addresses.
f830d4f69835 inet: shrink struct flowi_common
b33d130f07f1 tipc: Change nla_policy for bearer-related names to NLA_NUL_STRING
ddf4e04e946a hsr: Prevent use after free in prp_create_tagged_frame()
3a2653828ffc llc: verify mac len before reading mac header
6c71e065befb Input: synaptics-rmi4 - fix use after free in rmi_unregister_function()
e5d481d9b6cf pwm: brcmstb: Utilize appropriate clock APIs in suspend/resume
005965cab108 pwm: sti: Reduce number of allocations and drop usage of chip_data
ce5e0a3c9d39 pwm: sti: Avoid conditional gotos
0bc796e66b5d regmap: prevent noinc writes from clobbering cache
1b86938925bd media: dvb-usb-v2: af9035: fix missing unlock
2e2efaed79c0 media: cedrus: Fix clock/reset sequence
64863ba8e6b7 media: vidtv: mux: Add check and kfree for kstrdup
3387490c89b1 media: vidtv: psi: Add check for kstrdup
62557ab73d3a media: s3c-camif: Avoid inappropriate kfree()
2f3d9198cdae media: bttv: fix use after free error due to btv->timeout timer
0627e8623eb5 media: i2c: max9286: Fix some redundant of_node_put() calls
c3e148aba95a pcmcia: ds: fix possible name leak in error path in pcmcia_device_add()
84540ef92434 pcmcia: ds: fix refcount leak in pcmcia_device_add()
cd154225d419 pcmcia: cs: fix possible hung task and memory leak pccardd()
5e3c75158642 rtc: pcf85363: fix wrong mask/val parameters in regmap_update_bits call
1832ed55df45 i3c: Fix potential refcount leak in i3c_master_register_new_i3c_devs
a83fc293acd5 perf hist: Add missing puts to hist__account_cycles
4e66bde5c7d1 perf machine: Avoid out of bounds LBR memory read
188425eb2da2 usb: host: xhci-plat: fix possible kernel oops while resuming
ba894bd2737c xhci: Loosen RPM as default policy to cover for AMD xHC 1.1
ad0370c41a19 powerpc/pseries: fix potential memory leak in init_cpu_associativity()
d12372af8955 powerpc/imc-pmu: Use the correct spinlock initializer.
c75707293dcf powerpc/xive: Fix endian conversion size
f95f5512fdcb powerpc/40x: Remove stale PTE_ATOMIC_UPDATES macro
b54a4c8ca1c8 modpost: fix tee MODULE_DEVICE_TABLE built on big-endian host
362f0241dbe9 interconnect: qcom: sc7180: Set ACV enable_mask
08588fac00b1 interconnect: qcom: sc7180: Retire DEFINE_QBCM
ebaf7a73f634 f2fs: fix to initialize map.m_pblk in f2fs_precache_extents()
758f735604f8 dmaengine: pxa_dma: Remove an erroneous BUG_ON() in pxad_free_desc()
5fe228041c51 USB: usbip: fix stub_dev hub disconnect
798692e48c0a tools: iio: iio_generic_buffer ensure alignment
3eadba058276 tools: iio: iio_generic_buffer: Fix some integer type and calculation
a0a41991ddf2 tools: iio: privatize globals and functions in iio_generic_buffer.c file
d046e3f8de1d misc: st_core: Do not call kfree_skb() under spin_lock_irqsave()
c53cfe99c2aa dmaengine: ti: edma: handle irq_of_parse_and_map() errors
bdb3dd409630 usb: dwc2: fix possible NULL pointer dereference caused by driver concurrency
05de1536d052 livepatch: Fix missing newline character in klp_resolve_symbols()
3ebf42fe8cc7 tty: tty_jobctrl: fix pid memleak in disassociate_ctty()
380837052669 leds: trigger: ledtrig-cpu:: Fix 'output may be truncated' issue for 'cpu'
23eb8629c22f leds: pwm: Don't disable the PWM when the LED should be off
c2766ed2b7af mfd: dln2: Fix double put in dln2_probe
b708eb26b560 mfd: core: Ensure disabled devices are skipped without aborting
9f831533d2d0 mfd: core: Un-constify mfd_cell.of_reg
b7b4851e630d ASoC: ams-delta.c: use component after check
41aad9d69539 padata: Fix refcnt handling in padata_free_shell()
7606807bd6d0 padata: Convert from atomic_t to refcount_t on parallel_data->refcnt
2de16f6169a2 ASoC: Intel: Skylake: Fix mem leak when parsing UUIDs fails
6fd432f392a7 HID: logitech-hidpp: Move get_wireless_feature_index() check to hidpp_connect_event()
7581eef4aef2 HID: logitech-hidpp: Revert "Don't restart communication if not necessary"
c82e376bc24e HID: logitech-hidpp: Don't restart IO, instead defer hid_connect() only
0fe443314cf6 HID: logitech-hidpp: Remove HIDPP_QUIRK_NO_HIDINPUT quirk
8337286600cd Revert "HID: logitech-hidpp: add a module parameter to keep firmware gestures"
6d2de161cdc6 sh: bios: Revive earlyprintk support
2ca51477c6da hid: cp2112: Fix IRQ shutdown stopping polling for all IRQs on chip
9c895d20f8ee RDMA/hfi1: Workaround truncation compilation error
cd268264f594 scsi: ufs: core: Leave space for '\0' in utf8 desc string
cded69a7f8b3 ASoC: fsl: Fix PM disable depth imbalance in fsl_easrc_probe
159639486834 RDMA/hns: Fix signed-unsigned mixed comparisons
8018a3444e39 RDMA/hns: Fix uninitialized ucmd in hns_roce_create_qp_common()
08a246064def IB/mlx5: Fix rdma counter binding for RAW QP
53067926cd83 ASoC: fsl: mpc5200_dma.c: Fix warning of Function parameter or member not described
83eee515e415 ext4: move 'ix' sanity check to corrent position
67959b362687 ARM: 9321/1: memset: cast the constant byte to unsigned char
3d959406c8ff hid: cp2112: Fix duplicate workqueue initialization
63e8e2ee5815 crypto: qat - increase size of buffers
a921d6b795a0 crypto: qat - mask device capabilities with soft straps
16f2033de013 crypto: caam/jr - fix Chacha20 + Poly1305 self test failure
727ba935d906 crypto: caam/qi2 - fix Chacha20 + Poly1305 self test failure
b0e7a935739f nd_btt: Make BTT lanes preemptible
efeaa2396e3b libnvdimm/of_pmem: Use devm_kstrdup instead of kstrdup and check its return value
ffb3483c4b0b hwrng: geode - fix accessing registers
02db438311f8 crypto: hisilicon/hpre - Fix a erroneous check after snprintf()
5176ebe6aa2b selftests/resctrl: Ensure the benchmark commands fits to its array
b3768f089210 selftests/pidfd: Fix ksft print formats
a0846b4c8e74 clk: scmi: Free scmi_clk allocated when the clocks with invalid info are skipped
bcc7d46fa4dd firmware: ti_sci: Mark driver as non removable
5e5b85ea0f4b soc: qcom: llcc: Handle a second device without data corruption
a44aa8d8a532 ARM: dts: qcom: mdm9615: populate vsdcc fixed regulator
8bd7c8a9b838 arm64: dts: qcom: sdm845-mtp: fix WiFi configuration
4df18b233ef2 arm64: dts: qcom: msm8916: Fix iommu local address range
1e17eab1a49a xen-pciback: Consider INTx disabled when MSI/MSI-X is enabled
bc714abe7dc0 drm/rockchip: Fix type promotion bug in rockchip_gem_iommu_map()
666a4120dcf6 arm64/arm: xen: enlighten: Fix KPTI checks
0dd40dca1ebb drm/rockchip: cdn-dp: Fix some error handling paths in cdn_dp_probe()
6f710918df7d drm/mediatek: Fix iommu fault during crtc enabling
c12f2eaeb38b drm/bridge: tc358768: Fix bit updates
1133e72cd82b drm/bridge: tc358768: Disable non-continuous clock mode
c0d25ef81a11 drm/bridge: tc358768: Fix use of uninitialized variable
7b063c93bece drm/radeon: possible buffer overflow
a6d6769e2db6 drm/rockchip: vop: Fix call to crtc reset helper
bb8143016130 drm/rockchip: vop: Fix reset of state in duplicate state crtc funcs
9899097b1fcf hwmon: (coretemp) Fix potentially truncated sysfs attribute name
7d870088db48 hwmon: (axi-fan-control) Fix possible NULL pointer dereference
060d54f09004 hwmon: (axi-fan-control) Support temperature vs pwm points
d426a2955e45 platform/x86: wmi: Fix opening of char device
d2220737330b platform/x86: wmi: remove unnecessary initializations
3433a69c00ee platform/x86: wmi: Fix probe failure when failing to register WMI devices
b16622d304e7 clk: qcom: config IPQ_APSS_6018 should depend on QCOM_SMEM
001e5def774f clk: mediatek: clk-mt2701: Add check for mtk_alloc_clk_data
4f861b63945e clk: mediatek: clk-mt7629: Add check for mtk_alloc_clk_data
96e9544a0c4f clk: mediatek: clk-mt7629-eth: Add check for mtk_alloc_clk_data
81b162861107 clk: mediatek: clk-mt6797: Add check for mtk_alloc_clk_data
3994387ba356 clk: mediatek: clk-mt6779: Add check for mtk_alloc_clk_data
2617aa8ceaf3 clk: mediatek: clk-mt6765: Add check for mtk_alloc_clk_data
55e5fd11a21d clk: npcm7xx: Fix incorrect kfree
0beaefa9885f clk: ti: fix double free in of_ti_divider_clk_setup()
acb535d75077 clk: ti: change ti_clk_register[_omap_hw]() API
98c5012c11a1 clk: ti: Update component clocks to use ti_dt_clk_name()
1c4253252c7f clk: ti: Update pll and clockdomain clocks to use ti_dt_clk_name()
00c67e0aa7e4 clk: ti: Add ti_dt_clk_name() helper to use clock-output-names
de33b367f80d clk: keystone: pll: fix a couple NULL vs IS_ERR() checks
c07a0e2e93b6 spi: nxp-fspi: use the correct ioremap function
d459cb424483 clk: linux/clk-provider.h: fix kernel-doc warnings and typos
f28709097db4 clk: asm9260: use parent index to link the reference clock
8d03f7c5800d clk: imx: imx8mq: correct error handling path
c1bacea8a64b clk: imx: Select MXC_CLK for CLK_IMX8QXP
a52c963d8d7b clk: qcom: gcc-sm8150: Fix gcc_sdcc2_apps_clk_src
c6919a1576bc clk: qcom: gcc-sm8150: use ARRAY_SIZE instead of specifying num_parents
355a12fa1c50 clk: qcom: mmcc-msm8998: Fix the SMMU GDSC
ba7f9695d545 clk: qcom: mmcc-msm8998: Set bimc_smmu_gdsc always on
97a671174433 clk: qcom: mmcc-msm8998: Don't check halt bit on some branch clks
05eebcd4bc5b clk: qcom: mmcc-msm8998: Add hardware clockgating registers to some clks
3181168e61f4 clk: qcom: clk-rcg2: Fix clock rate overflow for high parent frequencies
80836b5859b7 regmap: debugfs: Fix a erroneous check after snprintf()
9954a7f3808b ipvlan: properly track tx_errors
e897dcbd5fbc net: add DEV_STATS_READ() helper
98e8a5a370da ipv6: avoid atomic fragment on GSO packets
dea8d9e571ee ACPI: sysfs: Fix create_pnp_modalias() and create_of_modalias()
88be6453d7c9 tcp: fix cookie_init_timestamp() overflows
76894f305c96 chtls: fix tp->rcv_tstamp initialization
d104f6cb41e8 r8169: fix rare issue with broken rx after link-down on RTL8125
fdd4a3c20ad5 r8169: use tp_to_dev instead of open code
3f795fb35c2d thermal: core: prevent potential string overflow
ae681e5eff0c PM / devfreq: rockchip-dfi: Make pmu regmap mandatory
d7a220bf6bd6 can: dev: can_restart(): fix race condition between controller restart and netif_carrier_on()
040f65c2821f can: dev: can_restart(): don't crash kernel if carrier is OK
03d138b6b243 wifi: rtlwifi: fix EDCA limit set by BT coexistence
d8f2e18d1dcf tcp_metrics: do not create an entry from tcp_init_metrics()
73999f29ab19 tcp_metrics: properly set tp->snd_ssthresh in tcp_init_metrics()
37308a39262b tcp_metrics: add missing barriers on delete
d203f9921ac0 wifi: mt76: mt7603: rework/fix rx pse hang check
3068527d17e8 wifi: rtw88: debug: Fix the NULL vs IS_ERR() bug for debugfs_create_file()
d44f88b20d44 net: spider_net: Use size_add() in call to struct_size()
9b8486fdad65 tipc: Use size_add() in calls to struct_size()
5f5aabbdc27f mlxsw: Use size_mul() in call to struct_size()
f927d4469632 gve: Use size_add() in call to struct_size()
2b46db3bb73d overflow: Implement size_t saturating arithmetic helpers
2f4b4eb58fc0 tcp: call tcp_try_undo_recovery when an RTOd TFO SYNACK is ACKed
0ca9fc8200d4 udp: add missing WRITE_ONCE() around up->encap_rcv
61e7961ff33d i40e: fix potential memory leaks in i40e_remove()
47479ed7fcf7 genirq/matrix: Exclude managed interrupts in irq_matrix_allocated()
bb166bdae1a7 pstore/platform: Add check for kstrdup
66f9969141c0 x86/boot: Fix incorrect startup_gdt_descr.size
ffa4cc86e959 futex: Don't include process MM in futex key on no-MMU
f52587051637 x86/srso: Fix SBPB enablement for (possible) future fixed HW
f49926b8d2a5 vfs: fix readahead(2) on block devices
9fe0f6b5720e sched/uclamp: Ignore (util == 0) optimization in feec() when p_util_max = 0
bdb7de7ed5ba iov_iter, x86: Be consistent about the __user tag on copy_mc_to_user()
(From OE-Core rev: 8f2c31ddd3b93f3f3e4eee5f3e97c84167f54dc4)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
3e55583405ac Linux 5.10.200
a5feaf765935 ALSA: hda: intel-dsp-config: Fix JSL Chromebook quirk detection
9109649559f9 tty: 8250: Add support for Intashield IS-100
73bcb4d44988 tty: 8250: Add support for Brainboxes UP cards
119f38e8ca16 tty: 8250: Add support for additional Brainboxes UC cards
a8bf6f62187f tty: 8250: Remove UC-257 and UC-431
e705aee2a657 usb: raw-gadget: properly handle interrupted requests
8e0324f2cbb7 usb: storage: set 1.50 as the lower bcdDevice for older "Super Top" compatibility
747b8f877998 PCI: Prevent xHCI driver from claiming AMD VanGogh USB3 DRD device
deddf60c271f can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior
8716c28f695c can: isotp: isotp_bind(): do not validate unused address information
e4c4e0e1b29c can: isotp: add local echo tx processing and tx without FC
569c95b7ece0 can: isotp: handle wait_event_interruptible() return values
de3c02383aa6 can: isotp: check CAN address family in isotp_bind()
0386f3704789 can: isotp: isotp_bind(): return -EINVAL on incorrect CAN ID formatting
93b1e3f3a263 can: isotp: set max PDU size to 64 kByte
7adbc048d84b can: isotp: Add error message if txqueuelen is too small
57798a2cfe15 can: isotp: add symbolic error message to isotp_module_init()
186ab5645199 can: isotp: change error format from decimal to symbolic error names
b881ce6c7d10 powerpc/mm: Fix boot crash with FLATMEM
1b285a1bfb0d net: chelsio: cxgb4: add an error code check in t4_load_phy_fw
955a1105eec2 platform/mellanox: mlxbf-tmfifo: Fix a warning message
268ec38b797b scsi: mpt3sas: Fix in error path
abf9c7811836 fbdev: uvesafb: Call cn_del_callback() at the end of uvesafb_exit()
ec45886637ee ASoC: rt5650: fix the wrong result of key button
c683d8b6417c netfilter: nfnetlink_log: silence bogus compiler warning
66cc633fc6e1 spi: npcm-fiu: Fix UMA reads when dummy.nbytes == 0
6f9093b6f8f7 fbdev: atyfb: only use ioremap_uc() on i386 and ia64
ead3c123a753 Input: synaptics-rmi4 - handle reset delay when using SMBus trsnsport
fb8f253b9532 dmaengine: ste_dma40: Fix PM disable depth imbalance in d40_probe
e619b38a873f irqchip/stm32-exti: add missing DT IRQ flag translation
d151fb801957 net: sched: cls_u32: Fix allocation size in u32_init()
9ade01b2949b x86: Fix .brk attribute in linker script
3fdd5b2bb09f rpmsg: Fix possible refcount leak in rpmsg_register_device_override()
41c13a571de4 rpmsg: glink: Release driver_override
5f1bb9f4d4b5 rpmsg: Fix calling device_lock() on non-initialized device
5bbd3469a4b6 rpmsg: Fix kfree() of static memory on setting driver_override
d0208fb38f43 rpmsg: Constify local variable in field store macro
da369d3996cc driver: platform: Add helper for safer setting of driver_override
4a20f5ea62db objtool/x86: add missing embedded_insn check
6b977a7323f7 ext4: avoid overlapping preallocations due to overflow
58fe961c606c ext4: fix BUG in ext4_mb_new_inode_pa() due to overflow
c0db17e55ff6 ext4: add two helper functions extent_logical_end() and pa_logical_end()
c761d34a7ec0 x86/mm: Fix RESERVE_BRK() for older binutils
01a5e17e3ef3 x86/mm: Simplify RESERVE_BRK()
571ce7d944cd f2fs: fix to do sanity check on inode type during garbage collection
d1c37e849f37 smbdirect: missing rc checks while waiting for rdma events
b2e62728b106 kobject: Fix slab-out-of-bounds in fill_kobj_path()
b9b197f65904 x86/i8259: Skip probing when ACPI/MADT advertises PCAT compatibility
62184eb77821 iio: adc: xilinx-xadc: Don't clobber preset voltage/temperature thresholds
e96eb8853f33 iio: adc: xilinx: use more devres helpers and remove remove()
0eb1198fe4d6 iio: adc: xilinx: use devm_krealloc() instead of kfree() + kcalloc()
c4b496c9f772 iio: adc: xilinx: use helper variable for &pdev->dev
d8928befffe5 clk: Sanitize possible_parent_show to Handle Return Value of of_clk_get_parent_name
09ce0d85cc00 sparc32: fix a braino in fault handling in csum_and_copy_..._user()
0258ca32b0ea perf/core: Fix potential NULL deref
4e3c606afa25 nvmem: imx: correct nregs for i.MX6UL
37ccf15ebeec nvmem: imx: correct nregs for i.MX6SLL
7a1c29e93c25 nvmem: imx: correct nregs for i.MX6ULL
d44166341f4b misc: fastrpc: Clean buffers on remote invocation failures
866838eb8ee9 tracing/kprobes: Fix the description of variable length arguments
ca764116b5c1 i2c: aspeed: Fix i2c bus hang in slave read
18c5167d0460 i2c: stm32f7: Fix PEC handling in case of SMBUS transfers
80416f6ba002 i2c: muxes: i2c-demux-pinctrl: Use of_get_i2c_adapter_by_node()
9a9ead53e72f i2c: muxes: i2c-mux-gpmux: Use of_get_i2c_adapter_by_node()
3cb69f1dbc86 i2c: muxes: i2c-mux-pinctrl: Use of_get_i2c_adapter_by_node()
0c8587fec9d5 iio: exynos-adc: request second interupt only when touchscreen mode is used
632c2199e52d kasan: print the original fault addr when access invalid shadow
be9e6f51ba7b i40e: Fix wrong check for I40E_TXR_FLAGS_WB_ON_ITR
fe65fc90e9f2 gtp: fix fragmentation needed check with gso
3ae8b75fce05 gtp: uapi: fix GTPA_MAX
4d0d5e54b590 tcp: fix wrong RTO timeout when received SACK reneging
e0308c793943 r8152: Release firmware if we have an error in probe
17b455747bc6 r8152: Cancel hw_phy_work if we have an error in probe
7dc907d855df r8152: Run the unload routine if we have errors during probe
704c25fc6abd r8152: Increase USB control msg timeout to 5000ms as per spec
79e2610efc94 net: usb: smsc95xx: Fix uninit-value access in smsc95xx_read_reg
d9864e589f0e net: ieee802154: adf7242: Fix some potential buffer overflow in adf7242_stats_show()
634c72adc864 igc: Fix ambiguity in the ethtool advertising
1e628189a21b neighbour: fix various data-races
77c4f14f952e igb: Fix potential memory leak in igb_add_ethtool_nfc_entry
1ac4f8e5553c treewide: Spelling fix in comment
5eab293b1cbf r8169: fix the KCSAN reported data race in rtl_rx while reading desc->opts1
13d357d9f226 r8169: fix the KCSAN reported data-race in rtl_tx while reading TxDescArray[entry].opts1
31c31a78dccf drm/dp_mst: Fix NULL deref in get_mst_branch_device_by_guid_helper()
957ec0823a5a mmc: renesas_sdhi: use custom mask for TMIO_MASK_ALL
3ab81820bf92 mm/page_alloc: correct start page when guard page debug is enabled
f2c0b571a5fc virtio-mmio: fix memory leak of vm_dev
8b857a93d6be virtio_balloon: Fix endless deflation and inflation on arm64
c88dd2aebf0c mcb-lpc: Reallocate memory region to avoid memory overlapping
6976459c6439 mcb: Return actual parsed size when reading chameleon table
09bcf9254838 selftests/ftrace: Add new test case which checks non unique symbol
cb49f0e441ce Linux 5.10.199
657a3ca8236c xfrm6: fix inet6_dev refcount underflow problem
5d5680755bce Bluetooth: hci_sock: Correctly bounds check and pad HCI_MON_NEW_INDEX name
b423509bc99c Bluetooth: hci_sock: fix slab oob read in create_monitor_event
653c808023cd phy: mapphone-mdm6600: Fix pinctrl_pm handling for sleep pins
e9c20d3078cc phy: mapphone-mdm6600: Fix runtime PM for remove
f42634685ee5 phy: mapphone-mdm6600: Fix runtime disable on probe
05e06fb6a642 ASoC: pxa: fix a memory leak in probe()
7e29dadf265d gpio: vf610: set value before the direction to avoid a glitch
6c3a72d4ae24 platform/x86: asus-wmi: Map 0x2a code, Ignore 0x2b and 0x2c events
8fece0081b64 platform/x86: asus-wmi: Change ASUS_WMI_BRN_DOWN code from 0x20 to 0x2e
3be044840e8e s390/pci: fix iommu bitmap allocation
487a8e24643a perf: Disallow mis-matched inherited group reads
550c70f72a1b USB: serial: option: add Fibocom to DELL custom modem FM101R-GL
a39ea926ff6d USB: serial: option: add entry for Sierra EM9191 with new firmware
3fb223086de9 USB: serial: option: add Telit LE910C4-WWX 0x1035 composition
d78d3e0d8462 nvme-rdma: do not try to stop unallocated queues
6238faecf88a nvme-pci: add BOGUS_NID for Intel 0a54 device
9efa38fdca2c ACPI: irq: Fix incorrect return value in acpi_register_gsi()
9df654268aec pNFS: Fix a hang in nfs4_evict_inode()
c44e09a89ad2 Revert "pinctrl: avoid unsafe code pattern in find_pinctrl()"
b26b0b8757c6 mmc: core: Capture correct oemid-bits for eMMC cards
f4771efb0683 mmc: core: sdio: hold retuning if sdio in 1-bit mode
2312fb7f3b20 mtd: physmap-core: Restore map_rom fallback
3a141424f8fe mtd: spinand: micron: correct bitmask for ecc status
7682dae0a607 mtd: rawnand: arasan: Ensure program page operations are successful
875d17e4524b mtd: rawnand: marvell: Ensure program page operations are successful
6224890ad0b4 mtd: rawnand: qcom: Unmap the right resource upon probe failure
f707bc0a55b7 Bluetooth: hci_event: Fix using memcmp when comparing keys
3b6aa631df0c net/mlx5: Handle fw tracer change ownership event based on MTRC
ead8131372af platform/x86: touchscreen_dmi: Add info for the Positivo C4128B
fd1271632769 HID: multitouch: Add required quirk for Synaptics 0xcd7e device
4e71ae53f121 btrfs: fix some -Wmaybe-uninitialized warnings in ioctl.c
661b4ce3b54a drm: panel-orientation-quirks: Add quirk for One Mix 2S
5b7cae7c35dd ipv4/fib: send notify when delete source address routes
21f85b026dfe sky2: Make sure there is at least one frag_addr available
f06c3a50ef2b regulator/core: Revert "fix kobject release warning and memory leak in regulator_register()"
461341412960 wifi: cfg80211: avoid leaking stack data into trace
fde6d84daa0f wifi: mac80211: allow transmitting EAPOL frames with tainted key
8de7f7058314 wifi: cfg80211: Fix 6GHz scan configuration
ffb060b136dd Bluetooth: hci_core: Fix build warnings
65f5da6df897 Bluetooth: Avoid redundant authentication
115f2c88fde3 HID: holtek: fix slab-out-of-bounds Write in holtek_kbd_input_event
a59636cdd84a tracing: relax trace_event_eval_update() execution with cond_resched()
fb60e9c00042 ata: libata-eh: Fix compilation warning in ata_eh_link_report()
22c3641bef9c gpio: timberdale: Fix potential deadlock on &tgpio->lock
b4fcf1a0bbd0 overlayfs: set ctime when setting mtime and atime
4b472c25a597 i2c: mux: Avoid potential false error message in i2c_mux_add_adapter
840b912df518 btrfs: initialize start_slot in btrfs_log_prealloc_extents
9801e2798b63 btrfs: return -EUCLEAN for delayed tree ref with a ref count not equals to 1
d69131b48fea ARM: dts: ti: omap: Fix noisy serial with overrun-throttle-ms for mapphone
9ed14f807f4f usb: typec: altmodes/displayport: Signal hpd low when exiting mode
f25a13d318b8 usb: typec: altmodes/displayport: Notify drm subsys of hotplug events
2ea6a14e8a55 drm/connector: Add support for out-of-band hotplug notification (v3)
6e55f6a8a498 drm/connector: Add drm_connector_find_by_fwnode() function (v3)
89b1868bab48 drm/connector: Add a fwnode pointer to drm_connector and register with ACPI (v2)
86502f1b63aa drm/connector: Give connector sysfs devices there own device_type
cedcbf61dfce drm/amd/display: Don't set dpms_off for seamless boot
ebba01fcd562 drm/amd/display: only check available pipe to disable vbios mode.
1ac717000403 serial: 8250_omap: Fix errors with no_console_suspend
be300358b55d serial: 8250: omap: Fix imprecise external abort for omap_8250_pm()
fc778e9d7995 xhci: track port suspend state correctly in unsuccessful resume cases
1c034c6e224d xhci: decouple usb2 port resume and get_port_status request handling
92088dd88627 xhci: clear usb2 resume related variables in one place.
e7abc4b18d1a xhci: rename resume_done to resume_timestamp
d44c9285ce35 xhci: move port specific items such as state completions to port structure
e2b4de13e5f9 xhci: cleanup xhci_hub_control port references
95b9f1e3927b usb: core: Track SuperSpeed Plus GenXxY
d6316f592988 selftests/mm: fix awk usage in charge_reserved_hugetlb.sh and hugetlb_reparenting_test.sh that may cause error
69f40ce372b9 selftests/vm: make charge_reserved_hugetlb.sh work with existing cgroup setting
cb868d8857ae ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA
7d0728e7ac04 ACPI: resource: Skip IRQ override on ASUS ExpertBook B1502CBA
3a58c28bff79 ACPI: resource: Skip IRQ override on Asus Expertbook B2402CBA
1b4659e283bc ACPI: resource: Add Asus ExpertBook B2502 to Asus quirks
980dd4dfb9e8 ACPI: resource: Skip IRQ override on Asus Vivobook S5602ZA
e0014184cd11 ACPI: resource: Add ASUS model S5402ZA to quirks
7f26f0ac3854 ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA
ffcb69e923aa ACPI: resources: Add DMI-based legacy IRQ override quirk
8a8918b51080 ACPI: Drop acpi_dev_irqresource_disabled()
196896455bd1 resource: Add irqresource_disabled()
faa9a9d07c06 thunderbolt: Workaround an IOMMU fault on certain systems with Intel Maple Ridge
482fa2345f03 net: pktgen: Fix interface flags printing
068e4ecea226 netfilter: nft_set_rbtree: .deactivate fails if element has expired
9cef803e9ed0 neighbor: tracing: Move pin6 inside CONFIG_IPV6=y section
36848adbdeba net/sched: sch_hfsc: upgrade 'rt' to 'sc' when it becomes a inner curve
923e47c0b40a net: dsa: bcm_sf2: Fix possible memory leak in bcm_sf2_mdio_register()
a53fc0641683 i40e: prevent crash on probe if hw registers have invalid values
9b5661bda392 net: usb: smsc95xx: Fix an error code in smsc95xx_reset()
250cd610f8c4 ipv4: fib: annotate races around nh->nh_saddr_genid and nh->nh_saddr
1cef1a2d5c22 tun: prevent negative ifindex
f828e15db3c7 tcp: tsq: relax tcp_small_queue_check() when rtx queue contains a single skb
c39c31c5265b tcp: fix excessive TLP and RACK timeouts from HZ rounding
805b38062e28 net: rfkill: gpio: prevent value glitch during probe
8023c7e90007 net: ipv6: fix return value check in esp_remove_trailer
2ca00d93f2b1 net: ipv4: fix return value check in esp_remove_trailer
4ba4eec4f40d xfrm: interface: use DEV_STATS_INC()
4d78b9dc79d5 xfrm: fix a data-race in xfrm_gen_index()
8c6c3d0b9f2e qed: fix LL2 RX buffer allocation
88c493297e40 drm/i915: Retry gtt fault when out of fence registers
e985d78bdcf3 nvmet-tcp: Fix a possible UAF in queue intialization setup
287401f92c57 netfilter: nft_payload: fix wrong mac header matching
fe37e56ed47d tcp: check mptcp-level constraints for backlog coalescing
6550cbe25de1 x86/sev: Check for user-space IOIO pointing to kernel space
5bb9ba7dafbe x86/sev: Check IOBM for IOIO exceptions from user-space
d78c5d8c23c3 x86/sev: Disable MMIO emulation from user mode
459af3fb81e6 KVM: x86: Mask LVTPC when handling a PMI
4cbac83549dd regmap: fix NULL deref on lookup
c95fa5b20fe0 nfc: nci: fix possible NULL pointer dereference in send_acknowledge()
2e64f4c732cb ice: reset first in crash dump kernels
95d68fdc71ba ice: fix over-shifted variable
a56c436b4335 Bluetooth: avoid memcmp() out of bounds warning
7e83d15e0ca2 Bluetooth: hci_event: Fix coding style
c6878fa1730b Bluetooth: vhci: Fix race when opening vhci device
40a33a129d99 Bluetooth: Fix a refcnt underflow problem for hci_conn
ab950561bca4 Bluetooth: Reject connection with the device which has same BD_ADDR
0e025a4528f4 Bluetooth: hci_event: Ignore NULL link key
241f23032433 usb: hub: Guard against accesses to uninitialized BOS descriptors
aec24b096300 Documentation: sysctl: align cells in second content column
f10690787d2c mm/memory_hotplug: rate limit page migration warnings
bf97ea76eac5 lib/Kconfig.debug: do not enable DEBUG_PREEMPT by default
c44b14469af0 dev_forward_skb: do not scrub skb mark within the same name space
db9aafa19547 ravb: Fix use-after-free issue in ravb_tx_timeout_work()
db375fa550c0 RDMA/srp: Fix srp_abort()
f022576aa03c RDMA/srp: Set scmnd->result only when scmnd is not NULL
489818719a88 arm64: armv8_deprecated: fix unused-function error
da7603cedb7d arm64: armv8_deprecated: rework deprected instruction handling
45a26d2a5394 arm64: armv8_deprecated: move aarch32 helper earlier
0b6a7a9f6d94 arm64: armv8_deprecated move emulation functions
2202536144bc arm64: armv8_deprecated: fold ops into insn_emulation
5aa232345e4d arm64: rework EL0 MRS emulation
15e964971ff7 arm64: factor insn read out of call_undef_hook()
0edde7fd1c3b arm64: factor out EL1 SSBS emulation hook
7a76df1ae1b3 arm64: split EL0/EL1 UNDEF handlers
8a8d4cc303ef arm64: allow kprobes on EL0 handlers
793ed958b62a arm64: rework BTI exception handling
9113333d7c7c arm64: rework FPAC exception handling
a8d7c8484ff7 arm64: consistently pass ESR_ELx to die()
004bdab6edc7 arm64: die(): pass 'err' as long
835cb1f78d74 arm64: report EL1 UNDEFs better
6788b10620ca x86/alternatives: Disable KASAN in apply_alternatives()
ba4b37721096 powerpc/64e: Fix wrong test in __ptep_test_and_clear_young()
dadb86fba67f powerpc/8xx: Fix pte_access_permitted() for PAGE_NONE
288a0593c798 dmaengine: mediatek: Fix deadlock caused by synchronize_irq()
17c653d4913b usb: gadget: ncm: Handle decoding of multiple NTB's in unwrap call
a906f2eb675c usb: gadget: udc-xilinx: replace memcpy with memcpy_toio
7decb6515138 counter: microchip-tcb-capture: Fix the use of internal GCLK logic
a177771bff63 pinctrl: avoid unsafe code pattern in find_pinctrl()
2a4a82804024 cgroup: Remove duplicates in cgroup v1 tasks file
da7ce52a2f6c tee: amdtee: fix use-after-free vulnerability in amdtee_close_session
0ea0231dd1b2 Input: goodix - ensure int GPIO is in input for gpio_count == 1 && gpio_int_idx == 0 case
39fb79407e59 Input: i8042 - add Fujitsu Lifebook E5411 to i8042 quirk table
8d862a3dff7e Input: xpad - add PXN V900 support
e8ea649fc35f Input: psmouse - fix fast_reconnect function for PS/2 mode
cd2fbfd8b922 Input: powermate - fix use-after-free in powermate_config_complete
27b6c809d393 ceph: fix type promotion bug on 32bit systems
2b2bf63671cc ceph: fix incorrect revoked caps assert in ceph_fill_file_size()
62f6d24f2e7d libceph: use kernel_connect()
5850eb4df422 thunderbolt: Check that lane 1 is in CL0 before enabling lane bonding
008ba1a5ada5 mcb: remove is_added flag from mcb_device struct
ec93456c0289 x86/cpu: Fix AMD erratum #1485 on Zen4-based CPUs
b608f4aedc0e iio: pressure: ms5611: ms5611_prom_is_valid false negative bug
02388eaf3a15 iio: pressure: dps310: Adjust Timeout Settings
2abd2cffa1b8 iio: pressure: bmp280: Fix NULL pointer exception
aadbf612f8b1 usb: musb: Modify the "HWVers" register address
bc929a0052c4 usb: musb: Get the musb_qh poniter after musb_giveback
459eb7c6885f usb: dwc3: Soft reset phy on probe for host
d71d0009f9e7 net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read
4bf69ee6bb41 usb: xhci: xhci-ring: Use sysdev for mapping bounce buffer
2d30692c6c94 dmaengine: stm32-mdma: abort resume if no ongoing transfer
d346a2ef6b1e media: mtk-jpeg: Fix use after free bug due to uncanceled work
014cab5329d1 net: release reference to inet6_dev pointer
d491ac7aa12a net: change accept_ra_min_rtr_lft to affect all RA lifetimes
354a96770d94 net: add sysctl accept_ra_min_rtr_lft
1ceaf0d3a883 Revert "spi: spi-zynqmp-gqspi: Fix runtime PM imbalance in zynqmp_qspi_probe"
649237ccf440 Revert "spi: zynqmp-gqspi: fix clock imbalance on probe failure"
ce03f0234f9d workqueue: Override implicit ordered attribute in workqueue_apply_unbound_cpumask()
a424807d860b nfc: nci: assert requested protocol is valid
b5b03da30bd5 pinctrl: renesas: rzn1: Enable missing PINMUX
6ac22ecdaad2 net: nfc: fix races in nfc_llcp_sock_get() and nfc_llcp_sock_get_sn()
31ea13e3ff52 ixgbe: fix crash with empty VF macvlan list
b24bd1277501 net: phy: mscc: macsec: reject PN update requests
a848ae8b5ad7 net: macsec: indicate next pn update when offloading
a629f0575c9c drm/vmwgfx: fix typo of sizeof argument
d4ba78e5522e riscv, bpf: Sign-extend return values
2a8ef2234b3a riscv, bpf: Factor out emit_call for kernel and bpf context
1bf4da1818c2 xen-netback: use default TX queue size for vifs
33548a6b3c7c mlxsw: fix mlxsw_sp2_nve_vxlan_learning_set() return type
55e06850c789 ieee802154: ca8210: Fix a potential UAF in ca8210_probe
ef7a0d51bfdb ravb: Fix up dma_free_coherent() call in ravb_remove()
1673841da013 drm/msm/dpu: change _dpu_plane_calc_bw() to use u64 to avoid overflow
6004ca7ad2d0 drm/msm/dsi: skip the wait for video mode done if not applicable
dbbbeaef7786 drm/msm/dp: do not reinitialize phy unless retry during link training
31e7e77b24f1 net: prevent address rewrite in kernel_bind()
22c06bf1f99e quota: Fix slow quotaoff
093af62c0235 HID: logitech-hidpp: Fix kernel crash on receiver USB disconnect
cb4a8146e3a9 lib/test_meminit: fix off-by-one error in test_pages()
06068e7f3ff8 perf/arm-cmn: Fix the unhandled overflow status of counter 4 to 7
0ed2ad00f333 RDMA/cxgb4: Check skb value for failure to allocate
26788a5b48d9 RDMA/srp: Do not call scsi_done() from srp_abort()
81982125c352 RDMA/srp: Make struct scsi_cmnd and struct srp_request adjacent
(From OE-Core rev: 630963a1396afa8c1550ec971d50e444f5ccbcfd)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
a8d812240fdd Linux 5.10.198
660627c71bc1 xen/events: replace evtchn_rwlock with RCU
1e3d016a9506 mmc: renesas_sdhi: only reset SCC when its pointer is populated
a7d86a77c33b netfilter: nftables: exthdr: fix 4-byte stack OOB write
84f6b686df2d netfilter: nf_tables: fix kdoc warnings after gc rework
c17446c00805 parisc: Restore __ldcw_align for PA-RISC 2.0 processors
cfc333393ae6 RDMA/mlx5: Fix NULL string error
0d520cdb0cd0 RDMA/siw: Fix connection failure handling
5a4a6a47e074 RDMA/uverbs: Fix typo of sizeof argument
626868282c36 RDMA/cma: Fix truncation compilation warning in make_cma_ports
7de0e42444e9 RDMA/cma: Initialize ib_sa_multicast structure to 0 when join
36953b4da78b gpio: pxa: disable pinctrl calls for MMP_GPIO
6ad972e66870 gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config()
d7d8f1a679ec IB/mlx4: Fix the size of a buffer in add_port_entries()
204c2d485f86 of: dynamic: Fix potential memory leak in of_changeset_action()
b74f12f98b7f RDMA/core: Require admin capabilities to set system parameters
ccd87fe7a0f6 dm zoned: free dmz->ddev array in dmz_put_zoned_devices
82d87c944ea8 cpupower: add Makefile dependencies for install targets
492241613cf4 sctp: update hb timer immediately after users change hb_interval
f87658493898 sctp: update transport state when processing a dupcook packet
ff346b01eba5 tcp: fix delayed ACKs for MSS boundary condition
677aaa261e7a tcp: fix quick-ack counting to count actual ACKs of new data
6a24d0661fa3 tipc: fix a potential deadlock on &tx->lock
b9f1568ba37f net: stmmac: dwmac-stm32: fix resume on STM32 MCU
3a5142f01758 netfilter: nf_tables: nft_set_rbtree: fix spurious insertion failure
0ba9348532bd netfilter: handle the connecting collision properly in nf_conntrack_proto_sctp
b212f361a5d1 net: ethernet: ti: am65-cpsw: Fix error code in am65_cpsw_nuss_init_tx_chns()
dba849cc9811 net: nfc: llcp: Add lock when modifying device list
30bc4d7aebe3 net: usb: smsc75xx: Fix uninit-value access in __smsc75xx_read_reg
d44346dda7d4 net: dsa: mv88e6xxx: Avoid EEPROM timeout when EEPROM is absent
96b2e1090397 ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data()
2ea52a2fb8e8 net: fix possible store tearing in neigh_periodic_work()
6e3d9e5caba8 modpost: add missing else to the "of" check
225cd4f67bd4 NFSv4: Fix a nfs4_state_manager() race
d8f2ba9ec358 ima: rework CONFIG_IMA dependency block
77f82df960cb scsi: target: core: Fix deadlock due to recursive locking
a9430129d8db ima: Finish deprecation of IMA_TRUSTED_KEYRING Kconfig
725fd2080559 regmap: rbtree: Fix wrong register marked as in-cache when creating new node
666cdc43df24 wifi: mt76: mt76x02: fix MT76x0 external LNA gain handling
54a4faab2baa drivers/net: process the result of hdlc_open() and add call of hdlc_close() in uhdlc_close()
93dd471d3a2f bpf: Fix tr dereferencing
10a18c8bac7f wifi: mwifiex: Fix oob check condition in mwifiex_process_rx_packet
8c15c1bcc5b5 wifi: iwlwifi: dbg_ini: fix structure packing
a5f643ab1163 ubi: Refuse attaching if mtd's erasesize is 0
33420a82067b arm64: Add Cortex-A520 CPU part definition
81d03e251894 net: prevent rewrite of msg_name in sock_sendmsg()
72fc02ebfc93 net: replace calls to sock->ops->connect() with kernel_connect()
1aeff207e295 wifi: mwifiex: Fix tlv_buf_left calculation
f6f25930fa34 qed/red_ll2: Fix undefined behavior bug in struct qed_ll2_info
b9c4b3ca9016 scsi: zfcp: Fix a double put in zfcp_port_enqueue()
04b6b67a3e77 Revert "PCI: qcom: Disable write access to read only registers for IP v2.3.3"
c2cf152e8bb8 Revert "clk: imx: pll14xx: dynamically configure PLL for 393216000/361267200Hz"
f94471c0cc31 block: fix use-after-free of q->q_usage_counter
0d6987d4a34c rbd: take header_rwsem in rbd_dev_refresh() only when updating
d3d170c5fc06 rbd: decouple parent info read-in from updating rbd_dev
3ceb306f9b2d rbd: decouple header read-in from updating rbd_dev->header
7c4f11d73b24 rbd: move rbd_dev_refresh() definition
d0952ce316d1 drm/mediatek: Fix backport issue in mtk_drm_gem_prime_vmap()
c33d75a57a81 ring-buffer: Fix bytes info in per_cpu buffer stats
0ecde7dd766f ring-buffer: remove obsolete comment for free_buffer_page()
2ad1a1d3d616 NFSv4: Fix a state manager thread deadlock regression
ec4325e80633 NFS: rename nfs_client_kset to nfs_kset
598539f38c72 NFS: Cleanup unused rpc_clnt variable
19f3d5d13b75 spi: zynqmp-gqspi: fix clock imbalance on probe failure
2cdec9c13f81 spi: spi-zynqmp-gqspi: Fix runtime PM imbalance in zynqmp_qspi_probe
ae03dafc3761 fs: binfmt_elf_efpic: fix personality for ELF-FDPIC
8ec1abb59a98 ata: libata-sata: increase PMP SRST timeout to 10s
dc0bd0f2da5c ata: libata-core: Do not register PM operations for SAS ports
531d9f6dbfd5 ata: libata-core: Fix port and device removal
99d308c31923 ata: libata-core: Fix ata_port_request_pm() locking
eaf449666221 net: thunderbolt: Fix TCPv6 GSO checksum calculation
72595dbfcae3 bpf: Fix BTF_ID symbol generation collision in tools/
6a80578bd441 bpf: Fix BTF_ID symbol generation collision
cbbfdb4bab70 btrfs: properly report 0 avail for very full file systems
ef47f25e98de ring-buffer: Update "shortest_full" in polling
b7a0df4c0877 proc: nommu: /proc/<pid>/maps: release mmap read lock
acc7fc82d0ad Revert "SUNRPC dont update timeout value on connection reset"
e3b8c9e0fc3c i2c: i801: unregister tco_pdev in i801_probe() error path
b664e9db8d2c ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES
25872c67de20 ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre M70q
5a03b42ae1ed netfilter: nf_tables: disallow rule removal from chain binding
7130a87ca323 nilfs2: fix potential use after free in nilfs_gccache_submit_read_data()
e14afa4450cb serial: 8250_port: Check IRQ data before use
6d5c8862932d Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux"
14443223e08c Smack:- Use overlay inode label in smack_inode_copy_up()
297c51c63fe1 smack: Retrieve transmuting information in smack_inode_getsecurity()
41de7a6b95df smack: Record transmuting in smk_transmuted
831f18c735e2 nvme-pci: always return an ERR_PTR from nvme_pci_alloc_dev
fb28f89d50c0 netfilter: nft_exthdr: Fix for unsafe packet data read
e18216cd0ec7 netfilter: nft_exthdr: Search chunks in SCTP packets only
152b8ac839c9 watchdog: iTCO_wdt: Set NO_REBOOT if the watchdog is not already running
13b7d49f339a watchdog: iTCO_wdt: No need to stop the timer in probe
0d599a3f57a5 nvme-pci: do not set the NUMA node of device if it has none
97e148dcb97d nvme-pci: factor out a nvme_pci_alloc_dev helper
71357c751fb2 nvme-pci: factor the iod mempool creation into a helper
38f82cf86096 ACPI: Check StorageD3Enable _DSD property in ACPI code
67025d565450 cgroup: Fix suspicious rcu_dereference_check() usage warning
b2788f6d4924 sched/cpuacct: Optimize away RCU read lock
82756d8a2394 sched/cpuacct: Fix charge percpu cpuusage
f8e8e72c58c7 sched/cpuacct: Fix user/system in shown cpuacct.usage*
ef3c728ca0d4 perf build: Define YYNOMEM as YYNOABORT for bison < 3.81
da91481c5d2b fbdev/sh7760fb: Depend on FB=y
ffc459a93065 ncsi: Propagate carrier gain/loss events to the NCSI controller
8c2500228b8f powerpc/watchpoints: Disable preemption in thread_change_pc()
f5bdbed0361c media: vb2: frame_vector.c: replace WARN_ONCE with a comment
ebc91848062e bpf: Clarify error expectations from bpf_clone_redirect
0118244848a5 spi: nxp-fspi: reset the FLSHxCR1 registers
f6cf19c1b313 ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset()
2afd8fcee0c4 scsi: pm80xx: Avoid leaking tags when processing OPC_INB_SET_CONTROLLER_CONFIG command
0decc581e1dc scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command
f44e66447c4f platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig
cee5151c5410 ring-buffer: Do not attempt to read past "commit"
2956e33fb4f8 selftests: fix dependency checker script
9ccce21bd77b ring-buffer: Avoid softlockup in ring_buffer_resize()
5dfcb92905b3 selftests/ftrace: Correctly enable event in instance-event.tc
38ef4b2e4dca scsi: qedf: Add synchronization between I/O completions and abort
2081b2a15b08 parisc: irq: Make irq_stack_union static to avoid sparse warning
f47efdffdc13 parisc: drivers: Fix sparse warning
d967a9472bf9 parisc: iosapic.c: Fix sparse warnings
7b2440c2d64f parisc: sba: Fix compile warning wrt list of SBA devices
c79300599923 dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lock
061f40275338 i2c: npcm7xx: Fix callback completion ordering
dd81e91b2efc gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip
b317f69871ef xtensa: boot/lib: fix function prototypes
be17dfdcc87a xtensa: boot: don't add include-dirs
a10bfbe599b7 xtensa: iss/network: make functions static
608af5511a8f xtensa: add default definition for XCHAL_HAVE_DIV32
3696261859c5 power: supply: ucs1002: fix error code in ucs1002_get_property()
eff55feb8b87 bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up
1bc88671960f ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot
a2a592adad7c ARM: dts: Unify pwm-omap-dmtimer node names
2d9c9589da6a ARM: dts: am335x: Guardian: Update beeper label
ef83f35ced40 ARM: dts: motorola-mapphone: Drop second ti,wlcore compatible value
12a28c379ef8 ARM: dts: motorola-mapphone: Add 1.2GHz OPP
afdc40a74ae3 ARM: dts: motorola-mapphone: Configure lower temperature passive cooling
093a9a02d4d5 ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4
28e5423ad8fb ARM: dts: omap: correct indentation
50789f37239c clk: tegra: fix error return case for recalc_rate
0fd5839e2504 bus: ti-sysc: Fix missing AM35xx SoC matching
1d4d846e2a49 bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset()
a8ee76d72737 MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled
d678c078f302 btrfs: reset destination buffer when read_extent_buffer() gets invalid range
a1f85bc9bc69 ata: ahci: Add Elkhart Lake AHCI controller
51d190cc98de ata: ahci: Rename board_ahci_mobile
8061c399c83b ata: ahci: Add support for AMD A85 FCH (Hudson D4)
0156cce71f8e ata: libata: Rename link flag ATA_LFLAG_NO_DB_DELAY
9f0d34663025 netfilter: nft_exthdr: Fix non-linear header modification
ed60b8014c9a netfilter: exthdr: add support for tcp option removal
10670abe1115 netfilter: nft_exthdr: break evaluation if setting TCP option fails
45b3eb6afcff netfilter: nf_tables: add and use nft_thoff helper
39546418b84d netfilter: nf_tables: add and use nft_sk helper
af844ba799b5 netfilter: nft_exthdr: Support SCTP chunks
858ca1921639 netfilter: use actual socket sk for REJECT action
2d9ea86f3c4a media: venus: hfi_venus: Write to VIDC_CTRL_INIT after unmasking interrupts
c4cc1f690f19 media: venus: hfi: Add a 6xx boot logic
4596fece3c24 media: venus: core: Add differentiator IS_V6(core)
3ed9d3dc244b media: venus: hfi: Define additional 6xx registers
ebccb53232cc media: venus: hfi,pm,firmware: Convert to block relative addressing
4ccdeb68da0c media: venus: core: Add io base variables for each block
6d3745bbc334 mmc: renesas_sdhi: register irqs before registering controller
995ef65e4b5c mmc: tmio: support custom irq masks
97eb045386de mmc: renesas_sdhi: populate SCC pointer at the proper place
7217ceb61a47 mmc: renesas_sdhi: probe into TMIO after SCC parameters have been setup
e492f8125133 Input: i8042 - add quirk for TUXEDO Gemini 17 Gen1/Clevo PD70PN
677bff659fd3 Input: i8042 - rename i8042-x86ia64io.h to i8042-acpipnpio.h
3fac8ce48fa9 netfilter: nf_tables: double hook unregistration in netns path
e51f30826bc5 netfilter: nf_tables: unregister flowtable hooks on netns exit
5e95c88e9061 i2c: mux: demux-pinctrl: check the return value of devm_kstrdup()
0a78bcc2d526 gpio: tb10x: Fix an error handling path in tb10x_gpio_probe()
f515112e8337 net: rds: Fix possible NULL-pointer dereference
466e88548e19 bnxt_en: Flush XDP for bnxt_poll_nitroa0()'s NAPI
78106529b390 locking/seqlock: Do the lockdep annotation before locking in do_write_seqcount_begin_nested()
a8dd21118b0f seqlock: Prefix internal seqcount_t-only macros with a "do_"
ac01a0dd7905 seqlock: Rename __seqprop() users
a8460ee6c80b seqlock: avoid -Wshadow warnings
f1893feb20ea netfilter: ipset: Fix race between IPSET_CMD_CREATE and IPSET_CMD_SWAP
b44dd92e2afd team: fix null-ptr-deref when team device type is changed
04cc361f029c net: bridge: use DEV_STATS_INC()
1671dc1b25e5 net: hns3: add 5ms delay before clear firmware reset irq source
309af4a39b8e net: hns3: only enable unicast promisc when mac table full
ae806c74c063 x86/srso: Fix SBPB enablement for spec_rstack_overflow=off
423ba1b3a5a7 x86/srso: Fix srso_show_state() side effect
1ec40ef6f765 platform/x86: intel_scu_ipc: Fail IPC send if still busy
4c5eaf6d8bb4 platform/x86: intel_scu_ipc: Don't override scu in intel_scu_ipc_dev_simple_command()
441b61d742ef platform/x86: intel_scu_ipc: Check status upon timeout in ipc_wait_for_interrupt()
c463898b6e72 platform/x86: intel_scu_ipc: Check status after timeout in busy_loop()
60d73c62e3e4 dccp: fix dccp_v4_err()/dccp_v6_err() again
09a1c790e1b9 powerpc/perf/hv-24x7: Update domain value check
8689c9ace976 ipv4: fix null-deref in ipv4_link_failure
47907ebeb77a i40e: Fix VF VLAN offloading when port VLAN is configured
a91861446f1c ASoC: imx-audmix: Fix return error with devm_clk_get()
c4ecedf980b0 selftests: tls: swap the TX and RX sockets in some tests
78ef69b6e770 selftests/tls: Add {} to avoid static checker warning
388c9d3eefae bpf: Avoid deadlock when using queue and stack maps from NMI
6dc85d848c26 netfilter: nf_tables: disallow element removal on anonymous sets
a45632f99713 ASoC: meson: spdifin: start hw on dai probe
09c85f2d21ab netfilter: nf_tables: fix memleak when more than 255 elements expired
4deaf1316b42 netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration
26d0e4d632f8 netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation fails
b796c4e4bf29 netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention
c323ed65f66e netfilter: nft_set_rbtree: skip sync GC for new elements in this transaction
09f2dda1e576 netfilter: nf_tables: defer gc run if previous batch is still pending
b71dcee2fc9c netfilter: nf_tables: use correct lock to protect gc_list
23292bdfda5f netfilter: nf_tables: GC transaction race with abort path
dc0b1f019554 netfilter: nf_tables: GC transaction race with netns dismantle
4046f2b56e5a netfilter: nf_tables: fix GC transaction races with netns and netlink event exit path
891ca5dfe3b7 netfilter: nf_tables: don't fail inserts if duplicate has expired
911dd3cdf108 netfilter: nf_tables: remove busy mark and gc batch API
77046cb00850 netfilter: nft_set_hash: mark set element as dead when deleting from packet path
146c76866795 netfilter: nf_tables: adapt set backend to use GC transaction API
448be0774882 netfilter: nf_tables: GC transaction API to avoid race with control plane
b15ea4017af8 netfilter: nf_tables: don't skip expired elements during walk
f8bf7706151a netfilter: nf_tables: integrate pipapo into commit protocol
9b65bff30a61 tracing: Have event inject files inc the trace array ref count
f8a86ab3c4a4 ext4: do not let fstrim block system suspend
c502b09d9bef ext4: move setting of trimmed bit into ext4_try_to_trim_range()
e78e9f08a24e ext4: replace the traditional ternary conditional operator with with max()/min()
cbf6a0f65404 ext4: mark group as trimmed only if it was fully scanned
5eaf4a1e06cf ext4: change s_last_trim_minblks type to unsigned long
24a86315a353 ext4: scope ret locally in ext4_try_to_trim_range()
da1895f731f3 ext4: add new helper interface ext4_try_to_trim_range()
6f5fc957dfb7 ext4: remove the 'group' parameter of ext4_trim_extent
69c966583022 ata: libahci: clear pending interrupt status
11d15a115c90 ata: ahci: Drop pointless VPRINTK() calls and convert the remaining ones
407bf1c140f0 tracing: Increase trace array ref count on enable and filter files
3f7df02fa0d4 SUNRPC: Mark the cred for revalidation if the server rejects it
25ae2b2fdb12 NFS/pNFS: Report EINVAL errors from connect() to the server
26db22a6397b NFS: Use the correct commit info in nfs_join_page_group()
(From OE-Core rev: 2c379dc34820b80f3f4132437737f0e4d601e36a)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
cryptography is a package designed to expose cryptographic primitives
and recipes to Python developers. Calling `load_pem_pkcs7_certificates`
or `load_der_pkcs7_certificates` could lead to a NULL-pointer dereference
and segfault. Exploitation of this vulnerability poses a serious risk of
Denial of Service (DoS) for any application attempting to deserialize a
PKCS7 blob/certificate. The consequences extend to potential disruptions
in system availability and stability. This vulnerability has been patched
in version 41.0.6.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-49083https://security-tracker.debian.org/tracker/CVE-2023-49083
(From OE-Core rev: 2d104f78cd13a10640bc284c7fc8358bf305279c)
Signed-off-by: Narpat Mali <narpat.mali@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(From OE-Core rev: 9c21b08c18414bb61abebcbbb8704946ea288a7b)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* it might be a bit confusing as it shows number of threads before making
the decision to start more tasks and also it can show only a few tasks
running, but not because of pressure when there just aren't many tasks
left or wait for their dependencies to be finished first
* example output:
NOTE: Pressure status changed to CPU: True, IO: None, Mem: None (CPU: 297589.5/200000.0, IO: 5522.2/None, Mem: 779.2/None) - using 7/8 bitbake threads
NOTE: Pressure status changed to CPU: False, IO: None, Mem: None (CPU: 196381.2/200000.0, IO: 2667.9/None, Mem: 556.2/None) - using 2/8 bitbake threads
(Bitbake rev: 42a1c9fe698a03feb34c5bba223c6e6e0350925b)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* with latest bitbake I'm seeing very low number of bitbake tasks
executed in parallel, probably due to pressure regulation
show the values this is based on in the note
* also simplify a bit by counting the pressure and exceeds signs
only once
(Bitbake rev: 1050145c3004861ebede4777fd4fbd89d0470716)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The current calculation is not correct because if tdiff is less than
1.0, it's not taken into consideration when calculating the current
pressure.
Also, make it clear that the 1.0s is the psi accumulation cycle,
which might be changed in the future. We have this cycle because it
could largely avoid the 0 result issue, that is, if the interval
between checks are too small, the result might be 0. With this
accumulation logic, which has been there but let's make it clear,
this 0 result problem could be mitigated.
(Bitbake rev: 76889ff0a8938a3d77603d2af176aa9e264df839)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
It is currently hard to tell when bitbake is throttling task execution
due to system pressure changes. Add notes to the console output to make
this clearer, only generating output when the values change.
(Bitbake rev: b5f77e8159ad321f31999af8304f082a2c56b537)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The current PSI check calculation does not take into consideration
the possibility of the time interval between last check and current
check being much larger than 1s. In fact, the current behavior does
not match what the manual says about BB_PRESSURE_MAX_XXX, even if
the value is set to upper limit, 1000000, we still get many blocks
on new task launch. The difference between 'total' should be divided
by the time interval if it's larger than 1s.
(Bitbake rev: 2b2997ab6bdda730e4b638f416311a73e0c42156)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
bpf-translate.cxx: error: 'this_column_size' may be used uninitialized in this function [-Werror=maybe-uninitialized]
bpf-translate.cxx: error: 'num' may be used uninitialized in this function [-Werror=maybe-uninitialized]
(From OE-Core rev: 11da43b58e19583a9bc16044309610cfb2e86469)
Signed-off-by: Li Wang <li.wang@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Machines that have added subdirectires to the KERNEL_DEVICETREE
recently, such as arm32 boards that were moved under subdirectories in
Linux 6.5, will have that subdirectory in the node name of the FIT. This
breaks existing systems that select a configuration in u-boot by it's
name.
Strip off the directory component from the device tree to preserve
compatibility.
(From OE-Core rev: 941ba1a132bafa9c9be855fb91fec96d8b06299f)
(From OE-Core rev: 9a42349a176ca4d7a1bfab3425a0821dbcbd9368)
Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Ninad Palsule <ninad@linux.ibm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de> # backport to kirkstone
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A previous commit attempted to fix reproducibility errors by forcing
regeneration of .po files. Unfortunately this triggered a different
type of reproducibility issue.
Work around this by adjusting the timestamps of the troublesome .po
files so they are not regenerated and we use the shipped upstream
versions of the files.
The shipped version of ru.cp1251.po doesn't seem to have been created
with the vim tooling and specifies CP1251 instead of cp1251, fix that.
(From OE-Core rev: 3c1e35562c31b8fa94ea10d18ddfdb4267566bf3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 13d9551ba626f001c71bf908df16caf1d739cf13)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When making checkouts from git, the timestamps can vary and occasionally two files
can end up with the same stamp. This triggers make to regenerate ru.cp1251.po from
ru.po for example. If it isn't regenerated, the output isn't quite the same leading
to reproducibility issues (CP1251 vs cp1251).
Since we added all locales to buildtools tarball now, we can drop the locale
restrictions too. We need to generate a native binary for the sjis conversion
tool so also tweak that.
(From OE-Core rev: b2e62fb4d52b019728a4920553fa24f4626b881a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 042c1a501b1dae5ddb31307b461be02c3591c589)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This was not actually backported to kirkstone (and isn't going to be)
but the documentation for the feature erroneously did make its way
from master into kirkstone.
(From yocto-docs rev: 08fda7a5601393617b1ecfe89229459e14a90b1d)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Synchronizing with master whenever possible,
to make the branch easier to maintain.
(From yocto-docs rev: 825b1292ab08770b2d8cfdc1e11358a2790c1a1b)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Update for changes in nanbield. Note that I am documenting what is set
by poky.conf here (since this is Yocto Project documentation), which is
slightly different from what is done in meta/conf/bitbake.conf.
(From yocto-docs rev: 4273dc298aba67fe07f19b52e5f8fa1d183d054c)
Signed-off-by: Paul Eggleton <bluelightning@bluelightning.org>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Create a Map to detail how BitBake handles a recipe's tasks
and its compile/runtime dependencies along with detailed comments.
(From yocto-docs rev: 529c7bf6c434166f4d372166868d46f275eb5bea)
Signed-off-by: Talel BELHAJSALEM <bhstalel@gmail.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Other spaces uses the Go architecture definitions as their own (for
example, container arches are defined to be Go arches). To make it
easier for other places to use this mapping, move the code that does the
translation of OpenEmbedded arches to Go arches to a library.
(From oe-core rev: 3e86f72fc2e1cc2e5ea4b4499722d736941167ce)
This commit together with meta-virtualization commit
115f6367f37095415f289fb6981cda9608ac72ff
broke meta-virtualization master used with
meta-lts-mixins kirkstone/go which is our primary
usecase for having kirkstone/go mixin layer
Manually crafted since cherry-pick had too many conflicts:
* different path to classes
* additional architecture loongarch64
* different way how to import library
(From OE-Core rev: 8726ae02d760270f9e7fe7ef5715d8f7553371ce)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Cc: Joshua Watt <JPEWhacker@gmail.com>
Cc: Bruce Ashfield <bruce.ashfield@gmail.com>
Cc: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This change adds a patch that is a partial backport of an upstream
commit[1].
It fixes a bug in go's DNS resolver that was causing a docker issue
where the first "docker pull" always fails after system boot if docker
daemon is started before networking is completely up.
[1] d52883f443
(From OE-Core rev: 8c8b01e84844a7e721c668d5ffbc7161e67f0862)
Signed-off-by: Chaitanya Vadrevu <chaitanya.vadrevu@ni.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
License-update: file removed upstream
Drop patch as issue fixed upstream.
Changelog:
===========
1.9.15p2
* Fixed a bug on BSD systems where sudo would not restore the
terminal settings on exit if the terminal had parity enabled.
GitHub issue #326.
1.9.15p1
* Fixed a bug introduced in sudo 1.9.15 that prevented LDAP-based
sudoers from being able to read the ldap.conf file.
GitHub issue #325.
1.9.15
* Fixed an undefined symbol problem on older versions of macOS
when "intercept" or "log_subcmds" are enabled in sudoers.
GitHub issue #276.
* Fixed "make check" failure related to getpwent(3) wrapping
on NetBSD.
* Fixed the warning message for "sudo -l command" when the command
is not permitted. There was a missing space between "list" and
the actual command due to changes in sudo 1.9.14.
* Fixed a bug where output could go to the wrong terminal if
"use_pty" is enabled (the default) and the standard input, output
or error is redirected to a different terminal. Bug #1056.
* The visudo utility will no longer create an empty file when the
specified sudoers file does not exist and the user exits the
editor without making any changes. GitHub issue #294.
* The AIX and Solaris sudo packages on www.sudo.ws now support
"log_subcmds" and "intercept" with both 32-bit and 64-bit
binaries. Previously, they only worked when running binaries
with the same word size as the sudo binary. GitHub issue #289.
* The sudoers source is now logged in the JSON event log. This
makes it possible to tell which rule resulted in a match.
* Running "sudo -ll command" now produces verbose output that
includes matching rule as well as the path to the sudoers file
the matching rule came from. For LDAP sudoers, the name of the
matching sudoRole is printed instead.
* The embedded copy of zlib has been updated to version 1.3.
* The sudoers plugin has been modified to make it more resilient
to ROWHAMMER attacks on authentication and policy matching.
This addresses CVE-2023-42465.
* The sudoers plugin now constructs the user time stamp file path
name using the user-ID instead of the user name. This avoids a
potential problem with user names that contain a path separator
('/') being interpreted as part of the path name. A similar
issue in sudo-rs has been assigned CVE-2023-42456.
* A path separator ('/') in a user, group or host name is now
replaced with an underbar character ('_') when expanding escapes
in @include and @includedir directives as well as the "iolog_file"
and "iolog_dir" sudoers Default settings.
* The "intercept_verify" sudoers option is now only applied when
the "intercept" option is set in sudoers. Previously, it was
also applied when "log_subcmds" was enabled. Sudo 1.9.14
contained an incorrect fix for this. Bug #1058.
* Changes to terminal settings are now performed atomically, where
possible. If the command is being run in a pseudo-terminal and
the user's terminal is already in raw mode, sudo will not change
the user's terminal settings. This prevents concurrent sudo
processes from restoring the terminal settings to the wrong values.
GitHub issue #312.
* Reverted a change from sudo 1.9.4 that resulted in PAM session
modules being called with the environment of the command to be
run instead of the environment of the invoking user.
GitHub issue #318.
* New Indonesian translation from translationproject.org.
* The sudo_logsrvd server will now raise its open file descriptor
limit to the maximum allowed value when it starts up. Each
connection can require up to nine open file descriptors so the
default soft limit may be too low.
* Better log message when rejecting a command if the "intercept"
option is enabled and the "intercept_allow_setid" option is
disabled. Previously, "command not allowed" would be logged and
the user had no way of knowing what the actual problem was.
* Sudo will now log the invoking user's environment as "submitenv"
in the JSON logs. The command's environment ("runenv") is no
longer logged for commands rejected by the sudoers file or an
approval plugin.
1.9.14p3
* Fixed a crash with Python 3.12 when the sudo Python plugin is
unloaded. This only affects "make check" for the Python plugin.
* Adapted the sudo Python plugin test output to match Python 3.12.
1.9.14p2
* Fixed a crash on Linux systems introduced in version 1.9.14 when
running a command with a NULL argv[0] if "log_subcmds" or
"intercept" is enabled in sudoers.
* Fixed a problem with "stair-stepped" output when piping or
redirecting the output of a sudo command that takes user input.
* Fixed a bug introduced in sudo 1.9.14 that affects matching
sudoers rules containing a Runas_Spec with an empty Runas user.
These rules should only match when sudo's -g option is used but
were matching even without the -g option. GitHub issue #290.
1.9.14p1
* Fixed an invalid free bug in sudo_logsrvd that was introduced
in version 1.9.14 which could cause sudo_logsrvd to crash.
* The sudoers plugin no longer tries to send the terminal name
to the log server when no terminal is present. This bug was
introduced in version 1.9.14.
1.9.14
* Fixed a bug where if the "intercept" or "log_subcmds" sudoers
option was enabled and a sub-command was run where the first
entry of the argument vector didn't match the command being run.
This resulted in commands like "sudo su -" being killed due to
the mismatch. Bug #1050.
* The sudoers plugin now canonicalizes command path names before
matching (where possible). This fixes a bug where sudo could
execute the wrong path if there are multiple symbolic links with
the same target and the same base name in sudoers that a user is
allowed to run. GitHub issue #228.
* Improved command matching when a chroot is specified in sudoers.
The sudoers plugin will now change the root directory id needed
before performing command matching. Previously, the root directory
was simply prepended to the path that was being processed.
* When NETGROUP_BASE is set in the ldap.conf file, sudo will now
perform its own netgroup lookups of the host name instead of
using the system innetgr(3) function. This guarantees that user
and host netgroup lookups are performed using the same LDAP
server (or servers).
* Fixed a bug introduced in sudo 1.9.13 that resulted in a missing
" ; " separator between environment variables and the command
in log entries.
* The visudo utility now displays a warning when it ignores a file
in an include dir such as /etc/sudoers.d.
* When running a command in a pseudo-terminal, sudo will initialize
the terminal settings even if it is the background process.
Previously, sudo only initialized the pseudo-terminal when running
in the foreground. This fixes an issue where a program that
checks the window size would read the wrong value when sudo was
running in the background.
* Fixed a bug where only the first two digits of the TSID field
being was logged. Bug #1046.
* The "use_pty" sudoers option is now enabled by default. To
restore the historic behavior where a command is run in the
user's terminal, add "Defaults !use_pty" to the sudoers file.
GitHub issue #258.
* Sudo's "-b" option now works when the command is run in a
pseudo-terminal.
* When disabling core dumps, sudo now only modifies the soft limit
and leaves the hard limit as-is. This avoids problems on Linux
when sudo does not have CAP_SYS_RESOURCE, which may be the case
when run inside a container. GitHub issue #42.
* Sudo configuration file paths have been converted to colon-separated
lists of paths. This makes it possible to have configuration
files on a read-only file system while still allowing for local
modifications in a different (writable) directory. The new
--enable-adminconf configure option can be used to specify a
directory that is searched for configuration files in preference
to the sysconfdir (which is usually /etc).
* The NETGROUP_QUERY ldap.conf parameter can now be disabled for
LDAP servers that do not support querying the nisNetgroup object
by its nisNetgroupTriple attribute, while still allowing sudo to
query the LDAP server directly to determine netgroup membership.
* Fixed a long-standing bug where a sudoers rule without an explicit
runas list allowed the user to run a command as root and any
group instead of just one of the groups that root is a member
of. For example, a rule such as "myuser ALL = ALL" would permit
"sudo -u root -g othergroup" even if root did not belong to
"othergroup".
* Fixed a bug where a sudoers rule with an explicit runas list
allowed a user to run sudo commands as themselves. For example,
a rule such as "myuser ALL = (root) ALL", "myuser" should only
allow commands to be run as root (optionally using one of root's
groups). However, the rule also allowed the user to run
"sudo -u myuser -g myuser command".
* Fixed a bug that prevented the user from specifying a group on
the command line via "sudo -g" if the rule's Runas_Spec contained
a Runas_Alias.
* Sudo now requires a C compiler that conforms to ISO C99 or higher
to build.
(From OE-Core rev: 55f1437e2e7f11724ace489677ae214611244faf)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
These CVEs affect path handling on Windows.
(From OE-Core rev: 60f75fd6a671fcbfeefb634fe88f6faa17b446b7)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
issue in GhostPCL.
GhostPCL not part of this GhostScript recipe.
(From OE-Core rev: 7c4b4daeeca8fab257475eacb83c58b7e5dfee24)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A vulnerability was found in Avahi. A reachable assertion
exists in the avahi_alternative_host_name() function.
(From OE-Core rev: 3a9b67f222d6e004a8b56eedca6ff869e9aba710)
Signed-off-by: Meenali Gupta <meenali.gupta@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A vulnerability was found in Avahi. A reachable assertion
exists in the avahi_rdata_parse() function.
(From OE-Core rev: 1b699ac1e8519cd488ee033919b9205283b7b465)
Signed-off-by: Meenali Gupta <meenali.gupta@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A vulnerability was found in Avahi, where a reachable assertion
exists in avahi_dns_packet_append_record.
(From OE-Core rev: 8bd1980fd4175be3dd68987f8c5653409b76f544)
Signed-off-by: Meenali Gupta <meenali.gupta@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A vulnerability was found in Avahi. A reachable assertion exists
in the avahi_escape_label() function.
(From OE-Core rev: bc211ae0e597d40f938f9a25bfc0fcbb228d90b6)
Signed-off-by: Meenali Gupta <meenali.gupta@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A vulnerability was found in Avahi. A reachable assertion exists
in the dbus_set_host_name function.
(From OE-Core rev: f4286c3a3070fd50e334a48f1b7c068d34747115)
Signed-off-by: Meenali Gupta <meenali.gupta@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
An out-of-bounds write flaw was found in grub2's NTFS filesystem driver.
This issue may allow an attacker to present a specially crafted NTFS
filesystem image, leading to grub's heap metadata corruption. In some
circumstances, the attack may also corrupt the UEFI firmware heap metadata.
As a result, arbitrary code execution and secure boot protection bypass
may be achieved.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-4692https://bugzilla.redhat.com/show_bug.cgi?id=2236613
(From OE-Core rev: c89835b37366dde6c74f8221fd5a295ecabf8225)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There was an extra space between the result and ':'.
After removing extra space, the ptest result will be:
result : testname -> result: testname
(From OE-Core rev: 4bb6373e5f4a1330a063d1afe855d6c24d5461e7)
Signed-off-by: Narpat Mali <narpat.mali@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
We don't make do_cve_check depend on do_unpack because that would be a
waste of time 99% of the time. The compromise here is that we can't
scan remote patches for issues, but this isn't a problem so downgrade
the warning to a note.
Also move the check for CVEs in the filename before the local file check
so that even with remote patches, we still check for CVE references in
the name.
(From OE-Core rev: b4e5e02ab5dcc6b32810aa88c371799777dd8821)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 0251cad677579f5b4dcc25fa2f8552c6040ac2cf)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Occasionally the cve-check tool will warn that it is adding the same
package twice. Knowing what this package is might be the first step
towards understanding where this message comes from.
(From OE-Core rev: 4b449d5dcbaebb0690a55cf45e3a735c2d8df101)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c1179faec8583a8b7df192cf1cbf221f0e3001fc)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The JSON report generated by the cve-check class is basically a huge
list of packages. This list of packages is, however, unsorted.
To make things easier for people comparing the JSON, or more
specifically for git when archiving the JSON over time in a git
repository, we can sort the list by package name.
(From OE-Core rev: 1245649fd2725915154648a98584c908da07af18)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e9861be0e5020830c2ecc24fd091f4f5b05da036)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Error occured while running bitbake on cephfs:
WARNING: The free inode of path is running low (-0.001K left)
ERROR: Immediately halt since the disk space monitor action is "HALT"!
(Bitbake rev: a7f6c3e67bd9170e93b2b94676e84018faf0df91)
Signed-off-by: Samantha Jalabert <samantha.jalabert@syslinbit.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Using multiconfig to target baremetal pieces of the system and building
corresponding toolchains for them results in hundreds and hundreds of
"Deferring %s after %s" and "Deferred task %s now buildable".
To clean up the output and to reduce risk of missing important warnings,
convert these notice messages to debug messages.
(Bitbake rev: 3505d8d8c02b041946670ab6bc5751e54fe292ff)
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 64bc00a46d1aacc23fe7e8d9a46a126f3a4bc318)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
If Tinfoil is initialized with setup_logging = False and
Tinfoil.prepare() is called with config_only = False, then it fails
because self.localhandlers is only initialized when
setup_logging = True.
This is seen with, e.g., `bitbake-getvar -q -r busybox MACHINE`:
Traceback (most recent call last):
File ".../bitbake/bin/bitbake-getvar", line 41, in <module>
tinfoil.prepare(quiet=2)
File ".../bitbake/lib/bb/tinfoil.py", line 390, in prepare
for handler in self.localhandlers:
AttributeError: 'Tinfoil' object has no attribute 'localhandlers'.
Did you mean: 'oldhandlers'?
(Bitbake rev: e452c6d7ba5bb4f78a1d2bfb742794efdf171dbc)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 616101ddb630e2c9975022068b52a87c4cf647f6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Initializing Tinfoil with setup_logging = False only has an effect when
recipe parsing is not needed. To make it work regardless of if --recipe
is used, manipulate the quiet parameter to Tinfoil.prepare() instead.
(Bitbake rev: 161ab0d5bab74732e12d490cee50e14295be0a9f)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 71ee69a20f21f3d37f4f060a7d8e87d9f1dc6aa1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This vulnerability was introduced in 2.36, so 2.35 is not vulnerable.
(From OE-Core rev: bf60773c882483f4bfe49e89be8e2f85f78b212b)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backport patch for gitlab issue mentioned in NVD CVE report.
* https://gitlab.gnome.org/GNOME/libxml2/-/issues/583
Backport also one of 14 patches for older issue with similar errors
to have clean cherry-pick without patch fuzz.
* https://gitlab.gnome.org/GNOME/libxml2/-/issues/344
The CVE is disputed because the maintainer does not think that
errors after memory allocation failures are not critical enough
to warrant a CVE ID.
This patch will formally fix reported error case, trying to backport
another 13 patches and resolve conflicts would be probably overkill
due to disputed state.
This CVE was ignored on master branch (as diputed).
(From OE-Core rev: d29a89412b37995857269d617e16ada116f14270)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is backport of commit dfb7d2c426 from poky master.
This is in continuation of earlier commit:
3ddddfc14f
linux-firmware: create separate package for cirrus and cnm firmwares
And creates separate sub packages for firmwares corresponding to following list of
licenses:
LICENSE.amphion_vpu
LICENCE.cw1200
LICENSE.ice_enhanced
LICENCE.mediatek
LICENCE.microchip
LICENCE.moxa
LICENSE.nxp_mc_firmware
LICENCE.OLPC
LICENCE.phanfw
LICENCE.qla2xxx
LICENCE.ti-keystone
LICENCE.wl1251
LICENCE.xc4000
LICENCE.xc5000
LICENCE.xc5000c
(From OE-Core rev: c110e5708465a6becc611acf97f166302a17ebdf)
(From OE-Core rev: 56503e3e80603de3b69acef2f6d32836bc9e5e5d)
Signed-off-by: Fahad Arslan <fahad.arslan@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is cherry-pick of commit 3ddddfc14f from
poky master.
Some licenses only allow usage of corresponding firmwares when a specific
hardware is present. This requires split of such firmwares from linux-firmware
package to firmware specific sub package. As this split is based off of
licensing, it makes sense to group firmware blobs having the same license in the
same package. This commit is a first step in this direction, and creates
separate packages for cirrus and cnm firmware.
(From OE-Core rev: 53d9d8789efc701609a5a1e985287344c2209d62)
(From OE-Core rev: 9b556e63ba3e89e83ba6e2647656a1fa6def87a4)
Signed-off-by: Fahad Arslan <fahad.arslan@siemens.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Commit 4a4d5f78a6 ("package_rpm: use zstd
instead of xz") changed the rpm package compressor from 'xz' to 'zstd'
which results in decompression failure with BusyBox-provided 'rpm2cpio'
applet and 'rpm' applet when given the '-i' (Install package) option:
rpm2cpio: no gzip/bzip2/xz magic
Introduce a variable which makes it possible to use a different
compression mode, making it possible to override the default value for
example like
RPMBUILD_COMPMODE = "${@'w6T%d.xzdio' % int(d.getVar('XZ_THREADS'))}"
to enable rpm decompression without including the full rpm package in
the resulting root filesystem.
(From OE-Core rev: a40d9258148e28cbee2168c93179cd4c1232fb62)
(From OE-Core rev: ad4ea9f225b0dd6396088cc70b34f886c5fa62b4)
Signed-off-by: Niko Mauno <niko.mauno@vaisala.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in the Curl package. This flaw allows an attacker to insert
cookies into a running program using libcurl if the specific series of conditions are met.
(From OE-Core rev: 9c0c09b81594979aafd74511366316419d23046e)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This flaw makes curl overflow a heap based buffer in the SOCKS5 proxy handshake.
(From OE-Core rev: 44971c945a615d07c91100f514377f7247796334)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Remove a reference to a web resource which is clearly marked as obsolete.
Replace the unnecessarily verbose note by just links to the mentioned tools.
[YOCTO #15233]
(From yocto-docs rev: b2db385b859faa775f7c92072ba9bbeebb90e713)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Reported-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Recommended instead of the Yocto Project mirror, because expected
to be faster. Make sure you only set one such mirror.
(From yocto-docs rev: 2c2dae48619f3e2a600fcdba7cd0dcb0bd313b75)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
CC: richard.purdie@linuxfoundation.org
Signed-off-by: Steve Sakoman <steve@sakoman.com>
As discussed before with Richard Purdie, the code supports this but the documentation does not.
Developers in general will not notice this or focus on it because they do not mess with the
layer.conf template file, but in my opinion I think more details can help.
(From yocto-docs rev: c4b94c24ff7e1b1609f9c7f0aebd24fd04d00ae9)
Signed-off-by: Talel BELHAJSALEM <bhstalel@gmail.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
COMPATIBLE_MACHINE is used to forbid the use of a recipe or its packages
for a specific set of machines.
In some cases, it may make more sense to have the logic inverted and
have the recipe always forbidden except for hand-picked machines. Such
could be the case for pieces of software that only support some
architectures. In that scenario, it is sometimes a bit easier on the eye
and for maintenance to use the OVERRIDES mechanism but for that, a
default should be set.
COMPATIBLE_MACHINE:aarch64 = "^(aarch64)$"
COMPATIBLE_MACHINE:mips64 = "^(mips64)$"
wouldn't do much because if COMPATIBLE_MACHINE isn't set, the recipe is
assumed compatible and therefore, if no default is provided we enter
that case.
Hence, we need to add
COMPATIBLE_MACHINE = "^$"
as default so that it only matches the empty string, which isn't
possible for MACHINEOVERRIDES.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: d66b53eebe5b2320ce12926b309e48c9e32523f3)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Various aesthetic cleanups of section 1 of that manual, including:
* replace 'HOWTO' with manual
* add more examples of sdk-related images
* font fixes
(From yocto-docs rev: 3f271b53f2103c3a7eb76ab17f0c945512493471)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
PACKAGECONFIG's first and second flag value will be added to PACKAGECONFIG_CONFARGS
and then it will be added to the appropriate variable (EXTRA_OECMAKE, or ...)
So we need to only mention PACKAGECONFIG_CONFARGS and it will lead to other variables.
I added a custom example that can help understanding very well PACKAGECONFIG.
(From yocto-docs rev: 94eb37ef56cbb19b5b6e28bef522a7288a1a61f9)
Signed-off-by: Talel BELHAJSALEM <bhstalel@gmail.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The INIT_MANAGER variable was added in 3.0 but it seems we didn't get
around to documenting it yet. I have added a variable glossary entry and
made the basic adjustment of the "Using systemd Exclusively" section in
the dev manual, however I think the latter section still needs work.
(From yocto-docs rev: a84adfaeda5a790275d020fc77d721e8560a5728)
Signed-off-by: Paul Eggleton <bluelightning@bluelightning.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add missing parenthesis, and another example of a compressed patch filename.
(From yocto-docs rev: febc0c6b7b5843c70ed01f9b2bda71c02091eae6)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This includes CVE fix for CVE-2023-5535.
(From OE-Core rev: 7681436190354b5c5b6c3a82b3094badd81113de)
Signed-off-by: Siddharth Doshi <sdoshi@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(From OE-Core rev: a1256b8fa415002eee78427cc292b866570ee267)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add a SECURITY.md file with hints for security researchers and other
parties who might report potential security vulnerabilities.
(From meta-yocto rev: e3c11a51dc814fdd400998f50b17e572d453e1d2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add a SECURITY.md file with hints for security researchers and other
parties who might report potential security vulnerabilities.
(Bitbake rev: 6c1ffa9091d0c53a100e8c8c15122d28642034bd)
Signed-off-by: Marta Rybczynska <marta.rybczynska@syslinbit.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
uboot-extlinux-config allows to specify multiple "labels" (entries in a
menu, à-la grub) and each of them have their own values for some fields.
Each "base" variable, e.g. UBOOT_EXTLINUX_FDT can be overridden for each
label. This is done via the OVERRIDES mechanism based on the label name,
e.g. UBOOT_EXTLINUX_FDT:linux if linux is a label.
However, OVERRIDES doesn't contain the label globally because it's only
necessary in one task. Therefore, the OVERRIDES itself is modified
within the task. This means that the sigdata will not be told the
dependency on UBOOT_EXTLINUX_FDT:linux, because it cannot know about it.
For this reason, we need to explicitly specify which variables this task
depends on via vardeps varflag for the task.
This was done in the past, but we missed updating it during the override
syntax migration so the cache wouldn't get invalidated if someone
modifies UBOOT_EXTLINUX_FDT:linux from a configuration file or a
bbappend for example.
Let's fix this by migrating it to the new syntax.
(From OE-Core rev: 5570e49791b770271f176a4deeb5f6f1a028cb4a)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b4dd9d873508128adbbf5ff6cf0a3df3d2ffbcf6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Adds an additional note about some of the side effects that can occur if
recipes are not reproducible and hash equivalence is enabled.
(From yocto-docs rev: aaf3e97c78e235bf3042c79ecdcf0b7c1a68ca8f)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The proper way to inherit the testimage class is now
IMAGE_CLASSES += "testimage"
so change lines with 'INHERIT += "testimage"' to match. This makes the
dev-manual consistent with the migration guide, which already specifies
that the old way causes an error.
(From yocto-docs rev: 40d82ec5f55c2353ef6f052e8460a6003fd903f4)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
1.26.17 (2023-10-02)
Added the Cookie header to the list of headers to strip from requests
when redirecting to a different host. As before, different headers can
be set via Retry.remove_headers_on_redirect. (CVE-2023-43804)
1.26.16 (2023-05-23)
Fixed thread-safety issue where accessing a PoolManager with many
distinct origins would cause connection pools to be closed while
requests are in progress (#2954)
(From OE-Core rev: 27a1de55a46b7b313eb2a6370e9d779a7cd49154)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add dependence python3-logging.
Changelog:
=========
* Removed support for Python 3.5
* Fixed an issue where a "ProxyError" recommending configuring the proxy as HTTP
instead of HTTPS could appear even when an HTTPS proxy wasn't configured.
(From OE-Core rev: d9f200b931e48d957b721005f0140ef3fff55af3)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a8a26a92dfe367472daf086a33a1b30ff6d17540)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This includes CVE fix for CVE-2023-5441.
(From OE-Core rev: 6c88137d4ab36054ac97cff0457d78ef503f383e)
Signed-off-by: Siddharth Doshi <sdoshi@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
declaring queue=b"" creates an object of types bytes().
bytes() is an immutable object, and therefore doing "self.queue = self.queue + r"
creates a new object containing "self.queue" concatenated with "r".
On my test setup, we are passing 180MB of data of "workerdata" to the bitbake-worker,
so those copies significantly slow down the initialization of the bitbake-worker.
Rather use bytearray() which a mutable type, and use extend() to avoid copies.
In my test setup, byterray.extend() is 10.000 times faster than copying the queue,
for a queue size of 180MB.
(Bitbake rev: 9993a89e5b97dda5f3657e5a7cc3a4fa94ff7111)
Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
bitbake-getvar does not have a way to silence bitbake
server's logger and that makes the tool hard to use for
text processing. This is especially true when one wants to
get a bitbake value to be piped to some other utility and
instead we get uncontrolled logging messages or warnings
together with bitbake's variable value.
Example without quiet:
bitbake-getvar --value MACHINE
NOTE: Starting bitbake server...
qemux86-64
With quiet:
bitbake-getvar --value MACHINE --quiet
qemux86-64
(Bitbake rev: d677daa0770c66010fc4ed0af5bbbb94752ba590)
Signed-off-by: Paulo Neves <ptsneves@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit af354e975d0b4c26d0e91e3c82946b093bc11b45)
Signed-off-by: Markus Niebel <Markus.Niebel@ew.tq-group.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is in accordance with the gatesgarth Release Notes:
> In the ``Upstream-Status`` header convention for patches,
> ``Accepted`` has | been replaced with ``Backport`` as these almost
> always mean the same thing i.e. the patch is already upstream and
> may need to be removed in a future recipe upgrade. If you are adding
> these headers to your own patches then use Backport to indicate that
> the patch has been sent upstream.
<https://docs.yoctoproject.org/migration-guides/migration-3.2.html#miscellaneous-changes>
Suggested-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
(From yocto-docs rev: 9abc0d3100a07d93249f2fb376c42aab1bd9eb3a)
Signed-off-by: Roland Hieber <rhi@pengutronix.de>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
It was never really clear what all those reasons really meant, and every
patch submitted upstream liftens the maintenance on the Yocto side.
So remove the current list, and replace it with two reasons in which an
upstream submission likely won't benefit the upstream project.
Suggested-by: Alexander Kanavin <alex.kanavin@gmail.com>
(From yocto-docs rev: e0aabb7f3e7cd28a22224740eeb794a86ab34886)
Signed-off-by: Roland Hieber <rhi@pengutronix.de>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This was previously included in the OpenEmbedded wiki page [1], but was
not ported along with the rest in commit 95c9a1e1e78bbfb82ade
(2023-09-12, Michael Opdenacker: "contributor-guide: recipe-style-guide:
add Upstream-Status").
[1]: https://www.openembedded.org/index.php?title=Commit_Patch_Message_Guidelines&oldid=10935
Group the examples in their own sections (but name it differently from
any other section in this document so that sphinx doesn't generate a
warning about duplicate labels).
(From yocto-docs rev: 090049e08d7b6fc497a9ac5bc9fabbfa35327414)
Signed-off-by: Roland Hieber <rhi@pengutronix.de>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Whilst often referred to as packages by people we should use the more
accurate term in documentation, 'recipe' instead of 'packages'.
(From yocto-docs rev: d97795e5cfc41b57bffd1255bceaaea8494fd181)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Adresses CVE-2023-4911.
Single commit bump:
* c84018a05ae tunables: Terminate if end of input is reached (CVE-2023-4911)
(From OE-Core rev: bca43f95850d395f9dc56644fa1d12910cabb0c5)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Adresses CVE-2023-4813, CVE-2023-4806, CVE-2023-5156. Added these to CVE_CHECK_IGNORE
to avoid in cve-check reports since the recipe version did not change.
These are the complete list of changes this brings
* 73d4ce728a Document CVE-2023-4806 and CVE-2023-5156 in NEWS
* 17092c0311 Fix leak in getaddrinfo introduced by the fix for CVE-2023-4806 [BZ #30843]*
* 762a747fae io: Fix record locking contants for powerpc64 with __USE_FILE_OFFSET64
* e3ccb230a9 getaddrinfo: Fix use after free in getcanonname (CVE-2023-4806)
* 1b9087dcec gethosts: Return EAI_MEMORY on allocation failure
* f5f88f142a gaih_inet: Split result generation into its own function
* a6da106892 gaih_inet: split loopback lookup into its own function
* 8b70d97b08 gaih_inet: make gethosts into a function
* 9098deb96a gaih_inet: separate nss lookup loop into its own function
* ce64e72b7d gaih_inet: Split nscd lookup code into its own function.
* 4897bf7968 gaih_inet: Split simple gethostbyname into its own function
* 571c531b3b gaih_inet: make numeric lookup a separate routine
* 9aad91abe6 gaih_inet: Simplify service resolution
* d02808dee9 getaddrinfo: Fix leak with AI_ALL [BZ #28852]
* f366eaa608 gaih_inet: Simplify canon name resolution
* b126325fc7 nss: Sort tests and tests-container and put one test per line
* 6e867146ee Simplify allocations and fix merge and continue actions [BZ #28931]
* 59ee83b0c2 elf: Move l_init_called_next to old place of l_text_end in link map
* 34b07bdbdd elf: Remove unused l_text_end field from struct link_map
* 02a67e102f elf: Always call destructors in reverse constructor order (bug 30785)
* aeea91fd15 elf: Do not run constructors for proxy objects
* 1d828d5855 elf: Introduce to _dl_call_fini
(From OE-Core rev: be0bca7eaa08948b6c4eabe63e68a6e14d8dad3b)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* this caused liberation-font-native to depend on TUNE_PKGARCH target fontconfig
because ${MLPREFIX}fontconfig-utils is added to RDEPENDS in anonymous python
* the dependency tree for liberation-font-native got much shorter
(just quilt-native and liberation-font-native itself):
2 after/pn-buildlist
78 before/pn-buildlist
* fixes graphviz-native signature issue as well as detected with sstate-diff-machines.sh
$ bitbake-diffsigs \
sstate-after/mako/x86_64-linux/graphviz-native/8.1.0.do_populate_sysroot.sigdata.184d4fd355f1e7a2d7d929ef4b5f62b94e2071df9dd674b2067ec21bfc7bcc1b \
sstate-after/qemux86-64/x86_64-linux/graphviz-native/8.1.0.do_populate_sysroot.sigdata.35da674d2dbc275bac02869dfce4165466315023910bdef65a6026e2cb942a46
Hash for task dependency liberation-fonts-native:do_populate_sysroot changed from 310d3da04ad9abf8ee99997e53d1ffa71c2b7d9d60fb0e8de85171a9ab6a77d3 to 048420ad1410c2b8d95498fc3c11681207335a2c722836f1f3e683cc449814da
(From OE-Core rev: 098d4ca85c2bc77949843f117c6e336d5b77271d)
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* needed on hosts with gcc-13 for ccache-native
(From OE-Core rev: 6618e5bf994f49ed93bebc4280980e297be6af98)
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
393e225fe8ff Linux 5.10.197
242c5740dd17 ext4: fix rec_len verify error
8768583b2509 scsi: pm8001: Setup IRQs on resume
f4fffa1abb7f scsi: megaraid_sas: Fix deadlock on firmware crashdump
3753e568d67f ata: libata: disallow dev-initiated LPM transitions to unsupported states
993bb01d228b i2c: aspeed: Reset the i2c controller when timeout occurs
f5e303fce3be tracefs: Add missing lockdown check to tracefs_create_dir()
96afb318ae5d nfsd: fix change_info in NFSv4 RENAME replies
b3183f5f05cd tracing: Have option files inc the trace array ref count
ec7eb8b06481 tracing: Have current_trace inc the trace array ref count
bb3e295a388c drm/amd/display: enable cursor degamma for DCN3+ DRM legacy gamma
2cdcf6481cb3 mm/filemap: fix infinite loop in generic_file_buffered_read()
0c5d5f8e0d2b proc: fix a dentry lock race between release_task and lookup
8db844077ec9 net/sched: Retire rsvp classifier
7a8f285cb58e drm/amdgpu: fix amdgpu_cs_p1_user_fence
7390bb377b5f btrfs: release path before inode lookup during the ino lookup ioctl
3d379dd109f8 btrfs: fix lockdep splat and potential deadlock after failure running delayed items
c6422e6f173d ovl: fix incorrect fdput() on aio completion
68308b0a33ed attr: block mode changes of symlinks
634444dea898 md/raid1: fix error: ISO C90 forbids mixed declarations
7be3a38f0e37 samples/hw_breakpoint: fix building without module unloading
d20beafaa69b x86/boot/compressed: Reserve more memory for page tables
7635020b9bd4 scsi: lpfc: Fix the NULL vs IS_ERR() bug for debugfs_create_file()
f99005237684 selftests: tracing: Fix to unmount tracefs for recovering environment
ae889fffae52 scsi: qla2xxx: Fix NULL vs IS_ERR() bug for debugfs_create_dir()
82910aa5501d drm: gm12u320: Fix the timeout usage for usb_bulk_msg()
df380d6f5c06 btrfs: compare the correct fsid/metadata_uuid in btrfs_validate_super
ab90a3930d39 btrfs: add a helper to read the superblock metadata_uuid
cc87d2bb391c btrfs: move btrfs_pinned_by_swapfile prototype into volumes.h
e16f5f8cab65 perf tools: Add an option to build without libbfd
c56095812721 perf jevents: Make build dependency on test JSONs
4954c5a05494 mtd: rawnand: brcmnand: Fix ECC level field setting for v7.2 controller
b87d03ed6ab7 mtd: rawnand: brcmnand: Allow SoC to provide I/O operations
5df582915851 kobject: Add sanity check for kset->kobj.ktype in kset_register()
a3efb2b57e9d media: pci: ipu3-cio2: Initialise timing struct to avoid a compiler warning
f354456f8df1 serial: cpm_uart: Avoid suspicious locking
bbe3ff47bf09 scsi: target: iscsi: Fix buffer overflow in lio_target_nacl_info_show()
6d3a1dd10537 usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc
890d10e6b72f media: pci: cx23885: replace BUG with error return
2ae53dd15eef media: tuners: qt1010: replace BUG_ON with a regular error
578b67614ae0 media: dvb-usb-v2: gl861: Fix null-ptr-deref in gl861_i2c_master_xfer
a9def3e9718a media: az6007: Fix null-ptr-deref in az6007_i2c_xfer()
4a9763d2bc4a media: anysee: fix null-ptr-deref in anysee_master_xfer
c7e5ac737db2 media: af9005: Fix null-ptr-deref in af9005_i2c_xfer
97fdbdb75034 media: dw2102: Fix null-ptr-deref in dw2102_i2c_transfer()
6c01ef65de0b media: dvb-usb-v2: af9035: Fix null-ptr-deref in af9035_i2c_master_xfer
9f3b2b666833 powerpc/pseries: fix possible memory leak in ibmebus_bus_init()
756747d4b439 jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount
6f8b34458948 fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount()
4bff1d95ba62 ext2: fix datatype of block number in ext2_xattr_set2()
7993cfc04148 md: raid1: fix potential OOB in raid1_remove_disk()
5933cd61399c bus: ti-sysc: Configure uart quirks for k3 SoC
5475b8bea148 drm/exynos: fix a possible null-pointer dereference due to data race in exynos_drm_crtc_atomic_disable()
d51d6c42d1e5 ALSA: hda: intel-dsp-cfg: add LunarLake support
fcfb71848e9e samples/hw_breakpoint: Fix kernel BUG 'invalid opcode: 0000'
9726e8dcabae drm/bridge: tc358762: Instruct DSI host to generate HSE packets
672205c6f2d1 wifi: mac80211_hwsim: drop short frames
5bf52e431c83 netfilter: ebtables: fix fortify warnings in size_entry_mwt()
f6f0a687546e alx: fix OOB-read compiler warning
acf0019b93a6 mmc: sdhci-esdhc-imx: improve ESDHC_FLAG_ERR010450
c7a8813d91f9 tpm_tis: Resend command to recover from data transfer errors
0fc7147c6943 crypto: lib/mpi - avoid null pointer deref in mpi_cmp_ui()
03385b243bad wifi: wil6210: fix fortify warnings
269eb4e1d5ea wifi: mwifiex: fix fortify warning
08fdbe379022 wifi: ath9k: fix printk specifier
268a10c9eb0f wifi: ath9k: fix fortify warnings
8c19ddc21566 crypto: lrw,xts - Replace strlcpy with strscpy
cfca20009bff devlink: remove reload failed checks in params get/set callbacks
020ecfa7b676 hw_breakpoint: fix single-stepping when using bpf_overflow_handler
bfc747fe0725 ACPI: video: Add backlight=native DMI quirk for Apple iMac12,1 and iMac12,2
dc01bfdc3d91 perf/smmuv3: Enable HiSilicon Erratum 162001900 quirk for HIP08/09
560014aefb70 ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470
3f72fdb20f6d scftorture: Forgive memory-allocation failure if KASAN
55887adc76e1 rcuscale: Move rcu_scale_writer() schedule_timeout_uninterruptible() to _idle()
f8bab887a4ae kernel/fork: beware of __put_task_struct() calling context
625c12dc04a6 ACPICA: Add AML_NO_OPERAND_RESOLVE flag to Timer
a6f4129378ca locks: fix KASAN: use-after-free in trace_event_raw_event_filelock_lock
b7c3cf2f6c42 btrfs: output extra debug info if we failed to find an inline backref
69ddafc7a7af autofs: fix memory leak of waitqueues in autofs_catatonic_mode
ff0bfa8f23eb Linux 5.10.196
2cc1f4986233 Revert "configfs: fix a race in configfs_lookup()"
5452d1be676c Linux 5.10.195
d653c35de087 parisc: Drop loops_per_jiffy from per_cpu struct
1d02ef8c8a1f drm/amd/display: Fix a bug when searching for insert_above_mpcc
2e18493c4214 kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg().
606a0d8ff674 ixgbe: fix timestamp configuration code
6edf82223fab ipv6: fix ip6_sock_set_addr_preferences() typo
a5096cc6e783 net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict()
03be4412d31e platform/mellanox: mlxbf-tmfifo: Drop jumbo frames
687031788fb1 platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors
33db24ad811b kcm: Fix memory leak in error path of kcm_sendmsg()
ed584f1e72d7 r8152: check budget for r8152_poll()
1e90a93ac484 hsr: Fix uninit-value access in fill_frame_info()
75f2de75c118 net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in mtk_hwlro_get_fdir_all()
61054a8ddb17 net: ethernet: mvpp2_main: fix possible OOB write in mvpp2_ethtool_get_rxnfc()
d1c6c93c27a4 net/smc: use smc_lgr_list.lock to protect smc_lgr_list.list iterate in smcr_port_add
fcb9e879a53e kselftest/runner.sh: Propagate SIGTERM to runner child
d94aac13a102 selftests/kselftest/runner/run_one(): allow running non-executable files
7c8ddcdab1b9 net: ipv4: fix one memleak in __inet_del_ifa()
15dabd02a975 bus: mhi: host: Skip MHI reset if device is in RDDM
de20747ee610 ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2
81d06d1919c9 ARM: dts: samsung: exynos4210-i9100: Fix LCD screen's physical size
61fa6a16bb94 scsi: qla2xxx: Flush mailbox commands on chip reset
b5775b8530b9 scsi: qla2xxx: Fix crash in PCIe error handling
41a660c204ea scsi: qla2xxx: Consolidate zio threshold setting for both FCP & NVMe
5c069bce2d67 scsi: qla2xxx: If fcport is undergoing deletion complete I/O with retry
e7ed3585d092 arm64: sdei: abort running SDEI handlers during crash
0b55460c312e ACPI: APEI: explicit init of HEST and GHES in apci_init()
c6dc2a2e11c2 perf hists browser: Fix the number of entries for 'e' key
c07e4a4ef36a perf tools: Handle old data in PERF_RECORD_ATTR
b52a33a9079c perf hists browser: Fix hierarchy mode header
d72b01d9f96f drm/amd/display: prevent potential division by zero errors
d68f639ddec4 mtd: rawnand: brcmnand: Fix potential false time out warning
d00b03126651 mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write
c839a24d6ef7 mtd: rawnand: brcmnand: Fix crash during the panic_write
e76cef3dcdb8 btrfs: use the correct superblock to compare fsid in btrfs_validate_super
f2873a18c235 btrfs: don't start transaction when joining with TRANS_JOIN_NOSTART
3856e7b11810 fuse: nlookup missing decrement in fuse_direntplus_link
1d21b03f7738 ata: pata_ftide010: Add missing MODULE_DESCRIPTION
35a3dec703bb ata: sata_gemini: Add missing MODULE_DESCRIPTION
b1d63e2bbd5b ext4: add correct group descriptors and reserved GDT blocks to system zone
6612d5b5350d sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory()
97ef9ba7df1c net: hns3: fix the port information display when sfp is absent
780f60dde296 netfilter: nfnetlink_osf: avoid OOB read
e89a361d99f6 net: dsa: sja1105: fix -ENOSPC when replacing the same tc-cbs too many times
94a3117efff8 net: dsa: sja1105: fix bandwidth discrepancy between tc-cbs software and offload
e90e70343b24 ip_tunnels: use DEV_STATS_INC()
2539b28a2b1f idr: fix param name in idr_alloc_cyclic() doc
0878052579cb s390/zcrypt: don't leak memory if dev_set_name() fails
d878011b5d93 igb: Change IGB_MIN to allow set rx/tx value between 64 and 80
417b11433eb1 igbvf: Change IGBVF_MIN to allow set rx/tx value between 64 and 80
9444881a375d igc: Change IGC_MIN to allow set rx/tx value between 64 and 80
46f02fc7f6fb kcm: Destroy mutex in kcm_exit_net()
746a8df5e4d2 net: sched: sch_qfq: Fix UAF in qfq_dequeue()
31e08e7fa6a3 af_unix: Fix data race around sk->sk_err.
90e32f81f9cc af_unix: Fix data-races around sk->sk_shutdown.
cf29b42766ad af_unix: Fix data-race around unix_tot_inflight.
b401d7e485b0 af_unix: Fix data-races around user->unix_inflight.
98e12d075c7f net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr
d47bc5023e54 veth: Fixing transmit return status for dropped packets
ab9796f43cfc igb: disable virtualization features on 82580
160fdb4116e7 ipv4: ignore dst hint for multipath routes
29039819c662 drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt()
23d2651372bd drm/i915/gvt: Save/restore HW status to support GVT suspend/resume
895dc4c47171 net: read sk->sk_family once in sk_mc_loop()
8edced38dbe5 ipv4: annotate data-races around fi->fib_dead
ab5c26dc5392 sctp: annotate data-races around sk->sk_wmem_queued
94d527c3759d net/sched: fq_pie: avoid stalls in fq_pie_timer()
a2d9d884e84b pwm: lpc32xx: Remove handling of PWM channels
6909e28cf387 watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load
aec02fba99f8 perf top: Don't pass an ERR_PTR() directly to perf_session__delete()
28df38af326d x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm()
23ec6fc52c14 perf annotate bpf: Don't enclose non-debug code with an assert()
934d29b9fa91 backlight: gpio_backlight: Drop output GPIO direction check for initial power state
84f99532152b kconfig: fix possible buffer overflow
6cc6f79b931f NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info
4185605cd0f7 NFS: Fix a potential data corruption
2ccab9f82772 soc: qcom: qmi_encdec: Restrict string length in decode
bf27518fb93f clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock
972acd701b19 clk: imx: pll14xx: dynamically configure PLL for 393216000/361267200Hz
921453672846 dt-bindings: clock: xlnx,versal-clk: drop select:false
690a22d6c581 pinctrl: cherryview: fix address_space_handler() argument
b02d1fb74e8b parisc: led: Reduce CPU overhead for disk & lan LED computation
3add85c962ab parisc: led: Fix LAN receive and transmit LEDs
2a1cf9fe09d9 lib/test_meminit: allocate pages up to order MAX_ORDER
6bfa28f441da drm/ast: Fix DRAM init on AST2200
4aade6c9100a fbdev/ep93xx-fb: Do not assign to struct fb_info.dev
db8b5a2254c3 scsi: qla2xxx: Remove unsupported ql2xenabledif option
fd48544f3e03 scsi: qla2xxx: Turn off noisy message log
931fadf9728d scsi: qla2xxx: Fix erroneous link up failure
3694f18beaa1 scsi: qla2xxx: fix inconsistent TMF timeout
4d7da12483e9 scsi: qla2xxx: Fix deletion race condition
f271e3d64b8b io_uring: break iopolling on signal
9faa6d0677ec io_uring: break out of iowq iopoll on teardown
208858d4b08a io_uring: always lock in io_apoll_task_func
6ffab754d220 net/ipv6: SKB symmetric hash should incorporate transport ports
26f9ccb7a043 udf: initialize newblock to 0
06494cd473e0 md/md-bitmap: remove unnecessary local variable in backlog_store()
5103216b863f tracing: Zero the pipe cpumask on alloc to avoid spurious -EBUSY
1c4c9191b3f8 usb: typec: tcpci: clear the fault status bit
beba5051dd34 USB: core: Fix oversight in SuperSpeed initialization
9d241c5d9a9b USB: core: Fix race by not overwriting udev->descriptor in hub_port_init()
6ceffc2ecf3d USB: core: Change usb_get_device_descriptor() API
3cef18d13f37 USB: core: Unite old scheme and new scheme descriptor reads
38e1f2ee82ba usb: typec: bus: verify partner exists in typec_altmode_attention
b97e3c5e9768 cpufreq: brcmstb-avs-cpufreq: Fix -Warray-bounds bug
a1d2e2c670a3 crypto: stm32 - fix loop iterating through scatterlist for DMA
54d03dc5d1c3 s390/ipl: add missing secure/has_secure file to ipl type 'unknown'
dc2f60de9a7d pstore/ram: Check start of empty przs during init
5b1f71c0b95a fsverity: skip PKCS#7 parser when keyring is empty
a9864e126b73 net: handle ARPHRD_PPP in dev_is_mac_header_xmit()
c681d477c03d X.509: if signature is unsupported skip validation
4b8a938e329a dccp: Fix out of bounds access in DCCP error handler
a4f4a5b41a13 dlm: fix plock lookup when using multiple lockspaces
9f73fd6972bc parisc: Fix /proc/cpuinfo output for lscpu
1f03e6dd194e procfs: block chmod on /proc/thread-self/comm
9a0b35dc3aa0 Revert "PCI: Mark NVIDIA T4 GPUs to avoid bus reset"
3d8d13a174ef ntb: Fix calculation ntb_transport_tx_free_entry()
c028e90e0de1 ntb: Clean up tx tail index on link down
3cfdc448e8bf ntb: Drop packets when qp link is down
ffed0c8fcf04 scsi: mpt3sas: Perform additional retries if doorbell read returns 0
bf67d43f07b5 Revert "scsi: qla2xxx: Fix buffer overrun"
27dfaf2ee05e media: dvb: symbol fixup for dvb_attach()
5a85727239a2 arm64: csum: Fix OoB access in IP checksum code for negative lengths
b24bebcea556 xtensa: PMU: fix base address for the newer hardware
8594605a0446 backlight/lv5207lp: Compare against struct fb_info.device
e2c77841cd8d backlight/bd6107: Compare against struct fb_info.device
35c56c48737f backlight/gpio_backlight: Compare against struct fb_info.device
13264260eb66 ARM: OMAP2+: Fix -Warray-bounds warning in _pwrdm_state_switch()
5c5f02e16b91 ipmi_si: fix a memleak in try_smi_init()
5d27baee6cd9 scsi: core: Fix the scsi_set_resid() documentation
8c90c4e61929 printk: ringbuffer: Fix truncating buffer size min_t cast
61b918dfb675 ALSA: pcm: Fix missing fixup call in compat hw_refine ioctl
ab192e5e5d3b PM / devfreq: Fix leak in devfreq_dev_release()
3e39008e9e30 igb: set max size RX buffer when store bad packet is enabled
8836c266201c skbuff: skb_segment, Call zero copy functions before using skbuff frags
5541827d13cf netfilter: xt_sctp: validate the flag_info count
a1b711c370f5 netfilter: xt_u32: validate user space input
83091f8ac03f netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for ip_set_hash_netportnet.c
1186eaffd87e igmp: limit igmpv3_newpack() packet size to IP_MAX_MTU
504bb3fc66aa virtio_ring: fix avail_wrap_counter in virtqueue_add_packed
ea374bdf2374 cpufreq: Fix the race condition while updating the transition_task of policy
27b75c7203fc dmaengine: ste_dma40: Add missing IRQ check in d40_probe
cfe215a04a21 um: Fix hostaudio build errors
eb33921806fc mtd: rawnand: fsmc: handle clk prepare error in fsmc_nand_resume()
40d8f9bffed0 mtd: spi-nor: Check bus width while setting QE bit
71ac2ffd7f80 rpmsg: glink: Add check for kstrdup
268fce6ec2e0 phy/rockchip: inno-hdmi: do not power on rk3328 post pll on reg write
6739746f4b81 phy/rockchip: inno-hdmi: round fractal pixclock in rk3328 recalc_rate
88813bd9bbb7 phy/rockchip: inno-hdmi: use correct vco_div_5 macro on rk3328
3a890f993b6c mtd: rawnand: brcmnand: Fix mtd oobsize
c5d30d6aa83d tracing: Fix race issue between cpu buffer write and swap
ee519526d58c x86/speculation: Mark all Skylake CPUs as vulnerable to GDS
15ec7cb55e7d HID: multitouch: Correct devm device reference for hidinput input_dev name
e38a6f12685d HID: logitech-dj: Fix error handling in logi_dj_recv_switch_to_dj_mode()
bdb3cd9dffdf RDMA/siw: Correct wrong debug message
d006f2cb3c68 RDMA/siw: Balance the reference of cep->kref in the error path
aa950b9835f2 Revert "IB/isert: Fix incorrect release of isert connection"
9baf2278b3ee amba: bus: fix refcount leak
0c6c0280f740 serial: tegra: handle clk prepare error in tegra_uart_hw_init()
9cce8ef7a6fa scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock
356da2d5c084 scsi: core: Use 32-bit hostnum in scsi_host_lookup()
629079f502fb cgroup:namespace: Remove unused cgroup_namespaces_init()
3534ae5f171b media: ov2680: Fix regulators being left enabled on ov2680_power_on() errors
a427ce197e75 media: ov2680: Fix vflip / hflip set functions
cd7a0e391eb5 media: ov2680: Fix ov2680_bayer_order()
faf1408a68c8 media: ov2680: Remove auto-gain and auto-exposure controls
e1552a0b990b media: i2c: ov2680: Set V4L2_CTRL_FLAG_MODIFY_LAYOUT on flips
2d29ce41de4d media: ov5640: Enable MIPI interface in ov5640_set_power_mipi()
44c71cbe7c5a USB: gadget: f_mass_storage: Fix unused variable warning
8f7de8215804 media: go7007: Remove redundant if statement
3183b0cab7b5 iommu/vt-d: Fix to flush cache of PASID directory table
4136094df53f iommu/qcom: Disable and reset context bank before programming
b374b039e066 fsi: aspeed: Reset master errors after CFAM reset
f8949c06c735 IB/uverbs: Fix an potential error pointer dereference
10bd5f8ceb3e driver core: test_async: fix an error code
19138f8cc651 dma-buf/sync_file: Fix docs syntax
e621dbeb9f91 coresight: tmc: Explicit type conversions to prevent integer overflow
d7f21ef741a5 scsi: qedf: Do not touch __user pointer in qedf_dbg_fp_int_cmd_read() directly
1198a0e93587 scsi: qedf: Do not touch __user pointer in qedf_dbg_debug_cmd_read() directly
d86d85e23e8a scsi: qedf: Do not touch __user pointer in qedf_dbg_stop_io_on_error_cmd_read() directly
4ede2ee95b41 x86/APM: drop the duplicate APM_MINOR_DEV macro
9a26aaea6c21 serial: sprd: Fix DMA buffer leak issue
6232bd4dca91 serial: sprd: Assign sprd_port after initialized to avoid wrong access
6d65079c69dc scsi: qla4xxx: Add length check when parsing nlattrs
b65b13d01b28 scsi: be2iscsi: Add length check when parsing nlattrs
4df82c6d6e7d scsi: iscsi: Add strlen() check in iscsi_if_set{_host}_param()
18d49266dd6e scsi: iscsi: Add length check for nlattr payload
3ef17ca47690 scsi: iscsi: Rename iscsi_set_param() to iscsi_if_set_param()
8356a3ba1083 scsi: RDMA/srp: Fix residual handling
cc2d5cdb19e3 usb: phy: mxs: fix getting wrong state with mxs_phy_is_otg_host()
5a6f480b2ecc media: mediatek: vcodec: Return NULL if no vdec_fb is found
43c69dc9a327 media: rkvdec: increase max supported height for H.264
1e5eac0022f4 scsi: hisi_sas: Fix normally completed I/O analysed as failed
b6aca9f5ab29 scsi: hisi_sas: Fix warnings detected by sparse
0d383e555fa6 scsi: hisi_sas: Modify v3 HW SATA completion error processing
634220605198 scsi: hisi_sas: Modify v3 HW SSP underflow error processing
d84e5d445af1 scsi: libsas: Introduce more SAM status code aliases in enum exec_status
519b9e3e5ce7 scsi: hisi_sas: Print SAS address for v3 hw erroneous completion print
5e5a528c29f0 media: cx24120: Add retval check for cx24120_message_send()
d13a84874a2e media: dvb-usb: m920x: Fix a potential memory leak in m920x_i2c_xfer()
656423cc56bd media: dib7000p: Fix potential division by zero
61bc9293da19 drivers: usb: smsusb: fix error handling code in smsusb_init_device
d8a8f75fce04 media: v4l2-core: Fix a potential resource leak in v4l2_fwnode_parse_link()
5865926da24e media: i2c: tvp5150: check return value of devm_kasprintf()
6dff92b3fe2f media: ad5820: Drop unsupported ad5823 from i2c_ and of_device_id tables
9d82a58d2af5 NFSv4.2: fix handling of COPY ERR_OFFLOAD_NO_REQ
7bc36ac6713e NFS: Guard against READDIR loop when entry names exceed MAXNAMELEN
3f1a2b0b2d57 NFSD: da_addr_body field missing in some GETDEVICEINFO replies
aaeac3a6b119 fs: lockd: avoid possible wrong NULL parameter
6d5361618988 jfs: validate max amount of blocks before allocation.
f08944e3c696 powerpc/iommu: Fix notifiers being shared by PCI and VIO buses
46ff3bd14b6d nfs/blocklayout: Use the passed in gfp flags
953c54dfdc5d powerpc/pseries: Rework lppaca_shared_proc() to avoid DEBUG_PREEMPT
e46cc0e42f3f powerpc: Don't include lppaca.h in paca.h
9837d6a483cf wifi: ath10k: Use RMW accessors for changing LNKCTL
924d1ab98706 net/mlx5: Use RMW accessors for changing LNKCTL
37eecd50856a drm/radeon: Use RMW accessors for changing LNKCTL
ead3dbc92bd4 drm/amdgpu: Use RMW accessors for changing LNKCTL
2f8269ca8062 powerpc/perf: Convert fsl_emb notifier to state machine callbacks
d45bf1528b7c powerpc/fadump: reset dump area size if fadump memory reserve fails
ad83d83dd891 vfio/type1: fix cap_migration information leak
d8f5613c5c6c clk: imx: composite-8m: fix clock pauses when set_rate would be a no-op
0d81a0546b19 clk: imx8mp: fix sai4 clock
69795c689e7b PCI/ASPM: Use RMW accessors for changing LNKCTL
f647b8fe55b1 PCI: pciehp: Use RMW accessors for changing LNKCTL
ae52f8ba4596 pinctrl: mcp23s08: check return value of devm_kasprintf()
ef8e561ddb33 PCI: Mark NVIDIA T4 GPUs to avoid bus reset
344c16a8441e clk: qcom: reset: Use the correct type of sleep/delay based on length
289f5a88f14a clk: qcom: gcc-sm8250: Fix gcc_sdcc2_apps_clk_src
b3a80429b1cf clk: qcom: gcc-sm8250: use ARRAY_SIZE instead of specifying num_parents
245759d987b6 ext4: correct grp validation in ext4_mb_good_group
2aefe3ae098d clk: qcom: gcc-sc7180: Fix up gcc_sdcc2_apps_clk_src
74a5f9755aa8 clk: qcom: gcc-sc7180: use ARRAY_SIZE instead of specifying num_parents
2640d3be822c clk: sunxi-ng: Modify mismatched function name
c1ff788f731d drivers: clk: keystone: Fix parameter judgment in _of_pll_clk_init()
13623b966bb6 ipmi:ssif: Fix a memory leak when scanning for an adapter
6128288d8f55 ipmi:ssif: Add check for kstrdup
8917591d7247 ALSA: ac97: Fix possible error value of *rac97
cd062ebe0cb3 of: unittest: Fix overlay type in apply/revert check
ca7634e5491b bus: ti-sysc: Fix cast to enum warning
43f561e809aa drm/mediatek: Fix potential memory leak if vmap() fail
265515548610 bus: ti-sysc: Fix build warning for 64-bit build
98ef243d5900 audit: fix possible soft lockup in __audit_inode_child()
69800bc5d7fd drm/msm/a2xx: Call adreno_gpu_init() earlier
7fcbaf4bdb75 drm/amd/pm: fix variable dereferenced issue in amdgpu_device_attr_create()
9b89db24c6b2 smackfs: Prevent underflow in smk_set_cipso()
9f4017cac70c firmware: meson_sm: fix to avoid potential NULL pointer dereference
815e42029f6e drm/msm/mdp5: Don't leak some plane state
a21e73a6d8e0 drm: xlnx: zynqmp_dpsub: Add missing check for dma_set_mask
524f23b08290 ima: Remove deprecated IMA_TRUSTED_KEYRING Kconfig
e2d1c9b39721 drm/panel: simple: Add missing connector type and pixel format for AUO T215HVN01
c02917e70a05 drm/armada: Fix off-by-one error in armada_overlay_get_property()
f41c65f8d05b of: unittest: fix null pointer dereferencing in of_unittest_find_node_by_name()
883fdbbdbe93 drm/tegra: dpaux: Fix incorrect return value of platform_get_irq
5f0994e3f271 drm/tegra: Remove superfluous error messages around platform_get_irq()
4a61d72585af md/md-bitmap: hold 'reconfig_mutex' in backlog_store()
8563d52a4f61 md/bitmap: don't set max_write_behind if there is no write mostly device
a15f309eb99c drm/amdgpu: Update min() to min_t() in 'amdgpu_info_ioctl'
8e766a94ec2d arm64: dts: qcom: sdm845: Fix the min frequency of "ice_core_clk"
36d3e4dedb86 arm64: dts: qcom: sdm845: Add missing RPMh power domain to GCC
0eea279e01fe ARM: dts: BCM53573: Fix Ethernet info for Luxul devices
ed4e48de8962 drm: adv7511: Fix low refresh rate register for ADV7533/5
61ccdd21679e ARM: dts: samsung: s5pv210-smdkv210: correct ethernet reg addresses (split)
e9875d2f2507 ARM: dts: s5pv210: add dummy 5V regulator for backlight on SMDKv210
c4c72bf42f48 ARM: dts: s5pv210: adjust node names to DT spec
bbcea0924b83 ARM: dts: samsung: s3c6410-mini6410: correct ethernet reg addresses (split)
a2d6c5e8e703 ARM: dts: s3c64xx: align pinctrl with dtschema
3f0d83994e98 x86/mm: Fix PAT bit missing from page protection modify mask
b56309c77d76 drm/etnaviv: fix dumping of active MMU context
8303282409b3 ARM: dts: BCM53573: Use updated "spi-gpio" binding properties
031ab0f10e3b ARM: dts: BCM53573: Add cells sizes to PCIe node
8415d803d840 ARM: dts: BCM53573: Drop nonexistent #usb-cells
cfc4a78e7054 ARM: dts: BCM53573: Describe on-SoC BCM53125 rev 4 switch
36d958ad4088 ARM: dts: BCM5301X: Harmonize EHCI/OHCI DT nodes name
826ef1576996 drm/amdgpu: avoid integer overflow warning in amdgpu_device_resize_fb_bar()
967cbc8a23e5 arm64: dts: qcom: msm8996: Add missing interrupt to the USB2 controller
71d2d9aa2bd8 soc: qcom: ocmem: Fix NUM_PORTS & NUM_MACROS macros
1356531e9249 soc: qcom: ocmem: Add OCMEM hardware version print
4bf179f53694 ASoC: stac9766: fix build errors with REGMAP_AC97
86d89987f099 quota: fix dqput() to follow the guarantees dquot_srcu should provide
af4ff4748985 quota: add new helper dquot_active()
905e316e5e99 quota: rename dquot_active() to inode_quota_active()
a5da2849db58 quota: factor out dquot_write_dquot()
53805176ec6a drm/bridge: tc358764: Fix debug print parameter order
abd1c17ef4fb netrom: Deny concurrent connect().
b08cc6c0396f net/sched: sch_hfsc: Ensure inner classes have fsc curve
ab04c731a198 hwmon: (tmp513) Fix the channel number in tmp51x_is_visible()
db7a3531662c mlxsw: i2c: Limit single transaction buffer size
3d36ba3f7e77 mlxsw: i2c: Fix chunk size setting in output mailbox buffer
7cc9e1dcc1af net: arcnet: Do not call kfree_skb() under local_irq_disable()
d4f79aa9ee34 wifi: ath9k: use IS_ERR() with debugfs_create_dir()
50f89daf9e62 Bluetooth: btusb: Do not call kfree_skb() under spin_lock_irqsave()
bef85d58f770 wifi: mwifiex: avoid possible NULL skb pointer dereference
cfce1973ffe0 wifi: ath9k: protect WMI command response buffer replacement with a lock
ee72b2b1f57e wifi: ath9k: fix races between ath9k_wmi_cmd and ath9k_wmi_ctrl_rx
91d92d897560 samples/bpf: fix broken map lookup probe
08a6e99a334d wifi: mwifiex: Fix missed return in oob checks failed path
0c4240d23db5 wifi: mwifiex: fix memory leak in mwifiex_histogram_read()
0fe11dd3fe05 fs: ocfs2: namei: check return value of ocfs2_add_entry()
d8f5415d4d49 lwt: Check LWTUNNEL_XMIT_CONTINUE strictly
a97f221651fc lwt: Fix return values of BPF xmit ops
97ccf9f19580 hwrng: iproc-rng200 - Implement suspend and resume calls
49729fc47289 crypto: caam - fix unchecked return value error
7a97044477c9 ice: ice_aq_check_events: fix off-by-one check when filling buffer
9b812dcf2b1e selftests/bpf: Clean up fmod_ret in bench_rename test script
88bc7122dba2 net: tcp: fix unexcepted socket die when snd_wnd is 0
e87da6a0ac6e Bluetooth: Fix potential use-after-free when clear keys
6668886ebecc Bluetooth: nokia: fix value check in nokia_bluetooth_serdev_probe()
625bf86bf53e crypto: api - Use work queue in crypto_destroy_instance
7545292d87db crypto: stm32 - Properly handle pm_runtime_get failing
323084d77d1f selftests/bpf: fix static assert compilation issue for test_cls_*.c
a8d69658437c wifi: mwifiex: fix error recovery in PCIE buffer descriptor management
3fe3923d092e wifi: mwifiex: Fix OOB and integer underflow when rx packets
5120d93c24bb can: gs_usb: gs_usb_receive_bulk_callback(): count RX overflow errors also in case of OOM
1d6c3017cea5 spi: tegra20-sflash: fix to check return value of platform_get_irq() in tegra_sflash_probe()
ca7ee1b75c36 wifi: mt76: testmode: add nla_policy for MT76_TM_ATTR_TX_LENGTH
791a12102e51 bpf: reject unhashed sockets in bpf_sk_assign
4d271804f536 udp: re-score reuseport groups when connected sockets are present
e6e11cbaa1f1 regmap: rbtree: Use alloc_flags for memory allocations
1d210321de6d hwrng: nomadik - keep clock enabled while hwrng is registered
f24152c20972 tcp: tcp_enter_quickack_mode() should be static
b275f0ae3598 bpf: Clear the probe_addr for uprobe
514116de91c4 bpftool: Use a local bpf_perf_event_value to fix accessing its fields
920b2f99bcbd cpufreq: powernow-k8: Use related_cpus instead of cpus in driver.exit()
133a1f45b9a6 x86/efistub: Fix PCI ROM preservation in mixed mode
3de36b8b9bc5 s390/paes: fix PKEY_TYPE_EP11_AES handling for secure keyblobs
e06326ff3aae s390/pkey: fix/harmonize internal keyblob headers
08b1803bfc73 perf/imx_ddr: don't enable counter0 if none of 4 counters are used
c0e1f9bddcea x86/decompressor: Don't rely on upper 32 bits of GPRs being preserved
0682fc175c82 selftests/resctrl: Close perf value read fd on errors
f399938a917d selftests/resctrl: Unmount resctrl FS if child fails to run benchmark
bf1f7aeb5780 selftests/resctrl: Don't leak buffer in fill_cache()
3ee719b3a026 OPP: Fix passing 0 to PTR_ERR in _opp_attach_genpd()
066fbd8bc981 refscale: Fix uninitalized use of wait_queue_head_t
ac96370db7e1 selftests/harness: Actually report SKIP for signal tests
ac5a73b5d933 tmpfs: verify {g,u}id mount options correctly
644e93a79056 fs: Fix error checking for d_hash_and_lookup()
731f39e4a12b eventfd: prevent underflow for eventfd semaphores
755e86f28ab9 eventfd: Export eventfd_ctx_do_read()
6b5d585e2302 reiserfs: Check the return value from __getblk()
5101e2c8a567 Revert "net: macsec: preserve ingress frame ordering"
ca8f04553ecb udf: Handle error when adding extent to a file
4ac54312f623 udf: Check consistency of Space Bitmap Descriptor
42714d3d7097 net: Avoid address overwrite in kernel_connect
4ded72985bb0 platform/mellanox: Fix mlxbf-tmfifo not handling all virtio CONSOLE notifications
0c0547d2a60a tracing: Introduce pipe_cpumask to avoid race on trace_pipes
99d8d419dd29 ALSA: seq: oss: Fix racy open/close of MIDI devices
21f47cc15ae1 scsi: storvsc: Always set no_report_opcodes
5cbc749d11f7 sctp: handle invalid error codes without calling BUG()
2bdd081a7d7c bnx2x: fix page fault following EEH recovery
d11a4542889d netlabel: fix shift wrapping bug in netlbl_catmap_setlong()
7dd6ef1cedca scsi: qedi: Fix potential deadlock on &qedi_percpu->p_work_lock
7a1a7f40adf2 idmaengine: make FSL_EDMA and INTEL_IDMA64 depends on HAS_IOMEM
d399b6ce1ae6 net: usb: qmi_wwan: add Quectel EM05GV2
bb8a4a36321d vmbus_testing: fix wrong python syntax for integer value comparison
0ff30413a738 clk: fixed-mmio: make COMMON_CLK_FIXED_MMIO depend on HAS_IOMEM
0111b7bb5143 kprobes: Prohibit probing on CFI preamble symbol
654e3d27791c security: keys: perform capable check only on privileged operations
b23cbd3c2518 ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer()
331d85f0bc6e ovl: Always reevaluate the file signature for IMA
357badc01add drm/amd/display: Exit idle optimizations before attempt to access PHY
de0cdcceaab3 platform/x86: huawei-wmi: Silence ambient light sensor
8964b32a67e5 platform/x86: intel: hid: Always call BTNL ACPI method
6b953ee81a45 ASoC: atmel: Fix the 8K sample parameter in I2SC master
37121461dd47 ASoc: codecs: ES8316: Fix DMIC config
bc2b0d4d37f1 fs/nls: make load_nls() take a const parameter
0a584c077967 s390/dasd: fix hanging device after request requeue
0c96df6913d4 s390/dasd: use correct number of retries for ERP requests
a5fd143673f3 m68k: Fix invalid .section syntax
f7700e987f6a vxlan: generalize vxlan_parse_gpe_hdr and remove unused args
b7cd83cfff56 ethernet: atheros: fix return value check in atl1c_tso_csum()
16c113426755 ASoC: da7219: Check for failure reading AAD IRQ events
afa2dbd7d13b ASoC: da7219: Flush pending AAD IRQ when suspending
efa372af6bfe 9p: virtio: make sure 'offs' is initialized in zc_request
2f13007fbe66 media: pci: cx23885: fix error handling for cx23885 ATSC boards
92704dd05521 media: pulse8-cec: handle possible ping error
9d9cdc32bfce phy: qcom-snps-femto-v2: use qcom_snps_hsphy_suspend/resume error code
a8ba2b695955 ARM: dts: imx: Set default tuning step for imx7d usdhc
678a88ac02e5 ARM: dts: imx: Adjust dma-apbh node name
6895499b2239 ARM: dts: imx7s: Drop dma-apb interrupt-names
614c27dfdee0 ARM: dts: imx: update sdma node name format
d45e2a3d2e4f ASoC: rt5682: Fix a problem with error handling in the io init function of the soundwire
977baccbbd4e pinctrl: amd: Don't show `Invalid config param` errors
f1d637b63d8a nilfs2: fix WARNING in mark_buffer_dirty due to discarded buffer reuse
0e11bb5ad33d nilfs2: fix general protection fault in nilfs_lookup_dirty_data_buffers()
734c6d3dc7b0 fsi: master-ast-cf: Add MODULE_FIRMWARE macro
da5dc81ed2b5 firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe
9fda2319018c serial: sc16is7xx: fix bug when first setting GPIO direction
2f982ce208fe serial: sc16is7xx: fix broken port 0 uart init
bd0ed45dd661 serial: qcom-geni: fix opp vote on shutdown
c709c7ca020a configfs: fix a race in configfs_lookup()
746b363bef41 Bluetooth: btsdio: fix use after free bug in btsdio_remove due to race condition
b074fb0fa02e staging: rtl8712: fix race condition
65bfaf5f9dea HID: wacom: remove the battery when the EKR is off
542c61470732 usb: chipidea: imx: improve logic if samsung,picophy-* parameter is 0
5c4996c22970 usb: dwc3: meson-g12a: do post init to fix broken usb after resumption
d44fa38193c2 USB: serial: option: add FOXCONN T99W368/T99W373 product
df6696e42e68 USB: serial: option: add Quectel EM05G variant (0x030e)
f71b0b4a497e modules: only allow symbol_get of EXPORT_SYMBOL_GPL modules
92de8497c342 rtc: ds1685: use EXPORT_SYMBOL_GPL for ds1685_rtc_poweroff
1aeb76ffdfc0 net: enetc: use EXPORT_SYMBOL_GPL for enetc_phc_index
d90e5956c0cc mmc: au1xmmc: force non-modular build and remove symbol_get usage
c1112a2b54ce ARM: pxa: remove use of symbol_get()
8c599aa78ce5 erofs: ensure that the post-EOF tails are all zeroed
(From OE-Core rev: e5690db43930efb6166fe398776eac044ce56048)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
006d5847646b Linux 5.10.194
d93ba6e46e5f rcu-tasks: Add trc_inspect_reader() checks for exiting critical section
3e22624f8fd3 rcu-tasks: Wait for trc_read_check_handler() IPIs
9190c1f0aed1 rcu-tasks: Fix IPI failure handling in trc_wait_for_one_reader
ad4f8c117b8b rcu: Prevent expedited GP from enabling tick on offline CPU
268e92252277 Revert "MIPS: Alchemy: fix dbdma2"
79ea9eb723b7 Revert "drm/amdgpu: install stub fence into potential unused fence pointers"
be4ccafc077f mhi: pci_generic: Fix implicit conversion warning
df3427204f1d ARM: module: Use module_init_layout_section() to spot init sections
b59cfee8d8a2 arm64: module: Use module_init_layout_section() to spot init sections
943ed7dc5ee4 arm64: module-plts: inline linux/moduleloader.h
ecd62c85120d module: Expose module_init_layout_section()
4566606fe3a4 Linux 5.10.193
b3ac2c1d725b mm,hwpoison: fix printing of page flags
7f92be110c0f ASoC: Intel: sof_sdw: include rt711.h for RT711 JD mode
32f71ef62737 mm: memory-failure: fix unexpected return value in soft_offline_page()
20c2db79f157 mm: memory-failure: kill soft_offline_free_page()
406166a3acd7 mm: fix page reference leak in soft_offline_page()
749630ce9147 mm,hwpoison: refactor get_any_page
0df5eaab03ed dma-buf/sw_sync: Avoid recursive lock during fence signal
7592a392b3e1 pinctrl: renesas: rza2: Add lock around pinctrl_generic{{add,remove}_group,{add,remove}_function}
91cbf41a9d8b clk: Fix undefined reference to `clk_rate_exclusive_{get,put}'
148a86651caf scsi: core: raid_class: Remove raid_component_add()
5d02f4320a95 scsi: snic: Fix double free in snic_tgt_create()
d643d3f322e8 ASoC: rt711: add two jack detection modes
c7b26063fcae drm/i915: Fix premature release of request's reusable memory
2d69f68ad409 cgroup/cpuset: Free DL BW in case can_attach() fails
4603c2a104bc sched/deadline: Create DL BW alloc, free & check overflow interface
c9546921a4b9 cgroup/cpuset: Iterate only if DEADLINE tasks are present
5ac05ce56843 sched/cpuset: Keep track of SCHED_DEADLINE task in cpusets
b950133d9a73 sched/cpuset: Bring back cpuset_mutex
312713e3eae3 cgroup/cpuset: Rename functions dealing with DEADLINE accounting
b2125926ba66 timers/nohz: Switch to ONESHOT_STOPPED in the low-res handler when the tick is stopped
ae4f109b954d tick: Detect and fix jiffies update stall
c7e91047d345 torture: Fix hang during kthread shutdown phase
4bc6a4fca1f0 x86/fpu: Set X86_FEATURE_OSXSAVE feature after enabling OSXSAVE in CR4
9e0c0b4ce541 drm/display/dp: Fix the DP DSC Receiver cap size
8735d1c66c7c drm/vmwgfx: Fix shader stage validation
ff0639b222e7 PCI: acpiphp: Use pci_assign_unassigned_bridge_resources() only for non-root bus
da4e9eff0f1e media: vcodec: Fix potential array out-of-bounds in encoder queue_setup
d2540b5f5aa1 of: dynamic: Refactor action prints to not use "%pOF" inside devtree_lock
851f686ed0f5 radix tree: remove unused variable
3b9a61570bc1 lib/clz_ctz.c: Fix __clzdi2() and __ctzdi2() for 32-bit kernels
72e4a5a28ebf batman-adv: Hold rtnl lock during MTU update via netlink
ee1d443eefb2 batman-adv: Fix batadv_v_ogm_aggr_send memory leak
0c6da1d84921 batman-adv: Fix TT global entry leak when client roamed back
6f5d10c0ac60 batman-adv: Do not get eth header before batadv_check_management_packet
7c0959088366 batman-adv: Don't increase MTU when set by user
480f2a129d8d batman-adv: Trigger events for auto adjusted MTU
0dbedf9afee3 selinux: set next pointer before attaching to list
a54c2048cd75 nfsd: Fix race to FREE_STATEID and cl_revoked
7c262127d264 NFS: Fix a use after free in nfs_direct_join_group()
f3c5697aae62 mm: add a call to flush_cache_vmap() in vmap_pfn()
c9a0e31d9239 clk: Fix slab-out-of-bounds error in devm_clk_release()
f979b92db1f5 NFSv4: Fix dropped lock for racing OPEN and delegation return
0a809e01578b ibmveth: Use dcbf rather than dcbfl
ffde5f9e8876 bonding: fix macvlan over alb bond support
615ea2603dc8 net: remove bond_slave_has_mac_rcu()
c8e1e17dee53 rtnetlink: Reject negative ifindexes in RTM_NEWLINK
7b79dabd639c rtnetlink: return ENODEV when ifname does not exist and group is given
d64cdb9cb629 netfilter: nf_tables: fix out of memory error handling
5db1249c70b1 net/sched: fix a qdisc modification with ambiguous command request
3847137cd167 igb: Avoid starting unnecessary workqueues
fa7d7a7f007b ice: fix receive buffer size miscalculation
70dfdbba3070 net: validate veth and vxcan peer ifindexes
67c8d7ef54df net: bcmgenet: Fix return value check for fixed_phy_register()
92b20b1569eb net: bgmac: Fix return value check for fixed_phy_register()
0b39e3070a00 ipvlan: Fix a reference count leak warning in ipvlan_ns_exit()
8162b73eef40 dccp: annotate data-races in dccp_poll()
403cc3e6253d sock: annotate data-races around prot->memory_pressure
005b6572d039 octeontx2-af: SDP: fix receive link config
b8205dfed681 tracing: Fix memleak due to race between current_tracer and trace
9c2ceffd4e36 tracing: Fix cpu buffers unavailable due to 'record_disabled' missed
0498107394d4 rbd: prevent busy loop when requesting exclusive lock
5f1697523367 rbd: retrieve and check lock owner twice before blocklisting
2547026bb8c4 rbd: make get_lock_owner_info() return a single locker or NULL
145248ebe0b2 libceph, rbd: ignore addr->type while comparing in some cases
61c303cfb135 drm/amd/display: check TG is non-null before checking if enabled
b964eb37c020 drm/amd/display: do not wait for mpc idle if tg is disabled
7e11c58b2620 ALSA: pcm: Fix potential data race at PCM memory allocation helpers
8c3a4c3b6485 dm integrity: reduce vmalloc space footprint on 32-bit architectures
4fdfd3d2f09a dm integrity: increase RECALC_SECTORS to improve recalculate speed
570f52137e9a fbdev: fix potential OOB read in fast_imageblit()
31131cce2455 fbdev: Fix sys_imageblit() for arbitrary image widths
209a84a14c0c fbdev: Improve performance of sys_imageblit()
188edaaaad21 MIPS: cpu-features: Use boot_cpu_type for CPU type based features
61913b303b31 MIPS: cpu-features: Enable octeon_cache by cpu_type
bda55fb5ca61 fs: dlm: fix mismatch of plock results from userspace
c3a1c4d996bf fs: dlm: use dlm_plock_info for do_unlock_close
d503919895d8 fs: dlm: change plock interrupted message to debug again
1652bcbf9e71 fs: dlm: add pid to debug log
e850cd32df9f dlm: replace usage of found with dedicated list iterator variable
7b44c1f383a1 dlm: improve plock logging if interrupted
cd689b59129f PCI: acpiphp: Reassign resources on bridge if necessary
e82757215295 xprtrdma: Remap Receive buffers after a reconnect
8a64aadc29ba NFSv4: fix out path in __nfs4_get_acl_uncached
c6aecc29d29e objtool/x86: Fix SRSO mess
(From OE-Core rev: 5bdf0da0372084ca312428f4e2585833fc732e9b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
1599cb60bace Linux 5.10.192
0e8139f92304 x86/srso: Correct the mitigation status when SMT is disabled
23e59874657c objtool/x86: Fixup frame-pointer vs rethunk
26e3f7690cda x86/retpoline,kprobes: Fix position of thunk sections with CONFIG_LTO_CLANG
88e16ce7f8a6 x86/srso: Disable the mitigation on unaffected configurations
69712baf2495 x86/CPU/AMD: Fix the DIV(0) initial fix attempt
62ebfeb0dcf7 x86/retpoline: Don't clobber RFLAGS during srso_safe_ret()
91b349289ef1 x86/static_call: Fix __static_call_fixup()
d2be58f9215a x86/srso: Explain the untraining sequences a bit more
06597b650beb x86/cpu: Cleanup the untrain mess
e0f50b0e4186 x86/cpu: Rename srso_(.*)_alias to srso_alias_\1
0676a392539b x86/cpu: Rename original retbleed methods
8b0ff83e8ad3 x86/cpu: Clean up SRSO return thunk mess
20e24c8b4c2a x86/ibt: Add ANNOTATE_NOENDBR
bbbe1b23c7e6 objtool: Add frame-pointer-specific function ignore
bd3d12e6fda0 x86/alternative: Make custom return thunk unconditional
043d3bfe0a72 x86/cpu: Fix up srso_safe_ret() and __x86_return_thunk()
d5b3c88d153c x86/cpu: Fix __x86_return_thunk symbol type
5962f64ed2b6 mmc: f-sdh30: fix order of function calls in sdhci_f_sdh30_remove
98c7fe38c41e net: fix the RTO timer retransmitting skb every 1ms if linear option is enabled
9aead733f5e0 virtio-net: set queues after driver_ok
c080cee93030 af_unix: Fix null-ptr-deref in unix_stream_sendpage().
7aa165d761e7 netfilter: set default timeout to 3 secs for sctp shutdown send and recv state
e62de63c63f3 mmc: block: Fix in_flight[issue_type] value error
9022e9e62db9 mmc: wbsd: fix double mmc_free_host() in wbsd_init()
6e74926ede96 cifs: Release folio lock on fscache read hit.
a04ac0c31881 ALSA: usb-audio: Add support for Mythware XA001AU capture and playback interfaces.
bd70d0b28010 serial: 8250: Fix oops for port->pm on uart_change_pm()
03a7f213af46 ALSA: hda/realtek - Remodified 3k pull low procedure
b7d1c719842d ASoC: meson: axg-tdm-formatter: fix channel slot allocation
e761b7e90ac9 ASoC: rt5665: add missed regulator_bulk_disable
d23dd85903c9 arm64: dts: rockchip: Disable HS400 for eMMC on ROCK Pi 4
70626b93d6eb arm64: dts: rockchip: sort nodes/properties on rk3399-rock-4
7ba9ac0b5a90 arm64: dts: rockchip: fix regulator name on rk3399-rock-4
fba59a4b55ae arm64: dts: rockchip: add SPDIF node for ROCK Pi 4
77806f63c317 arm64: dts: rockchip: add ES8316 codec for ROCK Pi 4
1411c3e86e66 arm64: dts: rockchip: use USB host by default on rk3399-rock-pi-4
eb5b1e932c18 arm64: dts: rockchip: fix supplies on rk3399-rock-pi-4
73990370d63d bus: ti-sysc: Flush posted write on enable before reset
0a593e8a9d24 net: do not allow gso_size to be set to GSO_BY_FRAGS
51bc052db86d sock: Fix misuse of sk_under_memory_pressure()
773075d38a2f net: dsa: mv88e6xxx: Wait for EEPROM done before HW reset
0a9040dedec2 i40e: fix misleading debug logs
abe68922d774 team: Fix incorrect deletion of ETH_P_8021AD protocol vid from slaves
526d42c558f5 net: phy: broadcom: stub c45 read/write for 54810
a7653eaea0a5 netfilter: nft_dynset: disallow object maps
49f57a9087d1 ipvs: fix racy memcpy in proc_do_sync_threshold
c8d0d3811e20 drm/panel: simple: Fix AUO G121EAN01 panel timings according to the docs
86517421f470 selftests: mirror_gre_changes: Tighten up the TTL test match
614811692e21 xfrm: add forgotten nla_policy for XFRMA_MTIMER_THRESH
bd30aa9c7feb xfrm: add NULL check in xfrm_update_ae_params
0b4d69539fde ip_vti: fix potential slab-use-after-free in decode_session6
ec23b25e5687 ip6_vti: fix slab-use-after-free in decode_session6
bafa23638081 xfrm: fix slab-use-after-free in decode_session6
0f89909c80a9 net: xfrm: Amend XFRMA_SEC_CTX nla_policy structure
8b92d03cfcec net: af_key: fix sadb_x_filter validation
7e50815d2903 net: xfrm: Fix xfrm_address_filter OOB read
549e4e167a4d i2c: designware: Handle invalid SMBus block data response length value
bd7bef82ce0e btrfs: fix BUG_ON condition in btrfs_cancel_balance
483d713ba2f6 tty: serial: fsl_lpuart: Clear the error flags by writing 1 for lpuart32 platforms
869ce5e59845 tty: n_gsm: fix the UAF caused by race condition in gsm_cleanup_mux
0ba7f969be59 powerpc/rtas_flash: allow user copy to flash block cache objects
c5f59de36202 fbdev: mmp: fix value check in mmphw_probe()
268cc9bc54bd i2c: bcm-iproc: Fix bcm_iproc_i2c_isr deadlock issue
3ff54d904faf virtio-mmio: don't break lifecycle of vm_dev
b1fe05cc5126 virtio-mmio: Use to_virtio_mmio_device() to simply code
3b76d9263679 tracing/probes: Fix to update dynamic data counter if fetcharg uses it
265a979dedb1 tracing/probes: Have process_fetch_insn() take a void * instead of pt_regs
a89054535368 mmc: meson-gx: fix deferred probing
e8a41b4a5008 mmc: meson-gx: use devm_mmc_alloc_host
50ed76c9e09b mmc: core: add devm_mmc_alloc_host
d523ce6f51f1 mmc: sunxi: fix deferred probing
939a12f29a4b mmc: bcm2835: fix deferred probing
01dfc61f72a8 USB: dwc3: qcom: fix NULL-deref on suspend
3e2b5d66e926 usb: cdns3: fix NCM gadget RX speed 20x slow than expection at iMX8QM
f5c11b45f3f9 usb: cdns3: allocate TX FIFO size according to composite EP number
a461bcfb36d6 usb: gadget: udc: core: Introduce check_config to verify USB configuration
a64f5fe493b5 irqchip/mips-gic: Use raw spinlock for gic_lock
0704666c570d irqchip/mips-gic: Get rid of the reliance on irq_cpu_online()
372f1752b745 bus: mhi: host: Range check CHDBOFF and ERDBOFF
77944a6f3cf8 bus: mhi: Move host MHI code to "host" directory
f73891261566 bus: mhi: Add MMIO region length to controller structure
1cacbb711e32 bus: mhi: Add MHI PCI support for WWAN modems
436b4232533a iio: addac: stx104: Fix race condition when converting analog-to-digital
aeecd8d97da7 iio: addac: stx104: Fix race condition for stx104_write_raw()
f6576d4851fa iio: adc: stx104: Implement and utilize register structures
9d1609824554 iio: adc: stx104: Utilize iomap interface
d2ba1f40fc09 dt-bindings: iio: add AD74413R
c5e580831b2d iio: add addac subdirectory
bb70fdbfa272 IMA: allow/fix UML builds
66a3b2a12138 ring-buffer: Do not swap cpu_buffer during resize process
dd5a12cdf20c powerpc/kasan: Disable KCOV in KASAN code
9f9eed451176 ALSA: hda: fix a possible null-pointer dereference due to data race in snd_hdac_regmap_sync()
7a21c2e474ae ALSA: hda/realtek: Add quirks for Unis H3C Desktop B760 & Q760
b870b9a47fdb drm/amdgpu: Fix potential fence use-after-free v2
f19add5c7760 Bluetooth: btusb: Add MT7922 bluetooth ID for the Asus Ally
2958cf9f805b Bluetooth: L2CAP: Fix use-after-free
04bb8af40a77 pcmcia: rsrc_nonstatic: Fix memory leak in nonstatic_release_resource_db()
7c5b2649f6a3 gfs2: Fix possible data races in gfs2_show_options()
e8f3d96051c1 usb: chipidea: imx: add missing USB PHY DPDM wakeup setting
7a3a7c6fa0dc usb: chipidea: imx: don't request QoS for imx8ulp
2caeb722f0ea media: platform: mediatek: vpu: fix NULL ptr dereference
99d6afa19d6d usb: gadget: u_serial: Avoid spinlock recursion in __gs_console_push
e52de26cb374 media: v4l2-mem2mem: add lock to protect parameter num_rdy
5c094ca99482 FS: JFS: Check for read-only mounted filesystem in txBegin
2a3f20efe6c9 FS: JFS: Fix null-ptr-deref Read in txBegin
e778c8b0a9b6 MIPS: dec: prom: Address -Warray-bounds warning
911b48eec451 fs: jfs: Fix UBSAN: array-index-out-of-bounds in dbAllocDmapLev
4503f6fc95d6 udf: Fix uninitialized array access for some pathnames
a2966e0436dd ovl: check type and offset of struct vfsmount in ovl_entry
73311dd83185 RDMA/mlx5: Return the firmware result upon destroying QP/RQ
19312bc3ff67 HID: add quirk for 03f0:464a HP Elite Presenter Mouse
04bd3a362d2f drm/amdgpu: install stub fence into potential unused fence pointers
04e774fb6789 dma-remap: use kvmalloc_array/kvfree for larger dma memory remap
cbaebbba722c quota: fix warning in dqgrab()
8a4f4d47b82f quota: Properly disable quotas when add_dquot_ref() fails
df907501ba54 iopoll: Call cpu_relax() in busy loops
940ccc291cca ASoC: Intel: sof_sdw: Add support for Rex soundwire
b2882c51e6d0 ARM: dts: imx6dl: prtrvt, prtvt7, prti6q, prtwd2: fix USB related warnings
dbe0f607f84c PCI: tegra194: Fix possible array out of bounds access
10459ffd56ad ASoC: Intel: sof_sdw: add quirk for LNL RVP
9f4dd39696c8 ASoC: Intel: sof_sdw: add quirk for MTL RVP
751c5b6a2315 ALSA: emu10k1: roll up loops in DSP setup code for Audigy
e6825b30d37f drm/radeon: Fix integer overflow in radeon_cs_parser_init
e6c0a9728e3a net/mlx5: Skip clock update work when device is in error state
81cc91bba42b net/mlx5: Move all internal timer metadata into a dedicated struct
ba2e27e5100d net/mlx5: Refactor init clock function
e77ef787415b macsec: use DEV_STATS_INC()
ecf0e627fbbb macsec: Fix traffic counters/statistics
b630367a608d mmc: sdhci-f-sdh30: Replace with sdhci_pltfm
(From OE-Core rev: 8851b954ba00761fc6dd31561643fecf6749b838)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
da742ebfa00c Linux 5.10.191
3b55ce96efc5 sch_netem: fix issues in netem_change() vs get_dist_table()
db9d161a0407 alpha: remove __init annotation from exported page_is_ram()
4af122b5d7b8 scsi: qedf: Fix firmware halt over suspend and resume
3bb05745cacc scsi: qedi: Fix firmware halt over suspend and resume
aa9a76d5ffde scsi: core: Fix possible memory leak if device_add() fails
58889d5ad74c scsi: snic: Fix possible memory leak if device_add() fails
a370e2d653e5 scsi: 53c700: Check that command slot is not NULL
1678408d08f3 scsi: storvsc: Fix handling of virtual Fibre Channel timeouts
267ad381c2fc scsi: core: Fix legacy /proc parsing buffer overflow
039ce5eb6ba2 netfilter: nf_tables: report use refcount overflow
93b3195d370a nvme-rdma: fix potential unbalanced freeze & unfreeze
9ad83e3e6121 nvme-tcp: fix potential unbalanced freeze & unfreeze
200ae5fa0b7e btrfs: set cache_block_group_error if we find an error
bd3175f9d597 btrfs: don't stop integrity writeback too early
c91d822127d3 ibmvnic: Handle DMA unmapping of login buffs in release functions
9024873b943d ibmvnic: Unmap DMA login rsp buffer on send login fail
d4750cea76f7 ibmvnic: Enforce stronger sanity checks on login response
879750c6a7e1 net/mlx5: Allow 0 for total host VFs
f8510dfa958b dmaengine: mcf-edma: Fix a potential un-allocated memory access
e8d349408a49 net: hns3: add wait until mac link down
70660e6faac5 net: hns3: refactor hclge_mac_link_status_wait for interface reuse
b564f32fb369 net: phy: at803x: remove set/get wol callbacks for AR8032
0d3573811894 wifi: cfg80211: fix sband iftype data lookup for AP_VLAN
33c677d1e087 IB/hfi1: Fix possible panic during hotplug remove
13f7752f4adb drivers: net: prevent tun_build_skb() to exceed the packet size limit
6d701c95ee64 dccp: fix data-race around dp->dccps_mss_cache
6d0bd7b7b3a7 bonding: Fix incorrect deletion of ETH_P_8021AD protocol vid from slaves
5850c391fd7e tunnels: fix kasan splat when generating ipv4 pmtu error
b3b6b9331abc net/packet: annotate data-races around tp->status
cafe399d4d50 mISDN: Update parameter type of dsp_cmx_send()
4f1d1cc16ad3 selftests: forwarding: tc_flower: Relax success criterion
501e3de09a53 selftests: forwarding: Switch off timeout
fe8fac37aa73 selftests: forwarding: Skip test when no interfaces are specified
44a47be97cf2 selftests: forwarding: ethtool_extended_state: Skip when using veth pairs
0a93fa240d7c selftests: forwarding: ethtool: Skip when using veth pairs
7e6af9c133c0 selftests: forwarding: Add a helper to skip test when using veth pairs
e731ad522159 selftests/rseq: Fix build with undefined __weak
cba47d0c95fb drm/nouveau/disp: Revert a NULL check inside nouveau_connector_get_modes
98eaa12c967b x86: Move gds_ucode_mitigated() declaration to header
09f78fc442fa x86/speculation: Add cpu_show_gds() prototype
5258281a930c x86/mm: Fix VDSO and VVAR placement on 5-level paging machines
eda9f8ffca46 x86/cpu/amd: Enable Zenbleed fix for AMD Custom APU 0405
cb1eefc04634 x86/srso: Fix build breakage with the LLVM linker
df8d390a210f usb: common: usb-conn-gpio: Prevent bailing out if initial role is none
598ccdb92dec usb: dwc3: Properly handle processing of pending events
fe7c3a445d22 usb-storage: alauda: Fix uninit-value in alauda_check_media()
d7e5e2b87f5d binder: fix memory leak in binder_init()
0439ce5aefcd iio: cros_ec: Fix the allocation size for cros_ec_command
aa425ee2278d io_uring: correct check for O_TMPFILE
372072408724 nilfs2: fix use-after-free of nilfs_root in dirtying inodes via iput
a16c66baa4de x86/pkeys: Revert a5eff7259790 ("x86/pkeys: Add PKRU value to init_fpstate")
04499d2c973a radix tree test suite: fix incorrect allocation size for pthreads
db0e1e2abddb hwmon: (pmbus/bel-pfe) Enable PMBUS_SKIP_STATUS_CHECK for pfe1100
a73d999fdfd9 drm/amd/display: check attr flag before set cursor degamma on DCN3+
188e8e25ae24 drm/shmem-helper: Reset vma->vm_ops before calling dma_buf_mmap()
6b6839e440d7 drm/nouveau/gr: enable memory loads on helper invocation on all channels
002cde0b78d3 riscv,mmio: Fix readX()-to-delay() ordering
8362ad5367dc dmaengine: pl330: Return DMA_PAUSED when transaction is paused
7328c5319e08 selftests/bpf: Fix sk_assign on s390x
b1a3e27d6bfc selftests/bpf: Workaround verification failure for fexit_bpf2bpf/func_replace_return_code
4af2d9ddb7e7 selftests/bpf: make test_align selftest more robust
1952a4d5e4cf bpf: aggressively forget precise markings during state checkpointing
7ca3e7459f4a bpf: stop setting precise in current state
2474ec58b96d bpf: allow precision tracking for programs with subprogs
6796c2a0c5fc ipv6: adjust ndisc_is_useropt() to also return true for PIO
f327f463c7ac mmc: moxart: read scr register without changing byte order
890ac460b0e8 wireguard: allowedips: expand maximum node depth
ec585727b63d Linux 5.10.190
b6fc2fbf8908 x86/CPU/AMD: Do not leak quotient data after a division by 0
98b7ab5e8d88 ARM: dts: nxp/imx6sll: fix wrong property name in usbphy node
14f2e2ac731b ARM: dts: imx6sll: fixup of operating points
f1c928496d2a ARM: dts: imx: add usb alias
c0e7123e896a wifi: mt76: mt7615: do not advertise 5 GHz on first phy of MT7615D (DBDC)
37fad83ae527 mt76: mt7615: Fix fall-through warnings for Clang
b85c7882fd3c mt76: move band capabilities in mt76_phy
381f7df0f3c3 exfat: check if filename entries exceeds max filename length
bd3bdb9e0d65 exfat: support dynamic allocate bh for exfat_entry_set_cache
e0d192a4023e exfat: speed up iterate/lookup by fixing start point of traversing cluster chain
86e4e949ea81 PM: sleep: wakeirq: fix wake irq arming
9a320469add4 PM / wakeirq: support enabling wake-up irq after runtime_suspend called
48d1d0ce0782 soundwire: fix enumeration completion
7d949774e7c1 soundwire: bus: pm_runtime_request_resume on peripheral attachment
662735bc1127 soundwire: bus: add better dev_dbg to track complete() calls
173d9c7090db selftests/rseq: Play nice with binaries statically linked against glibc 2.35+
c08de20e7041 selftests/rseq: check if libc rseq support is registered
fbb6657037d4 powerpc/mm/altmap: Fix altmap boundary check
1f09d67d3906 mtd: rawnand: fsl_upm: Fix an off-by one test in fun_exec_op()
027710952b53 mtd: rawnand: omap_elm: Fix incorrect type in assignment
d328849fb63b ext2: Drop fragment support
7e4e87ec56aa fs: Protect reconfiguration of sb read-write from racing writes
ec0d0be41721 net: usbnet: Fix WARNING in usbnet_start_xmit/usb_submit_urb
06f87c96216b Bluetooth: L2CAP: Fix use-after-free in l2cap_sock_ready_cb
7f740bc696d4 fs/sysv: Null check to prevent null-ptr-deref bug
426656e8dd03 tracing: Fix sleeping while atomic in kdb ftdump
4f86da9abe31 file: reinstate f_pos locking optimization for regular files
d39971d902d0 drm/ttm: check null pointer before accessing when swapping
c9c78b91c783 open: make RESOLVE_CACHED correctly test for O_TMPFILE
3048cb0dc0cc bpf: Disable preemption in bpf_event_output
33a339e717be net: tap_open(): set sk_uid from current_fsuid()
5ea23f1cb67e net: tun_chr_open(): set sk_uid from current_fsuid()
8d104bfd41a9 arm64: dts: stratix10: fix incorrect I2C property for SCL signal
8625802a1ba8 mtd: rawnand: meson: fix OOB available bytes for ECC
82dc2bffeabc mtd: spinand: toshiba: Fix ecc_get_status
ddf7cc702973 exfat: release s_lock before calling dir_emit()
79d16a84ea41 exfat: use kvmalloc_array/kvfree instead of kmalloc_array/kfree
a4b2673e3c04 ceph: defer stopping mdsc delayed_work
b5b39ff6917f USB: zaurus: Add ID for A-300/B-500/C-700
513bfdde8a3b libceph: fix potential hang in ceph_osdc_notify()
181274d2f3de scsi: zfcp: Defer fc_rport blocking until after ADISC response
6d9f5f3d8920 tcp_metrics: fix data-race in tcpm_suck_dst() vs fastopen
05d1dc88c40f tcp_metrics: annotate data-races around tm->tcpm_net
079afb181504 tcp_metrics: annotate data-races around tm->tcpm_vals[]
57bcbbb208a0 tcp_metrics: annotate data-races around tm->tcpm_lock
289091eef30f tcp_metrics: annotate data-races around tm->tcpm_stamp
420aad608f72 tcp_metrics: fix addr_same() helper
80e9488ece3d net/mlx5: fs_core: Skip the FTs in the same FS_TYPE_PRIO_CHAINS fs_prio
7a634336a03b net/mlx5: fs_core: Make find_closest_ft more generic
c650597647ec vxlan: Fix nexthop hash size
1683124129a4 ip6mr: Fix skb_under_panic in ip6mr_cache_report()
c33d5a5c5b2c s390/qeth: Don't call dev_close/dev_open (DOWN/UP)
8e309f43d0ca net: dcb: choose correct policy to parse DCB_ATTR_BCN
6d4f24736df9 net: netsec: Ignore 'phy-mode' on SynQuacer in DT mode
216092963ce5 net: ll_temac: fix error checking of irq_of_parse_and_map()
20fe059c1d47 net: ll_temac: Switch to use dev_err_probe() helper
a0e42f4bd496 bpf: sockmap: Remove preempt_disable in sock_map_sk_acquire
aaa71c4e8ad9 net/sched: cls_route: No longer copy tcf_result on update to avoid use-after-free
a8d478200b10 net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after-free
b4256c99a711 net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after-free
268b29ef1947 net: add missing data-race annotation for sk_ll_usec
ad417bab9d5b net: add missing data-race annotations around sk->sk_peek_off
11e0590af333 net: add missing READ_ONCE(sk->sk_rcvbuf) annotation
dc20f7bada00 net: add missing READ_ONCE(sk->sk_sndbuf) annotation
427c611d846d net: add missing READ_ONCE(sk->sk_rcvlowat) annotation
c7ebe08f4081 net: annotate data-races around sk->sk_max_pacing_rate
14db69381dd8 mISDN: hfcpci: Fix potential deadlock on &hc->lock
d163337bef20 net: sched: cls_u32: Fix match key mis-addressing
e68929f11b19 perf test uprobe_from_different_cu: Skip if there is no gcc
eb8031b7ce0c net: dsa: fix value check in bcm_sf2_sw_probe()
abb0172fa8dc rtnetlink: let rtnl_bridge_setlink checks IFLA_BRIDGE_MODE length
6b93c510684a bpf: Add length check for SK_DIAG_BPF_STORAGE_REQ_MAP_FD parsing
2cf67912078f net/mlx5e: fix return value check in mlx5e_ipsec_remove_trailer()
165159854757 net/mlx5: DR, fix memory leak in mlx5dr_cmd_create_reformat_ctx
ef3d0a732d69 wifi: cfg80211: Fix return value in scan logic
b4bdcbc0e391 KVM: s390: fix sthyi error handling
4241cfc973ad word-at-a-time: use the same return type for has_zero regardless of endianness
94f8447ab802 arm64: dts: imx8mn-var-som: add missing pull-up for onboard PHY reset pinmux
832a4d4cdb3f loop: Select I/O scheduler 'none' from inside add_disk()
3f7395c38204 perf: Fix function pointer case
a883b98dc737 io_uring: gate iowait schedule on having pending requests
058c0cbd251a x86/kprobes: Fix JNG/JNLE emulation
edc2ac7c7265 x86/kprobes: Update kcb status flag after singlestepping
f07f3938c813 x86/kprobes: Move 'inline' to the beginning of the kprobe_is_ss() declaration
2b5afe25f5b6 x86/kprobes: Fix to identify indirect jmp and others using range case
ba7d1dae9fe8 x86/kprobes: Use int3 instead of debug trap for single-step
2c57553a77e1 x86/kprobes: Identify far indirect JMP correctly
41db23bad952 x86/kprobes: Retrieve correct opcode for group instruction
ff97a14c8a86 x86/kprobes: Do not decode opcode in resume_execution()
5601d812c8d8 kprobes/x86: Fix fall-through warnings for Clang
7a413fa04726 ASoC: cs42l51: fix driver to properly autoload with automatic module loading
4d360a819453 io_uring: treat -EAGAIN for REQ_F_NOWAIT as final for io-wq
9164e27c5a8e selftests: mptcp: depend on SYN_COOKIES
f0acd6c3a2cd cpufreq: intel_pstate: Drop ACPI _PSS states table patching
a241fc02f1ce ACPI: processor: perflib: Avoid updating frequency QoS unnecessarily
ad938dd2af28 ACPI: processor: perflib: Use the "no limit" frequency QoS
4148f28f9824 drm/ttm: make ttm_bo_unpin more defensive
c0f2b2b02096 dm cache policy smq: ensure IO doesn't prevent cleaner policy progress
aae65b1793bb ceph: never send metrics if disable_send_metrics is set
4f669618c99f ASoC: wm8904: Fill the cache for WM8904_ADC_TEST_0 register
c837f121bc98 s390/dasd: fix hanging device after quiesce/resume
276738b382cf virtio-net: fix race between set queues and probe
3d10481a90c3 btrfs: check if the transaction was aborted at btrfs_wait_for_commit()
fc511ae405f7 staging: r8712: Fix memory leak in _r8712_init_xmit_priv()
223ecf871b42 staging: rtl8712: Use constants from <linux/ieee80211.h>
836b13168336 KVM: VMX: Don't fudge CR0 and CR4 for restricted L2 guest
c710ff061237 KVM: nVMX: Do not clear CR3 load/store exiting bits if L1 wants 'em
7fc51da40b9d KVM: VMX: Fold ept_update_paging_mode_cr0() back into vmx_set_cr0()
96c73bc9efef KVM: VMX: Invert handling of CR0.WP for EPT without unrestricted guest
90cd5ab951ea irqchip/gic-v4.1: Properly lock VPEs when doing a directLPI invalidation
57b8db5800a5 irq-bcm6345-l1: Do not assume a fixed block to cpu mapping
b1867cddd780 tpm_tis: Explicitly check for error code
5be81139d2ff nfsd: Remove incorrect check in nfsd4_validate_stateid
4a871fcebc02 file: always lock position for FMODE_ATOMIC_POS
c5c797ccc3b5 btrfs: check for commit error at btrfs_attach_transaction_barrier()
5e0e4e72ca21 hwmon: (nct7802) Fix for temp6 (PECI1) processed even if PECI1 disabled
7c6df7f0fc3d ALSA: hda/relatek: Enable Mute LED on HP 250 G8
8fc0eabaa73b tty: n_gsm: fix UAF in gsm_cleanup_mux
caac4b6c15b6 staging: ks7010: potential buffer overflow in ks_wlan_set_encode_ext()
baef414b1ca0 Documentation: security-bugs.rst: clarify CVE handling
0d5b23743bed Documentation: security-bugs.rst: update preferences when dealing with the linux-distros group
65cd02e3c37e Revert "usb: xhci: tegra: Fix error check"
b0fd110578e7 usb: xhci-mtk: set the dma max_seg_size
d0b588bbe4d9 USB: quirks: add quirk for Focusrite Scarlett
66a622275a11 usb: ohci-at91: Fix the unhandle interrupt when resume
96c433aff5fd usb: dwc3: don't reset device side if dwc3 was configured as host-only
05b201de4418 usb: dwc3: pci: skip BYT GPIO lookup table for hardwired phy
75ad45cef699 Revert "usb: dwc3: core: Enable AutoRetry feature in the controller"
bf468806b63f can: gs_usb: gs_can_close(): add missing set of CAN state to CAN_STATE_STOPPED
d5db33a667f5 USB: serial: simple: sort driver entries
81c54eef1dd7 USB: serial: simple: add Kaufmann RKS+CAN VCP
fca2a74eee5a USB: serial: option: add Quectel EC200A module support
c704cb21138b USB: serial: option: support Quectel EM060K_128
1037ee1dbf73 serial: sifive: Fix sifive_serial_console_setup() section
6209a7383d3a serial: 8250_dw: Preserve original value of DLF register
9e671a6116f4 serial: qcom-geni: drop bogus runtime pm state update
68e6287ac61d USB: gadget: Fix the memory leak in raw_gadget driver
da1b105dc66d Revert "usb: gadget: tegra-xudc: Fix error check in tegra_xudc_powerdomain_init()"
a6d2fd1703cd tracing: Fix warning in trace_buffered_event_disable()
0efbdbc4530c ring-buffer: Fix wrong stat of cpu_buffer->read
e410839c0cd8 ata: pata_ns87415: mark ns87560_tf_read static
82ce0ae87a96 dm raid: protect md_stop() with 'reconfig_mutex'
d6a1cf4ee5eb dm raid: clean up four equivalent goto tags in raid_ctr()
a43c761a7e1c dm raid: fix missing reconfig_mutex unlock in raid_ctr() error paths
d82bfe9686f3 block: Fix a source code comment in include/uapi/linux/blkzoned.h
ab6d14bc4041 ASoC: fsl_spdif: Silence output on stop
94bac776cd27 drm/msm: Fix IS_ERR_OR_NULL() vs NULL check in a5xx_submit_in_rb()
b0100bdb9dcd RDMA/mthca: Fix crash when polling CQ for shared QPs
62a8a4cafa96 drm/msm/adreno: Fix snapshot BINDLESS_DATA size
5c9e03b86756 drm/msm/dpu: drop enum dpu_core_perf_data_bus_id
08aa5a5297e6 RDMA/mlx4: Make check for invalid flags stricter
9d1fd118bcb4 tipc: stop tipc crypto on failure in tipc_node_create
d03de937765f tipc: check return value of pskb_trim()
3661bab5afcb benet: fix return value check in be_lancer_xmit_workarounds()
f40f7a858b3b net/sched: mqprio: Add length check for TCA_MQPRIO_{MAX/MIN}_RATE64
3ed3729a6a8e net/sched: mqprio: add extack to mqprio_parse_nlattr()
6227b461542f net/sched: mqprio: refactor nlattr parsing to a separate function
308a43f1521d netfilter: nf_tables: disallow rule addition to bound chain via NFTA_RULE_CHAIN_ID
ab5a97a94b57 netfilter: nf_tables: skip immediate deactivate in _PREPARE_ERROR
7782ce022fea netfilter: nftables: add helper function to validate set element data
893cb3c3513c netfilter: nft_set_rbtree: fix overlap expiration walk
89060b831c41 platform/x86: msi-laptop: Fix rfkill out-of-sync on MSI Wind U100
75f57acda32f team: reset team's flags when down link is P2P device
de982f46be83 bonding: reset bond's flags when down link is P2P device
b2712c4bfc3b ice: Fix memory management in ice_ethtool_fdir.c
0cd74fbd3b83 tcp: Reduce chance of collisions in inet6_hashfn().
b55a2b34b1b6 ipv6 addrconf: fix bug where deleting a mngtmpaddr can create a new temporary address
5a3c92968223 ethernet: atheros: fix return value check in atl1e_tso_csum()
ad249aa3c38f phy: hisilicon: Fix an out of bounds check in hisi_inno_phy_probe()
6f26f1457377 vxlan: calculate correct header length for GPE
d2741769d512 vxlan: move to its own directory
076f786f0414 net: hns3: fix wrong bw weight of disabled tc issue
344b7c000398 net: hns3: reconstruct function hclge_ets_validate()
111b699300a7 net: phy: marvell10g: fix 88x3310 power up
8a6cc852f658 i40e: Fix an NULL vs IS_ERR() bug for debugfs_create_dir()
39c789c9570d media: staging: atomisp: select V4L2_FWNODE
fb1db979043a phy: qcom-snps-femto-v2: properly enable ref clock
ffebc22bdd08 phy: qcom-snps-femto-v2: keep cfg_ahb_clk enabled during runtime suspend
f34090579a8b phy: qcom-snps: correct struct qcom_snps_hsphy kerneldoc
ceba255a791b phy: qcom-snps: Use dev_err_probe() to simplify code
ed3d841f2fc2 ext4: fix to check return value of freeze_bdev() in ext4_shutdown()
e3454b438c67 pwm: meson: fix handling of period/duty if greater than UINT_MAX
b306d09967ca pwm: meson: Simplify duplicated per-channel tracking
840ce9cfc86f tracing: Show real address for trace event arguments
8996b13051f0 drm/ttm: never consider pinned BOs for eviction&swap
5f6d5b58c59e drm/ttm: add ttm_bo_pin()/ttm_bo_unpin() v2
1815d9bf02b7 fs: dlm: interrupt posix locks only when process is killed
0f6741acfd5b dlm: rearrange async condition return
793123331007 dlm: cleanup plock_op vs plock_xop
838d6e86ec74 PCI/ASPM: Avoid link retraining race
9f283ca643dd PCI/ASPM: Factor out pcie_wait_for_retrain()
ffc0ee491f04 PCI/ASPM: Return 0 or -ETIMEDOUT from pcie_retrain_link()
9fd349c8858e i2c: nomadik: Remove a useless call in the remove function
a7ab5d7943b5 i2c: nomadik: Use devm_clk_get_enabled()
ec954a4ab0c8 i2c: nomadik: Remove unnecessary goto label
04b114067849 i2c: Improve size determinations
41e90f0e50f5 i2c: Delete error messages for failed memory allocations
52df40a5c71e btrfs: fix extent buffer leak after tree mod log failure at split_node()
52403c3dad20 btrfs: fix race between quota disable and relocation
3069fc0326b8 gpio: tps68470: Make tps68470_gpio_output() always set the initial value
22786d53817d io_uring: don't audit the capability check in io_uring_create()
8e635da0e0d3 KVM: s390: pv: fix index value of replaced ASCE
(From OE-Core rev: f3db78f6fdc439ba0d3450837d8b3e9052b7d8ca)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Recently NVD updated all CVEs for json-c and old fixed
CVE-2020-12762 is reported by cve_check now.
NVD match clause now includes full tag name including
date which is "greater" than tag without additional numbers.
Fix it by defining CVE_VERSION identical to full tag.
Put it close to hash so recipe update patch includes this line.
(From OE-Core rev: 55e9ff0fe1de70f226557529f73c28f34f6956ed)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The latest 6.5 kernels do not appear to create the source file in
${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/source so the
recipe errors out when trying to remove it. Simple fix is to add the
-f (force) flag to the call.
(From OE-Core rev: 2e669bf797b15d803e7d6a700e449bdc467a4bcc)
(From OE-Core rev: 7e177848f97eb9958619c28b5e5dadee12f67507)
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Alexander Sverdlin <alexander.sverdlin@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Variable overrides in KCONFIG_CONFIG_COMMAND do not work as expected due
to double quote mismatches. The issue is reproducible in an environment
where gold is the default linker. Below is an example snippet of
run.do_terminal generated by do_menuconfig.
do_terminal() {
exec sh -c "make menuconfig CC="aarch64-webos-linux-gcc ..."
LD="aarch64-webos-linux-ld.bfd ..."
...
}
Although LD override is set to bfd correctly, it is not passed to make
and make menuconfig ends up with messages like:
| gold linker is not supported as it is not capable of linking the kernel proper.
| scripts/Kconfig.include:56: Sorry, this linker is not supported.
(From OE-Core rev: 9c483765db762dbe8020423c8778518612b7e5f7)
(From OE-Core rev: 536c477838fb1a318c5b283475de7f0eac99c872)
Signed-off-by: Jaeyoon Jung <jaeyoon.jung@lge.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d4664d2b79)
Backported: File was renamed between kirkstone and master.
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Notes for BIND 9.18.19
Security Fixes
Previously, sending a specially crafted message over the control channel
could cause the packet-parsing code to run out of available stack
memory, causing named to terminate unexpectedly. This has been fixed.
(CVE-2023-3341)
ISC would like to thank Eric Sesterhenn from X41 D-Sec GmbH for bringing
this vulnerability to our attention. [GL #4152]
A flaw in the networking code handling DNS-over-TLS queries could cause
named to terminate unexpectedly due to an assertion failure under
significant DNS-over-TLS query load. This has been fixed.
(CVE-2023-4236)
ISC would like to thank Robert Story from USC/ISI Root Server Operations
for bringing this vulnerability to our attention. [GL #4242]
Removed Features
The dnssec-must-be-secure option has been deprecated and will be removed
in a future release. [GL #4263]
Feature Changes
If the server command is specified, nsupdate now honors the nsupdate -v
option for SOA queries by sending both the UPDATE request and the
initial query over TCP. [GL #1181]
Bug Fixes
The value of the If-Modified-Since header in the statistics channel was
not being correctly validated for its length, potentially allowing an
authorized user to trigger a buffer overflow. Ensuring the statistics
channel is configured correctly to grant access exclusively to
authorized users is essential (see the statistics-channels block
definition and usage section). [GL #4124]
This issue was reported independently by Eric Sesterhenn of X41 D-Sec
GmbH and Cameron Whitehead.
The Content-Length header in the statistics channel was lacking proper
bounds checking. A negative or excessively large value could potentially
trigger an integer overflow and result in an assertion failure. [GL
This issue was reported by Eric Sesterhenn of X41 D-Sec GmbH.
Several memory leaks caused by not clearing the OpenSSL error stack were
fixed. [GL #4159]
This issue was reported by Eric Sesterhenn of X41 D-Sec GmbH.
The introduction of krb5-subdomain-self-rhs and ms-subdomain-self-rhs
UPDATE policies accidentally caused named to return SERVFAIL responses
to deletion requests for non-existent PTR and SRV records. This has been
fixed. [GL #4280]
The stale-refresh-time feature was mistakenly disabled when the server
cache was flushed by rndc flush. This has been fixed. [GL #4278]
BIND’s memory consumption has been improved by implementing dedicated
jemalloc memory arenas for sending buffers. This optimization ensures
that memory usage is more efficient and better manages the return of
memory pages to the operating system. [GL #4038]
Previously, partial writes in the TLS DNS code were not accounted for
correctly, which could have led to DNS message corruption. This has been
fixed. [GL #4255]
Known Issues
There are no new known issues with this release. See above for a list of
all known issues affecting this BIND 9 branch.
Notes for BIND 9.18.18
Feature Changes
When a primary server for a zone responds to an SOA query, but the
subsequent TCP connection required to transfer the zone is refused, that
server is marked as temporarily unreachable. This now also happens if
the TCP connection attempt times out, preventing too many zones from
queuing up on an unreachable server and allowing the refresh process to
move on to the next configured primary more quickly. [GL #4215]
The dialup and heartbeat-interval options have been deprecated and will
be removed in a future BIND 9 release. [GL #3700]
Bug Fixes
Processing already-queued queries received over TCP could cause an
assertion failure, when the server was reconfigured at the same time or
the cache was being flushed. This has been fixed. [GL #4200]
Setting dnssec-policy to insecure prevented zones containing resource
records with a TTL value larger than 86400 seconds (1 day) from being
loaded. This has been fixed by ignoring the TTL values in the zone and
using a value of 604800 seconds (1 week) as the maximum zone TTL in key
rollover timing calculations. [GL #4032]
Known Issues
There are no new known issues with this release. See above for a list of
all known issues affecting this BIND 9 branch.
Link to release notes:
https://bind9.readthedocs.io/en/v9.18.19/notes.html#notes-for-bind-9-18-19
(From OE-Core rev: b88fe4581a48c1639764266380921d452a9b6132)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The delta between 3.1.32 & 3.1.37 contains the CVE-2023-40590 and
CVE-2023-41040 fixes and other bugfixes.
Changelog:
==========
- WIP Quick doc by @LeoDaCoda in #1608
- Partial clean up wrt mypy and black by @bodograumann in #1617
- Disable merge_includes in config writers by @bodograumann in #1618
- feat: full typing for "progress" parameter in Repo class by @madebylydia in #1634
- Fix CVE-2023-40590 by @EliahKagan in #1636
- #1566 Creating a lock now uses python built-in "open()" method to work arou… by @HageMaster3108 in #1619
- util: close lockfile after opening successfully by @skshetry in #1639
- Bump actions/checkout from 3 to 4 by @dependabot in #1643
- Fix 'Tree' object has no attribute '_name' when submodule path is normal path by @CosmosAtlas in #1645
- Fix CVE-2023-41040 by @facutuesca in #1644
- Only make config more permissive in tests that need it by @EliahKagan in #1648
- Added test for PR #1645 submodule path by @CosmosAtlas in #1647
- Fix Windows environment variable upcasing bug by @EliahKagan in #1650
- Improve Python version and OS compatibility, fixing deprecations by @EliahKagan in #1654
- Better document env_case test/fixture and cwd by @EliahKagan in #1657
- Remove spurious executable permissions by @EliahKagan in #1658
- Fix up checks in Makefile and make them portable by @EliahKagan in #1661
- Fix URLs that were redirecting to another license by @EliahKagan in #1662
- Assorted small fixes/improvements to root dir docs by @EliahKagan in #1663
- Use venv instead of virtualenv in test_installation by @EliahKagan in #1664
- Omit py_modules in setup by @EliahKagan in #1665
- Don't track code coverage temporary files by @EliahKagan in #1666
- Configure tox by @EliahKagan in #1667
- Format tests with black and auto-exclude untracked paths by @EliahKagan in #1668
- Upgrade and broaden flake8, fixing style problems and bugs by @EliahKagan in #1673
- Fix rollback bug in SymbolicReference.set_reference by @EliahKagan in #1675
- Remove @NoEffect annotations by @EliahKagan in #1677
- Add more checks for the validity of refnames by @facutuesca in #1672
Note that the changes to the license file are just removal of excess whitespace
(the extra blank line at the end, and spaces appearing at the end of lines).
References:
https://github.com/gitpython-developers/GitPython/releaseshttps://github.com/gitpython-developers/GitPython/blob/main/doc/source/changes.rste1af18377f
(From OE-Core rev: 35cb21d6c8076428c0c60f03bb1b8f6945e2a07c)
Signed-off-by: Narpat Mali <narpat.mali@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add patch from libwebp 1.2.4 to fix CVE-2023-5129
(From OE-Core rev: 544301c63801cf0c0cfcc0c8d71bdd8e2de82805)
Signed-off-by: Colin McAllister <colinmca242@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(From OE-Core rev: dc5c06da7a793e85276ce8ce9de1c06decb6e133)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A type confusion issue was addressed with improved checks.
This issue is fixed in iOS 16.5.1 and iPadOS 16.5.1, Safari
16.5.1, macOS Ventura 13.4.1, iOS 15.7.7 and iPadOS 15.7.7.
Processing maliciously crafted web content may lead to
arbitrary code execution. Apple is aware of a report that
this issue may have been actively exploited.
(From OE-Core rev: cdbc3c1548299eb78aeebb94909224eca8410158)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Update the CVE exclusions to match the kernel version, and add an
exclusion file for 5.10.
(From OE-Core rev: 33ae699eaa91900ae64e6ab46f6c2bca75eb3184)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
gst-plugins-bad: Heap-based buffer overflow in the MXF file demuxer when handling
malformed files with uncompressed video in GStreamer versions before 1.22.6
(From OE-Core rev: d0c8e2f78c8003ad383cc63cff32147156412650)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This reverts commit d0f8d5915a9ad3340a553b4a22f91074d7e679c9.
This is causing errors with buildperf on the autobuilder.
(From OE-Core rev: 87eee047cf77bc3fc2c7d6b2a4f35d2642919111)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- Fix broken markup (wasn't displaying properly)
- Update the path to the directory containing license information
(this change applies to the kirkstone branch)
- Fix typo later in the document
(From yocto-docs rev: 8f02741de867125f11a37822b2d206be180d4ee3)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This document was suggesting a way to version pre-releases
which doesn't match the latest recommendations from the
contributor guide.
(From yocto-docs rev: f37c9e7d44a2f7aefc3b505ae4461e6f1a8b0bb2)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Replace "duplicate" by "obsolete", more appropriate.
"duplicate" probably comes from the "--remove-duplicated"
option of the sstate-cache-management.sh script.
Improve other sentences too.
(From yocto-docs rev: 20206debecac0848dc18765846b990ac994209ec)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Reported-by: Richard Purdie <richard.purdie@linuxfoundation.org>
CC: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In particular, this addresses multiple formatting issues.
Aligning with the master branch as all updates apply to
kirkstone too.
(From yocto-docs rev: 5e2ec35e3d63f9c73726122fe2b3dd6d6f85a77e)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Reusing content from the master branch which underwent
this change earlier.
This change makes it much easier to backport manual
updates to the kirkstone LTS branch.
To make the change and future updates simpler, reused file contents
from master, only excluding changes which don't apply to kirkstone.
(From yocto-docs rev: 95171233f0e96c00d55ed40cf713c62e6df57b8d)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backported from "master" and used in dev-manual
documents to be synchronized with master.
(From yocto-docs rev: 1938d6017a1c9acc2c5f57c4cc6a87b918609381)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backported from the master branch
(From yocto-docs rev: f5ecf1f407585617d258b6afc706d43fdbb33547)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backported from the master branch
(From yocto-docs rev: 266540ffdf84df14ebde374927e6e8ddd8ee688e)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
cargo_do_compile runs only if the recipe is built using cargo
as the top level tool. Some recipes hide usage of cargo inside setuptools
(or autoconf) and use do_compile definitions specific to those,
and so the environment isn't properly set up.
This was exposed by latest versions of python3-cryptography.
(From OE-Core rev: a3f566fcbfc02e0a3b3f6a676d6dde88a5b50506)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9f4ff643a028d7f5670d80861f2ce19ca2d90faa)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Without specifing runstatedir tmpfiles.d is configured to use /var/run
for dbus and this causes deprecation warnings in system logs.
(From OE-Core rev: 55529a5cb481b64ab4390728e01650bc585be602)
Signed-off-by: Pavel Zhukov <pavel.zhukov@huawei.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4df1a16e5c38d0fb724f63d37cc032aa37fa122f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
It checks build host filesystem and if it doesn't find UTC or GMT
files it installs another copy of tzdata files in:
/usr/lib/tcl8.6/tzdata
Buildhistory shows the difference:
-PKGSIZE = 2227075
+PKGSIZE = 3433088
See the autodetection in configure.in:
#------------------------------------------------------------------------
# Check whether the timezone data is supplied by the OS or has
# to be installed by Tcl. The default is autodetection, but can
# be overridden on the configure command line either way.
#------------------------------------------------------------------------
AC_MSG_CHECKING([for timezone data])
AC_ARG_WITH(tzdata,
AC_HELP_STRING([--with-tzdata],
[install timezone data (default: autodetect)]),
[tcl_ok=$withval], [tcl_ok=auto])
#
# Any directories that get added here must also be added to the
# search path in ::tcl::clock::Initialize (library/clock.tcl).
#
case $tcl_ok in
no)
AC_MSG_RESULT([supplied by OS vendor])
;;
yes)
# nothing to do here
;;
auto*)
AC_CACHE_VAL([tcl_cv_dir_zoneinfo], [
for dir in /usr/share/zoneinfo \
/usr/share/lib/zoneinfo \
/usr/lib/zoneinfo
do
if test -f $dir/UTC -o -f $dir/GMT
then
tcl_cv_dir_zoneinfo="$dir"
break
fi
done])
if test -n "$tcl_cv_dir_zoneinfo"; then
tcl_ok=no
AC_MSG_RESULT([$dir])
else
tcl_ok=yes
fi
;;
*)
AC_MSG_ERROR([invalid argument: $tcl_ok])
;;
esac
if test $tcl_ok = yes
then
AC_MSG_RESULT([supplied by Tcl])
INSTALL_TZDATA=install-tzdata
fi
(From OE-Core rev: 79498ea0e9eb88ad0175f7376c57efb46217a4a4)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3ace9fbfeb42ebf920812e3dd6d665b8b20a1ca0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The kickstart parser defaults fstype to "vfat". This leads to an attempt
to create an empty file system even for regions configured with "--no-table"
if used without fstype when no --sourceparams given.
The fix tests for fstype "none" or no_table in Partition prepare method.
This will omit the file system creation an the potential error for small
region with --no-table option.
(From OE-Core rev: af9f392a5e259b681077f25fa263965714a73a05)
Signed-off-by: Markus Niebel <Markus.Niebel@ew.tq-group.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit db771a4cd36bf291a8b68edfd905e03243f2c8b3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Avoid a divide by zero traceback if unfortunate test counts are encountered.
(From OE-Core rev: b95c6a5278d44fddfbaea45cc78324f1e099187c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c5aeea53dfacb53dedb8445cb3523dc3a8cb6dca)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Sporadic errors have been observed in autobuilder when trying to store new
tests results:
error: failed to push some refs to 'push.yoctoproject.org:yocto-testresults'
hint: Updates were rejected because the tag already exists in the remote.
The new tag name is generated by gitarchive based on known tags from the
repository (learnt with git tag). In autobuilder case, this repository is a
shallow clone, so git tag only returns most recent tags, which mean we
could miss some older tags which exist in remote but not locally. In this
case, gitarchive will likely create a tag which already exists in remote,
and so will fail to push
Fix this tag duplication by using git ls-remote to learn about existing
tags instead of git tag. Two places which wrongly read only local tags has
been identified in gitarchive: expand_tag_strings and get_test_runs
Fixes [YOCTO #15140]
(From OE-Core rev: d0f8d5915a9ad3340a553b4a22f91074d7e679c9)
Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5a0a7da85a3acfd4a20a07478eabefdab60f313a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Instead of deleting setscene tasks, now SSTATE_SKIP_CREATION is set instead.
This seems to fix the compile issues where the populate_sysroot task was
not run when an externalsrc recipe was built as a dependency.
[YOCTO #15164]
[RP addition: The deltask was added by me in 2012 when the class was created.
The trouble is bitbake assumes 'sstate' tasks have a setscene task and by deleting
the setscene task, bitbake stops thinking the task can be accelerated. There is other
code in the sysroot code which assumes some tasks are always sstate tasks.
We cannot delete the task without changes to the way bitbake learns about 'setscene'
tasks so the patch is correct, avoiding creating files is the better approach given
the way the world works now.
There would be concerns about exisitng sstate reuse however this shouldn't occur
since SRC_URI changes and that will change the underlying hashes. Hash equivalency
could potentially cause issues by joining hashes together again however if the output
matches, that shouldn't in theory cause any issue.]
(From OE-Core rev: f6bb8438a18dfa2a520ad6fa65662d908f4ef0ed)
Signed-off-by: Peter Suti <peter.suti@streamunlimited.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ee4667a24ccdd8c9d547e73aecf661e6a1283890)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This adds a horrible hack to get pseudo working with glibc 2.38. We can't
drop _GNU_SOURCE to something like _DEFAULT_SOURCE since we need the defines
the gnu options bring in. That leaves using internal glibc defines to disable
the c23 versions of strtol/fscanf and friends. Which would break pseudo
build with 2.38 from running on hosts with older glibc.
We'll probably need to come up with something better but this gets glibc 2.38
and working and avoids autobuilder failures.
(From OE-Core rev: 909fd25c2ebd25f5d3bc560e26f9df6862e033d0)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 596fb699d470d7779bfa694e04908929ffeabcf7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This includes multiple CVE fixes.
The license change is due to changes in maintainership, the license
itself is unchanged.
(From OE-Core rev: 5f78a010a4ff53f4a216ec2ebe9b7a44c5c88790)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 91e66b93a0c0928f0c2cfe78e22898a6c9800f34)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
vim 8.3 has been out for a long time, so this comment is obsolete.
However we still need UPSTREAM_VERSION_UNKNOWN, since we ignore
the last digit of the upstream version number.
Test result:
$ devtool check-upgrade-status vim
...
INFO: vim 9.0.1592 UNKNOWN Tom Rini <trini@konsulko.com> c0370529c027abc5b1698d53fcfb8c02a0c515da
(From OE-Core rev: 65f5de85c3f488136d1ec2b1f7fe8d8426d6c5b3)
(From OE-Core rev: 72af322b6b8afd64a59b30a4f0fc3f8c6dfaa06a)
Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 868a19357841470eb55fb7f1c4ab1af09dea99ed)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CVE-2022-48303.patch
removed since it's included in 1.35
License-Update: http changed to https
Changelog:
===========
* Fail when building GNU tar, if the platform supports 64-bit time_t
but the build uses only 32-bit time_t.
* Leave the devmajor and devminor fields empty (rather than zero) for
non-special files, as this is more compatible with traditional tar.
* Bug fixes
** Fix interaction of --update with --wildcards.
** When extracting archives into an empty directory, do not create
hard links to files outside that directory.
** Handle partial reads from regular files.
** Warn "file changed as we read it" less often.
** Fix --ignore-failed-read to ignore file-changed read errors
** Fix --remove-files to not remove a file that changed while we read it.
** Fix --atime-preserve=replace to not fail if there was no need to replace,
either because we did not read the file, or the atime did not change.
** Fix race when creating a parent directory while another process is
also doing so.
** Fix handling of prefix keywords not followed by "." in pax headers.
** Fix handling of out-of-range sparse entries in pax headers.
** Fix handling of --transform='s/s/@/2'.
** Fix treatment of options ending in / in files-from list.
** Fix crash on 'tar --checkpoint-action exec=\"'.
** Fix low-memory crash when reading incremental dumps.
** Fix --exclude-vcs-ignores memory allocation misuse.
(From OE-Core rev: 4910b1e46a67dcdc3f7ebbab648a2b365c1910da)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c63769de05ce08c0627d302d14316ced31816b4d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Below commits on glibc-2.35 stable branch are updated.
561e9dadc0 x86: Fix incorrect scope of setting `shared_per_thread`
1c3ecf5858 x86: Use `3/4*sizeof(per-thread-L3)` as low bound for NT threshold.
47c7d2eb03 x86: Fix slight bug in `shared_per_thread` cache size calculation.
d1b1da26ea x86: Increase `non_temporal_threshold` to roughly `sizeof_L3 / 4`
e19af583b4 elf: _dl_find_object may return 1 during early startup.
(From OE-Core rev: b834674ada7329ab60130ebe7350dff592060ecf)
Signed-off-by: Sanjana <sanjanasanju1608@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The html/template package does not apply the proper rules for handling
occurrences of "<script", "<!--", and "</script" within JS literals in
<script> contexts. This may cause the template parser to improperly
consider script contexts to be terminated early, causing actions to be
improperly escaped. This could be leveraged to perform an XSS attack.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-39319
(From OE-Core rev: afdc322ecff4cfd8478c89a03f7fce748a132b48)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add in stable updates to glibc 2.38 to fix malloc bugs
(From OE-Core rev: 26309ba6ef5b776d6bc45b984261b91e6c8c5a94)
Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 39f987fcb20ad7c0e45425b9f508d463c50ce0c1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Buffer Overflow vulnerability in function bitwriter_grow_ in flac before
1.4.0 allows remote attackers to run arbitrary code via crafted input to
the encoder.
(From OE-Core rev: 29c6287287c9f26c1d6f9fddf8d2852409bbbbec)
Signed-off-by: Meenali Gupta <meenali.gupta@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Xmlsoft Libxml2 v2.11.0 was discovered to contain a global buffer overflow via
the xmlSAX2StartElement() function at /libxml2/SAX2.c. This vulnerability
allows attackers to cause a Denial of Service (DoS) via supplying a crafted XML
file.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-39615
(From OE-Core rev: 9a2ad95caffae37014fa27d9b20d45f9779d0fbf)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CVE-2022-40896:
A ReDoS issue was discovered in pygments/lexers/smithy.py in pygments
through 2.15.0 via SmithyLexer.
The CVE issue is fixed by 3 different commits between the releases 2.14.0
(for Smithy lexer), 2.15.0 (for SQL+Jinja lexers) and 2.15.1 (for Java
properties) as per: https://pyup.io/posts/pyup-discovers-redos-vulnerabilities-in-top-python-packages-part-2/
1. Smithy lexer commit from 2.14.0 release applies successfully on 2.11.2 version.
Commit: dd52102c38
Hence, backported the patch as CVE-2022-40896.patch.
2. SQL+Jinja lexers commit from 2.15.0 release doesn't apply on 2.11.2 version.
Commit: 97eb3d5ec7
Actually, this code doesn't exist in 2.11.2 version and it has been introduce by
python3-pygments 2.13.0 version. Hence, this is not vulnerable for 2.11.2 version.
SQL+Jinja lexers is introduced by: 0bdbd5992b
3. Java properties commit from 2.15.1 release also doesn't apply on 2.11.2 version.
Commit: fdf182a7af
Actually, this code also doesn't exist in 2.11.2 version as the code has been modified
in python3-pygments 2.14.0 by: a38cb38e93
Hence, this is also not vulnerable for 2.11.2 version.
(From OE-Core rev: ebb224e65a7e1402ccf0d9517bd72748c18e012e)
Signed-off-by: Narpat Mali <narpat.mali@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- Update according to changes in SANITY_TESTED_DISTROS
(meta-poky/conf/distro/poky.conf)
- No longer declare as "Supported" the distributions versions
which are End of Life for their vendors, as some of them
(Ubuntu for example) ship updates to subscribers only,
which the Yocto Project has no access to.
- List distribution versions which were previously tested
for the branch of the Yocto Project being considered.
(From yocto-docs rev: 84d7f2e2a218502b4af4fc2e7de1761e489f86f4)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Fix an issue with early log messages being lost when running in systemd.
(From OE-Core rev: 47a1dd7f389e3cf4ac2dc5fc21dccc870aafab4a)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Depending on the host gcc version, libdnf fails to compile due to
missing cstdint inclusions. These issue have already been addressed
upstream, add the patches to resolve this for older versions of the
library.
These commits are taken directly from the libdnf project at
https://github.com/rpm-software-management/libdnf
(From OE-Core rev: e1d9bc1f88bd989bafc20063938d7a70e1da104f)
Signed-off-by: Abe Kohandel <abe.kohandel@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* LDFLAGS += "-fuse-ld=bfd" in the recipe doesn't work and
it still fails to build with ld-is-gold in DISTRO_FEATURES
removal of this line sent to master in:
https://lists.openembedded.org/g/openembedded-core/message/185167
* the most important ones are the 1st which removes --add-needed
and the last which removes src/include/workarounds.mk completely
while 2-4 patches just update src/include/workarounds.mk for the
last one to apply cleanly
* alternatively we can bump SRCREV to latest 38 as master did in:
https://git.openembedded.org/openembedded-core/commit/?id=4df808c616f847d90203582fd950a49bb8360dd0
which brings 23 commits, but instead of adding 5 more patches
allows to remove 5
(From OE-Core rev: d5c7ec0be32aa75fa7973840adf5251d22018766)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Release date: 2023-08-24
Security
gh-108310: Fixed an issue where instances of ssl.SSLSocket were
vulnerable to a bypass of the TLS handshake and included protections
(like certificate verification) and treating sent unencrypted data as if
it were post-handshake TLS encrypted data. Security issue reported as
CVE-2023-40217 by Aapo Oksman. Patch by Gregory P. Smith.
Library
gh-107845: tarfile.data_filter() now takes the location of symlinks into
account when determining their target, so it will no longer reject some
valid tarballs with LinkOutsideDestinationError.
Tools/Demos
gh-107565: Update multissltests and GitHub CI workflows to use OpenSSL
1.1.1v, 3.0.10, and 3.1.2.
C API
gh-99612: Fix PyUnicode_DecodeUTF8Stateful() for ASCII-only data:
*consumed was not set.
(From OE-Core rev: a30e51b8d13912f0d68bfffcd2d8ae6431d2b863)
Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A Segmentation Fault issue discovered in in ieee_segment function in outieee.c
in nasm 2.14.03 and 2.15 allows remote attackers to cause a denial of service
via crafted assembly file.
References:
https://nvd.nist.gov/vuln/detail/CVE-2020-21528
Upstream patches:
93c774d482
(From OE-Core rev: 87c4ec2d73ac2e52005e16e38a9a12affb8d51bd)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
ignore changes to FILE_RCSID part.
(From OE-Core rev: 20b5ead99d4904e70ea22f573bfefec8c6e862a2)
Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(From OE-Core rev: a0b41511766130883e93b5b8a07801a836beeb67)
Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backport and rebase patch to fix CVE-2023-23529.
CVE: CVE-2023-23529
(From OE-Core rev: f8bce477ad88da70c3a4196912ba72049b2aa765)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There is a stack overflow vulnerability in ash.c:6030 in busybox
vbefore 1.35. In the environment of Internet of Vehicles, this
vulnerability can be executed from command to arbitrary code execution.
(From OE-Core rev: 56b90b5f2da661bfac3f2d751fc09e918429ec87)
Signed-off-by: Meenali Gupta <meenali.gupta@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is a read past end of buffer issue in the json_parse test app,
which can happened with malformed json data. It's not an issue with the
library itself. For what ever reason this CVE has a base score of 9.8.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2021-32292
Upstream issue:
https://github.com/json-c/json-c/issues/654
The CVE is fixed with version 0.16 (which is already in all active
branches of poky).
(From OE-Core rev: a7b93651028b55d71b8db53ea831eee7fd539f33)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The delta between 3.1.27 & 3.1.32 contains the CVE-2022-24439 &
CVE-2023-40267 fixes and other bugfixes.
Changelog:
https://github.com/gitpython-developers/GitPython/releases/tag/3.1.32https://gitpython.readthedocs.io/en/stable/changes.html#id5
- Bump cygwin/cygwin-install-action from 3 to 4 by @dependabot in #1572
- Fix up the commit trailers functionality by @itsluketwist in #1576
- Name top-level exceptions as private variables by @Hawk777 in #1590
- fix pypi long description by @eUgEntOptIc44 in #1603
- Don't rely on del by @r-darwish in #1606
- Block insecure non-multi options in clone/clone_from by @Beuc in #1609
- Fix Sphinx rendering errors by @stephan-cr in #1524
- tests: Use command -v instead of third-party which program by @mgorny in #1525
- fix/add allow_unsafe_* params in docstrings + fix typo by @obfusk in #1530
- use tempfile.TemporaryDirectory & fix clone_from_unsafe_protocol tests by @obfusk in #1531
- Fix some resource leaks by open file handles by @marlamb in #1532
- fix files list on file rename by @teknoraver in #1537
- Declare support for Python 3.11 by @hugovk in #1541
- Fix ignored by @Lightborne in #1545
- Fix timezone parsing functions for non-hour timezones by @jcowgill in #1547
- Enable user to override default diff -M arg by @mellowed100 in #1551
- Remove optional from two member variables by @Sineaggi in #1550
- Fix RecursionError when iterating streams by @eric-wieser in #1554
- Fix get_values() so it correctly loads section names by @Codym48 in #1555
- Add datetime.datetime type to commit_date and author_date by @SergeantMenacingGarlic in #1501
- Bump cygwin/cygwin-install-action from 2 to 3 by @dependabot in #1514
- Fix command injection by @stsewd in #1518
- Document PushInfoList by @skinitimski in #1522
- Fix type hint on create_tag by @drewcassidy in #1523
- Block insecure options and protocols by default by @stsewd in #1521
- Make the git.__version__ re-appear.
(From OE-Core rev: 8ceaeff90023e51c7e874464f026b30d24035bda)
Signed-off-by: Narpat Mali <narpat.mali@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Run generate-cve-exclusions.py to generate the ignore lists. This file
is maintained separately from the existing manual ignore entries.
(From OE-Core rev: fc506efa5c84b45b063678098131031f52bb3c16)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Instead of manually looking up new CVEs and determining what point
releases the fixes are incorporated into, add a script to generate the
CVE_CHECK_IGNORE data automatically.
First, note that this is very much an interim solution until the
cve-check class fetches data from www.linuxkernelcves.com directly.
The script should be passed the path to a local clone of the
linuxkernelcves repository[1] and the kernel version number. It will
then write to standard output the CVE_STATUS entries for every known
kernel CVE.
The script should be periodically reran as CVEs are backported and
kernels upgraded frequently.
[1] https://github.com/nluedtke/linux_kernel_cves
Note: for the backport this is not a cherry-pick of the commit in master
as the variable names are different. This incorporates the following
commits:
linux/generate-cve-exclusions: add version check warning
linux/generate-cve-exclusions.py: fix comparison
linux-yocto: add script to generate kernel CVE_STATUS entries
(From OE-Core rev: c7a71692b7ed4cc2187f4c82bf11e32e0ce32cb6)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Envoy is a cloud-native high-performance edge/middle/service
proxy. Envoy’s HTTP/2 codec may leak a header map and
bookkeeping structures upon receiving `RST_STREAM` immediately
followed by the `GOAWAY` frames from an upstream server. In
nghttp2, cleanup of pending requests due to receipt of the
`GOAWAY` frame skips de-allocation of the bookkeeping structure
and pending compressed header. The error return [code path] is
taken if connection is already marked for not sending more
requests due to `GOAWAY` frame. The clean-up code is right after
the return statement, causing memory leak. Denial of service
through memory exhaustion. This vulnerability was patched in
versions(s) 1.26.3, 1.25.8, 1.24.9, 1.23.11.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-35945https://github.com/envoyproxy/envoy/security/advisories/GHSA-jfxv-29pc-x22r
(From OE-Core rev: 0e6eb0f417079eaf76b003973c9d93338e6363b5)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The commit [9bd4ddeb4b] backports fix for CVE-2023-2861 for version 6.2.0.
The 'qemu_fstat' in `do_create_others' is not defined which leads to the undefined symbol error on certain architectures.
Also, the commit message says "(Mjt: drop adding qemu_fstat wrapper for 7.2 where wrappers aren't used)". So either the wrapper has to be dropped or it has to be defined.
Hence, backported the main patch rather than the cherry picked one.
(From OE-Core rev: 983d19dfdad361f8b3275b404f1ac0b9befc9f6c)
Signed-off-by: Siddharth Doshi <sdoshi@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Extremely large RSA keys in certificate chains can cause a
client/server to expend significant CPU time verifying
signatures. With fix, the size of RSA keys transmitted
during handshakes is restricted to <= 8192 bits. Based on
a survey of publicly trusted RSA keys, there are currently
only three certificates in circulation with keys larger than
this, and all three appear to be test certificates that are
not actively deployed. It is possible there are larger keys
in use in private PKIs, but we target the web PKI, so causing
breakage here in the interests of increasing the default
safety of users of crypto/tls seems reasonable.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-29409
(From OE-Core rev: 51c2fee0e4bb4b3131c61d91510394cd4b4f9eb9)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This resolves two issues:
1. metapackages were depending on themselves (except -binaries which wouldn't match against 'glibc-binary').
2. for the nativesdk variant, due to a non-empty dependency list at parsing time caused by
issue 1, map_depends_variable() from meta/lib/oe/classextend.py was forcibly setting PACKAGES
to the initial parse-time value (e.g. missing the dynamically created packages). This meant that
three out of four nativesdk- metapackages were entireyly missing the dependencies on the
respective dynamic package sets.
(From OE-Core rev: ea920e3c8075f3a1b79039341f8c889f6197a07f)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a90fd3afe9184aa1870b34a826e3ba0563477d4b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
It looks like there were further cases where orphaned processes may be left
behind since the .kill() calls may be unsuccessful if the process terminated
due to the terminate or through normal exit. In that situation .wait()
wouldn't have been called.
Further tweak the exit code paths to ensure .wait() is called to update the
returncode value before returning in all cases.
(From OE-Core rev: e1e038ab01a599fcdd4aa6211b6d15cd01a5e2e3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 0a0a1731e38edfa72a141e8fd8f2de52be562e94)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
As spotted by Joshua Watt, the returncode isn't set until .poll() or .wait()
is called so we need to call this after the .kill() call.
This fixes return code reporting so that timeouts for example now return an
exit code when they didn't before.
(From OE-Core rev: c70b05ea667e7bd280470b0b6ca10efb0f648e0f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3924e94214b5135369be2551d54fb92097d35e95)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
On our slower arm server, the tests currently timeout leading to inconsistent test
results. Increase the timeout to avoid this and aim to make the test results
consistent.
(From OE-Core rev: b161af52b9454e07435dc9737b0a2522295f3e4d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9a8b49208f3c99e184eab426360b137bc773aa31)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
We have a suspicion that the read() call may return EAGAIN on the non-blocking
fd and this may truncate test output leading to some of our intermittent failures.
Tweak the code to avoid this potential issue.
(From OE-Core rev: 4c02f7407d7afaefe1bc72aea25087b3f2271ac2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a8920c105725431e989cceb616bd04eaa52127ec)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This provides a more reliable test execution when running tests that
write a large buffer/file and significantly reduces the localedata test
failures.
(From OE-Core rev: 8d0c669d3d04cf5bc645978afb22ba6c3f3d53e6)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 97a7612e3959bc9c75116a4e696f47cc31aea75d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Allows setting up NFS over TCP as well.
(From OE-Core rev: 2727a0cb8d026e0c47aedd91f7c02e24b056f37b)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e1ff9b9a3b7f7924aea67d2024581bea2e916036)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Some of the tests trigger OOM and fail. Increase the amount of memory
available so we dont run into these issues.
(From OE-Core rev: 060030ac9d00bf22ae3a2695d7ea060f0f69dfa8)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4d22dba482cb19ffcff5abee73f24526ea9d1c2a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Dont fill up the test log with ssh warning about having added the host
to list of known hosts.
Also helps fix a test case failure where stderr log was being compared
to a known value.
(From OE-Core rev: 265ba5138bb5859b9f5915f99a818a45df88a279)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 63b31ff7e54a171c4c02fca2e6b07aec64a410af)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
07revert-inplace test logs contain the following:
func.sh: line 335: /sbin/blockdev: No such file or directory
Add the missing util-linux-blockdev dependency.
(From OE-Core rev: 7190ea3b70a9b36ecf48f948e792ac2ce6eca1e3)
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit a15cd04f528d137d428a572f15d1ec5ebbbd81f0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Due to an oversight in the do_symlink_kernsrc function, the path
comparison between "S" and "STAGING_KERNEL_DIR" is broken. The code
obtains both variables, but modifies the local copy of "S" before
comparing them, causing the comparison to always return false.
This can cause the build to fail when the EXTERNALSRC flag is enabled,
since the code will try to create a symlink even if one already exists.
This patch resolves the issue by comparing the variables before they are
modified.
(From OE-Core rev: cf2267f80ec44b24c627347df7efbd492a07dcfa)
Signed-off-by: Staffan Rydén <staffan.ryden@axis.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit afd2038ef8a66a5e6433be31a14e1eb0d9f9a1d3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Rather than copying the entire /etc hierarchy, specify the pieces we
actually need.
(From OE-Core rev: 007a57ce36a06f9a78675563020f24e1afa3caa1)
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit f0fea55ab02b013484282177a636795a254e7986)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When copying the package database files for the debugfs, add individual
file copy as well as tree copying. After the debug rootfs has been
created, cleanup the package files.
This then allows us to avoid a problem where (for rpm at least)
extraneous files in the debug rootfs would cause failures during
oe-selftest because some files existed in both regular and debugfs
images.
(From OE-Core rev: 96c79c54f282497eb1521b1d5da648ae83fcfe8b)
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit ce49ea435ce55eb5b6da442c12e03a806534c38d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Fix the override so we actually pass the correct value to glibc.
(From OE-Core rev: 60ca407ce3113d8b507aaa0876b28902aab7ed5b)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 38fd2120f0f48512091ddad6205ce19839eaf589)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add check_PROGRAMS as a dependency of buildtest-TESTS target.
This is required because according to the official automake
documentation [1]:
* TESTS: contains all the tests files
* check_PROGRAMS: contains the programs used by the tests
* check_PROGRAMS is not automatically added to TESTS
So, by using only TESTS as a dependency for buildtest-TESTS we may end
up having runtime errors because of missing program required by the
tests.
[1]: https://www.gnu.org/software/automake/manual/html_node/Scripts_002dbased-Testsuites.html
(From OE-Core rev: 5859a4143a1495198af323cedf06248c9b363060)
Signed-off-by: Julien Stephan <jstephan@baylibre.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ee3e2af4f8ed95b4fd0f7cec52ae4e169401b719)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
non-release indexes will continue to generate when test output is
corrupted.
(From OE-Core rev: 9467528e89d44a016a4c1e509a3a7da56ea20f74)
Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1a9157684a6bff8406c9bb470cb2e16ee006bbe9)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Recipe references 'login.defs' in LIC_FILES_CHKSUM. This causes some
problems:
- file does not contain a single word which is related with its license
- changing this file (here: increasing SYS_UID_MIN) invalidates
LIC_FILES_CHKSUM
Add 'SPDX-License-Identifier' to the file and limit the checksum to
this part.
(From OE-Core rev: c9ab17b51834bff96657712a6741eb3e3647b063)
Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8c6f2e3feeb26abefb4136c56db6f3c0349acefb)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add a missing perl module dependency for the ptest packages and also
improve the run-ptest script so that the error log is saved allowing
easier debugging if this fails in future.
(From OE-Core rev: fbb9c596b8e6a8a1260dd7aefddf138d20bf64df)
(From OE-Core rev: 5908ccf65b5ca4a0473a57774f06515d6bc9f56c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2c948fa025)
Signed-off-by: Bhabu Bindu <bhabu.bindu@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
If you run an arm build followed by an x86 one and then ask for a
full repo to be created, it will include all of the arm and x86 packages.
testexport will then find the arm socat package rather than the x86 one
and try and run arm binaries within an x86 qemu image with no success.
The reproducer for this was:
oe-selftest -r fitimage.FitImageTests.test_initramfs_bundle runtime_test.TestImage.test_testimage_install
This patch only symlinks in the compatible package archictures rather
than all of them which fixes the failure and the resulting autobuilder
intermittent failure too.
[YOCTO #15190]
(From OE-Core rev: b811ce9e1c94532d49db54d4c3458cd804d96adb)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 30b45bcf49bf8207fd96bb45a55d7708661f3359)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Remove duplication of license MIT from pixman bbfile.
(From OE-Core rev: 76f928359f76d449de0d884c591a5d9fdba9d19c)
Signed-off-by: Poonam Jadhav <poonam.jadhav@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This version includes fixes to patchelf.
(From OE-Core rev: 410c2be543d031dc54a37439c8069807c395fc36)
Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1c5c8ff97ba0a7f9adc592d702b865b3d166a24b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
38d4ca22a528 Linux 5.15.124
78001ffa9bc4 selftests: mptcp: join: only check for ip6tables if needed
66cf5f394abe ASoC: cs42l51: fix driver to properly autoload with automatic module loading
3359fdf49de4 io_uring: treat -EAGAIN for REQ_F_NOWAIT as final for io-wq
374edda0db70 selftests: mptcp: sockopt: use 'iptables-legacy' if available
43bbe1a091e0 cpufreq: intel_pstate: Drop ACPI _PSS states table patching
73b4cbed9176 ACPI: processor: perflib: Avoid updating frequency QoS unnecessarily
cd031669682e ACPI: processor: perflib: Use the "no limit" frequency QoS
e8e93e2f017e tracing: Fix trace_event_raw_event_synth() if else statement
f3b6e63004f6 rbd: retrieve and check lock owner twice before blocklisting
bb25c5c0e4ae rbd: harden get_lock_owner_info() a bit
b223e9ffb64d rbd: make get_lock_owner_info() return a single locker or NULL
098d0b9ba03c dm cache policy smq: ensure IO doesn't prevent cleaner policy progress
7c9b8cca4917 ceph: never send metrics if disable_send_metrics is set
e443b3a508b0 ASoC: wm8904: Fill the cache for WM8904_ADC_TEST_0 register
585355a76e05 s390/dasd: fix hanging device after quiesce/resume
0061453d6ea1 virtio-net: fix race between set queues and probe
427d42838c16 KVM: x86: Disallow KVM_SET_SREGS{2} if incoming CR0 is invalid
4ed1549129f9 locking/rtmutex: Fix task->pi_waiters integrity
c579caef7c46 irqchip/gic-v4.1: Properly lock VPEs when doing a directLPI invalidation
6cb3c511afcb irq-bcm6345-l1: Do not assume a fixed block to cpu mapping
354e8bd5f532 tpm_tis: Explicitly check for error code
8130c32b4ac1 nfsd: Remove incorrect check in nfsd4_validate_stateid
9b8a31a23152 file: always lock position for FMODE_ATOMIC_POS
1f5ea62a0f42 btrfs: check for commit error at btrfs_attach_transaction_barrier()
883c3ed9a16a btrfs: check if the transaction was aborted at btrfs_wait_for_commit()
a7abb1690fe1 hwmon: (nct7802) Fix for temp6 (PECI1) processed even if PECI1 disabled
3f3cdca84432 hwmon: (k10temp) Enable AMD3255 Proc to show negative temperature
a676ddc4ca96 ALSA: hda/relatek: Enable Mute LED on HP 250 G8
dd125fcd580a Revert "xhci: add quirk for host controllers that don't update endpoint DCS"
5138c228311a tty: n_gsm: fix UAF in gsm_cleanup_mux
baf420e30364 staging: ks7010: potential buffer overflow in ks_wlan_set_encode_ext()
acacdbe0f740 staging: r8712: Fix memory leak in _r8712_init_xmit_priv()
ba2975efe979 Documentation: security-bugs.rst: clarify CVE handling
28ae486f8e36 Documentation: security-bugs.rst: update preferences when dealing with the linux-distros group
98a118840b71 Revert "usb: xhci: tegra: Fix error check"
2eaa43508a0e usb: xhci-mtk: set the dma max_seg_size
cd2d96c4bc6f usb: cdns3: fix incorrect calculation of ep_buf_size when more than one config
3af06a8502ee USB: quirks: add quirk for Focusrite Scarlett
8fb5a01196df usb: ohci-at91: Fix the unhandle interrupt when resume
6366b1178545 usb: dwc3: don't reset device side if dwc3 was configured as host-only
6f126e026307 usb: dwc3: pci: skip BYT GPIO lookup table for hardwired phy
a2d2fa661293 Revert "usb: dwc3: core: Enable AutoRetry feature in the controller"
97620ed1bcab can: gs_usb: gs_can_close(): add missing set of CAN state to CAN_STATE_STOPPED
0ac13ef00209 USB: serial: simple: sort driver entries
378e03623741 USB: serial: simple: add Kaufmann RKS+CAN VCP
5b9a5cf1bf4a USB: serial: option: add Quectel EC200A module support
399091399777 USB: serial: option: support Quectel EM060K_128
b800c0d5576e serial: sifive: Fix sifive_serial_console_setup() section
8fa462ad0f9b serial: 8250_dw: Preserve original value of DLF register
dc4f6c537f37 serial: qcom-geni: drop bogus runtime pm state update
41c487de4cf5 KVM: VMX: Don't fudge CR0 and CR4 for restricted L2 guest
5883a4e8478d KVM: Grab a reference to KVM for VM and vCPU stats file descriptors
0f7a2b567197 USB: gadget: Fix the memory leak in raw_gadget driver
2f9bfccced04 usb: gadget: call usb_gadget_check_config() to verify UDC capability
a49884561a8c Revert "usb: gadget: tegra-xudc: Fix error check in tegra_xudc_powerdomain_init()"
813cede7b2f5 tracing: Fix warning in trace_buffered_event_disable()
23e8a65f9a93 ring-buffer: Fix wrong stat of cpu_buffer->read
ae5b8b1c2eac ata: pata_ns87415: mark ns87560_tf_read static
6bbbe1b2161e RDMA/irdma: Report correct WC error
bd79de8bd371 drm/amd: Fix an error handling mistake in psp_sw_init()
4e1c1d742970 dm raid: protect md_stop() with 'reconfig_mutex'
0c4db5a04d4f dm raid: clean up four equivalent goto tags in raid_ctr()
2e321ee96f88 dm raid: fix missing reconfig_mutex unlock in raid_ctr() error paths
4b9f3ef1f3eb block: Fix a source code comment in include/uapi/linux/blkzoned.h
2861b33820f9 ASoC: fsl_spdif: Silence output on stop
5ec0e4deee5b drm/msm: Fix IS_ERR_OR_NULL() vs NULL check in a5xx_submit_in_rb()
b79a0e71d6e8 RDMA/bnxt_re: Prevent handling any completions after qp destroy
3ad5f655eb8a RDMA/mthca: Fix crash when polling CQ for shared QPs
c5b5dbcbf91f RDMA/irdma: Fix data race on CQP request done
bf0f9f65b7fe RDMA/irdma: Fix data race on CQP completion stats
fd6e50ec2c38 RDMA/irdma: Add missing read barriers
5fbb5068d2bd drm/msm/adreno: Fix snapshot BINDLESS_DATA size
4e9d4a21616b drm/msm/dpu: drop enum dpu_core_perf_data_bus_id
6ab756a55e46 RDMA/mlx4: Make check for invalid flags stricter
9dde876a4dc8 tipc: stop tipc crypto on failure in tipc_node_create
df019bc1241e tipc: check return value of pskb_trim()
42afa7ef6629 benet: fix return value check in be_lancer_xmit_workarounds()
95cf4fa31b0c net/sched: mqprio: Add length check for TCA_MQPRIO_{MAX/MIN}_RATE64
98f6bbdfc0ce net/sched: mqprio: add extack to mqprio_parse_nlattr()
b1e85c9d28dd net/sched: mqprio: refactor nlattr parsing to a separate function
5bee91121cce netfilter: nf_tables: disallow rule addition to bound chain via NFTA_RULE_CHAIN_ID
98bcfcaecc76 netfilter: nf_tables: skip immediate deactivate in _PREPARE_ERROR
50cbb9d195c1 netfilter: nft_set_rbtree: fix overlap expiration walk
feba294c454a igc: Fix Kernel Panic during ndo_tx_timeout callback
8412fe36863b platform/x86: msi-laptop: Fix rfkill out-of-sync on MSI Wind U100
238420a24d6b net: stmmac: Apply redundant write work around on 4.xx too
9be8ec5a0cfe team: reset team's flags when down link is P2P device
bf2d7b63e2b5 bonding: reset bond's flags when down link is P2P device
c28b39387634 ice: Fix memory management in ice_ethtool_fdir.c
ecb741a17cb2 tcp: Reduce chance of collisions in inet6_hashfn().
dd48780a7bbb ipv6 addrconf: fix bug where deleting a mngtmpaddr can create a new temporary address
46e40297355e ethernet: atheros: fix return value check in atl1e_tso_csum()
6d8a71e4c3a2 phy: hisilicon: Fix an out of bounds check in hisi_inno_phy_probe()
49f5b3c9499b vxlan: calculate correct header length for GPE
77396fa9096a vxlan: move to its own directory
96dbc68b7f86 net: hns3: fix wrong bw weight of disabled tc issue
9755714d238c net: hns3: fix wrong tc bandwidth weight data issue
01460ac6ff95 net: phy: marvell10g: fix 88x3310 power up
57743a86cce1 iavf: check for removal state before IAVF_FLAG_PF_COMMS_FAILED
1542e399a12a iavf: fix potential deadlock on allocation failure
5a4048355725 i40e: Fix an NULL vs IS_ERR() bug for debugfs_create_dir()
c9b936984d89 media: staging: atomisp: select V4L2_FWNODE
6aa7cb3bb5c9 soundwire: qcom: update status correctly with mask
3f28ec4a4002 phy: qcom-snps-femto-v2: properly enable ref clock
ac3fe4c2a708 phy: qcom-snps-femto-v2: keep cfg_ahb_clk enabled during runtime suspend
e7c0c5af517f phy: qcom-snps: correct struct qcom_snps_hsphy kerneldoc
450ef59bef9a phy: qcom-snps: Use dev_err_probe() to simplify code
d6f92582816c drm/amdgpu/vkms: relax timer deactivation by hrtimer_try_to_cancel
fc399b0fdf2d drm/amdgpu: fix vkms crtc settings
aa56bcff46a1 scsi: qla2xxx: Fix hang in task management
58daf4e8709d scsi: qla2xxx: Add debug prints in the device remove path
f90d44e5bbbe scsi: qla2xxx: Fix task management cmd fail due to unavailable resource
01366f0b656a scsi: qla2xxx: Fix task management cmd failure
25cea82ea25d scsi: qla2xxx: Multi-que support for TMF
2e18fd3f61be scsi: qla2xxx: Remove unused declarations for qla2xxx
ace6bed42464 tracing/probes: Fix to record 0-length data_loc in fetch_store_string*() if fails
30c8ba1da373 Revert "tracing: Add "(fault)" name injection to kernel probes"
5f52389bdd9e tracing: Allow synthetic events to pass around stacktraces
e7b4d24fa090 tracing/probes: Fix to avoid double count of the string length on the array
3a1a229712ef tracing/probes: Add symstr type for dynamic events
7ac170d93bec pwm: meson: fix handling of period/duty if greater than UINT_MAX
bae3c43a9d25 pwm: meson: Simplify duplicated per-channel tracking
5cb0349cfcde cifs: if deferred close is disabled then close files immediately
c600e23fbc40 ksmbd: remove internal.h include
c8117ac42303 cifs: use fs_context for automounts
5076cc8bc162 cifs: missing directory in MAINTAINERS file
da60170558b9 drm/ttm: never consider pinned BOs for eviction&swap
c556573e4bb1 tty: fix hang on tty device with no_room set
d262770b95c7 n_tty: Rename tail to old_tail in n_tty_read()
7738335d73d0 drm/ttm: Don't leak a resource on eviction error
4400b96587fd drm/ttm: Don't print error message if eviction was interrupted
354cdda79a77 fs: dlm: interrupt posix locks only when process is killed
97e7a0f8dea2 dlm: rearrange async condition return
75ce95abc65b dlm: cleanup plock_op vs plock_xop
b409d8df9bea PCI: rockchip: Don't advertise MSI-X in PCIe capabilities
cbd1494e51fd PCI: rockchip: Fix window mapping and address translation for endpoint
eb39c4c051dc PCI: rockchip: Remove writes to unused registers
05f13e85fbdd PCI/ASPM: Avoid link retraining race
52d274956a8f PCI/ASPM: Factor out pcie_wait_for_retrain()
cf8c18150030 PCI/ASPM: Return 0 or -ETIMEDOUT from pcie_retrain_link()
8b9249d74ca5 i2c: nomadik: Remove a useless call in the remove function
f07d8d345bd2 i2c: nomadik: Use devm_clk_get_enabled()
4954c8705339 i2c: nomadik: Remove unnecessary goto label
24562f0a46ad i2c: Improve size determinations
9845744e57fe i2c: Delete error messages for failed memory allocations
89eae1f0aaeb btrfs: fix race between quota disable and relocation
b19e90521286 gpio: mvebu: fix irq domain leak
a999660042af gpio: mvebu: Make use of devm_pwmchip_add
34fe5fbc208f pwm: Add a stub for devm_pwmchip_add()
f3d2344811fd gpio: tps68470: Make tps68470_gpio_output() always set the initial value
21d063d27bf3 io_uring: don't audit the capability check in io_uring_create()
49a2686addde KVM: s390: pv: fix index value of replaced ASCE
fee1e6a73557 jbd2: Fix wrongly judgement for buffer head removing while doing checkpoint
(From OE-Core rev: 94bad591285091c3f348410df7bf58366c267775)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit f7ffd2eba4d5c731b7841690e24ca4c5752dfce8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
09996673e313 Linux 5.15.123
e6c2f1ce413c Revert "drm/amd/display: edp do not add non-edid timings"
68eafe294786 nixge: fix mac address error handling again
22f4093a4213 tracing/histograms: Return an error if we fail to add histogram to hist_vars list
78471c3ad36f jbd2: recheck chechpointing non-dirty buffer
0ae6b6d21701 net: phy: prevent stale pointer dereference in phy_init()
b7168d2906fd tcp: annotate data-races around fastopenq.max_qlen
accb138c10ff tcp: annotate data-races around icsk->icsk_user_timeout
6b88371f000f tcp: annotate data-races around tp->notsent_lowat
4f0a31f73258 tcp: annotate data-races around rskq_defer_accept
ff0fedfc7540 tcp: annotate data-races around tp->linger2
e187d88f3ba3 tcp: annotate data-races around icsk->icsk_syn_retries
d5617eeb546e tcp: annotate data-races around tp->keepalive_probes
9b2296a2ad23 tcp: annotate data-races around tp->keepalive_intvl
f70ebecdf3c2 tcp: annotate data-races around tp->keepalive_time
0bcee9325268 tcp: annotate data-races around tp->tcp_tx_delay
10013f764ad2 netfilter: nf_tables: skip bound chain on rule flush
dbe1a82d46ed netfilter: nf_tables: skip bound chain in netns release path
706ce3c81b5c netfilter: nft_set_pipapo: fix improper element removal
62615b895ab4 netfilter: nf_tables: fix spurious set element insertion failure
c17b4ec9cc38 llc: Don't drop packet from non-root netns.
2400ae8fd86d fbdev: au1200fb: Fix missing IRQ check in au1200fb_drv_probe
40276640bed8 Revert "tcp: avoid the lookup process failing to get sk in ehash table"
b04ab5243e84 net:ipv6: check return value of pskb_trim()
b87a7e3a330c net: ipv4: Use kfree_sensitive instead of kfree
5dd4d1ff8ba1 tcp: annotate data-races around tcp_rsk(req)->ts_recent
fa941f53a2c2 igc: Prevent garbled TX queue with XDP ZEROCOPY
e35dc107a172 bpf: Fix subprog idx logic in check_max_stack_depth
4e87eb224896 octeontx2-pf: Dont allocate BPIDs for LBK interfaces
87fc9616d606 security: keys: Modify mismatched function name
0fb37ce6c01e iavf: Fix out-of-bounds when setting channels on remove
345c44e18cc1 iavf: Fix use-after-free in free_netdev
52ed16146349 net: sched: cls_bpf: Undo tcf_bind_filter in case of an error
5ed16ecae5bf net: ethernet: mtk_eth_soc: handle probe deferral
39479093a472 ethernet: use of_get_ethdev_address()
cb1e666ec077 of: net: add a helper for loading netdev->dev_addr
43da399e509e ethernet: use eth_hw_addr_set() instead of ether_addr_copy()
3fb402bd20e2 bridge: Add extack warning when enabling STP in netns.
ec4ac15eced0 net: ethernet: ti: cpsw_ale: Fix cpsw_ale_get_field()/cpsw_ale_set_field()
6a5d6096ae5c pinctrl: amd: Use amd_pinconf_set() for all config options
4727cece2994 perf build: Fix library not found error when using CSLIBS
29fb046ec031 fbdev: imxfb: warn about invalid left/right margin
5d191467534b spi: bcm63xx: fix max prepend length
2febd5f81e4b FS: JFS: Check for read-only mounted filesystem in txBegin
3e94d0d378d2 FS: JFS: Fix null-ptr-deref Read in txBegin
13ae3f2fd2be MIPS: dec: prom: Address -Warray-bounds warning
39f6292d7595 fs: jfs: Fix UBSAN: array-index-out-of-bounds in dbAllocDmapLev
985f96666989 udf: Fix uninitialized array access for some pathnames
579d814de87c quota: fix warning in dqgrab()
32c2f51fffec quota: Properly disable quotas when add_dquot_ref() fails
d363075066cc ALSA: emu10k1: roll up loops in DSP setup code for Audigy
c0d7dbc6b7a6 drm/radeon: Fix integer overflow in radeon_cs_parser_init
bca9fb7a5a86 ext4: correct inline offset when handling xattrs in inode body
87336783d054 ASoC: codecs: wcd938x: fix soundwire initialisation race
a14527c394d0 ASoC: codecs: wcd938x: fix codec initialisation race
4ca000456ea6 ASoC: codecs: wcd934x: fix resource leaks on component remove
5a34d252052b ASoC: codecs: wcd938x: fix missing mbhc init error handling
aa44782a0293 ASoC: codecs: wcd938x: fix resource leaks on component remove
90ab6446eb52 ASoC: codecs: wcd-mbhc-v2: fix resource leaks on component remove
a05a277a8d23 ASoC: codecs: wcd938x: fix missing clsh ctrl error handling
574ffa6fdf30 ASoC: fsl_sai: Disable bit clock with transmitter
925bbcdbc4d0 drm/amd/display: Keep PHY active for DP displays on DCN31
742340371b01 drm/amd/display: Disable MPC split by default on special asic
1369d0c586ad drm/client: Fix memory leak in drm_client_modeset_probe
a85e23a1ef63 drm/client: Fix memory leak in drm_client_target_cloned
82690148ff19 selftests: tc: add ConnTrack procfs kconfig
3c3941bb1eb5 can: bcm: Fix UAF in bcm_proc_show()
148453787636 regmap: Account for register length in SMBus I/O limits
6ce258d0c622 regmap: Drop initial version of maximum transfer length fixes
d3ee089a16a3 selftests: tc: add 'ct' action kconfig dep
4a888b22cc07 selftests: tc: set timeout to 15 minutes
62ee5840326b fuse: ioctl: translate ENOSYS in outarg
ab80a901f8da btrfs: zoned: fix memory leak after finding block group with super blocks
6ba7ac692a25 fuse: revalidate: don't invalidate if interrupted
c9060caab413 btrfs: fix warning when putting transaction with qgroups enabled after abort
232a104e38fe perf probe: Add test for regression introduced by switch to die_get_decl_file()
9aecfebea24f keys: Fix linking a duplicate key to a keyring's assoc_array
0b24b5e187bd ALSA: hda/realtek: Enable Mute LED on HP Laptop 15s-eq2xxx
2d04042a9fce ALSA: hda/realtek: Add quirk for Clevo NS70AU
a5de09b7f9fe ALSA: hda/realtek - remove 3k pull low procedure
(From OE-Core rev: 873c6253c029ceb303a849ced14bf5125856b368)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit df81fdbc619c5a3a76ad3bdea2bf7d761e612656)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
5c6a716301d9 Linux 5.15.122
be824fdb827d x86/cpu/amd: Add a Zenbleed fix
5398be2c48aa x86/cpu/amd: Move the errata checking functionality up
cdd3cdb682f4 Linux 5.15.121
30580f3a3301 drm/atomic: Fix potential use-after-free in nonblocking commits
ab2fa2fafb21 net/sched: sch_qfq: reintroduce lmax bound check for MTU
204d7c36e8e7 MIPS: kvm: Fix build error with KVM_MIPS_DEBUG_COP0_COUNTERS enabled
522ee1b3030f scsi: qla2xxx: Remove unused nvme_ls_waitq wait queue
0715da51391d scsi: qla2xxx: Pointer may be dereferenced
541af83572c9 scsi: qla2xxx: Correct the index of array
1ccd52b790a6 scsi: qla2xxx: Check valid rport returned by fc_bsg_to_rport()
5a52a2e14fe8 scsi: qla2xxx: Fix potential NULL pointer dereference
89250e775dcc scsi: qla2xxx: Fix buffer overrun
4406fe8a96a9 scsi: qla2xxx: Avoid fcport pointer dereference
748d8f8698a2 scsi: qla2xxx: Array index may go out of bound
079c8264ed9f scsi: qla2xxx: Wait for io return on terminate rport
25d63eb730b8 tracing/probes: Fix to update dynamic data counter if fetcharg uses it
8277bcacf165 tracing/probes: Fix not to count error code to total length
610193a23fd5 selftests: mptcp: depend on SYN_COOKIES
c8b375871eb8 selftests: mptcp: sockopt: return error if wrong mark
3b5d9b7b8759 tracing: Fix null pointer dereference in tracing_err_log_open()
391da52c8777 xtensa: ISS: fix call to split_if_spec
179feeeef62f ftrace: Fix possible warning on checking all pages used in ftrace_process_locs()
bb14a93bccc9 ring-buffer: Fix deadloop issue on reading trace_pipe
3e36cc94d6e6 net: ena: fix shift-out-of-bounds in exponential backoff
b763e6342429 samples: ftrace: Save required argument registers in sample trampolines
954792db9f61 tracing: Fix memory leak of iter->temp when reading trace_pipe
97f54b330c79 tracing/histograms: Add histograms to hist_vars if they have referenced variables
b45a33897f54 s390/decompressor: fix misaligned symbol build error
1856cf9132f6 bus: ixp4xx: fix IXP4XX_EXP_T1_MASK
7269c250dd9d Revert "8250: add support for ASIX devices with a FIFO bug"
20f7c4d51c94 soundwire: qcom: fix storing port config out-of-bounds
39a0e723d350 opp: Fix use-after-free in lazy_opp_tables after probe deferral
0ff4a97ac20f meson saradc: fix clock divider mask length
e5fdd73c883b xhci: Show ZHAOXIN xHCI root hub speed correctly
6eaedbffec55 xhci: Fix TRB prefetch issue of ZHAOXIN hosts
328b18a42a57 xhci: Fix resume issue of some ZHAOXIN hosts
d9c91ef5d8da ceph: don't let check_caps skip sending responses for revoke msgs
db8ca8d9b4df libceph: harden msgr2.1 frame segment length checks
974ac045a05a firmware: stratix10-svc: Fix a potential resource leak in svc_create_memory_pool()
becf8c69b7e7 tty: serial: imx: fix rs485 rx after tx
9dd8091959bc tty: serial: samsung_tty: Fix a memory leak in s3c24xx_serial_getclk() when iterating clk
073dbbe57437 tty: serial: samsung_tty: Fix a memory leak in s3c24xx_serial_getclk() in case of error
21e2fe510aee serial: atmel: don't enable IRQs prematurely
af4e0ce2af8a drm/ttm: Don't leak a resource on swapout move error
22c16c896cbf drm/amdgpu: avoid restore process run into dead loop.
85b9335d8e0b drm/amd/display: Correct `DMUB_FW_VERSION` macro
9ced7e65c3c4 drm/amdgpu: fix clearing mappings for BOs that are always valid in VM
0121d83ddfc8 drm/rockchip: vop: Leave vblank enabled in self-refresh
941a395e969b drm/atomic: Allow vblank-enabled + self-refresh "disable"
54163ad21e17 fs: dlm: return positive pid value for F_GETLK
866bf37b7c10 dm init: add dm-mod.waitfor to wait for asynchronously probed block devices
4f61488541bb md/raid0: add discard support for the 'original' layout
3435c5674e67 mfd: pm8008: Fix module autoloading
560c458340a9 misc: pci_endpoint_test: Re-init completion for every test
14bdee38e96c misc: pci_endpoint_test: Free IRQs before removing the device
eec34da87bc6 PCI: rockchip: Set address alignment for endpoint mode
750fd00a0a37 PCI: rockchip: Use u32 variable to access 32-bit registers
875d7a7f851a PCI: rockchip: Fix legacy IRQ generation for RK3399 PCIe endpoint core
7b0026977a51 PCI: rockchip: Add poll and timeout to wait for PHY PLLs to be locked
049d774b8b9b PCI: rockchip: Write PCI Device ID to correct register
20c62b3c1e4d PCI: rockchip: Assert PCI Configuration Enable bit after probe
e8cc74b6b446 PCI: qcom: Disable write access to read only registers for IP v2.3.3
7b2f1ddc943a PCI: Add function 1 DMA alias quirk for Marvell 88SE9235
1d24c5b10dbb PCI/PM: Avoid putting EloPOS E2/S2/H2 PCIe Ports in D3cold
f930cf3f21fd dm integrity: reduce vmalloc space footprint on 32-bit architectures
70564215ad92 hwrng: imx-rngc - fix the timeout for init and self check
de984faecddb jfs: jfs_dmap: Validate db_l2nbperpage while mounting
d04a3ff04c93 ext4: only update i_reserved_data_blocks on successful block allocation
c327b83c59ee ext4: turn quotas off if mount failed after enabling quotas
8830523440a6 ext4: fix to check return value of freeze_bdev() in ext4_shutdown()
c7514dceb7b9 ext4: fix wrong unit use in ext4_mb_new_blocks
5523851fad60 ext4: get block from bh in ext4_free_blocks for fast commit replay
ba92af119b31 ext4: fix wrong unit use in ext4_mb_clear_bb
951ee9c9bb05 ext4: Fix reusing stale buffer heads from last failed mounting
cd517f9a9d07 MIPS: KVM: Fix NULL pointer dereference
fd89522a6198 MIPS: Loongson: Fix cpu_probe_loongson() again
0e1854f87be8 erofs: fix compact 4B support for 16k block size
e4e7f67cc14e arm64: errata: Add detection for TRBE overwrite in FILL mode
affdbc8fbc7a powerpc/security: Fix Speculation_Store_Bypass reporting on Power10
9f1627d8b0a4 misc: fastrpc: Create fastrpc scalar with correct buffer count
faea67e6a508 powerpc: Fail build if using recordmcount with binutils v2.37
7eeed3ed1a6c mm/damon/ops-common: atomically test and clear young on ptes and pmds
7efc5bee2473 net: bcmgenet: Ensure MDIO unregistration has clocks enabled
626c1c291302 mtd: rawnand: meson: fix unaligned DMA buffers handling
e08295290c53 tpm: tpm_vtpm_proxy: fix a race condition in /dev/vtpmx creation
936adde9c338 pinctrl: amd: Only use special debounce behavior for GPIO 0
0bcf6b12e699 pinctrl: amd: Detect and mask spurious interrupts
dff67c64f67b pinctrl: amd: Detect internal GPIO0 debounce handling
cc5050add034 pinctrl: amd: Fix mistake in handling clearing pins at startup
982c29e0d27a f2fs: fix to avoid NULL pointer dereference f2fs_write_end_io()
333feb7ba84f fs/ntfs3: Check fields while reading
04d2c9a6cb5c nvme-pci: fix DMA direction of unmapping integrity data
c58e45fbeaa8 nvme-pci: remove nvme_queue from nvme_iod
91d3554ab1fc net/sched: sch_qfq: account for stab overhead in qfq_enqueue
8e0326cbc4d5 net/sched: sch_qfq: refactor parsing of netlink parameters
78a0900e8dbc net/sched: make psched_mtu() RTNL-less safe
31976c68be26 netdevsim: fix uninitialized data in nsim_dev_trap_fa_cookie_write()
8a128e601f36 riscv: mm: fix truncation warning on RV32
3bd945532d0d net/sched: flower: Ensure both minimum and maximum ports are specified
d26299f50f5e bpf: cpumap: Fix memory leak in cpu_map_update_elem
099abb1cd229 wifi: airo: avoid uninitialized warning in airo_get_rate()
0e9ebc17457a erofs: fix fsdax unavailability for chunk-based regular files
41ccbc2ecb63 erofs: decouple basic mount options from fs_context
ed84618f8da2 erofs: avoid infinite loop in z_erofs_do_read_page() when reading beyond EOF
e649333bcfe1 octeontx2-pf: Add additional check for MCAM rules
c62da24de388 drm/i915: Fix one wrong caching mode enum usage
567397dd8e7b riscv, bpf: Fix inconsistent JIT image generation
4e4e1f99bb47 bpf, riscv: Support riscv jit to provide bpf_line_info
420d30d36725 igc: Fix inserting of empty frame for launchtime
efc7f2593724 igc: Fix launchtime before start of cycle
d29387922b85 kernel/trace: Fix cleanup logic of enable_trace_eprobe
7aefc43277e5 platform/x86: wmi: Break possible infinite loop when parsing GUID
02081e57188b platform/x86: wmi: move variables
f3583db8980a platform/x86: wmi: use guid_t and guid_equal()
3b6fef411030 platform/x86: wmi: remove unnecessary argument
82abd1c37d3b ipv6/addrconf: fix a potential refcount underflow for idev
1d63fdf6d3ed NTB: ntb_tool: Add check for devm_kcalloc
0aa187a99935 NTB: ntb_transport: fix possible memory leak while device_register() fails
7e475cf97c47 ntb: intel: Fix error handling in intel_ntb_pci_driver_init()
3326ecef63ca NTB: amd: Fix error handling in amd_ntb_pci_driver_init()
fe1a2ed41162 ntb: idt: Fix error handling in idt_pci_driver_init()
7f2153c1ae89 udp6: fix udp6_ehashfn() typo
3fabca5d9cae icmp6: Fix null-ptr-deref of ip6_null_entry->rt6i_idev in icmp6_dev().
ea438eed94ac net: prevent skb corruption on frag list segmentation
02474292a442 net: bgmac: postpone turning IRQs off to avoid SoC hangs
1417dd787a5e ionic: remove WARN_ON to prevent panic_on_warn
aa915d12c1cc gve: Set default duplex configuration to full
5b55f2d6ef40 net/sched: cls_fw: Fix improper refcount update leads to use-after-free
1d263bbdc5c6 net: mvneta: fix txq_map in case of txq_number==1
4a4804e6ae84 bpf: Fix max stack depth check for async callbacks
1b555dff835c scsi: qla2xxx: Fix error code in qla2x00_start_sp()
6e8af127ddbd igc: Handle PPS start time programming for past time values
809ea3a3eb3e igc: set TP bit in 'supported' and 'advertising' fields of ethtool_link_ksettings
82ac62d76a00 net/mlx5e: Check for NOT_READY flag state after locking
4892e1e548b5 net/mlx5e: fix memory leak in mlx5e_ptp_open
c61303ae2ce0 net/mlx5e: fix double free in mlx5e_destroy_flow_table
f4b1f2625186 igc: Remove delay during TX ring configuration
b3540c0de848 drm/panel: simple: Add Powertip PH800480T013 drm_display_mode flags
9dbc0fa2e85a drm/bridge: ti-sn65dsi86: Fix auxiliary bus lifetime
486b2551b068 drm/panel: simple: Add connector_type for innolux_at043tn24
eb947403518e ksmbd: validate session id and tree id in the compound request
3813eee5154d ksmbd: fix out-of-bound read in smb2_write
35f450f54dca ksmbd: validate command payload size
08871ede8318 ksmbd: use ksmbd_req_buf_next() in ksmbd_smb2_check_message()
d528faa9e828 workqueue: clean up WORK_* constant types, clarify masking
aed37b12a253 net: lan743x: Don't sleep in atomic context
d9e1cfae8d8e io_uring: add reschedule point to handle_tw_list()
f8307d862ca4 io_uring: Use io_schedule* in cqring wait
ecb9443b203f block/partition: fix signedness issue for Amiga partitions
478a7a30c33c tty: serial: fsl_lpuart: add earlycon for imx8ulp platform
75308d64c050 wireguard: netlink: send staged packets when setting initial private key
8c660cfd7230 wireguard: queueing: use saner cpu selection wrapping
870dcc31c0cf netfilter: nf_tables: prevent OOB access in nft_byteorder_eval
041e2ac88cae netfilter: nf_tables: do not ignore genmask when looking up chain by id
6f03ce2f1abc netfilter: conntrack: Avoid nf_ct_helper_hash uses after free
2bd6f13734ce netfilter: nf_tables: unbind non-anonymous set if rule construction fails
30235c245700 fanotify: disallow mount/sb marks on kernel internal pseudo fs
d97481c7b273 ovl: fix null pointer dereference in ovl_get_acl_rcu()
db42d2bf4f21 fs: no need to check source
86b93cbfe104 leds: trigger: netdev: Recheck NETDEV_LED_MODE_LINKUP on dev rename
ecc8d95067e4 ARM: orion5x: fix d2net gpio initialization
1c401bb99394 ARM: dts: qcom: ipq4019: fix broken NAND controller properties override
02b5d96f7dd0 ASoC: mediatek: mt8173: Fix snd_soc_component_initialize error path
5f35f98e5609 ASoC: mediatek: mt8173: Fix irq error path
6e7f6b4b5ca0 btrfs: do not BUG_ON() on tree mod log failure at __btrfs_cow_block()
bdc8a582e1a4 btrfs: fix extent buffer leak after tree mod log failure at split_node()
7ba0da31dd4a btrfs: fix race when deleting quota root from the dirty cow roots list
bacd1c80e3b6 btrfs: reinsert BGs failed to reclaim
d1ca553f9431 btrfs: bail out reclaim process if filesystem is read-only
d8e172616fb7 btrfs: delete unused BGs while reclaiming BGs
12b6d6849898 btrfs: add handling for RAID1C23/DUP to btrfs_reduce_alloc_profile
dd15d1c5c22d fs: avoid empty option when generating legacy mount string
79b9ab357b6f jffs2: reduce stack usage in jffs2_build_xattr_subsystem()
5ca021be5211 ipvs: increase ip_vs_conn_tab_bits range for 64BIT
6db001a7ed75 fs: Lock moved directories
40f99ad8e2c2 fs: Establish locking order for unrelated directories
8fdae421c26f Revert "f2fs: fix potential corruption when moving a directory"
eca9c3d86dd0 ext4: Remove ext4 locking of moved directory
487f229efea8 shmem: use ramfs_kill_sb() for kill_sb method of ramfs-based tmpfs
17bdba70a802 autofs: use flexible array in ioctl structure
e7acd18e5ec3 integrity: Fix possible multiple allocation in integrity_inode_get()
f4e0809d3adc um: Use HOST_DIR for mrproper
f67b0e3081f2 bcache: Fix __bch_btree_node_alloc to make the failure behavior consistent
991e9c186a8a bcache: Remove unnecessary NULL point check in node allocations
cbdd5b3322f7 bcache: fixup btree_cache_wait list damage
99d0599742be mmc: sdhci: fix DMA configure compatibility issue when 64bit DMA mode is used.
c893918bf4d8 mmc: mmci: Set PROBE_PREFER_ASYNCHRONOUS
4a489c8e9cc8 mmc: core: disable TRIM on Micron MTFC4GACAJCN-1M
5b555f250069 mmc: core: disable TRIM on Kingston EMMC04G-M627
8e2983536613 io_uring: wait interruptibly for request completions on exit
e5da56c682f1 NFSD: add encoding of op_recall flag for write delegation
8a77b1d4663f i2c: qup: Add missing unwind goto in qup_i2c_probe()
5bf90e5e793a btrfs: do not BUG_ON() on tree mod log failure at balance_level()
e15eb4ec862c extcon: usbc-tusb320: Convert to i2c's .probe_new()
112c15d0974f i2c: xiic: Don't try to handle more interrupt events after error
9eaef43fef90 i2c: xiic: Defer xiic_wakeup() and __xiic_start_xfer() in xiic_process()
0fa0cd1f98c1 apparmor: fix missing error check for rhashtable_insert_fast
196f6c71905a sh: dma: Fix DMA channel offset calculation
6342e46566f6 s390/qeth: Fix vipa deletion
307623bae629 octeontx-af: fix hardware timestamp configuration
deee40944a75 net: dsa: tag_sja1105: fix MAC DA patching from meta frames
e4db7f4369eb pptp: Fix fib lookup calls.
a4284246fca2 riscv: move memblock_allow_resize() after linear mapping is ready
ae682149bc00 net/sched: act_pedit: Add size check for TCA_PEDIT_PARMS_EX
edd944b70ad2 xsk: Honor SO_BINDTODEVICE on bind
428ccde9242a tcp: annotate data races in __tcp_oow_rate_limited()
0dad52a840d6 net: bridge: keep ports without IFF_UNICAST_FLT in BR_PROMISC mode
ada440952d5e powerpc: allow PPC_EARLY_DEBUG_CPM only when SERIAL_CPM=y
f3380d895e28 ntfs: Fix panic about slab-out-of-bounds caused by ntfs_listxattr()
e425e2ba9336 octeontx2-af: Add validation before accessing cgx and lmac
eeaf264cd43f octeontx2-af: Fix mapping for NIX block from CGX connection
d58d718136f8 f2fs: fix error path handling in truncate_dnode()
c0dd447558c6 mailbox: ti-msgmgr: Fill non-message tx data fields with 0x0
217b6ea8cf7b spi: bcm-qspi: return error if neither hif_mspi nor mspi is available
2e2e5f9300a1 net: dsa: vsc73xx: fix MTU configuration
b8aedf29db12 ibmvnic: Do not reset dql stats on NON_FATAL err
6a5a705fa8ad Add MODULE_FIRMWARE() for FIRMWARE_TG357766.
a6527128feeb net/sched: act_ipt: add sanity checks on table name and hook locations
1fba2510b52f sctp: fix potential deadlock on &net->sctp.addr_wq_lock
baa76d9b6163 media: cec: i2c: ch7322: also select REGMAP
677c5707ec38 drm/i915/psr: Use hw.adjusted mode when calculating io/fast wake times
2a0acbc6b7cd rtc: st-lpc: Release some resources in st_rtc_probe() in case of error
7834580ca104 md/raid10: fix the condition to call bio_end_io_acct()
d623fd42a019 pwm: mtk_disp: Fix the disable flow of disp_pwm
db3c7f3eb85f pwm: ab8500: Fix error code in probe()
05b35ea06d26 pwm: sysfs: Do not apply state to already disabled PWMs
aa12faec2314 pwm: imx-tpm: force 'real_period' to be zero in suspend
07e229f06eba phy: tegra: xusb: check return value of devm_kzalloc()
f7454b8fd21f mfd: stmpe: Only disable the regulators if they are enabled
a9ccf140a2a0 KVM: s390/diag: fix racy access of physical cpu number in diag 9c handler
2070f3e0bc76 KVM: s390: vsie: fix the length of APCB bitmap
52f371952a71 mfd: stmfx: Nullify stmfx->vdd in case of error
b1dbc919c166 mfd: stmfx: Fix error path in stmfx_chip_init
9783c2ec8d04 nvmem: rmem: Use NVMEM_DEVID_AUTO
e6bd54f4977b test_firmware: return ENOMEM instead of ENOSPC on failed memory allocation
22c7e378b06b serial: 8250_omap: Use force_suspend and resume for system suspend
10f6656c9575 Revert "usb: common: usb-conn-gpio: Set last role to unknown before initial detection"
76ac2acb7554 mfd: intel-lpss: Add missing check for platform_get_resource
0e8b1a28351b usb: dwc3-meson-g12a: Fix an error handling path in dwc3_meson_g12a_probe()
f232c1caac3c usb: common: usb-conn-gpio: Set last role to unknown before initial detection
dfda400a4d04 usb: dwc3: qcom: Fix an error handling path in dwc3_qcom_probe()
81ecef54d8c6 usb: dwc3: qcom: Release the correct resources in dwc3_qcom_remove()
f219ea71ee0f KVM: s390: fix KVM_S390_GET_CMMA_BITS for GFNs in memslot holes
de846dec7aee media: atomisp: gmin_platform: fix out_len in gmin_get_config_dsm_var()
7ad558baf6d0 media: venus: helpers: Fix ALIGN() of non power of two
3bedb7a27353 mfd: rt5033: Drop rt5033-battery sub-device
a77616f5a3c3 coresight: Fix loss of connection info when a module is unloaded
ca9e766c8a49 kernfs: fix missing kernfs_idr_lock to remove an ID from the IDR
e7ecade51b48 serial: 8250: lock port for UART_IER access in omap8250_irq()
c1a4ad35c566 serial: 8250: lock port for stop_rx() in omap8250_irq()
c2194a361087 usb: hide unused usbfs_notify_suspend/resume functions
ecf26d6e1b54 usb: phy: phy-tahvo: fix memory leak in tahvo_usb_probe()
b10200650e1e extcon: Fix kernel doc of property capability fields to avoid warnings
44e383e22af0 extcon: Fix kernel doc of property fields to avoid warnings
a8ea7ed644cb usb: gadget: u_serial: Add null pointer check in gserial_suspend
b626cd5e4a87 usb: dwc3: qcom: Fix potential memory leak
1cee6f04105f clk: qcom: ipq6018: fix networking resets
6ad5ded420f5 clk: qcom: reset: support resetting multiple bits
40844343a885 clk: qcom: reset: Allow specifying custom reset delay
cab904bf50c4 media: i2c: Correct format propagation for st-mipid02
784a8027b8ac media: usb: siano: Fix warning due to null work_func_t function pointer
1e1af31c4c5d media: videodev2.h: Fix struct v4l2_input tuner index comment
a3727915b350 media: usb: Check az6007_read() return value
2a50c146cb3b clk: qcom: gcc-ipq6018: Use floor ops for sdcc clocks
8d762ad8006e clk: qcom: camcc-sc7180: Add parent dependency to all camera GDSCs
10e2b1c5d819 serial: 8250: omap: Fix freeing of resources on failed register
a1a5c5606048 usb: dwc2: Fix some error handling paths
fa1547b47195 usb: dwc2: platform: Improve error reporting for problems during .remove()
0a9c0fa3e91a sh: j2: Use ioremap() to translate device tree address into kernel memory
629e97f0c862 w1: fix loop in w1_fini()
cb263e9b6d76 w1: w1_therm: fix locking behavior in convert_t
fbf4ace39b2e SUNRPC: Fix UAF in svc_tcp_listen_data_ready()
92905470a125 block: increment diskseq on all media change events
8744a9eda7c1 block: change all __u32 annotations to __be32 in affs_hardblocks.h
de4d538380f6 block: add overflow checks for Amiga partition support
bc0129a644f0 block: fix signed int overflow in Amiga partition support
92a37fc52272 ALSA: jack: Fix mutex call in snd_jack_report()
2f533bcb0717 ALSA: hda/realtek: Add quirk for Clevo NPx0SNx
5bcdfe1544f2 iio: accel: fxls8962af: fixup buffer scan element type
8cc75ce657a4 iio: accel: fxls8962af: errata bug only applicable for FXLS8962AF
92cee2da5b45 iio: adc: ad7192: Fix internal/external clock selection
f88a05ef447f iio: adc: ad7192: Fix null ad7192_state pointer access
b84998a407a8 phy: tegra: xusb: Clear the driver reference in usb-phy dev
8585c6cb0381 usb: dwc3: gadget: Propagate core init errors to UDC during pullup
9cd1627ff0f1 USB: serial: option: add LARA-R6 01B PIDs
fb348857e7b6 io_uring: ensure IOPOLL locks around deferred work
4909d0ad1728 bootmem: remove the vmemmap pages from kmemleak in free_bootmem_page
902256de2b95 ACPI: utils: Fix acpi_evaluate_dsm_typed() redefinition error
b3889a5990b5 ksmbd: avoid field overflow warning
ef26b05023e7 efi/libstub: Disable PCI DMA before grabbing the EFI memory map
5c883c42bd78 kbuild: Disable GCOV for *.mod.o
3d9f6fc71de5 hwrng: st - keep clock enabled while hwrng is registered
cd5bd4b7130c dax/kmem: Pass valid argument to memory_group_register_static
2a327c8c315a dax: Introduce alloc_dev_dax_id()
9c2f993b6ca9 dax: Fix dax_mapping_release() use after free
63fb45ddc491 SMB3: Do not send lease break acknowledgment if all file handles have been closed
7f6023610b4e NFSv4.1: freeze the session table upon receiving NFS4ERR_BADSESSION
6d9f814b265c crypto: qat - unmap buffers before free for RSA
718f30e30b3e crypto: qat - unmap buffer before free for DH
3894f5880f96 crypto: qat - Use helper to set reqsize
30682e121475 crypto: kpp - Add helper to set reqsize
41bd35a16196 crypto: qat - use reference to structure in dma_map_single()
a3fcd2d23df9 crypto: qat - replace get_current_node() with numa_node_id()
9560559cba40 crypto: qat - honor CRYPTO_TFM_REQ_MAY_SLEEP flag
f6ee18555b40 ARC: define ASM_NL and __ALIGN(_STR) outside #ifdef __ASSEMBLY__ guard
5e0424cd8a44 modpost: fix off by one in is_executable_section()
7c0c62e5574f crypto: marvell/cesa - Fix type mismatch warning
6bfdced5b6be modpost: fix section mismatch message for R_ARM_{PC24,CALL,JUMP24}
cd7806eec34f modpost: fix section mismatch message for R_ARM_ABS32
7543ffe03af6 crypto: nx - fix build warnings when DEBUG_FS is not enabled
b030d239256c modpost: remove broken calculation of exception_table_entry size
c76d991b6f01 hwrng: virtio - Fix race on data_avail and actual data
64410e7b0306 hwrng: virtio - always add a pending request
9a9ef9652941 hwrng: virtio - don't waste entropy
f5634d21541e hwrng: virtio - don't wait on cleanup
91806246e4e9 hwrng: virtio - add an internal buffer
36874844f7b5 powerpc/mm/dax: Fix the condition when checking if altmap vmemap can cross-boundary
271c25008a08 powerpc/book3s64/mm: Fix DirectMap stats in /proc/meminfo
fafeeb398df1 riscv: uprobes: Restore thread.bad_cause
3786416e1fa2 powerpc: update ppc_save_regs to save current r1 in pt_regs
b08d9a11df37 powerpc: simplify ppc_save_regs
d3a0d96c16e5 powerpc/powernv/sriov: perform null check on iov before dereferencing iov
0a95dd17a73b pinctrl: at91-pio4: check return value of devm_kasprintf()
50aa3e6abbb2 pinctrl: microchip-sgpio: check return value of devm_kasprintf()
f7d92313002b powerpc/64s: Fix VAS mm use after free
5e79521da11f perf dwarf-aux: Fix off-by-one in die_get_varname()
ac6c849428fb perf script: Fix allocation of evsel->priv related to per-event dump files
939bf462a125 powerpc/signal32: Force inlining of __unsafe_save_user_regs() and save_tm_user_regs_unsafe()
7d25fc45c42c powerpc/interrupt: Don't read MSR from interrupt_exit_kernel_prepare()
d4f3531cd2c3 kcsan: Don't expect 64 bits atomic builtins from 32 bits architectures
196f18dd7f0e pinctrl: cherryview: Return correct value if pin in push-pull mode
c92365c3f390 perf bench: Add missing setlocale() call to allow usage of %'d style formatting
e456d9b2dd23 perf bench: Use unbuffered output when pipe/tee'ing to a file
c02b496d9294 PCI: Add pci_clear_master() stub for non-CONFIG_PCI
d1bfe6ca7328 PCI: ftpci100: Release the clock resources
7fe2876aac63 PCI: pciehp: Cancel bringup sequence if card is not present
dfbf41e4fc16 scsi: 3w-xxxx: Add error handling for initialization failure in tw_probe()
9856c0de4905 PCI/ASPM: Disable ASPM on MFD function removal to avoid use-after-free
6053df4da4fc pinctrl: bcm2835: Handle gpiochip_add_pin_range() errors
b1de5105d29b scsi: qedf: Fix NULL dereference in error handling
48e6b7602e9b PCI: vmd: Reset VMD config register between soft reboots
34c701b52d04 PCI: cadence: Fix Gen2 Link Retraining process
a326cf0107b1 clk: Fix memory leak in devm_clk_notifier_register()
a0e7e33b8c2d ASoC: imx-audmix: check return value of devm_kasprintf()
62f29ca45f83 ovl: update of dentry revalidate flags after copy up
a089ec635ae9 drivers: meson: secure-pwrc: always enable DMA domain
8ca6b2add2c0 clk: ti: clkctrl: check return value of kasprintf()
b700e5d4feb0 clk: keystone: sci-clk: check return value of kasprintf()
06759faca0ef clk: si5341: free unused memory on probe failure
34b11a9a7d39 clk: si5341: check return value of {devm_}kasprintf()
4ade98acef5a clk: si5341: return error if one synth clock registration fails
9875046f147a clk: cdce925: check return value of kasprintf()
d8832e85a1ae clk: vc5: check memory returned by kasprintf()
f180408f164c drm/msm/dpu: correct MERGE_3D length
e45377cfe1db arm64: dts: mediatek: mt8192: Fix CPUs capacity-dmips-mhz
30111c478b97 arm64: dts: mediatek: Add cpufreq nodes for MT8192
3c3f3d35f5e0 drm/msm/dp: Free resources after unregistering them
ec3b55b2c91d drm/msm/dpu: do not enable color-management if DSPPs are not available
300e26e3e648 ALSA: ac97: Fix possible NULL dereference in snd_ac97_mixer
fd1c117bb5d7 clk: tegra: tegra124-emc: Fix potential memory leak
2f276dd9c0f8 clk: clocking-wizard: Fix Oops in clk_wzrd_register_divider()
141d87977b81 arm64: dts: qcom: sm8250-edo: Panel framebuffer is 2.5k instead of 4k
bcea444ab4c0 clk: imx: clk-imx8mp: improve error handling in imx8mp_clocks_probe()
50b5ddde8fad clk: imx: clk-imx8mn: fix memory leak in imx8mn_clocks_probe
1fb12e7716e7 RDMA/bnxt_re: Avoid calling wake_up threads from spin_lock context
79226176cdd1 RDMA/bnxt_re: wraparound mbox producer index
bf35c202a3f0 drm/msm/a5xx: really check for A510 in a5xx_gpu_init
4300a47e4017 amdgpu: validate offset_in_bo of drm_amdgpu_gem_va
9b8087950b4c drm/radeon: fix possible division-by-zero errors
b979dc54b6c7 drm/amd/display: Fix artifacting on eDP panels when engaging freesync video mode
52c2b295e377 drm/amdkfd: Fix potential deallocation of previously deallocated memory.
95afd2c7c7d2 ARM: dts: BCM5301X: fix duplex-full => full-duplex
838534e86cbc hwmon: (pmbus/adm1275) Fix problems with temperature monitoring on ADM1272
31c90fa8416f hwmon: (adm1275) Allow setting sample averaging
3ff1062bd09b hwmon: (gsc-hwmon) fix fan pwm temperature scaling
535eafe7158b ARM: dts: stm32: fix i2s endpoint format property for stm32mp15xx-dkx
8909898d0b6c ARM: dts: stm32: Fix audio routing on STM32MP15xx DHCOM PDK2
555ddd671cf3 arm64: dts: ti: k3-j7200: Fix physical address of pin
716efd08985e fbdev: omapfb: lcd_mipid: Fix an error handling path in mipid_spi_probe()
95cb88a85361 arm64: dts: renesas: ulcb-kf: Remove flow control for SCIF1
06c6fdaa111a ARM: dts: iwg20d-q7-common: Fix backlight pwm specifier
8ac3083a26d3 RDMA/hns: Fix hns_roce_table_get return value
8d158b32cba6 IB/hfi1: Fix wrong mmu_node used for user SDMA packet after invalidate
b2ffd8212ef4 IB/hfi1: Use bitmap_zalloc() when applicable
192ab380657e RDMA/irdma: avoid fortify-string warning in irdma_clr_wqes
f5ca4d358b9a soc/fsl/qe: fix usb.c build errors
9dcc95e3fc51 ARM: dts: meson8: correct uart_B and uart_C clock references
1b4d08bdc055 ASoC: es8316: Do not set rate constraints for unsupported MCLKs
b324de100d3c ASoC: es8316: Increment max value for ALC Capture Target Volume control
38d04765ad93 memory: brcmstb_dpfe: fix testing array offset after use
17b723acee4e ARM: dts: stm32: Shorten the AV96 HDMI sound card name
9c14802f14db arm64: dts: mediatek: mt8183: Add mediatek,broken-save-restore-fw to kukui
8f08ff836c28 arm64: dts: qcom: apq8096: fix fixed regulator name property
2e8c8fd792a0 ARM: omap2: fix missing tick_broadcast() prototype
016aeb9a7604 ARM: ep93xx: fix missing-prototype warnings
314850a4d0c6 drm/panel: simple: fix active size for Ampire AM-480272H3TMQW-T01H
04f16697d351 arm64: dts: qcom: apq8016-sbc: Fix 1.8V power rail on LS expansion
7ce11e909828 arm64: dts: qcom: apq8016-sbc: Fix regulator constraints
8d139a395dbe arm64: dts: qcom: Drop unneeded extra device-specific includes
078578f608ba arm64: dts: qcom: apq8016-sbc: fix mpps state names
25d624af5a86 arm64: dts: qcom: apq8016-sbc: Clarify firmware-names
d7d784424aa0 arm64: dts: qcom: apq8016-sbc: Update modem and WiFi firmware path
6a843066e0ec arm64: dts: qcom: db820c: Move blsp1_uart2 pin states to msm8996.dtsi
23f7e4bf8905 arm64: dts: qcom: sdm845: correct camss unit address
dea5289b05f2 arm64: dts: qcom: sdm630: correct camss unit address
b12e9fb2819a arm64: dts: qcom: msm8996: correct camss unit address
5a8bbab2b14b arm64: dts: qcom: msm8994: correct SPMI unit address
46474b10dcd7 arm64: dts: qcom: msm8916: correct camss unit address
b4ed5be2ea31 ARM: dts: gta04: Move model property out of pinctrl node
70b8eeb7c67e drm/msm/dpu: Set DPU_DATA_HCTL_EN for in INTF_SC7180_MASK
2422edc2256c drm/msm/disp/dpu: get timing engine status from intf status register
adac5cf6092e drm/msm/dsi: don't allow enabling 14nm VCO with unprogrammed rate
6882389691e1 RDMA/bnxt_re: Fix to remove an unnecessary log
b41dd1d896d1 RDMA/bnxt_re: Remove a redundant check inside bnxt_re_update_gid
9ccca79eb353 RDMA/bnxt_re: Use unique names while registering interrupts
ced019c1f9ea RDMA/bnxt_re: Fix to remove unnecessary return labels
adc129e89497 RDMA/bnxt_re: Disable/kill tasklet only if it is enabled
f95ff838ac39 clk: imx: scu: use _safe list iterator to avoid a use after free
f564dd710971 arm64: dts: microchip: sparx5: do not use PSCI on reference boards
3752e6a98e10 bus: ti-sysc: Fix dispc quirk masking bool variables
6d07673027f4 ARM: dts: stm32: Move ethernet MAC EEPROM from SoM to carrier boards
a14e6f9392dc drm/panel: sharp-ls043t1le01: adjust mode settings
6b5a02a57265 drm: sun4i_tcon: use devm_clk_get_enabled in `sun4i_tcon_init_clocks`
ec43cfdcbd36 Input: adxl34x - do not hardcode interrupt trigger type
fd6cdc56ee28 ARM: dts: meson8b: correct uart_B and uart_C clock references
5899bc4058e8 ARM: dts: BCM5301X: Drop "clock-names" from the SPI node
ba51c4072f9a drm/vram-helper: fix function names in vram helper doc
019f013e8b92 drm/bridge: tc358768: fix THS_TRAILCNT computation
ed8bfa046153 drm/bridge: tc358768: fix TXTAGOCNT computation
cec2271095d2 drm/bridge: tc358768: fix THS_ZEROCNT computation
47b8546301a9 drm/bridge: tc358768: fix TCLK_TRAILCNT computation
a07e6484f915 drm/bridge: tc358768: Add atomic_get_input_bus_fmts() implementation
34b805ab386c drm/bridge: tc358768: fix TCLK_ZEROCNT computation
9e0668ecef6e drm/bridge: tc358768: fix PLL target frequency
81bb5e859f2e drm/bridge: tc358768: fix PLL parameters computation
6451b3274fb3 drm/bridge: tc358768: always enable HS video mode
26a0ba5d1654 Input: drv260x - sleep between polling GO bit
efb61a718540 drm/amd/display: Explicitly specify update type per plane info change
53e0a5ba9deb radeon: avoid double free in ci_dpm_init()
6173df9026d0 drm/amd/display: Add logging for display MALL refresh setting
a4b0164fc18b netlink: Add __sock_i_ino() for __netlink_diag_dump().
04daf3f67497 ipvlan: Fix return value of ipvlan_queue_xmit()
eb720f669b6d netfilter: nf_conntrack_sip: fix the ct_sip_parse_numerical_param() return value.
c052797ac368 netfilter: conntrack: dccp: copy entire header to stack buffer, not just basic one
5848ad42507d lib/ts_bm: reset initial match offset for every block of text
fc8429f8d868 net: nfc: Fix use-after-free caused by nfc_llcp_find_local
60ec0058c72f nfc: llcp: simplify llcp_sock_connect() error paths
91f4ef204e73 sfc: fix crash when reading stats while NIC is resetting
9ced40bf849e net: axienet: Move reset before 64-bit DMA detection
ebd6d2077a08 gtp: Fix use-after-free in __gtp_encap_destroy().
4f22f55dc80d selftests: rtnetlink: remove netdevsim device after ipsec offload test
029d892b05fc bonding: do not assume skb mac_header is set
619384319b13 netlink: do not hard code device address lenth in fdb dumps
a641240b7e07 netlink: fix potential deadlock in netlink_set_err()
d4aee9512ae0 net: stmmac: fix double serdes powerdown
cfe147bdd094 igc: Fix race condition in PTP tx code
c729f590fe41 can: length: fix bitstuffing count
4bc47970179a bpf: Fix bpf socket lookup from tc/xdp to respect socket VRF bindings
a254e029b742 bpf: Call __bpf_sk_lookup()/__bpf_skc_lookup() directly via TC hookpoint
9eb2651c67b5 bpf: Factor out socket lookup functions for the TC hookpoint.
a66cce0339a6 bpf: Omit superfluous address family check in __bpf_skc_lookup
7e3d771f85c3 wifi: ath9k: convert msecs to jiffies where needed
248fc11128f9 wifi: iwlwifi: mvm: indicate HW decrypt for beacon protection
365cd15e8fcb wifi: cfg80211: rewrite merging of inherited elements
3b9de981fe7f wifi: iwlwifi: pcie: fix NULL pointer dereference in iwl_pcie_irq_rx_msix_handler()
d0f665eee9c3 iwlwifi: don't dump_stack() when we get an unexpected interrupt
a6db476ff38c wifi: iwlwifi: pull from TXQs with softirqs disabled
a572c6852b51 rtnetlink: extend RTEXT_FILTER_SKIP_STATS to IFLA_VF_INFO
48c2d1455a6a wifi: ath9k: Fix possible stall on ath9k_txq_list_has_key()
8c561a59c6cd memstick r592: make memstick_debug_get_tpc_name() static
79c0fbf8f359 kexec: fix a memory leak in crash_shrink_memory()
ed8d827f4313 watchdog/perf: more properly prevent false positives with turbo modes
c29d8d1f56c3 watchdog/perf: define dummy watchdog_update_hrtimer_threshold() on correct config
15b37d2b4a02 wifi: rsi: Do not set MMC_PM_KEEP_POWER in shutdown
4391fa180856 wifi: rsi: Do not configure WoWlan in shutdown hook if not enabled
ac4bf9426af9 selftests/bpf: Fix check_mtu using wrong variable type
95b4b940f0fb wifi: ath9k: don't allow to overwrite ENDPOINT0 attributes
ef24fe436bab wifi: ray_cs: Fix an error handling path in ray_probe()
0700d878b0d2 wifi: ray_cs: Drop useless status variable in parse_addr()
d696cbbe43db wifi: ray_cs: Utilize strnlen() in parse_addr()
93890d057317 wifi: wl3501_cs: Fix an error handling path in wl3501_probe()
eaffd568a248 wl3501_cs: use eth_hw_addr_set()
c6143548e634 wifi: atmel: Fix an error handling path in atmel_probe()
5a0a312d3490 wifi: orinoco: Fix an error handling path in orinoco_cs_probe()
f5bb5474f40d wifi: orinoco: Fix an error handling path in spectrum_cs_probe()
ec856ca3b0ac regulator: core: Streamline debugfs operations
fc2f8b9054eb regulator: core: Fix more error checking for debugfs_create_dir()
534508689e89 bpftool: JIT limited misreported as negative value on aarch64
e7e0b6e066f0 nfc: llcp: fix possible use of uninitialized variable in nfc_llcp_send_connect()
edeb029dd9ad spi: dw: Round of n_bytes to power of 2
ac6158b5c4db bpf: Don't EFAULT for {g,s}setsockopt with wrong optlen
71754ee427d7 libbpf: fix offsetof() and container_of() to work with CO-RE
3e7ee33b95e0 sctp: add bpf_bypass_getsockopt proto callback
a32a89bb0459 wifi: mwifiex: Fix the size of a memory allocation in mwifiex_ret_802_11_scan()
a55f88dd156f wifi: wilc1000: fix for absent RSN capabilities WFA testcase
e215a8a4283a spi: spi-geni-qcom: Correct CS_TOGGLE bit in SPI_TRANS_CFG
e92f61e0701e samples/bpf: Fix buffer overflow in tcp_basertt
c77eb01a6e41 libbpf: btf_dump_type_data_check_overflow needs to consider BTF_MEMBER_BITFIELD_SIZE
ad5425e70789 wifi: ath9k: avoid referencing uninit memory in ath9k_wmi_ctrl_rx
06da826e3b7d wifi: ath9k: fix AR9003 mac hardware hang check register offset calculation
79305655961d igc: Enable and fix RX hash usage by netstack
38a9d7dac3ad pstore/ram: Add check for kstrdup
745cec2bd3b3 ima: Fix build warnings
41da2c318cf1 evm: Fix build warnings
757b06fb026c evm: Complete description of evm_inode_setattr()
85872ffac4d8 locking/atomic: arm: fix sync ops
cf78062aa988 x86/mm: Fix __swp_entry_to_pte() for Xen PV guests
bd4c759d31ca perf/ibs: Fix interface via core pmu events
87666a7d3e40 kselftest: vDSO: Fix accumulation of uninitialized ret when CLOCK_REALTIME is undefined
f766d45ab294 rcu/rcuscale: Stop kfree_scale_thread thread(s) after unloading rcuscale
bfe210f62518 rcu/rcuscale: Move rcu_scale_*() after kfree_scale_cleanup()
751cb9511764 rcuscale: Move shutdown from wait_event() to wait_event_idle()
a6d33ea30575 rcuscale: Always log error message
e610497ba1ce rcutorture: Correct name of use_softirq module parameter
c756e8a227c4 thermal/drivers/sun8i: Fix some error handling paths in sun8i_ths_probe()
e2b32b0c5f0a cpufreq: intel_pstate: Fix energy_performance_preference for passive
b51194170f9a ARM: 9303/1: kprobes: avoid missing-declaration warnings
4864c82cb8b5 powercap: RAPL: Fix CONFIG_IOSF_MBI dependency
2c06e0e0102f perf/arm-cmn: Fix DTC reset
3c4f5aee3795 PM: domains: fix integer overflow issues in genpd_parse_state()
289e2054eeb6 clocksource/drivers/cadence-ttc: Fix memory leak in ttc_timer_probe
5017132f2f92 tracing/timer: Add missing hrtimer modes to decode_hrtimer_mode().
0670c4c567b2 posix-timers: Prevent RT livelock in itimer_delete()
f222873711a5 svcrdma: Prevent page release when nothing was received
6689782746a3 irqchip/jcore-aic: Fix missing allocation of IRQ descriptors
e6b7362290ba md/raid10: fix io loss while replacement replace rdev
f4368a462b1f md/raid10: fix null-ptr-deref of mreplace in raid10_sync_request
3c76920e547d md/raid10: fix wrong setting of max_corr_read_errors
d3bf54a69bce md/raid10: fix overflow of md/safe_mode_delay
a134dd582c0d md/raid10: check slab-out-of-bounds in md_bitmap_get_counter
eb120c0aff5c blk-iocost: use spin_lock_irqsave in adjust_inuse_and_calc_cost
1bc29ba9598c x86/resctrl: Only show tasks' pid in current pid namespace
d9c194281bc8 fs: pipe: reveal missing function protoypes
25aa2ad37c21 netfilter: nf_tables: drop map element references from preparation phase
(From OE-Core rev: b135d73eccf54fc6afa07c2d8f4ba25c234469e2)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 25bd49d03af0e20808c26744e35fe7f416981017)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
For newest Qualcomm platforms the firmware for the Adreno GPU consists
of two parts: platform-independent SQE/GMU/GPMU/PFP/PM4 and
platform-specific ZAP shader, which is used during the boot process. As
the platform-independent parts can be shared between different
platforms, split the platform-specific part to the separate package.
(From OE-Core rev: e21f3d57736993c5c4bda67428afca7503a3dece)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bf00a042d2fa2eb4b20d8c5982926758821bf990)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
RTL8822 is a serie of wireless modules that need firmwares to function correctly.
The linux firmware recipe does not have a package of these firmwares, and this commit add them.
(From OE-Core rev: 38b468be11bfb15cca68694ed35dc9b2874da11f)
Signed-off-by: BELOUARGA Mohamed <m.belouarga@technologyandstrategy.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 6459959beeb91c0b694f5f17b6587a12c6dcb087)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Latest linux-firmware archive inclues firmware for the Dragonboard 410c
device (Qualcomm apq8016 SBC). Follow the rest of linux-firmware-qcom-*
packages as a template and create packages for the new firmware files.
(From OE-Core rev: fb66b90c7ea5f315b75624d95d4d5a01ffe09a30)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 380216e8d3b63d563ebfb10445fc6eb5e77eb9f2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit ffd5eeb866254a958846c7099d1d46e553beed56)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
WHENCE checksum changed because of updated version lists and removal of
information for the RTL8188EU driver.
(From OE-Core rev: dee368268941015384f206656e180de4791a4f10)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 986f8ca9d4c2c22d368f69e65b2ab76d661edca0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
upgrade also include fix for CVE-2023-2829.
License-Update: removed trailing whitespace from COPYRIGHT
also remove obsolete configuration option epoll and devpoll:
6b6076c882
(From OE-Core rev: f240a373266bd778f380a0611ccf0183d24f76b6)
Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This release only contains bugfixes.
Highlighted bugfixes in 1.20.7:
Security fixes for flacparse, dvdspu, and subparse, and the RealMedia demuxer
h265parse: Fix framerate handling
filesink: Fix buffered mode writing of buffer lists and buffers with multiple memories
asfmux, rtpbin_buffer_list test: fix possible unaligned write/read on 32-bit ARM
ptp clock: Work around bug in ptpd in default configuration
qtdemux: fix reverse playback regression with edit lists
rtspsrc: various control path handling server compatibility improvements
avviddec: fix potential deadlock on seeking with FFmpeg 6.x
cerbero: Fix pango crash on 32bit Windows; move libass into non-GPL codecs
Miscellaneous bug fixes, memory leak fixes, and other stability and reliability improvements
https://nvd.nist.gov/vuln/detail/CVE-2023-37327https://nvd.nist.gov/vuln/detail/CVE-2023-37328https://nvd.nist.gov/vuln/detail/CVE-2023-37329https://gstreamer.freedesktop.org/releases/1.20/#1.20.7
(From OE-Core rev: c6b7492406540aca60dfd8c9913c7ac14fcc750f)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
upgrade include fix for CVE-2023-38633
(From OE-Core rev: 2ac80e25d85a4dba62813e28525a00f13922fd4b)
Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
GVariant offset table entry size is not checked in is_normal()
g_variant_byteswap() can take a long time with some non-normal inputs
(From OE-Core rev: 5ed552ce97e22b449c1036f6c58944ab26db2f0d)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
GVariant deserialisation does not match spec for non-normal data
(From OE-Core rev: 2c1476bed55dc16a84b0fe163a4abb13e3ac5734)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Requirements list seems to be outdated. It is not possible to follow
instructions for Raw Mode as not all of the native tools are available.
All wic dependencies are gathered under wic-tools package. Some commands
in the instruction already use wic-tools native sysroot, but this
dependency is not specified in the requirements.
Update the command for building native tools to use wic-tools instead
of the seperate packages.
(From yocto-docs rev: 7c03bcb3031c89b5183e5b4f3f0703bc91a014e2)
Signed-off-by: Daniel Semkowicz <dse@thaumatec.com>
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When SRCREV was updated, only libxcrypt-compat was renamed to match,
but not libxcrypt proper.
(From OE-Core rev: f20a06149cb61264662d1eaf6ea02aefabc0a18b)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 98c89359532778a894f50ddea1cc6ab922d6e562)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
openSUSE RPMs are compressing the RPM payload using zstd, that
correspond to the magic ID 0x28, 0xb5, 0x2f.
This patch update the script to the last version from the rpm project,
and add support to this compression format, and extract the cpio payload
using the "unzstd" binary.
(From OE-Core rev: 9c0d66e693aa7ab8b3f2a3c68764e4ab6159c085)
Signed-off-by: Alberto Planas <aplanas@suse.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3aba44a75dd565b192f7328f2a0150a313de3cc1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
bzip2 is in HOSTTOOLS already and used in few other places already.
This fixes bin_package class for RPM packages without adding bunzip2 to
HOSTTOOLS.
(From OE-Core rev: ed4e4290a73b3fa0df9530a511f992e236e8ae9f)
Signed-off-by: Pavel Zhukov <pavel@zhukoff.net>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit eb3ec7469fff857c819332371ad1d586f43c79c3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The following linux-firmware commit moved the mt7601u firmware blob
into a mediatek/ subdirectory, update the path accordingly.
8451c2b1 ("mt76xx: Move the old Mediatek WiFi firmware to mediatek")
(From OE-Core rev: 6fa5c4967a7e70192e9233c92534f27ec3e394c8)
Fixes: 64603f602d ("linux-firmware: upgrade 20230404 -> 20230515")
(From OE-Core rev: 8f041ef841e03996768fb7e0a96a4a4d066eb796)
Signed-off-by: Marek Vasut <marex@denx.de>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
3602dbc57b55 Linux 5.10.188
edce5fba78cc ftrace: Fix possible warning on checking all pages used in ftrace_process_locs()
115b19f89353 ftrace: Store the order of pages allocated in ftrace_page
1a1e793e021d tracing: Fix memory leak of iter->temp when reading trace_pipe
43e786aa51b8 tracing/histograms: Return an error if we fail to add histogram to hist_vars list
e3da59f42820 net: phy: prevent stale pointer dereference in phy_init()
e0ac63e194f4 tcp: annotate data-races around fastopenq.max_qlen
d01afbfc2f7d tcp: annotate data-races around icsk->icsk_user_timeout
3cf0a0f11d39 tcp: annotate data-races around tp->notsent_lowat
9c786d5faf3a tcp: annotate data-races around rskq_defer_accept
f891375eba6e tcp: annotate data-races around tp->linger2
9168bd8f54c5 tcp: annotate data-races around icsk->icsk_syn_retries
7b0084918c5f tcp: Fix data-races around sysctl_tcp_syn(ack)?_retries.
cf6c06ac7487 net: Introduce net.ipv4.tcp_migrate_req.
a5c30a518764 tcp: annotate data-races around tp->keepalive_probes
93715448f116 tcp: annotate data-races around tp->keepalive_intvl
7b52a78a91fd tcp: annotate data-races around tp->keepalive_time
1d4f2c4be136 tcp: annotate data-races around tp->tcp_tx_delay
30e5460d69e6 netfilter: nf_tables: skip bound chain on rule flush
94c10c0fa51b netfilter: nf_tables: skip bound chain in netns release path
3a91099ecd59 netfilter: nft_set_pipapo: fix improper element removal
9c2df17e3cfc netfilter: nf_tables: can't schedule in nft_chain_validate
533193a23914 netfilter: nf_tables: fix spurious set element insertion failure
a6f1988780a7 llc: Don't drop packet from non-root netns.
49e435ca02c7 fbdev: au1200fb: Fix missing IRQ check in au1200fb_drv_probe
bc9d4d432f78 Revert "tcp: avoid the lookup process failing to get sk in ehash table"
d06fc7b39199 net:ipv6: check return value of pskb_trim()
1a478ad1297a net: ipv4: Use kfree_sensitive instead of kfree
937105d2b0bf tcp: annotate data-races around tcp_rsk(req)->ts_recent
41b00238699a octeontx2-pf: Dont allocate BPIDs for LBK interfaces
5bc78ba88905 security: keys: Modify mismatched function name
b92defe4e8ee iavf: Fix out-of-bounds when setting channels on remove
a4635f190f33 iavf: Fix use-after-free in free_netdev
b37bc3b07eab bridge: Add extack warning when enabling STP in netns.
f6d311b95394 net: ethernet: ti: cpsw_ale: Fix cpsw_ale_get_field()/cpsw_ale_set_field()
54aa4c03861e pinctrl: amd: Use amd_pinconf_set() for all config options
7041605e8594 fbdev: imxfb: warn about invalid left/right margin
6e88cc510f27 spi: bcm63xx: fix max prepend length
994c2ceb70ea igb: Fix igb_down hung on surprise removal
a956c3af70fa wifi: iwlwifi: mvm: avoid baid size integer overflow
85cf0d5f45cb wifi: wext-core: Fix -Wstringop-overflow warning in ioctl_standard_iw_point()
2864cc9a1fd1 devlink: report devlink_port_type_warn source device
b6d9a4062c94 bpf: Address KCSAN report on bpf_lru_list
532f8bac6041 wifi: ath11k: fix registration of 6Ghz-only phy without the full channel range
6b0c79aa3307 sched/fair: Don't balance task to its current running CPU
32020fc2a837 arm64: mm: fix VA-range sanity check
c71d6934c6ac arm64: set __exception_irq_entry with __irq_entry as a default
71e3f2354072 ACPI: video: Add backlight=native DMI quirk for Lenovo ThinkPad X131e (3371 AMD version)
776a72f612a8 ACPI: video: Add backlight=native DMI quirk for Apple iMac11,3
e090f70ae4cc ACPI: button: Add lid disable DMI quirk for Nextbook Ares 8A
ae51eb90bcca btrfs: add xxhash to fast checksum implementations
322377cc909d posix-timers: Ensure timer ID search-loop limit is valid
634daf6b2c81 md/raid10: prevent soft lockup while flush writes
b02939413e5c md: fix data corruption for raid456 when reshape restart while grow up
4a2c62c8d67c nbd: Add the maximum limit of allocated index in nbd_dev_add
5f84a34b646f debugobjects: Recheck debug_objects_enabled before reporting
5d5aa5b64887 ext4: correct inline offset when handling xattrs in inode body
48aa53937584 ASoC: fsl_sai: Disable bit clock with transmitter
5f2a12f64347 drm/client: Fix memory leak in drm_client_modeset_probe
105275879a80 drm/client: Fix memory leak in drm_client_target_cloned
cf254b4f68e4 can: bcm: Fix UAF in bcm_proc_show()
3e412b6e2b57 regmap: Account for register length in SMBus I/O limits
8b3dd8d23fa0 regmap: Drop initial version of maximum transfer length fixes
4935761daa33 selftests: tc: add 'ct' action kconfig dep
1ab5aa1846a5 selftests: tc: set timeout to 15 minutes
dad97c205af2 fuse: revalidate: don't invalidate if interrupted
d2c667cc1831 btrfs: fix warning when putting transaction with qgroups enabled after abort
4410f4a938ae perf probe: Add test for regression introduced by switch to die_get_decl_file()
0a6b0ca58685 keys: Fix linking a duplicate key to a keyring's assoc_array
a26208e184ae ALSA: hda/realtek: Enable Mute LED on HP Laptop 15s-eq2xxx
ce2a7e7b504c ALSA: hda/realtek - remove 3k pull low procedure
f09c0ac142c5 drm/atomic: Fix potential use-after-free in nonblocking commits
9a085fa9b7d6 RDMA/cma: Ensure rdma_addr_cancel() happens before issuing more requests
73e72a5380a2 net/sched: sch_qfq: reintroduce lmax bound check for MTU
0b1ce92fabdb scsi: qla2xxx: Remove unused nvme_ls_waitq wait queue
5addd62586a9 scsi: qla2xxx: Pointer may be dereferenced
e8de73238d5d scsi: qla2xxx: Correct the index of array
921d68446255 scsi: qla2xxx: Check valid rport returned by fc_bsg_to_rport()
2bea9c1c9831 scsi: qla2xxx: Fix potential NULL pointer dereference
eecb8a491c82 scsi: qla2xxx: Fix buffer overrun
bcd773969a87 scsi: qla2xxx: Array index may go out of bound
a9fe97fb7b4e scsi: qla2xxx: Wait for io return on terminate rport
6ea2a408d3e3 tracing/probes: Fix not to count error code to total length
7060e5aac6dc tracing: Fix null pointer dereference in tracing_err_log_open()
81fb8a58d4ec xtensa: ISS: fix call to split_if_spec
5e68f1f3a20f ring-buffer: Fix deadloop issue on reading trace_pipe
1e760b2d18bf net: ena: fix shift-out-of-bounds in exponential backoff
1f2a8f083575 samples: ftrace: Save required argument registers in sample trampolines
1576f0df7b4d tracing/histograms: Add histograms to hist_vars if they have referenced variables
07edd294b16a s390/decompressor: fix misaligned symbol build error
5f4a1111ad04 Revert "8250: add support for ASIX devices with a FIFO bug"
7f2f0e6ec561 meson saradc: fix clock divider mask length
790e4e82c57d xhci: Show ZHAOXIN xHCI root hub speed correctly
c52e04c58ded xhci: Fix TRB prefetch issue of ZHAOXIN hosts
b56a07c2a550 xhci: Fix resume issue of some ZHAOXIN hosts
8e807eadf0b9 ceph: don't let check_caps skip sending responses for revoke msgs
c04ed61ebf01 firmware: stratix10-svc: Fix a potential resource leak in svc_create_memory_pool()
1962717c4649 tty: serial: samsung_tty: Fix a memory leak in s3c24xx_serial_getclk() when iterating clk
a49e5a05121c tty: serial: samsung_tty: Fix a memory leak in s3c24xx_serial_getclk() in case of error
08673739ed85 serial: atmel: don't enable IRQs prematurely
4016d36fec63 drm/amd/display: Correct `DMUB_FW_VERSION` macro
d89bd2ecd39b drm/rockchip: vop: Leave vblank enabled in self-refresh
b9ec9372a47a drm/atomic: Allow vblank-enabled + self-refresh "disable"
23d5004ee7aa fs: dlm: return positive pid value for F_GETLK
5e9aff5b10c2 md/raid0: add discard support for the 'original' layout
8e3c7776405a misc: pci_endpoint_test: Re-init completion for every test
cdf9a7e2cdc7 misc: pci_endpoint_test: Free IRQs before removing the device
8c90c466e38e PCI: rockchip: Set address alignment for endpoint mode
f1986416cfb4 PCI: rockchip: Use u32 variable to access 32-bit registers
36eb13031227 PCI: rockchip: Fix legacy IRQ generation for RK3399 PCIe endpoint core
c417a4c7de1d PCI: rockchip: Add poll and timeout to wait for PHY PLLs to be locked
ddda61419af3 PCI: rockchip: Write PCI Device ID to correct register
bec3e0f7f272 PCI: rockchip: Assert PCI Configuration Enable bit after probe
48e11e7c81b9 PCI: qcom: Disable write access to read only registers for IP v2.3.3
aca71b004a66 PCI: Add function 1 DMA alias quirk for Marvell 88SE9235
d3bab5de91c6 PCI/PM: Avoid putting EloPOS E2/S2/H2 PCIe Ports in D3cold
5a89a5cc817e hwrng: imx-rngc - fix the timeout for init and self check
47b7eaae08e8 jfs: jfs_dmap: Validate db_l2nbperpage while mounting
84293af5455b ext4: only update i_reserved_data_blocks on successful block allocation
0a5d12e7107e ext4: fix wrong unit use in ext4_mb_new_blocks
514220246aa8 ext4: get block from bh in ext4_free_blocks for fast commit replay
d054422eb609 ext4: fix wrong unit use in ext4_mb_clear_bb
be99faf0c4db ext4: Fix reusing stale buffer heads from last failed mounting
8fbe951d6546 MIPS: Loongson: Fix cpu_probe_loongson() again
8c723eef989b erofs: fix compact 4B support for 16k block size
3bd4d316b1a8 misc: fastrpc: Create fastrpc scalar with correct buffer count
3d1d037f2749 powerpc: Fail build if using recordmcount with binutils v2.37
fe1ae1fb507a net: bcmgenet: Ensure MDIO unregistration has clocks enabled
21d5d3eb36bf mtd: rawnand: meson: fix unaligned DMA buffers handling
9ff7fcb3a2ed tpm: tpm_vtpm_proxy: fix a race condition in /dev/vtpmx creation
59490249c2c0 pinctrl: amd: Only use special debounce behavior for GPIO 0
4f77a87ce919 pinctrl: amd: Detect internal GPIO0 debounce handling
3674b9c056ad pinctrl: amd: Fix mistake in handling clearing pins at startup
b39ef5b52f10 f2fs: fix to avoid NULL pointer dereference f2fs_write_end_io()
f4ff37981235 nvme-pci: fix DMA direction of unmapping integrity data
8359ee85fd6d net/sched: sch_qfq: account for stab overhead in qfq_enqueue
5bef780e06d2 net/sched: sch_qfq: refactor parsing of netlink parameters
1d7ae38daac7 net/sched: make psched_mtu() RTNL-less safe
d5ca61b7642b netdevsim: fix uninitialized data in nsim_dev_trap_fa_cookie_write()
9b69cdb6e534 net/sched: flower: Ensure both minimum and maximum ports are specified
934c85b8ecd1 wifi: airo: avoid uninitialized warning in airo_get_rate()
4511499138ae erofs: avoid infinite loop in z_erofs_do_read_page() when reading beyond EOF
bbc500ff3f2c riscv, bpf: Fix inconsistent JIT image generation
a976adc3bca4 bpf, riscv: Support riscv jit to provide bpf_line_info
eb3d1d84f3d6 riscv: bpf: Avoid breaking W^X
7c616437981f riscv: bpf: Move bpf_jit_alloc_exec() and bpf_jit_free_exec() to core
83579a626169 igc: Fix inserting of empty frame for launchtime
c48e8ee81ad3 igc: Fix launchtime before start of cycle
cdf5b9af92da platform/x86: wmi: Break possible infinite loop when parsing GUID
7157ee0de522 platform/x86: wmi: move variables
4bb2bb69bd9a platform/x86: wmi: use guid_t and guid_equal()
88dfb592d2c1 platform/x86: wmi: remove unnecessary argument
2ad31ce40e81 ipv6/addrconf: fix a potential refcount underflow for idev
8271145523a5 NTB: ntb_tool: Add check for devm_kcalloc
41c6d8ff71cd NTB: ntb_transport: fix possible memory leak while device_register() fails
03cfa0653406 ntb: intel: Fix error handling in intel_ntb_pci_driver_init()
23e09f0a868f NTB: amd: Fix error handling in amd_ntb_pci_driver_init()
0bb2683b0cde ntb: idt: Fix error handling in idt_pci_driver_init()
3e8fed805cf3 udp6: fix udp6_ehashfn() typo
d30ddd7ff15d icmp6: Fix null-ptr-deref of ip6_null_entry->rt6i_idev in icmp6_dev().
bc3ab5d2ab69 net: prevent skb corruption on frag list segmentation
cddd04f34124 net: bgmac: postpone turning IRQs off to avoid SoC hangs
f8cc4fd99a32 ionic: remove WARN_ON to prevent panic_on_warn
9085429821b4 gve: Set default duplex configuration to full
80e0e8d5f543 net/sched: cls_fw: Fix improper refcount update leads to use-after-free
d341f246123e net: mvneta: fix txq_map in case of txq_number==1
c175603d84d3 scsi: qla2xxx: Fix error code in qla2x00_start_sp()
b687b7836157 igc: set TP bit in 'supported' and 'advertising' fields of ethtool_link_ksettings
30c281a77fb1 net/mlx5e: Check for NOT_READY flag state after locking
de6e6b07974c net/mlx5e: fix double free in mlx5e_destroy_flow_table
3d4bba694aed igc: Remove delay during TX ring configuration
2a587b71c532 drm/panel: simple: Add Powertip PH800480T013 drm_display_mode flags
547ab8ea86c1 drm/panel: simple: Add connector_type for innolux_at043tn24
13c353dc5c2e workqueue: clean up WORK_* constant types, clarify masking
fc359e5b45da net: lan743x: Don't sleep in atomic context
dc4a25fa7565 io_uring: add reschedule point to handle_tw_list()
297883bbcab1 io_uring: Use io_schedule* in cqring wait
bb2f7e4bfe81 block/partition: fix signedness issue for Amiga partitions
4f91de9a81bd rcu-tasks: Simplify trc_read_check_handler() atomic operations
3a64cd01cdd6 rcu-tasks: Mark ->trc_reader_special.b.need_qs data races
058f077d09ba rcu-tasks: Mark ->trc_reader_nesting data races
83be9fd7843c tty: serial: fsl_lpuart: add earlycon for imx8ulp platform
999f3b6104ed wireguard: netlink: send staged packets when setting initial private key
1b7107040596 wireguard: queueing: use saner cpu selection wrapping
ea213922249c netfilter: nf_tables: prevent OOB access in nft_byteorder_eval
4ae2e501331a netfilter: nf_tables: do not ignore genmask when looking up chain by id
8289d422f5e4 netfilter: conntrack: Avoid nf_ct_helper_hash uses after free
be6478f5cce6 netfilter: nf_tables: fix scheduling-while-atomic splat
a07e415be383 netfilter: nf_tables: unbind non-anonymous set if rule construction fails
a136b7942ad2 netfilter: nf_tables: drop map element references from preparation phase
21cf0d66ef88 netfilter: nftables: rename set element data activation/deactivation functions
237f37f7b9f0 netfilter: nf_tables: reject unbound chain set before commit phase
0205dd16edeb netfilter: nf_tables: reject unbound anonymous set before commit phase
34d09fe49f59 netfilter: nf_tables: add NFT_TRANS_PREPARE_ERROR to deal with bound set/chain
d53c295c1f43 netfilter: nf_tables: fix chain binding transaction logic
8180fc2fadd4 netfilter: nf_tables: incorrect error path handling with NFT_MSG_NEWRULE
e546e6ebb19d netfilter: nf_tables: add rescheduling points during loop detection walks
3f51f1157f67 netfilter: nf_tables: use net_generic infra for transaction data
01248dd65155 sh: pgtable-3level: Fix cast to pointer from integer of different size
87410743b548 block: add overflow checks for Amiga partition support
f0aec6c403a0 selftests/bpf: Add verifier test for PTR_TO_MEM spill
88bffb61bc03 tpm, tpm_tis: Claim locality in interrupt handler
5bf73af8b382 fanotify: disallow mount/sb marks on kernel internal pseudo fs
5cb46b80ecda fs: no need to check source
66a0647cdc56 leds: trigger: netdev: Recheck NETDEV_LED_MODE_LINKUP on dev rename
5d6fbb624576 ARM: orion5x: fix d2net gpio initialization
9b0f7940e212 ASoC: mediatek: mt8173: Fix snd_soc_component_initialize error path
1dac8584be0c ASoC: mediatek: mt8173: Fix irq error path
6819bb0b8552 btrfs: fix race when deleting quota root from the dirty cow roots list
a3fbd156bd2c btrfs: add handling for RAID1C23/DUP to btrfs_reduce_alloc_profile
59efb8671105 fs: Lock moved directories
c5b5e72df13d fs: Establish locking order for unrelated directories
4b03f503b730 Revert "f2fs: fix potential corruption when moving a directory"
2b563acd2dfa ext4: Remove ext4 locking of moved directory
5e7d18a52c88 fs: avoid empty option when generating legacy mount string
988a5d791156 jffs2: reduce stack usage in jffs2_build_xattr_subsystem()
5fada3751137 shmem: use ramfs_kill_sb() for kill_sb method of ramfs-based tmpfs
79bef379d55a autofs: use flexible array in ioctl structure
8bf91a8d4871 integrity: Fix possible multiple allocation in integrity_inode_get()
9658a03f80b2 um: Use HOST_DIR for mrproper
a4405f6ee033 bcache: Fix __bch_btree_node_alloc to make the failure behavior consistent
db9439cef0b5 bcache: Remove unnecessary NULL point check in node allocations
bcb295778afd bcache: fixup btree_cache_wait list damage
dc3287206a32 mmc: sdhci: fix DMA configure compatibility issue when 64bit DMA mode is used.
191628e2d96a mmc: mmci: Set PROBE_PREFER_ASYNCHRONOUS
02c8c2b5f680 mmc: core: disable TRIM on Micron MTFC4GACAJCN-1M
6f9708e5c110 mmc: core: disable TRIM on Kingston EMMC04G-M627
28e649dc9947 io_uring: wait interruptibly for request completions on exit
8482ac2e5a26 NFSD: add encoding of op_recall flag for write delegation
8d36cb6d1aed i2c: qup: Add missing unwind goto in qup_i2c_probe()
e41a8e461561 ALSA: jack: Fix mutex call in snd_jack_report()
e71714ad24d8 i2c: xiic: Don't try to handle more interrupt events after error
b6eefa7a27a6 i2c: xiic: Defer xiic_wakeup() and __xiic_start_xfer() in xiic_process()
023bd9dc410c apparmor: fix missing error check for rhashtable_insert_fast
d1c946552af2 sh: dma: Fix DMA channel offset calculation
37750131d2a5 s390/qeth: Fix vipa deletion
9f5548e4214d net: dsa: tag_sja1105: fix MAC DA patching from meta frames
2758fb81bbc9 pptp: Fix fib lookup calls.
0b08ff091f31 net/sched: act_pedit: Add size check for TCA_PEDIT_PARMS_EX
2434a6715f59 xsk: Honor SO_BINDTODEVICE on bind
b785ba0acc82 tcp: annotate data races in __tcp_oow_rate_limited()
73f512bedfd4 net: bridge: keep ports without IFF_UNICAST_FLT in BR_PROMISC mode
9a9d468fdcca powerpc: allow PPC_EARLY_DEBUG_CPM only when SERIAL_CPM=y
f970b05c9b76 octeontx2-af: Fix mapping for NIX block from CGX connection
5ded9e8aa53e f2fs: fix error path handling in truncate_dnode()
358145cc3797 mailbox: ti-msgmgr: Fill non-message tx data fields with 0x0
32b9c8f7892c spi: bcm-qspi: return error if neither hif_mspi nor mspi is available
1f3643f9cfca net: dsa: vsc73xx: fix MTU configuration
c377451012ce Add MODULE_FIRMWARE() for FIRMWARE_TG357766.
6d2243ab783b sctp: fix potential deadlock on &net->sctp.addr_wq_lock
620993d5ee5b media: cec: i2c: ch7322: also select REGMAP
f733a7bfe8f8 rtc: st-lpc: Release some resources in st_rtc_probe() in case of error
aa70e5dd7268 pwm: sysfs: Do not apply state to already disabled PWMs
8a0413be8a1e pwm: imx-tpm: force 'real_period' to be zero in suspend
e4845cdea71e phy: tegra: xusb: check return value of devm_kzalloc()
442e1a98bd02 mfd: stmpe: Only disable the regulators if they are enabled
724448d6021d KVM: s390: vsie: fix the length of APCB bitmap
c5e2f6f2bb66 mfd: stmfx: Nullify stmfx->vdd in case of error
30ead8b9bf0d mfd: stmfx: Fix error path in stmfx_chip_init
4d2405147385 test_firmware: return ENOMEM instead of ENOSPC on failed memory allocation
5b31ac1d6d88 serial: 8250_omap: Use force_suspend and resume for system suspend
8e00ae25a371 Revert "usb: common: usb-conn-gpio: Set last role to unknown before initial detection"
a81e1f22e17f mfd: intel-lpss: Add missing check for platform_get_resource
1dc07edc01d2 usb: dwc3-meson-g12a: Fix an error handling path in dwc3_meson_g12a_probe()
7ade555ac58d usb: common: usb-conn-gpio: Set last role to unknown before initial detection
0e9e127835c8 usb: dwc3: qcom: Fix an error handling path in dwc3_qcom_probe()
a6171452085b usb: dwc3: qcom: Release the correct resources in dwc3_qcom_remove()
96898fb476d1 KVM: s390: fix KVM_S390_GET_CMMA_BITS for GFNs in memslot holes
4e8e838fce5e media: atomisp: gmin_platform: fix out_len in gmin_get_config_dsm_var()
b754ea60e690 media: venus: helpers: Fix ALIGN() of non power of two
02b22660231d mfd: rt5033: Drop rt5033-battery sub-device
e52019c09535 coresight: Fix loss of connection info when a module is unloaded
018eddcb6bef kernfs: fix missing kernfs_idr_lock to remove an ID from the IDR
a59f64a83516 serial: 8250: lock port for UART_IER access in omap8250_irq()
8d65d0a2bfd5 serial: 8250: lock port for stop_rx() in omap8250_irq()
d66ddb61fa23 usb: hide unused usbfs_notify_suspend/resume functions
56901de56335 usb: phy: phy-tahvo: fix memory leak in tahvo_usb_probe()
6538e5d9f7eb extcon: Fix kernel doc of property capability fields to avoid warnings
dac7d7efcb54 extcon: Fix kernel doc of property fields to avoid warnings
2788a3553f74 usb: gadget: u_serial: Add null pointer check in gserial_suspend
74f8606ddfa4 usb: dwc3: qcom: Fix potential memory leak
bdce16c1e650 clk: qcom: ipq6018: fix networking resets
ee3f494cfc3e clk: qcom: reset: support resetting multiple bits
35fd1a213fa4 clk: qcom: reset: Allow specifying custom reset delay
d87ef4e857b7 media: usb: siano: Fix warning due to null work_func_t function pointer
300388887cbb media: videodev2.h: Fix struct v4l2_input tuner index comment
5f3f4aa673a0 media: usb: Check az6007_read() return value
32809afb6063 clk: qcom: gcc-ipq6018: Use floor ops for sdcc clocks
bb81ca33ace3 serial: 8250: omap: Fix freeing of resources on failed register
ed68e8e22ee1 sh: j2: Use ioremap() to translate device tree address into kernel memory
a7890637b3b9 w1: fix loop in w1_fini()
a27aeae714cd w1: w1_therm: fix locking behavior in convert_t
cd5ec3ee52ce SUNRPC: Fix UAF in svc_tcp_listen_data_ready()
e4a9b3333e67 block: change all __u32 annotations to __be32 in affs_hardblocks.h
54da6c4c143f block: fix signed int overflow in Amiga partition support
b6a107c52073 phy: tegra: xusb: Clear the driver reference in usb-phy dev
fac7be49f1e6 usb: dwc3: gadget: Propagate core init errors to UDC during pullup
8b0a55b59244 USB: serial: option: add LARA-R6 01B PIDs
810e401b34c4 io_uring: ensure IOPOLL locks around deferred work
cd5837564ff5 hwrng: st - keep clock enabled while hwrng is registered
557e528255d5 dax: Introduce alloc_dev_dax_id()
94a85474f5e3 dax: Fix dax_mapping_release() use after free
7c9f5a14d93b NFSv4.1: freeze the session table upon receiving NFS4ERR_BADSESSION
bab0bf567797 ARC: define ASM_NL and __ALIGN(_STR) outside #ifdef __ASSEMBLY__ guard
cb0cdca5c979 modpost: fix off by one in is_executable_section()
f0350516b9d2 crypto: marvell/cesa - Fix type mismatch warning
b54069445591 modpost: fix section mismatch message for R_ARM_{PC24,CALL,JUMP24}
88978ef7fdef modpost: fix section mismatch message for R_ARM_ABS32
31195ee328e9 crypto: nx - fix build warnings when DEBUG_FS is not enabled
77471e4912d3 hwrng: virtio - Fix race on data_avail and actual data
e8f51401d642 hwrng: virtio - always add a pending request
ffc5ce9c272f hwrng: virtio - don't waste entropy
d13ea82bfe15 hwrng: virtio - don't wait on cleanup
5f23dae018c6 hwrng: virtio - add an internal buffer
aba192bb31df powerpc/mm/dax: Fix the condition when checking if altmap vmemap can cross-boundary
7afd0de0cc14 powerpc/book3s64/mm: Fix DirectMap stats in /proc/meminfo
7289ca7a5170 mm: rename p4d_page_vaddr to p4d_pgtable and make it return pud_t *
bfad11018806 mm: rename pud_page_vaddr to pud_pgtable and make it return pmd_t *
07c19c0ad4b0 powerpc/powernv/sriov: perform null check on iov before dereferencing iov
f3c7b95c9991 pinctrl: at91-pio4: check return value of devm_kasprintf()
b7a38fc3f384 perf dwarf-aux: Fix off-by-one in die_get_varname()
75a3cb1e2317 perf script: Fix allocation of evsel->priv related to per-event dump files
647c6d35ccfe perf script: Fixup 'struct evsel_script' method prefix
958acb479ef2 kcsan: Don't expect 64 bits atomic builtins from 32 bits architectures
5533f0eb0a29 pinctrl: cherryview: Return correct value if pin in push-pull mode
4b63caf86eda perf bench: Add missing setlocale() call to allow usage of %'d style formatting
345ee8521655 perf bench: Use unbuffered output when pipe/tee'ing to a file
f0d2310f6b46 PCI: Add pci_clear_master() stub for non-CONFIG_PCI
b65fe59b2d62 PCI: ftpci100: Release the clock resources
cb389e8edf64 PCI: pciehp: Cancel bringup sequence if card is not present
b9895a4c95f3 scsi: 3w-xxxx: Add error handling for initialization failure in tw_probe()
7badf4d6f49a PCI/ASPM: Disable ASPM on MFD function removal to avoid use-after-free
d27238fc83b9 pinctrl: bcm2835: Handle gpiochip_add_pin_range() errors
ac64019e4d4b scsi: qedf: Fix NULL dereference in error handling
8e9907e9219f PCI: cadence: Fix Gen2 Link Retraining process
07be8e60f27f ASoC: imx-audmix: check return value of devm_kasprintf()
714ba10a6dd1 ovl: update of dentry revalidate flags after copy up
47f4d875aa54 drivers: meson: secure-pwrc: always enable DMA domain
5f149d053898 clk: ti: clkctrl: check return value of kasprintf()
fd9324fa4d81 clk: keystone: sci-clk: check return value of kasprintf()
0b754f9cfd66 clk: si5341: free unused memory on probe failure
dc8d0178d506 clk: si5341: check return value of {devm_}kasprintf()
dc3eef648055 clk: si5341: return error if one synth clock registration fails
040113980081 clk: si5341: Add sysfs properties to allow checking/resetting device faults
fc813d05739e clk: si5341: Allow different output VDD_SEL values
f64fcd3acf1f clk: cdce925: check return value of kasprintf()
866d4340c6c9 clk: vc5: check memory returned by kasprintf()
c67a55f7cc8d drm/msm/dp: Free resources after unregistering them
c3b63584d8c2 drm/msm/dpu: do not enable color-management if DSPPs are not available
f923a582217b ALSA: ac97: Fix possible NULL dereference in snd_ac97_mixer
404e9f741acf clk: tegra: tegra124-emc: Fix potential memory leak
cb047c13bbf9 clk: imx: clk-imx8mp: improve error handling in imx8mp_clocks_probe()
294321349bd3 clk: imx: clk-imx8mn: fix memory leak in imx8mn_clocks_probe
e749bc5a9054 RDMA/bnxt_re: Avoid calling wake_up threads from spin_lock context
9341501e2f7a RDMA/bnxt_re: wraparound mbox producer index
968e27fd037e amdgpu: validate offset_in_bo of drm_amdgpu_gem_va
e070120e6d68 drm/radeon: fix possible division-by-zero errors
a77b80825bf1 drm/amdkfd: Fix potential deallocation of previously deallocated memory.
245aa7c0233e ARM: dts: BCM5301X: fix duplex-full => full-duplex
7e2edb84fe7c hwmon: (pmbus/adm1275) Fix problems with temperature monitoring on ADM1272
580e9b987b89 hwmon: (adm1275) Allow setting sample averaging
a3c5d148b78b hwmon: (adm1275) enable adm1272 temperature reporting
4610efa404be hwmon: (gsc-hwmon) fix fan pwm temperature scaling
6e12311dcedd ARM: dts: stm32: fix i2s endpoint format property for stm32mp15xx-dkx
badeb7fe2450 ARM: dts: stm32: Fix audio routing on STM32MP15xx DHCOM PDK2
17cd31487dc3 arm64: dts: ti: k3-j7200: Fix physical address of pin
ce6e0434e502 fbdev: omapfb: lcd_mipid: Fix an error handling path in mipid_spi_probe()
34e1e2f3cf5a arm64: dts: renesas: ulcb-kf: Remove flow control for SCIF1
6817914c67b7 ARM: dts: iwg20d-q7-common: Fix backlight pwm specifier
220f86cc19dc RDMA/hns: Fix hns_roce_table_get return value
9196f44239cf RDMA/hns: Clean the hardware related code for HEM
aa495b927f9c RDMA/hns: Use refcount_t APIs for HEM
de1049dd18bd RDMA/hns: Fix coding style issues
cc1b04b699e6 RDMA: Remove uverbs_ex_cmd_mask values that are linked to functions
7dcb9ea3ee4b IB/hfi1: Fix wrong mmu_node used for user SDMA packet after invalidate
6cf8f3d690bb IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors
2d38866a99ba IB/hfi1: Use bitmap_zalloc() when applicable
42b6865bf58c soc/fsl/qe: fix usb.c build errors
9c14d1406662 ARM: dts: meson8: correct uart_B and uart_C clock references
684a2f180e46 ASoC: es8316: Do not set rate constraints for unsupported MCLKs
d883e16c7f35 ASoC: es8316: Increment max value for ALC Capture Target Volume control
105af71974ea memory: brcmstb_dpfe: fix testing array offset after use
ddc74d6ea3dc ARM: dts: stm32: Shorten the AV96 HDMI sound card name
392ee3cc995d arm64: dts: qcom: apq8096: fix fixed regulator name property
c85a076215a9 ARM: omap2: fix missing tick_broadcast() prototype
aec18da74194 ARM: ep93xx: fix missing-prototype warnings
b574cd7e4dfc drm/panel: simple: fix active size for Ampire AM-480272H3TMQW-T01H
02d8b008ffee arm64: dts: qcom: msm8996: correct camss unit address
6d103b1cc133 arm64: dts: qcom: msm8994: correct SPMI unit address
160ac75a5a82 arm64: dts: qcom: msm8916: correct camss unit address
e8b131d21638 ARM: dts: gta04: Move model property out of pinctrl node
b0b180a712ee RDMA/bnxt_re: Fix to remove an unnecessary log
446092f136d3 RDMA/bnxt_re: Remove a redundant check inside bnxt_re_update_gid
b54b26ac50a2 RDMA/bnxt_re: Use unique names while registering interrupts
11bd3882c3a6 RDMA/bnxt_re: Fix to remove unnecessary return labels
7080ef46ad3d RDMA/bnxt_re: Disable/kill tasklet only if it is enabled
2a9895df8088 arm64: dts: microchip: sparx5: do not use PSCI on reference boards
726fdf47c148 bus: ti-sysc: Fix dispc quirk masking bool variables
8ee24ddf45f0 ARM: dts: stm32: Move ethernet MAC EEPROM from SoM to carrier boards
617a4da09d77 drm/panel: sharp-ls043t1le01: adjust mode settings
3c87c98225be drm: sun4i_tcon: use devm_clk_get_enabled in `sun4i_tcon_init_clocks`
39305592dc97 Input: adxl34x - do not hardcode interrupt trigger type
e629efc6d602 ARM: dts: meson8b: correct uart_B and uart_C clock references
bd46ade71497 ARM: dts: BCM5301X: Drop "clock-names" from the SPI node
20ecae1af578 drm/vram-helper: fix function names in vram helper doc
46a34e145955 drm/bridge: tc358768: fix THS_TRAILCNT computation
f2f7d0a4a22a drm/bridge: tc358768: fix TXTAGOCNT computation
8e47328fe089 drm/bridge: tc358768: fix THS_ZEROCNT computation
6b9450723bab drm/bridge: tc358768: fix TCLK_TRAILCNT computation
33abcfbb17b0 drm/bridge: tc358768: Add atomic_get_input_bus_fmts() implementation
43b2d11ccffb drm/bridge: tc358768: fix TCLK_ZEROCNT computation
46b741718989 drm/bridge: tc358768: fix PLL target frequency
825b00c68589 drm/bridge: tc358768: fix PLL parameters computation
1b4f23fdf27f drm/bridge: tc358768: always enable HS video mode
4e0fd4f54bea Input: drv260x - sleep between polling GO bit
2780d5844855 drm/amd/display: Explicitly specify update type per plane info change
b2213fc60b83 radeon: avoid double free in ci_dpm_init()
472a615e66b9 netlink: Add __sock_i_ino() for __netlink_diag_dump().
d10b38036977 ipvlan: Fix return value of ipvlan_queue_xmit()
5215c0096839 netfilter: nf_conntrack_sip: fix the ct_sip_parse_numerical_param() return value.
9bdcda7abaf2 netfilter: conntrack: dccp: copy entire header to stack buffer, not just basic one
36e07e8acfb9 lib/ts_bm: reset initial match offset for every block of text
96f2c6f272ec net: nfc: Fix use-after-free caused by nfc_llcp_find_local
a3a1550c4d2e nfc: llcp: simplify llcp_sock_connect() error paths
cb1aa7cc562c sfc: fix crash when reading stats while NIC is resetting
6ccfec84f025 net: axienet: Move reset before 64-bit DMA detection
bccc7ace12e6 gtp: Fix use-after-free in __gtp_encap_destroy().
4d9cd4b330d8 selftests: rtnetlink: remove netdevsim device after ipsec offload test
44db85c6e1a1 netlink: do not hard code device address lenth in fdb dumps
cde7b90e0539 netlink: fix potential deadlock in netlink_set_err()
0c9e48428f6b net: stmmac: fix double serdes powerdown
1ba91ffa1a0e igc: Fix race condition in PTP tx code
660d4e73efb0 wifi: ath9k: convert msecs to jiffies where needed
150ca0768b50 wifi: cfg80211: rewrite merging of inherited elements
4e321c18ef92 wifi: iwlwifi: pull from TXQs with softirqs disabled
2715617c2aad rtnetlink: extend RTEXT_FILTER_SKIP_STATS to IFLA_VF_INFO
581401cd3cf9 wifi: ath9k: Fix possible stall on ath9k_txq_list_has_key()
6b22c2c649a1 memstick r592: make memstick_debug_get_tpc_name() static
6cb477e7226b kexec: fix a memory leak in crash_shrink_memory()
fdb07728d8ff watchdog/perf: more properly prevent false positives with turbo modes
ac23d7f41426 watchdog/perf: define dummy watchdog_update_hrtimer_threshold() on correct config
22da8363e35f wifi: rsi: Do not set MMC_PM_KEEP_POWER in shutdown
b2aeb97fd470 wifi: rsi: Do not configure WoWlan in shutdown hook if not enabled
1044187e7249 wifi: ath9k: don't allow to overwrite ENDPOINT0 attributes
c10c6ea9b3a2 wifi: ray_cs: Fix an error handling path in ray_probe()
8825991838fc wifi: ray_cs: Drop useless status variable in parse_addr()
a66e3fd3801a wifi: ray_cs: Utilize strnlen() in parse_addr()
18d71562f70d wifi: wl3501_cs: Fix an error handling path in wl3501_probe()
b6f793de619b wl3501_cs: use eth_hw_addr_set()
cbd44a9e1cf1 net: create netdev->dev_addr assignment helpers
13cf0e3894d1 wl3501_cs: Fix misspelling and provide missing documentation
5512db9bd404 wifi: atmel: Fix an error handling path in atmel_probe()
86ebbcbdc7b1 wifi: orinoco: Fix an error handling path in orinoco_cs_probe()
fb7d78feb55a wifi: orinoco: Fix an error handling path in spectrum_cs_probe()
8782dc2504da regulator: core: Streamline debugfs operations
92bcd8494126 regulator: core: Fix more error checking for debugfs_create_dir()
78f390aa0eb5 bpftool: JIT limited misreported as negative value on aarch64
107e849f3c6a nfc: llcp: fix possible use of uninitialized variable in nfc_llcp_send_connect()
0be9de2ea01e nfc: constify several pointers to u8, char and sk_buff
ef7fe1b5c4fb libbpf: fix offsetof() and container_of() to work with CO-RE
b190ced50a5e sctp: add bpf_bypass_getsockopt proto callback
08f61a349135 bpf: Remove extra lock_sock for TCP_ZEROCOPY_RECEIVE
c62e2ac02e28 wifi: mwifiex: Fix the size of a memory allocation in mwifiex_ret_802_11_scan()
3ae910a375b6 wifi: wilc1000: fix for absent RSN capabilities WFA testcase
795ef550307c spi: spi-geni-qcom: Correct CS_TOGGLE bit in SPI_TRANS_CFG
bd3e880dce27 samples/bpf: Fix buffer overflow in tcp_basertt
250efb4d3f5b wifi: ath9k: avoid referencing uninit memory in ath9k_wmi_ctrl_rx
0f3f41b47533 wifi: ath9k: fix AR9003 mac hardware hang check register offset calculation
cbd0f41a5362 igc: Enable and fix RX hash usage by netstack
a14cb307267b pstore/ram: Add check for kstrdup
628709a05708 ima: Fix build warnings
16ec59c03ad2 evm: Complete description of evm_inode_setattr()
cba85e1cb79f x86/mm: Fix __swp_entry_to_pte() for Xen PV guests
365f546de584 perf/ibs: Fix interface via core pmu events
604d6a5ff718 rcu/rcuscale: Stop kfree_scale_thread thread(s) after unloading rcuscale
d414e24d1509 rcu/rcuscale: Move rcu_scale_*() after kfree_scale_cleanup()
ecc5e6dbc269 rcuscale: Move shutdown from wait_event() to wait_event_idle()
b62c816bdb5e rcuscale: Always log error message
8cd9917c13a7 rcuscale: Console output claims too few grace periods
456f783b83f8 thermal/drivers/sun8i: Fix some error handling paths in sun8i_ths_probe()
bacc49b2d561 cpufreq: intel_pstate: Fix energy_performance_preference for passive
a8bfe527556b ARM: 9303/1: kprobes: avoid missing-declaration warnings
a50b75c13d37 powercap: RAPL: Fix CONFIG_IOSF_MBI dependency
23f6efd22644 perf/arm-cmn: Fix DTC reset
b69868d50df4 PM: domains: fix integer overflow issues in genpd_parse_state()
ebdff0986513 clocksource/drivers/cadence-ttc: Fix memory leak in ttc_timer_probe
a2f83a4c7cb5 tracing/timer: Add missing hrtimer modes to decode_hrtimer_mode().
f1be1ed32daa posix-timers: Prevent RT livelock in itimer_delete()
b315d57da456 irqchip/jcore-aic: Fix missing allocation of IRQ descriptors
495cee0e1417 irqchip/jcore-aic: Kill use of irq_create_strict_mappings()
9d1cccdad080 md/raid10: fix io loss while replacement replace rdev
2990e2ece18d md/raid10: fix null-ptr-deref of mreplace in raid10_sync_request
b1d8f38310bc md/raid10: fix wrong setting of max_corr_read_errors
b3a0bc4a01fa md/raid10: fix overflow of md/safe_mode_delay
39fa14e824ac md/raid10: check slab-out-of-bounds in md_bitmap_get_counter
8563b58a4360 blk-iocost: use spin_lock_irqsave in adjust_inuse_and_calc_cost
3db97cc79b82 x86/resctrl: Only show tasks' pid in current pid namespace
1a82005f3f63 fs: pipe: reveal missing function protoypes
f70407e8e027 nubus: Partially revert proc_create_single_data() conversion
0336c8f07223 drm/amdgpu: Validate VM ioctl flags.
c484b65f93e0 scripts/tags.sh: Resolve gtags empty index generation
649104c834ba Revert "thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak in mtk_thermal_probe"
02a4c4e225f4 HID: logitech-hidpp: add HIDPP_QUIRK_DELAYED_INIT for the T651.
9598a647ecc8 HID: wacom: Use ktime_t rather than int when dealing with timestamps
2bf70b88cc35 fbdev: imsttfb: Fix use after free bug in imsttfb_probe
5b813734a0d2 video: imsttfb: check for ioremap() failures
02fbf62df99f can: isotp: isotp_sendmsg(): fix return error fix on TX path
8667f7113107 x86/smp: Use dedicated cache-line for mwait_play_dead()
1d0fe3fb5d4b media: atomisp: fix "variable dereferenced before check 'asd'"
(From OE-Core rev: a0694f3cb9dffff43c00929b4acef877797573ff)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
140d69b4e41d Linux 5.10.187
93df00f9d48d x86/cpu/amd: Add a Zenbleed fix
191b8f9b0e37 x86/cpu/amd: Move the errata checking functionality up
113ce5ed59fc x86/microcode/AMD: Load late on both threads too
(From OE-Core rev: 50f8192a95315db169beb38d36d5d0a974f3ac4d)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The previous CVE-2023-30630_1.patch picked only the patch
"dmidecode: Write the whole dump file at once" d8cfbc808f.
But there was a refactoring which does not allow to cherry-pick it fast
forward. Resolving this conflict was not correctly done. The patch was:
+ u32 len;
+ u8 *table;
...
- if (!(opt.flags & FLAG_QUIET))
- pr_comment("Writing %d bytes to %s.", crafted[0x05],
- opt.dumpfile);
- write_dump(0, crafted[0x05], crafted, opt.dumpfile, 1);
+ dmi_table_dump(crafted, crafted[0x05], table, len);
It looks like the variables len and table have been added without
initialization.
Now this problem is solved by applying the previous refactoring as
well. Patch 1 gets replaced by Patch 1a and Patch 1b. Patch 2..4 are
rebased without changes.
(From OE-Core rev: ea069a94a213cc153528aebfc387f30215566cc7)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in the QEMU virtual crypto device while handling data
encryption/decryption requests in virtio_crypto_handle_sym_req.
There is no check for the value of `src_len` and `dst_len` in
virtio_crypto_sym_op_helper, potentially leading to a heap buffer
overflow when the two values differ.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-3180
Upstream patches:
49f1e02bac
(From OE-Core rev: de421cab92c49ba0f068eae9d6b458a0368fcd03)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backport patch from upstream master.
There were three changes needed to apply the patch:
* move NEWS change to start of the file
* change file location from src/ps/ to ps/
* change xmalloc/xcmalloc to malloc/cmalloc
The x*malloc functions were introduced in commit in future version.
584028dbe5
They call the original function plus additionally throw error when out of memory.
https://gitlab.com/procps-ng/procps/-/blob/v4.0.3/local/xalloc.h?ref_type=tags
So this replacement is correct in context of our version.
(From OE-Core rev: 71d0683d625c09d4db5e0473a0b15a266aa787f4)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Certifi is a curated collection of Root Certificates for validating
the trustworthiness of SSL certificates while verifying the identity
of TLS hosts. Certifi prior to version 2023.07.22 recognizes "e-Tugra"
root certificates. e-Tugra's root certificates were subject to an
investigation prompted by reporting of security issues in their systems.
Certifi 2023.07.22 removes root certificates from "e-Tugra" from the
root store.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-37920https://github.com/certifi/python-certifi/security/advisories/GHSA-xqr8-7jwr-rhp7
(From OE-Core rev: 98abbe3394638c6ce795b34247a9e49120e4ffba)
Signed-off-by: Narpat Mali <narpat.mali@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The runpath in the cc1 binary is:
Library runpath: [$ORIGIN/../../../recipe-sysroot-native/usr/lib:$ORIGIN/../../../recipe-sysroot-native/lib]
This does not match the actual location of the libraries, which would require:
Library runpath: [$ORIGIN/../../recipe-sysroot-native/usr/lib:$ORIGIN/../../recipe-sysroot-native/lib]
Prior to gcc 9.1 the recipe set B explicity with:
B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
and this build directory structure matches the runpath in cc1, so there is no issue.
This line was commented out in versions 9.1 through 11.3. The upgrade to 12.1 once
again uncommented this line.
As a result the runpath is incorrect in version 9.1 through 11.3 and cc1 defaults
to using host libraries.
This patch restores setting B as done in master and versions prior to 9.1
(From OE-Core rev: b6f4b3d43a399c2b446754de56ebea35657e13de)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
gcc stable version upgraded from v11.3 to v11.4
For changes in v11.4 see - https://gcc.gnu.org/gcc-11/changes.html
Below is the bug fix list for v11.4
https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&order=short_desc%2Cbug_status%2Cpriority%2Cassigned_to%2Cbug_id&query_format=advanced&resolution=FIXED&target_milestone=11.4
There are a total 115 bugs are fixed in this release, below is the list of bugs fixed excluding the regression fixes.
ID Product Comp Resolution Summary▲
108199 gcc tree-opt FIXE Bitfields, unions and SRA and storage_order_attribute
107801 gcc libstdc+ FIXE Building cross compiler for H8 family fails in libstdc++ (c++17/memory_resource.cc)
108265 gcc libstdc+ FIXE chrono::hh_mm_ss can't be constructed from unsigned durations
104443 gcc libstdc+ FIXE common_iterator<I, S>::operator-> is not correctly implemented
98056 gcc c++ FIXE coroutines: ICE tree check: expected record_type or union_type or qual_union_type, have array_type since r11-2183-g0f66b8486cea8668
107061 gcc target FIXE ENCODEKEY128 clobbers xmm4-xmm6
105433 gcc testsuit FIXE FAIL: gcc.target/i386/iamcu/test_3_element_struct_and_unions.c
105095 gcc testsuit FIXE gcc.dg/vect/complex/fast-math-complex-* tests are not executed
100474 gcc c++ FIXE ICE: in diagnose_trait_expr, at cp/constraint.cc:3706
105854 gcc target FIXE ICE: in extract_constrain_insn, at recog.cc:2692 (insn does not satisfy its constraints: sse2_lshrv1ti3)
104462 gcc target FIXE ICE: in extract_constrain_insn_cached, at recog.cc:2682 with -mavx512fp16 -mno-xsave
106045 gcc libgomp FIXE Incorrect testcase in libgomp.c/target-31.c at -O0
56189 gcc c++ FIXE Infinite recursion with noexcept when instantiating function template
100295 gcc c++ FIXE Internal compiler error from generic lambda capturing parameter pack and expanding it in if constexpr
100613 gcc jit FIXE libgccjit should produce dylib on macOS
104875 gcc libstdc+ FIXE libstdc++-v3/src/c++11/codecvt.cc:312:24: warning: left shift count >= width of type
107471 gcc libstdc+ FIXE mismatching constraints in common_iterator
105284 gcc libstdc+ FIXE missing syncstream and spanstream forward decl. in <iosfwd>
98821 gcc c++ FIXE modules : c++tools configures with CC but code fragments assume CXX.
109846 gcc fortran FIXE Pointer-valued function reference rejected as actual argument
101324 gcc target FIXE powerpc64le: hashst appears before mflr at -O1 or higher
102479 gcc c++ FIXE segfault when deducing class template arguments for tuple with libc++-14
105128 gcc libstdc+ FIXE source_location compile error for latest clang 15
106183 gcc libstdc+ FIXE std::atomic::wait might fail to be unblocked by notify_one/all on platforms without platform_wait()
102994 gcc libstdc+ FIXE std::atomic<ptr>::wait is not marked const
105324 gcc libstdc+ FIXE std::from_chars() assertion at floating_from_chars.cc:78 when parsing 1.11111111....
105375 gcc libstdc+ FIXE std::packaged_task has no deduction guide.
104602 gcc libstdc+ FIXE std::source_location::current uses cast from void*
106808 gcc libstdc+ FIXE std::string_view range concept requirement causes compile error with Boost.Filesystem
105725 gcc c++ FIXE [ICE] segfault with `-Wmismatched-tags`
105920 gcc target FIXE __builtin_cpu_supports ("f16c") should check AVX
(From OE-Core rev: 4fd7e5951c42336729f12cde71450ec298f2078b)
Signed-off-by: Sundeep KOKKONDA <sundeep.kokkonda@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Currently json.loads() accepts one of the types str, bytes, or bytearray
as an argument, but bytes and bytearrays have only been allowed since
python 3.6. The version of Python3 provided by default on Ubuntu 16.04
and Debian 9.x is 3.5, so make raw_data type str to work correctly on
these build hosts.
(From OE-Core rev: e67d659847afe648de1b1eca2d19c4f6375dd12c)
Signed-off-by: Yuta Hayama <hayama@lineo.co.jp>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This issue was reported and discusses under [1] which is linked in NVD CVE report.
It was already documented that some parts or libarchive are thread safe and some not.
[2] was now merged to document that also reported function is not thread safe.
So this CVE *now* reports thread race condition for non-thread-safe function.
And as such the CVE report is now invalid.
The issue is still not closed for 2 reasons:
* better document what is and what is not thread safe
* request to public if someone could make these functions thread safe
This should however not invalidate above statment about ignoring this CVE.
[1] https://github.com/libarchive/libarchive/issues/1876
[2] https://github.com/libarchive/libarchive/pull/1875
(From OE-Core rev: d5e7971e12cdc8748be91b4e6408b42fa86b2f15)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backport commit mentioned in NVD DB links.
94e1c00176
(From OE-Core rev: 410cdbc70cfba709ec5bef508e772f52514ba28a)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Plugins may want to use it (e.g. the layers-setup plugin that would
want to discover writer sub-plugins with it), and so it makes sense
to make tinfoil available a bit eariler.
(Bitbake rev: 41b6684489d0261753344956042be2cc4adb0159)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2f6c7523a622f59ddf84a1a196927492bc5fa7a2)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This has been around without being properly documented since 2019 (!!!),
and is nowadays the preferred method for enforcing license restrictions,
especially since meta-gplv2 is officially obsolete.
(From yocto-docs rev: 4dfef81ac6164764c6541e39a9fef81d49227096)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When enabling ipcs and ipcrm configuration into busybox, both tools are
built and then deployed during do_rootfs. These operation lead to below
issue (similar behavior happens for ipcs):
do_rootfs: Postinstall scriptlets of ['busybox'] have failed. If the intention is to defer them to first boot,
then please place them into pkg_postinst_ontarget:${PN} ().
update-alternatives: Error: not linking .../build/tmp/work/board-poky-linux/board-image/1.0-r0/rootfs/usr/bin/ipcrm
to /bin/busybox since .../build/tmp/work/board-poky-linux/board-image/1.0-r0/rootfs/usr/bin/ipcrm exists and is not a link
Binaries enter in conflict with same named util-linux utilities during
do_rootfs step.
Adding ALTERNATIVE_LINK_NAME for both tools fix the issue.
(From OE-Core rev: dc2e760591c5ed3c999222f235484829426c71a7)
Signed-off-by: Benjamin Bouvier <benjamin.bouvier@ekinops.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e4d60408b869c9cc2ccff794d4e271d993ec8a97)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The Text-Template was updated from 1.46 to 1.56
| ERROR: openssl-native-3.1.1-r0 do_configure: PERLEXTERNAL '/build/tmp/work/x86_64-linux/openssl-native/3.1.1-r0/openssl-3.1.1/external/perl/Text-Template-1.46/lib' not found!
(From OE-Core rev: b39e394771e4fa4c9250e11fafe5ef2157089422)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b9a7739b01e31d0cc8358d99255e3e1b02a0a1a8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When upstream change is better to fail or removing the PERL5LIB
if they are not need anymore.
(From OE-Core rev: 14905c6bfdaba3e2e31eaee6c02e20bf7b6669a7)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 337ac1159644678508990927923ef8af30f34cd7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
str.format() doesn't use % notation, update the formatting to work.
assertTrue() is a member of self not a global, and assertTrue(True) will
always pass. Change this to just self.fail() as this is the failure case.
(From OE-Core rev: 05c8af81438d43fd83495cb165c75f43778fea41)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 017f3a0b1265c1a3b69c20bdb56bbf446111977e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Default search in meson would grok /usr/bin for llvm-config and if found
will use it, which might add wrong paths into cflags/ldflags, since we
depend on llvm-native when building gallium support ( thats when
llvm-config is effective), its better to point llvm-config into native
sysroot so it can add correct paths into compiler/linker cmdline
(From OE-Core rev: 8e6b616066ba0f7f452f929dc7c412e620da9101)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit cc73360b9728812ed6123e30559b77d8e89cc21c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Wes Tarro <wes.tarro@azuresummit.com> noticed a missing comma in a
preplace() call, add it.
That said, calling replace() with one argument results in a TypeError,
so this is obviously dead code.
(From OE-Core rev: 3a79a210665efae1af6d68e9e923a739c82d800e)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9b2e2c8d809e7ca34451ec9702b029a00dfb410b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Currently, some segfaults are reported when running ptest:
mdadm[12333]: segfault at 0 ip 00007fe855924060 sp 00007ffc4d6caf88 error 4 in libc.so.6[7f)
Code: d2 0f 84 b7 0f 00 00 48 83 fa 01 0f 84 b9 0f 00 00 49 89 d3 89 f1 89 f8 48 83 e1 3f 4f
Backport the following upstream commits to fix them:
679bd9508a30 ("DDF: Cleanup validate_geometry_ddf_container()")
2b93288a5650 ("DDF: Fix NULL pointer dereference in validate_geometry_ddf()")
548e9b916f86 ("mdadm/Grow: Fix use after close bug by closing after fork")
9ae62977b51d ("monitor: Avoid segfault when calling NULL get_bad_blocks")
The fixes are part of the "Bug fixes and testing improvments" patchset [1].
[1] https://www.spinics.net/lists/raid/msg70621.html
(From OE-Core rev: 4ea6acbf25ad1b3e910f01d136b53c6353daf0c5)
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9585009e3e505b361cd32b14e0e85e77e7822878)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Testcase 07revert-inplace fails if strace is not installed:
...
strace -o /tmp/str ./mdadm -A /dev/md0 --update=revert-reshape /dev/<...>
tests/07revert-inplace: line 40: strace: command not found
Add strace to mdadm-ptest RDEPENDS to make sure the testcase passes even with
a core-image-minimal build.
(From OE-Core rev: 1df8d9d45bb4ff01e30d9ec9ffd0fb822d5f91e9)
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7d9386663ac52ab69812867a0823c6055aedbc18)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Trying to run mdadm-ptest in a core-image-minimal build will result in:
root@qemux86-64:~# ptest-runner mdadm
START: ptest-runner
BEGIN: /usr/lib/mdadm/ptest
which: no lsblk in (/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin)
lsblk command not found!
DURATION: 0
END: /usr/lib/mdadm/ptest
2023-06-28T10:14
STOP: ptest-runner
TOTAL: 1 FAIL: 0
Remove util-linux from RRECOMMENDS and only add util-linux-lsblk and
util-linux-losetup to RDEPENDS.
(From OE-Core rev: 898b9add68d9c30c7c90285e659b128289313668)
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3004f7589974c135cc82630d980ea281b97ecd83)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The comment specifies how to use the variables but uses the older and
now unsupported override syntax. Let's update to match the newer syntax.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From OE-Core rev: 0a381eea4d50ff1c6e7c7d0d4df62eb581454b48)
(From OE-Core rev: 0e9a70ee3c8f78db746d3cb627c6b212e1b4e4e4)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bb64f3fed29b9532e6ddc9a2ba0283d373622d87)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
If the instance name indicated by %i begins with a number, the meaning of the
replacement string "\\1{}".format(instance) is ambiguous.
To indicate group number 1 regardless of the instance name, use "\g<1>".
(From OE-Core rev: 392f60b0aa775ce95c3494ae87551e7954c9925b)
Signed-off-by: Yuta Hayama <hayama@lineo.co.jp>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d18b939fb08b37380ce95934da38e6522392621c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
native and nativesdk classes are special and must be inherited last :
put them at the end of the gathered classes to inherit.
(From OE-Core rev: 2c92780236b25205af0dcf75de2d2ede14132152)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a6614fd800cbe791264aeb102d379ba79bd145c2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Since explicit debug package creation via ${KERNEL_PACKAGE_NAME}-dbg has
been added to kernel, it has to cover all PACKAGE_DEBUG_SPLIT_STYLE
options. For ex. when the variable "debug-file-directory" package search
path has to be set explicitly, otherwise it will not find any files.
(From OE-Core rev: 9adbda8450c57f49edf85e3b3433304e8ac8267e)
Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9c39da147683dcaaa244b3ddc4531c4408ad5c9e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* fixes do_configure failure:
checking whether all ucontext.h functions are available... yes
when is deprecated at libxcrypt/4.4.30-r0/git/build-aux/scripts/BuildCommon.pm line 522.
Compilation failed in require at ../git/build-aux/scripts/expand-selected-hashes line 28.
BEGIN failed--compilation aborted at ../git/build-aux/scripts/expand-selected-hashes line 28.
configure: error: bad value 'all' for --enable-hashes
NOTE: The following config.log files may provide further information.
* with this patch backported it works OK:
libxcrypt/4.4.30-r0/git $ perl build-aux/scripts/expand-selected-hashes
usage: expand-selected-hashes hashes.conf names,of,selected,hashes
* similarly do_compile failure:
../git/build-aux/scripts/move-if-change crypt-hashes.h.T crypt-hashes.h
../git/build-aux/scripts/move-if-change crypt-symbol-vers.h.T crypt-symbol-vers.h
given is deprecated at ../git/build-aux/scripts/gen-crypt-h line 41.
Makefile:3818: Makefile.deps: No such file or directory
make: *** [Makefile:3715: crypt.h.stamp] Error 255
* also use master branch instead of develop, the SRCREV exists in both
but stable metadata branches should track stable component branches
libxcrypt/4.4.30-r0/git $ git branch -a --contains d7fe1ac04c326dba7e0440868889d1dccb41a175 | tee
* develop
remotes/origin/HEAD -> origin/develop
remotes/origin/develop
remotes/origin/master
and oe-core master also uses master SRCBRANCH since:
https://git.openembedded.org/openembedded-core/commit/?id=d18e89bd2b46c6e266cc39dbe9fdb6c032f5f1fe
(From OE-Core rev: 54996f24243a10252d3aa70effc9c13db1d507f8)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
===========
* Fix: segmentation fault on filter interpretation in "switch" mode
* Fix: `ip` context is expressed as a base-10 field
* Fix: c99: use __asm__ __volatile__
* Fix: c99: static assert: clang build fails due to multiple typedef
* Fix: Reevaluate LTTNG_UST_TRACEPOINT_DEFINE each time tracepoint.h is included
* Fix: trace events in C++ constructors/destructors
* Fix: trace events in C constructors/destructors
* Fix: use unaligned pointer accesses for lttng_inline_memcpy
(From OE-Core rev: 1361c8f4be21e41db74623dcacc92d8f02e6a2ee)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 656470b4b0db579308d218d1ece77bdacd168d14)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* Noteworthy changes in release 3.10 (2023-05-21) [stable]
** Bug fixes
cmp/diff can again work with file dates past Y2K38
[bug introduced in 3.9]
diff -D no longer fails to output #ifndef lines.
[bug#61193 introduced in 3.9]
Remove the comment addition from the patch body, as it
increases likelyhood of rebase conflicts, and repeats what
the commit says.
(From OE-Core rev: ab9ae300ce3895cdf64d207b5dc281b65c984211)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 925155acc6922f7e9df2afa45e79ad1b2c57ba24)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 21e40166870fadee986fb36be80019d3bcdb69e5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The PKCS#11 feature in ssh-agent in OpenSSH before 9.3p2 has an
insufficiently trustworthy search path, leading to remote code
execution if an agent is forwarded to an attacker-controlled system.
(Code in /usr/lib is not necessarily safe for loading into ssh-agent.)
NOTE: this issue exists because of an incomplete fix for CVE-2016-10009.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-38408
Upstream patches:
892506b1361f2731f5d729ef8a0486099cdf59ce
(From OE-Core rev: 3c01159ab6a843fc922cf779b022c965d4ecd453)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This CVE shouldn't have been filed as the "exploit" is described in the
documentation as how the library behaves.
(From OE-Core rev: 9665121fd9daf1174ec4045071b900de9195b11e)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c652f094d86c4efb7ff99accba63b8169493ab18)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Currently, the latest version abseil-cpp contains a new library named "absl_log_internal_format", it's
basic package config(.pc file) as below:
prefix=/usr
exec_prefix=${prefix}
......
Requires: absl_config = 20230125, absl_core_headers = 20230125, absl_log_internal_append_truncated = 20230125,
absl_log_internal_config = 20230125, absl_log_internal_globals = 20230125, absl_log_severity = 20230125,
absl_strings = 20230125, absl_str_format = 20230125, absl_time = 20230125, absl_span = 20230125
......
Normally, the process_pkgconfig() would process variable data before field data in a .pc file, but in the
absl_log_internal_format, the field data in "Requires" section contains "xxxx = xxxx" format, the
process_pkgconfig() treats them as normal variable and using the setVar() in bitbake's data_smart.py
try to process. The absl_log_internal_format field data contains "_append_", this hit the setVar() checking
and finally bitbake stop building and reporting an error as below:
"Variable xxx contains an operation using the old override syntax. Please convert this layer/metadata before attempting to use with a newer bitbake."
This patch move the field data process before variable process to avoid the process_pkgconfig() treat the field
data as variable.
(From OE-Core rev: e7d3e02a624f7ce23d012bb11ad1df2049066b37)
Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com>
(cherry picked from commit a73e269d3e591a10bb397b94b82e3fb960112d33)
Signed-off-by: Clément Péron <peron.clem@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
After this change in qemu:
c7e89de132
there is no 'max' cpu model on ppc. Drop it to clean up ppc gcc testsuite failures.
In order for this to work we do need to pull in the alternative cpu option from
QEMU_EXTRAOPTIONS on powerpc.
(From OE-Core rev: 3a1b9f300a796e1216d0094043dba7b0f39ec869)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c447f2b21b20fb2b1829d540af2cc0bf8242700c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Enable branch protection (PAC/BTI) for all aarch64 builds. This was
previously enabled at a global level in the GCC build, but that breaks
the gcc test suite.
(From OE-Core rev: a1119750e9b3b9fae4fa9698d2ea3710a5a73768)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8905639d1cdc5ce809cc5ecd9672f5e86bf8a579)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
By changing the default code generation of GCC we're inadvertently
breaking the GCC test suite, which has ~120K+ more failures when run for
aarch64 compared to x86-64.
This was because the generated code fragments included the BTI
instructions, which the test case wasn't expecting. We can't tell the
tests globally to run without branch protection, as that will break the
tests which also turn it on.
Remove the enabling of branch protection by standard in GCC, we'll
enable it in the tune files instead.
(From OE-Core rev: 759327cf6bd79118bae0c68e63742ae4721471d8)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bb4b9017db6a893ed054a2d2ad4cc671dec09c42)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
d54cfc420586 Linux 5.15.120
c06edf13f4cf nubus: Partially revert proc_create_single_data() conversion
6e65fa33edf5 parisc: Delete redundant register definitions in <asm/assembly.h>
b4d8f8900021 drm/amdgpu: Validate VM ioctl flags.
26eb191bf5a0 scripts/tags.sh: Resolve gtags empty index generation
989b4a753c7e perf symbols: Symbol lookup with kcore can fail if multiple segments match stext
87f51cf60e3e Revert "thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak in mtk_thermal_probe"
6a28f3490d3d HID: logitech-hidpp: add HIDPP_QUIRK_DELAYED_INIT for the T651.
67ce7724637c HID: wacom: Use ktime_t rather than int when dealing with timestamps
347732317749 bpf: ensure main program has an extable
d874cf9799a9 can: isotp: isotp_sendmsg(): fix return error fix on TX path
27d03d15bb8b x86/smp: Use dedicated cache-line for mwait_play_dead()
d6c745ca4fc5 x86/microcode/AMD: Load late on both threads too
9052349685e9 drm/amdgpu: Set vmbo destroy after pt bo is created
796481bedc3e mm, hwpoison: when copy-on-write hits poison, take page offline
6713b8f11aa0 mm, hwpoison: try to recover from copy-on write faults
b46021ab8304 mptcp: consolidate fallback and non fallback state machine
42ff95b4bd11 mptcp: fix possible divide by zero in recvmsg()
(From OE-Core rev: ab60a67c3effda6364fadcf78edf7792c75bff19)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 51c474534c27ac0739a6373595a49ebbc52c3715)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When building using an SDK, cmake complains that the target
architecture 'cortexa53-crypto' is unknown. The same build in bitbake
uses the target architecture 'aarch64'.
Set CMAKE_SYSTEM_PROCESSOR the same as for bitbake.
(From OE-Core rev: d877d5f07772ec4a05332068ddc03cf387313036)
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d32a6225eefce2073a1cd401034b5b4c68351bfe)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In order to build erofs filesystems, wic must have the erofs-utils package installed into its sysroot.
(From OE-Core rev: c349c7fcb299b123824da9a13ee58222a6cbf9ec)
Signed-off-by: Heiko Thole <heiko.thole@entwicklung.eq-3.de>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The original configure runs a generated binary to determine
features. This is not correct for cross compilation. So change
the runtime tests into compile-time tests to fix the issue.
(From OE-Core rev: 7d99f3a9a2a74fe2e8753b00553f07f305d14c87)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b9aca339b59238988c48b90ea5019bfc939ba4b3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
It's incorrect to run a cross-compiled program on build machine
to check if some feature is available or not. As these two checks
in zip are basically just checking the size, we can use _Static_assert
and sizeof to do such check at compile time.
(From OE-Core rev: 6f5986fb520ab89b0950d3e0fa8492de4de7798f)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit dda778d855b1838ae3004a9af310724b913490b4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The dnf contents should be moved to <host_sysroot>/etc/dnf/xxx
instead of just <host_sysroot>/etc.
(From OE-Core rev: 006ff31ddad4c53c63adf1dacecbf2783404a546)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 74b78d160a985e98f869c777847ab798e419dd2d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Instead of printing an error message and continuing, we should just
error out when moving file fails.
(From OE-Core rev: 4ed94fef70df05c874cf0c68dcc95c5636687825)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 12aecd9da94b5f27041982c661e8bab316d365d4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
rpm2cpio.sh can make calls to unzstd to uncompress the RPM payload that
conform the cpio file.
zstd is already part of HOSTTOOLS, as a link to the system installed
zstd.
This patch add unzstd in HOSTOOLS list as a non-optional binary, so is
available to rpm2cpio.sh when it is required.
(From OE-Core rev: 5cee002e34d16e9d82045d3e8e3931ba046403d2)
Signed-off-by: Alberto Planas <aplanas@suse.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bff58d337890e804d33d7decbaa46065a4d3bba4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* needed for rust-llvm-native on hosts with gcc-13
Based on commit 3382759cb6c5 ("llvm: backport a fix for build with gcc-13")
(From OE-Core rev: d6684a9c9f713ad30442a2a036ff86b534585400)
Signed-off-by: Alexander Sverdlin <alexander.sverdlin@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Currently, finding the elapsed time of each task in buildtimes.svg
is a manual effort of checking the top axis and finding and subtracting
the end and start time of the task.
This change adds the elapsed time for each task, so that
manual effort of comparing start/end time is avoided.
(From OE-Core rev: b2678422b411ccbd19a7b198c872b92077567391)
Signed-off-by: Mauro Queiros <Mauro.Queiros@criticaltechworks.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3efebd3404de548f0757863da237f2d18ce60013)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The first time logrotate runs it reports an error:
error: state file /var/lib/logrotate.status is
world-readable and thus can be locked from other
unprivileged users. Skipping lock acquisition...
This check was added with
1f76a381e2
This error is only reported once as logrotate removes
the world-readable permissions if this happens.
Since logrotate creates this file if it does not exist,
there should be no need to install it in the first place.
(From OE-Core rev: fbfd62ac655cf00b8f7c8fc832ce7434ad4966a3)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8169cd2d18f1569e4357f082adbef492710e8c36)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
libpng is a platform-independent library which
supports all PNG features.
This ptest executes the below binaries, parses
the png image and prints the image features.
1. pngfix - provides information about PNG image
copyrights details.
2. pngtest - tests, optimizes and optionally fixes
the zlib header in PNG files.
3. pngstest - verifies the integrity of PNG image by
dumping chunk level information.
4. timepng - provides details about PNG image chunks.
(From OE-Core rev: 2d58b38185ca7eed5d885b8d00ca549b57138554)
Signed-off-by: Nikhil R <nikhil.r@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is a follow-up of 76e5fcb2 that also allow users to chose
the package manager using OEQA_REPRODUCIBLE_TEST_PACKAGE
(From OE-Core rev: 4402b746f49611abe71719dd1d174de79bb030bb)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3d414d85b44077bac57aba36707b0fc699a73e97)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Allow users to set different build reproducibility targets than
the defaults using OEQA_REPRODUCIBLE_TEST_TARGET and
OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS variables in local.conf.
Fixing all issues from "world" builds is not possible in some
complex build environments with lots of layers. Limiting the focus to
a smaller subset allows using this test to detect and fix build
reproduction issues incrementally.
(From OE-Core rev: 3b82a7d74995c0670a6914c58b3d7c42327b8ee9)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit c66bebbce5995e386a1a4d055a914a39b6ee518d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Stable version release
Noteworthy changes in release 1.21.4 (2023-05-11)
** Document --retry-on-host-error in help text
** Increase read buffer size to 64k. This should speed up downloads on gigabit
and faster connections
** Update deprecated option '--html-extension' to '--adjust-extension' in
documentation
** Update gnulib compatibility layer.
Fixes HSTS test failures on i686. (Thanks to Andreas Enge for ponting it out)
License-Update: copyright years
(From OE-Core rev: 024feac4827dc847ba83a64de82cef524156a9ea)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 67ec2d5bab891cb92af9ca32304a4927daf51ed0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 4e7ec4bef86c79b4221a800ace700c58ce033de1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Apache Serf 1.3.10 [2023-05-31, from tags/1.3.10, r1910048]
Support for OpenSSL 3 (r1901937, ...)
Fix issue #171: Win32: Running tests fails with "no OPENSSL_Applink" error
Fix issue #194: Win32: Linking error when building against OpenSSL 1.1+
Fix issue #198: OpenSSL BIO control method incorrectly handles unknown requests
Fix issue #202: SSL tests are not passing with OpenSSL 3
Fix error handling when reading the outgoing request body (r1804534, ...)
Fix handling of invalid chunk lengths in the dechunk bucket (r1804005, ...)
Fix an endless loop in the deflate bucket with truncated input (r1805301)
Fix BIO control handlers to support BIO_CTRL_EOF (r1902208)
Fix a CRT mismatch issue caused by using certain OpenSSL functions (r1909252)
Build changes to support VS2017, VS2019 and VS2022 (r1712131, ...)
Build changes to support Python 3 (r1875933)
As serf is undead, we need to reassess all the remaining patches.
(From OE-Core rev: 275c6b7ac72330e14ba55907e8494314b63a9adf)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 775cbcc876edcb6c339f342a3253f5afcf6ef163)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 17a46eee905f0ecfdbebb014533848dc7e906ec7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Drop a backport patch as it is now integrated.
(From OE-Core rev: 134bac52904722cd63fde07f5784c0cca3fbcb05)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 80d26d1da47dcd9213a7083d9493a7bce0897a57)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There exists a use after free/double free in libwebp. An attacker can
use the ApplyFiltersAndEncode() function and loop through to free
best.bw and assign best = trial pointer. The second loop will then
return 0 because of an Out of memory error in VP8 encoder, the pointer
is still assigned to trial and the AddressSanitizer will attempt a double free.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2023-1999
Upstream patch:
a486d800b6
(From OE-Core rev: a5d0f8734ca643c25f0952387b38edf8ffd70525)
Signed-off-by: Soumya <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available
standalone on CPAN, has an insecure default TLS configuration where
users must opt in to verify certificates.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-31486
Upstream patches:
77f557ef84a22785783b
(From OE-Core rev: 5819c839e1de92ab7669a0d4997886d0306c4cc1)
Signed-off-by: Soumya <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There were vestigal remains of API key support which could be removed,
but as using an API key - in theory - gives the user larger rate limits
it's probably wise to expose it.
If the user has an API key, then set NVDCVE_API_KEY.
(From OE-Core rev: 200c2783b3f8546f561382fff6bd5268680d403a)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a542de684282bfec79f24ae2f1a2027ffde319d8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add a note of what range we're fetching, and use bb.note() instead of
debug() as messages about retrying shouldn't really be considered debug
logging.
(From OE-Core rev: be409f17e64dac2c6fa2cafba73c2084c68c59bf)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b64a869b9c5e1d504f1011da16b5c5ff721afbf0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Current 503 errors seem to last several seconds.
In most cases there are two errors and third request succeeds.
However sometimes the outage takes more than time needed
for two retries and third one also fails.
Extend retry count from 3 to 5 to improve the probablity
that the fetcher succeeds.
(From OE-Core rev: eceeba61b5da6d81f0677365f956464f1e5f1d84)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f4d118af2360cff7f234102fd5e4b65a6f4146a6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Last couple days it is not possible to update NVD DB as servers
are returning lot of errors.
Mostly "HTTP Error 503: Service Unavailable" is observed but
sporadially also some others.
Retrying helps in most cases, so extend retries to all errors.
Additionally add sleep which is recommended by NVD between requests.
These retries are already implemented between successful requests,
but giving servers time between failed ones is important, too.
(From OE-Core rev: c061bcd54fc8b62ea9a005f422a17ca46eac68c2)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 88dad8f198baa80af5ab576498f4df6ed639d551)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
After upgrade to soon-to-be-released kirkstone 4.0.11 CVE annotations got broken.
Anything which has only cvssV3 does not resolve properly.
Fix the API fields used to extract it.
i0.0 score is now at level of NVD DB 1.1.
All CVEs with UNKNOWN vector are not present in NVD DB 1.1.
NVD API 1.1:
sqlite> select vector, count(vector) from nvd group by vector;
ADJACENT_NETWORK|4776
LOCAL|32146
NETWORK|167746
PHYSICAL|185
sqlite> select scorev3, count(scorev3) from nvd group by scorev3;
0.0|73331
1.8|7
1.9|3
...
NVD API 2.0 (broken):
sqlite> select vector, count(vector) from nvd group by vector;
ADJACENT_NETWORK|4587
LOCAL|26273
NETWORK|150421
UNKNOWN|24644
sqlite> select scorev3, count(scorev3) from nvd group by scorev3;
0.0|205925
NVD API 2.0 (fixed):
sqlite> select vector, count(vector) from nvd group by vector;
ADJACENT_NETWORK|5090
LOCAL|32322
NETWORK|168004
PHYSICAL|213
UNKNOWN|511
sqlite> select scorev3, count(scorev3) from nvd group by scorev3;
0.0|73841
1.8|7
1.9|3
...
(From OE-Core rev: c00b89c2a5de8ce59b759ed8bf482942458421ff)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 61a5857efdcc0f49c69c0deb24fce99007aeef19)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When requesting updates in a specific range, use the actual current time
and database mtime instead of truncating to midnight, and explicitly set
the timezone to UTC so that NIST don't treat the timestamps as _their_ local
time when they're _our_ local time.
(From OE-Core rev: 91243ad474be00e55aa99355edef44f2fe2311f1)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9aa0ec37f5f74252588d2494a71c71a7d8e68df9)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Some CVEs, such as CVE-2013-6629, list multiple configurations which are
vulnerable. The current JSON parser only considers the first
configuration.
Instead, consider every configuration. We don't yet handle the AND/OR
logical operators, but this is a step in the right direction.
(From OE-Core rev: 7614e00b9491e5d4d6df5492f72613a56ab390d7)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e1bf4f6dd686055fe9a8bdcc3f739eac2807bae0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Replace the sockopt disable patch with a fix from upstream
(From OE-Core rev: cef730284b8616ba07c1b062c992c36af730580e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ac921989991c319ecad01bec37c4ccaa15a7b58f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit c1beb73526e3ade75bd6dae5f9310107c50f1226)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Both patches change the same paths to gawk, merge them together
as we only need one patch for this.
(From OE-Core rev: 81af8c6fdc6f0b6617b7258c9b3e2e26a76db5c8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 79c0b18e29cad337640860f57683f0a170f6daab)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 6080138fd0c27db7029b5a76e69b8dc241ad8dc3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This test is failing for uncertain reasons. We have reported upstream, disable
it until we can work out why this happened. The point it started failing is
unclear due to other test framework issues.
(From OE-Core rev: fc32e725a0c73772a2ad4e31e1aa1d61f72f9da1)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2e9165a854c7b83f163479e9dbd3cb183a9d71f5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
devtool crashes when running "update-recipe" and append changes on the recipe.
"$ devtool update-recipe -a <layer> <recipe>"
Traceback (most recent call last):
...
File "/ovss/ovss_quanta/poky/scripts/lib/devtool/standard.py", line 1636, in srcuri_entry
return 'file://%s%s' % (basepath, paramstr)
^^^^^^^^
NameError: cannot access free variable 'basepath' where it is not associated with a value in enclosing scope
The input variable 'fname' should have the same meaning as the variable 'basepath'.
Modify the 'fname' to 'basepath' and solve the issue.
(From OE-Core rev: 1487bdda6b443480e9ce45d8b8527ad61c2a50a4)
Signed-off-by: Charlie Wu <chiachiwu@google.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit c3231756bbc2cb5641204414ad3670d7f8607ed3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Current error message is difficult to read:
ERROR: Nothing PROVIDES 'image'
trs-image was skipped: image - image: normal username test does not have a static ID defined. Add test to one of these files
It's not clear that first "image" is recipe name, second "image" is
binary package name and that "test" is the user account which does not
have a static ID defined. Improve the error message so that these are
more explicit. Now the error message looks like:
image was skipped: Recipe image, package image: normal username "test" does not have a static ID defined.
(From OE-Core rev: 572c507736b2fcc31f7f13cb3da0d5be361838f5)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 07898218f3908a83e07178b6530dfa48d55d4ec2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
lld results in textrels in some .so used in tests, fixes
babeltrace2-ptest: ELF binary /usr/lib/babeltrace2/ptest/tests/lib/test-plugin-plugins/plugin-minimal.so has relocations in .text
babeltrace2-ptest: ELF binary /usr/lib/babeltrace2/ptest/tests/lib/test-plugin-plugins/plugin-sfs.so has relocations in .text [textrel]
ERROR: babeltrace2-2.0.5-r0 do_package_qa: QA Issue: babeltrace2: ELF binary /usr/lib/babeltrace2/plugins/babeltrace-plugin-ctf.so has relocations in .text
babeltrace2: ELF binary /usr/lib/babeltrace2/plugins/babeltrace-plugin-utils.so has relocations in .text
babeltrace2: ELF binary /usr/lib/babeltrace2/plugins/babeltrace-plugin-text.so has relocations in .text [textrel]
(From OE-Core rev: 1c02416041498c649c517a9933ab736fca2ceae8)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 18d443b53a0d76102fbbc1088fbcb3f8087a2b1b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
We were not able to get a response about availability over email, and so the recipe
has to be unassigned.
(From OE-Core rev: 8d2e96c3a611aba63aa9a51f6b350ea8c9654e06)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 56f1af6d5b3019dccbc27bb0a9692a5f1a32f87b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
We were not able to get a response about availability over email, and so the recipe
has to be unassigned.
(From OE-Core rev: 61e64e7af709dd03dd4018c69a752f2eadc5372e)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 60eda3dcbf96b5982a0e282fd0c3c13b0b4d7787)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
We were not able to get a response about availability over email, and so the recipe
has to be unassigned.
(From OE-Core rev: 191ab08c035f1811af932775a767b5e83a95e35b)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3beb88060be9484cfe75dfa60f041b0b32214978)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There is already a neat check_free_port() function for finding an available port
atomically, so use that and make two additional tweaks:
- no need to allocate two separate ports; per unfsd documentation they can be the same
- move lockfile release until after unfsd has been shut down and the port(s) used has been freed
[YOCTO #15077]
(From OE-Core rev: 343510b33650c88367f95e8d8322fae92ae901ca)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit dee96e82fb04ea99ecd6c25513c7bd368df3bd37)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
NPM registry cache should support caracaters like '(' and ')'
Explanation: NPM packages can contains these caracters like : @(._.)/execute
(From OE-Core rev: d3c1638077d4acbd61e7770c8e1d299ea33df638)
Signed-off-by: BELOUARGA Mohamed <m.belouarga@technologyandstrategy.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 6110d9e24e43e286781afd1b3634a4ad1a2050d0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
I've encountered issues reproducing initramfs and UKI image builds,
which will be fixed with this patch.
1. initramfs
There's a symbolic link to /sbin/init, which is appended to the cpio archive after creation.
The links timestamp needs to be static and the cpio append command needs the '--reproducible' flag to produce deterministic outcomes.
2. Unified Kernel Image
'--preserve-dates' is required for a static 'Time/Date' entry.
I've added '--enable-deterministic-archives' although in my case this
didn't change anything.
(From OE-Core rev: 0d8890f7c1fbea5036acefa3031dcd442b316725)
Signed-off-by: Frieder Paape <frieder@konvera.io>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fd027729bafb4e085ba0949e38e724f3a8cad102)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Working with enabling SPDX, an issue was observerd where v86d wasn't rebuilding
when the kernel was changed from linux-yocto to linux-yocto-rt.
This is due to the code in sstatesig.py which was seeing the RRECOMMENDS on a
kernel module and ignoring the DEPENDS. The v86d is technically a kernel module
since it uses kernel header files.
There are two ways to address this, we could inherit the module-base class and
the dependency code does the correct thing. It appears the code doesn't look into
STAGING_KERNEL_DIR though and doesn't use the kernel sources. We can therefore drop
the DEPENDS and the code will the do the correct thing.
(From OE-Core rev: b842b8b51e0819eebf1fb3a2359b8c06863e553a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 37ccd11cb0b89416b8e23160445186269b6c0c8a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-stable merged the DECNET removal to 5.15, so we integrate
the following kernel-cache commit to fix the kernel configuration
audit warning:
b647d9611cb base: drop CONFIG_DECNET
(From OE-Core rev: 4c063286ab115abf3d15e4713ea9bcd4f5fb1ab2)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 06ef70ac1fa8201c5b46050e098ebea3b1423f9f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
f67653019430 Linux 5.15.118
e5bf1f7d1fc8 nilfs2: reject devices with insufficient block count
2bc9231afc64 mmc: block: ensure error propagation for non-blk
4b7b50d4eb1a of: overlay: add entry to of_overlay_action_name[]
84770cc54eff neighbour: delete neigh_lookup_nodev as not used
41806518254c net: Remove DECnet leftovers from flow.h.
4c39a2414a23 net: Remove unused inline function dst_hold_and_use()
bb76281b6e61 neighbour: Remove unused inline function neigh_key_eq16()
67866cad7624 rcu/kvfree: Avoid freeing new kfree_rcu() memory after old grace period
c91ed3a5c2ab cgroup: always put cset in cgroup_css_set_put_fork
33b801be2de1 afs: Fix vlserver probe RTT handling
f824bcc3e14b selftests/ptp: Fix timestamp printf format for PTP_SYS_OFFSET
2077c7dbfe29 net: tipc: resize nlattr array to correct size
f734e16ee17f dm: don't lock fs when the map is NULL during suspend or resume
8a8179f6a345 net: lapbether: only support ethernet devices
052417e8b3ac net/sched: cls_api: Fix lockup on flushing explicitly created chain
c0cb9d453fd1 ext4: drop the call to ext4_error() from ext4_get_group_info()
eb4ccc102d5f cifs: fix lease break oops in xfstest generic/098
1cb181271eab drm/nouveau: add nv_encoder pointer check for NULL
c79dccc263db drm/nouveau/dp: check for NULL nv_connector->native_mode
909b7f7497cc drm/nouveau: don't detect DSM for non-NVIDIA device
10e1e07bdea4 igb: fix nvm.ops.read() error handling
fe03fd373ca6 igc: Clean the TX buffer and TX descriptor ring
032b8cbeb19c sctp: fix an error code in sctp_sf_eat_auth()
981e78781a96 ipvlan: fix bound dev checking for IPv6 l3s mode
3e76522d1a6d net: ethtool: correct MAX attribute value for stats
18512de74454 IB/isert: Fix incorrect release of isert connection
63e9e7198374 IB/isert: Fix possible list corruption in CMA handler
29ff057c0a50 IB/isert: Fix dead lock in ib_isert
fced7aaaa38f IB/uverbs: Fix to consider event queue closing also upon non-blocking mode
cd44977ecc94 RDMA/cma: Always set static rate to 0 for RoCE
5a9dee176b4b RDMA/mlx5: Initiate dropless RQ for RAW Ethernet functions
35828874aa9f octeontx2-af: fix lbk link credits on cn10k
7506e77357da octeontx2-af: fixed resource availability check
4dd914b9e2f9 iavf: remove mask from iavf_irq_enable_queues()
e6342cd13d39 RDMA/rxe: Fix the use-before-initialization error of resp_pkts
466f25fd2d9b RDMA/rxe: Removed unused name from rxe_task struct
13d087b3587b RDMA/rxe: Remove the unused variable obj
0e1098d72fa4 net/sched: cls_u32: Fix reference counter leak leading to overflow
d56661cd8d55 net/sched: act_pedit: Parse L3 Header for L4 offset
17b330b78244 net/sched: act_pedit: remove extra check for key type
219b8e98387f net/sched: simplify tcf_pedit_act
688e6db59661 ping6: Fix send to link-local addresses with VRF.
471a4c08e30e net: enetc: correct the indexes of highest and 2nd highest TCs
44ebe988cb38 netfilter: nf_tables: incorrect error path handling with NFT_MSG_NEWRULE
133b73d85343 netfilter: nfnetlink: skip error delivery on batch in case of ENOMEM
e4188f8b8134 netfilter: nf_tables: integrate pipapo into commit protocol
4da9d4e74033 spi: fsl-dspi: avoid SCK glitches with continuous transfers
08acd41bb15a RDMA/rxe: Fix packet length checks
01f6f867adc7 RDMA/rtrs: Fix rxe_dealloc_pd warning
01bbead3098b RDMA/rtrs: Fix the last iu->buf leak in err path
1938f080a183 usb: dwc3: gadget: Reset num TRBs before giving back the request
ed0295504905 serial: lantiq: add missing interrupt ack
235845b576c5 USB: serial: option: add Quectel EM061KGL series
e05e9cca7797 thunderbolt: Mask ring interrupt on Intel hardware as well
0bd227610c83 thunderbolt: dma_test: Use correct value for absent rings when creating paths
2a974abc0976 Remove DECnet support from kernel
28010d3a9a22 ALSA: hda/realtek: Add a quirk for Compaq N14JP6
203a01ae5732 drm/amdgpu: add missing radeon secondary PCI ID
b1b64a76b775 drm/amd/display: edp do not add non-edid timings
98c8c0f2b3a5 net: usb: qmi_wwan: add support for Compal RXM-G1
fd81222d1a69 RDMA/uverbs: Restrict usage of privileged QKEYs
14c30c2439dc nouveau: fix client work fence deletion race
f4c5eebb37a2 dm thin metadata: check fail_io before using data_sm
ee09c0b1b0f4 ALSA: usb-audio: Add quirk flag for HEM devices to enable native DSD playback
953cc0bf2d5b powerpc/purgatory: remove PGO flags
faf45f2c5e62 x86/purgatory: remove PGO flags
d38e051ec6fd kexec: support purgatories with .text.hot sections
4357336192ed nilfs2: fix possible out-of-bounds segment allocation in resize ioctl
74ea184af91a nilfs2: fix incomplete buffer cleanup in nilfs_btnode_abort_change_key()
941e7452dfc8 nios2: dts: Fix tse_mac "max-frame-size" property
8a8efde4a735 ocfs2: check new file size on fallocate call
559b7a0d9f0d ocfs2: fix use-after-free when unmounting read-only filesystem
8262a9f3b801 epoll: ep_autoremove_wake_function should use list_del_init_careful
c0a242295569 wifi: cfg80211: fix double lock bug in reg_wdev_chan_valid()
1a65bac4edf9 wifi: cfg80211: fix locking in regulatory disconnect
0e388fce7aec io_uring: hold uring mutex around poll removal
27825a6da78b irqchip/gic: Correctly validate OF quirk descriptors
f50018e2dd87 NVMe: Add MAXIO 1602 to bogus nid list.
4204b539ca73 drm:amd:amdgpu: Fix missing buffer object unlock in failure path
7cb02d5dc2e2 xen/blkfront: Only check REQ_FUA for writes
a75928bb929a ASoC: dwc: move DMA init to snd_soc_dai_driver probe()
37f7864c1791 mips: Move initrd_start check after initrd address sanitisation.
0d6e6542946d MIPS: Alchemy: fix dbdma2
1907b6148f86 MIPS: unhide PATA_PLATFORM
8f50d247b5dc parisc: Flush gatt writes and adjust gatt mask in parisc_agp_mask_memory()
717368977b8e parisc: Improve cache flushing for PCXL in arch_sync_dma_for_cpu()
7e85809d2782 ASoC: soc-pcm: test if a BE can be prepared
68086376a1d2 btrfs: handle memory allocation failure in btrfs_csum_one_bio
39ea94952625 btrfs: scrub: try harder to mark RAID56 block groups read-only
9df872ec4a22 power: supply: Fix logic checking if system is running from battery
42e6a4a1e085 irqchip/gic-v3: Disable pseudo NMIs on Mediatek devices w/ firmware issues
2105f2fa5791 regulator: Fix error checking for debugfs_create_dir
91b3d6aa0722 platform/x86: asus-wmi: Ignore WMI events with codes 0x7B, 0xC0
c845ec79c3cf power: supply: Ratelimit no data debug output
19d09d31dae5 tools: gpio: fix debounce_period_us output of lsgpio
c11bb961ca4d ARM: dts: vexpress: add missing cache properties
36fdd1d5b40e power: supply: bq27xxx: Use mod_delayed_work() instead of cancel() + schedule()
3b86c54e6ebe power: supply: sc27xx: Fix external_power_changed race
200d8ad44e04 power: supply: ab8500: Fix external_power_changed race
48992b928785 of: overlay: Fix missing of_node_put() in error case of init_overlay_changeset()
282f0c63cf53 of: overlay: rework overlay apply and remove kfree()s
5f306cbfa52b of: overlay: rename variables to be consistent
1cc40dccad76 drm/amdgpu: fix Null pointer dereference error in amdgpu_device_recover_vram
7cf3bf3cc033 ksmbd: fix slab-out-of-bounds read in smb2_handle_negotiate
de091a6e1ff0 test_firmware: fix a memory leak with reqs buffer
bfb0b366e8ec test_firmware: prevent race conditions by a correct implementation of locking
4b5511aa0a5e test_firmware: Use kstrtobool() instead of strtobool()
(From OE-Core rev: e58bcc7938c16317d6d3754874c76f29c4f90515)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit ec3fd718ecc881ee3410a0b6434922993368ee6d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
7349e40704a0 Linux 5.15.116
62886f17d3e6 RDMA/irdma: Do not generate SW completions for NOPs
14d148401c52 RDMA/irdma: Fix drain SQ hang with no completion
e88b19b252db ARM: defconfig: drop CONFIG_DRM_RCAR_LVDS
a1c76e2907c1 ext4: enable the lazy init thread when remounting read/write
76a7dfc9cc02 selftests: mptcp: join: skip if MPTCP is not supported
807114223d3e selftests: mptcp: simult flows: skip if MPTCP is not supported
9319c8b75ee6 selftests: mptcp: diag: skip if MPTCP is not supported
c971ca2b9d8d drm/amdgpu/gfx10: Disable gfxoff before disabling powergating.
7a20262fa9ee scsi: dpt_i2o: Do not process completions with invalid addresses
daeab37ddb6f scsi: dpt_i2o: Remove broken pass-through ioctl (I2OUSERCMD)
78a79c625265 drm/rcar: stop using 'imply' for dependencies
4c3dda6b7cfd tpm, tpm_tis: Request threaded interrupt handler
19750d7b575a regmap: Account for register length when chunking
6cb7e7579a3d KEYS: asymmetric: Copy sig and digest in public_key_verify_signature()
d56c2ab32594 ksmbd: fix incorrect AllocationSize set in smb2_get_info
380b47932e76 ksmbd: fix credit count leakage
8a870c07a1df KVM: x86: Account fastpath-only VM-Exits in vCPU stats
808ed7d86ed9 test_firmware: fix the memory leak of the allocated firmware buffer
4b7a35eb8a18 serial: 8250_tegra: Fix an error handling path in tegra_uart_probe()
fc8ef0714161 fbcon: Fix null-ptr-deref in soft_cursor
a0790a7739a2 ext4: add lockdep annotations for i_data_sem for ea_inode's
a8c3024c3e46 ext4: disallow ea_inodes with extended attributes
39a66e7a2987 ext4: set lockdep subclass for the ea_inode in ext4_xattr_inode_cache_find()
bdbfbb7d5057 ext4: add EA_INODE checking to ext4_iget()
efa3fe247d6b selftests: mptcp: sockopt: skip if MPTCP is not supported
95ad73b62765 selftests: mptcp: pm nl: skip if MPTCP is not supported
30bacfd8caf6 selftests: mptcp: connect: skip if MPTCP is not supported
2712a1ba0597 tracing/probe: trace_probe_primary_from_call(): checked list_first_entry
8a716b28b933 selinux: don't use make's grouped targets feature yet
11a8e7fd7231 block: fix revalidate performance regression
538d8504859f usb: cdns3: fix NCM gadget RX speed 20x slow than expection at iMX8QM
57a2fd7b2c75 usb: cdns3: allocate TX FIFO size according to composite EP number
d42d869b2cf4 iommu/amd: Fix domain flush size when syncing iotlb
cb21384372d1 powerpc/iommu: Limit number of TCEs to 512 for H_STUFF_TCE hcall
f257c1a6cc86 btrfs: fix csum_tree_block page iteration to avoid tripping on -Werror=array-bounds
292806cfe43d tty: serial: fsl_lpuart: use UARTCTRL_TXINV to send break instead of UARTCTRL_SBK
3fda903511f3 mmc: pwrseq: sd8787: Fix WILC CHIP_EN and RESETN toggling order
dade1f4a379d mmc: vub300: fix invalid response handling
3eb4590bc37c block/blk-iocost (gcc13): keep large values in a new enum
43124187fe3a ath6kl: Use struct_group() to avoid size-mismatched casting
43f4aca98bf2 x86/boot: Wrap literal addresses in absolute_pointer()
3cfd7f042e67 drm/amd/pm: reverse mclk and fclk clocks levels for renoir
7e0c25b39065 drm/amd/pm: reverse mclk and fclk clocks levels for yellow carp
fce05ec3deb5 drm/amd/pm: reverse mclk and fclk clocks levels for vangogh
b0dda610b42c ata: libata-scsi: Use correct device no in ata_find_dev()
57f4555bdfa5 scsi: stex: Fix gcc 13 warnings
6f675380db4f misc: fastrpc: reject new invocations during device removal
cebe84b9c02e misc: fastrpc: return -EPIPE to invocations on device removal
d3103fc0d191 md/raid5: fix miscalculation of 'end_sector' in raid5_read_one_chunk()
599e19202be2 usb: gadget: f_fs: Add unbind event before functionfs_unbind
c762eafe7949 dt-bindings: usb: snps,dwc3: Fix "snps,hsphy_interface" type
7099a87cf5ee net: usb: qmi_wwan: Set DTR quirk for BroadMobi BM818
16bd13e701c0 iio: dac: build ad5758 driver when AD5758 is selected
b6622c1fd233 iio: adc: ad7192: Change "shorted" channels to differential
aeec28d83865 iio: dac: mcp4725: Fix i2c_master_send() return value handling
23c6a184c2b8 iio: adc: ad_sigma_delta: Fix IRQ issue by setting IRQ_DISABLE_UNLAZY flag
4349ee3deef9 iio: light: vcnl4035: fixed chip ID check
db633585e93b dt-bindings: iio: adc: renesas,rcar-gyroadc: Fix adi,ad7476 compatible value
6bd3d6305b6a iio: imu: inv_icm42600: fix timestamp reset
536b4ffa93fa HID: wacom: avoid integer overflow in wacom_intuos_inout()
cfa747cc65ca HID: google: add jewel USB id
11bc983e4393 iio: adc: mxs-lradc: fix the order of two cleanup operations
a5461c3134ce iio: accel: st_accel: Fix invalid mount_matrix on devices without ACPI _ONT method
6a7d946733ea media: uvcvideo: Don't expose unsupported formats to userspace
6dd02a7bff9d mailbox: mailbox-test: fix a locking issue in mbox_test_message_write()
0f3c55c7d62c nvme-pci: Add quirk for Teamgroup MP33 SSD
c9079eb6f1cf drm/amdgpu: skip disabling fence driver src_irqs when device is unplugged
4238ea044eb2 atm: hide unused procfs functions
5d4c31d93973 drm/msm: Be more shouty if per-process pgtables aren't working
825cc70fbf2f ALSA: oss: avoid missing-prototype warnings
a79da1659cdc nvme-multipath: don't call blk_mark_disk_dead in nvme_mpath_remove_disk
9a195b991709 netfilter: conntrack: define variables exp_nat_nla_policy and any_addr with CONFIG_NF_NAT
82f505878f0a wifi: b43: fix incorrect __packed annotation
ab62fc176eac scsi: core: Decrease scsi_device's iorequest_cnt if dispatch failed
e04de12881ca wifi: mac80211: simplify chanctx allocation
24dc97e135e8 arm64: vdso: Pass (void *) to virt_to_page()
2944b9f0fdcf arm64/mm: mark private VM_FAULT_X defines as vm_fault_t
39d84ddd9ebc ARM: dts: stm32: add pin map for CAN controller on stm32f7
b2f00acd5369 wifi: rtl8xxxu: fix authentication timeout due to incorrect RCR value
ce135055be33 ACPI: resource: Add IRQ override quirk for LG UltraPC 17U70P
66f05cf2b2fd s390/topology: honour nr_cpu_ids when adding CPUs
79803685425c s390/pkey: zeroize key blobs
42624bc8c30c media: dvb-core: Fix use-after-free due to race condition at dvb_ca_en50221
22fc36d59eab media: dvb-core: Fix kernel WARNING for blocking operation in wait_event*()
a47a3f7a9bf6 media: dvb-core: Fix use-after-free due to race at dvb_register_device()
50831747cb3a media: dvb-core: Fix use-after-free due on race condition at dvb_net
9f74fec18f4c media: mn88443x: fix !CONFIG_OF error by drop of_match_ptr from ID table
d6c47b235992 media: ttusb-dec: fix memory leak in ttusb_dec_exit_dvb()
747a121914e3 media: dvb_ca_en50221: fix a size write bug
34562df4082b media: netup_unidvb: fix irq init by register it at the end of probe
5e56e3d5ebeb media: dvb-usb: dw2102: fix uninit-value in su3000_read_mac_address
5240bc8c0c9a media: dvb-usb: digitv: fix null-ptr-deref in digitv_i2c_xfer()
cd6764cf45ab media: dvb-usb-v2: rtl28xxu: fix null-ptr-deref in rtl28xxu_i2c_xfer
ef0d867e295d media: dvb-usb-v2: ce6230: fix null-ptr-deref in ce6230_i2c_master_xfer()
abaf49c5a95d media: dvb-usb-v2: ec168: fix null-ptr-deref in ec168_i2c_xfer()
4b61ee116a3c media: dvb-usb: az6027: fix three null-ptr-deref in az6027_i2c_xfer()
5e9ad9962f2a media: dvb_demux: fix a bug for the continuity counter
ae3e3ac8b294 ASoC: ssm2602: Add workaround for playback distortions
6cf7f03d2d34 ASoC: dt-bindings: Adjust #sound-dai-cells on TI's single-DAI codecs
133c78bc6769 xfrm: Check if_id in inbound policy/secpath match
f1a6d366cdb1 um: harddog: fix modular build
e9d167ca4810 ASoC: dwc: limit the number of overrun messages
84dfd8bee506 nvme-pci: add quirk for missing secondary temperature thresholds
b32eeafd4eb9 nvme-pci: add NVME_QUIRK_BOGUS_NID for HS-SSD-FUTURE 2048G
f7af470fad9c block/rnbd: replace REQ_OP_FLUSH with REQ_OP_WRITE
8ba70707c3fe nbd: Fix debugfs_create_dir error checking
156f5237e9c3 fbdev: stifb: Fix info entry in sti_struct on error path
b3c785428797 fbdev: modedb: Add 1920x1080 at 60 Hz video mode
ad3de274e065 fbdev: imsttfb: Fix use after free bug in imsttfb_probe
fd8b4e28f400 gfs2: Don't deref jdesc in evict
a00cc8562835 platform/x86: intel_scu_pcidrv: Add back PCI ID for Medfield
736626df53e9 media: rcar-vin: Select correct interrupt mode for V4L2_FIELD_ALTERNATE
1eae6e919639 ARM: 9295/1: unwind:fix unwind abort for uleb128 case
af739a701517 btrfs: abort transaction when sibling keys check fails for leaves
872a038dd4c9 drm/ast: Fix ARM compatibility
3291f4a1073a mailbox: mailbox-test: Fix potential double-free in mbox_test_message_write()
fe6f6f470612 drm/amdgpu: Use the default reset when loading or reloading the driver
2226d9ef63d5 ALSA: hda: Glenfly: add HD Audio PCI IDs and HDMI Codec Vendor IDs.
65221bdde702 watchdog: menz069_wdt: fix watchdog initialisation
6a7bf0038973 drm/amdgpu: release gpu full access after "amdgpu_device_ip_late_init"
8ac106aade8f rtnetlink: call validate_linkmsg in rtnl_create_link
beeffe764e07 mtd: rawnand: marvell: don't set the NAND frequency select
6494318f11f3 mtd: rawnand: marvell: ensure timing values are written
0fad29dabce1 net: dsa: mv88e6xxx: Increase wait after reset deactivation
45f47d2cf114 net/sched: flower: fix possible OOB write in fl_set_geneve_opt()
b15adce7d326 net/mlx5: Read embedded cpu after init bit cleared
c3caee8fe178 net/mlx5e: Fix error handling in mlx5e_refresh_tirs
1abb7b04ec37 udp6: Fix race condition in udp6_sendmsg & connect
7dc379f8856b net/netlink: fix NETLINK_LIST_MEMBERSHIPS length report
91b07931c14d net: sched: fix NULL pointer dereference in mq_attach
b1cb1ba1fbfa net/sched: Prohibit regrafting ingress or clsact Qdiscs
cde00dcdf0ce net/sched: Reserve TC_H_INGRESS (TC_H_CLSACT) for ingress (clsact) Qdiscs
2e859de5aeb0 net/sched: sch_clsact: Only create under TC_H_CLSACT
cff0af3d1364 net/sched: sch_ingress: Only create under TC_H_INGRESS
a907a389c71c tcp: Return user_mss for TCP_MAXSEG in CLOSE/LISTEN state if user_mss set
fade445f3921 tcp: deny tcp_disconnect() when threads are waiting
5434c8128777 af_packet: do not use READ_ONCE() in packet_bind()
60bd1403bab7 RDMA/irdma: Fix Local Invalidate fencing
0b3c392b82cd RDMA/irdma: Prevent QP use after free
bd2af69575f5 RDMA/irdma: Add SW mechanism to generate completions on error
2d04dde4ded7 mtd: rawnand: ingenic: fix empty stub helper definitions
8f61d394b0c2 amd-xgbe: fix the false linkup in xgbe_phy_status
aefcb6ea1d44 af_packet: Fix data-races of pkt_sk(sk)->num.
c8775b97bf96 netrom: fix info-leak in nr_write_internal()
8045788adda6 net: mellanox: mlxbf_gige: Fix skb_panic splat under memory pressure
8d9d0bfd4c22 net/mlx5e: Don't attach netdev profile while handling internal error
d002e0287d78 net/mlx5: fw_tracer, Fix event handling
3a7793ae6911 riscv: Fix unused variable warning when BUILTIN_DTB is set
3f1191bc5b6a dmaengine: pl330: rename _start to prevent build error
c4be5d71d7a4 iommu/amd: Don't block updates to GATag if guest mode is on
b4fd38c0c7b8 iommu/rockchip: Fix unwind goto issue
190ea1c39104 RDMA/bnxt_re: Fix return value of bnxt_re_process_raw_qp_pkt_rx
2fa9ee0fd65d RDMA/bnxt_re: Fix a possible memory leak
fdc977f2e785 dmaengine: at_xdmac: fix potential Oops in at_xdmac_prep_interleaved()
f68eff0faf67 dmaengine: at_xdmac: Move the free desc to the tail of the desc list
ba0e7ca84a93 RDMA/hns: Modify the value of long message loopback slice
15aeb44199e6 RDMA/hns: Fix base address table allocation
b0f40ecc46d9 RDMA/efa: Fix unsupported page sizes in device
f370588ec389 RDMA/bnxt_re: Fix the page_size used during the MR creation
(From OE-Core rev: 5bcbae7273fcb619be39d388a7b593799b46dab5)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 20388189ab6d03ae3c6e4fdd0135af4f88e15198)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
d7af3e5ba454 Linux 5.15.115
e226893c935f netfilter: ctnetlink: Support offloaded conntrack entry deletion
395d846c61c5 ipv{4,6}/raw: fix output xfrm lookup wrt protocol
1bb8a65190d4 binder: fix UAF of alloc->vma in race with munmap()
1cae0d51368e binder: add lockless binder_alloc_(set|get)_vma()
dd7aff43d005 Revert "android: binder: stop saving a pointer to the VMA"
6802c700902c Revert "binder_alloc: add missing mmap_lock calls when using the VMA"
09411f1b8672 bluetooth: Add cmd validity checks at the start of hci_sock_ioctl()
0f21b8621756 xdp: xdp_mem_allocator can be NULL in trace_mem_connect().
b6c4afcbd625 irqchip/mips-gic: Don't touch vl_map if a local interrupt is not routable
13b290f02094 page_pool: fix inconsistency for page_pool_ring_[un]lock()
3af319d51474 net: page_pool: use in_softirq() instead
1c097b9db173 xdp: Allow registering memory model without rxq reference
623d965c2dee net/mlx5e: Fix SQ wake logic in ptp napi_poll context
9085886c04d9 irqchip/mips-gic: Use raw spinlock for gic_lock
4517730b4c1e irqchip/mips-gic: Get rid of the reliance on irq_cpu_online()
5fd7c1e36b0a binder: fix UAF caused by faulty buffer cleanup
c88d21c0ae32 bonding: fix send_peer_notif overflow
7ee611fc85ad Bonding: add arp_missed_max option
5b925b48bebc net: dsa: mt7530: fix network connectivity with multiple CPU ports
5a7266feaa6d net: dsa: mt7530: split-off common parts from mt7531_setup
0753c1ef2419 net: dsa: mt7530: rework mt753[01]_setup
9902f91cf666 net: dsa: introduce helpers for iterating through ports using dp
d84b42b72526 net: phy: mscc: enable VSC8501/2 RGMII RX clock
3dce2f3d8359 platform/x86: ISST: Remove 8 socket limit
017a634f9f38 platform/x86: ISST: PUNIT device mapping with Sub-NUMA clustering
ff455f7fbce7 net/mlx5: Devcom, serialize devcom registration
69966bce28da net/mlx5e: Fix deadlock in tc route query code
1c4e3cf8944f net/mlx5: devcom only supports 2 ports
79ea1a12fb9a bpf: fix a memory leak in the LRU and LRU_PERCPU hash maps
1f06b2a60445 power: supply: bq24190: Call power_supply_changed() after updating input current
8c6f881dc13b power: supply: core: Refactor power_supply_set_input_current_limit_from_supplier()
1f9367a890ac power: supply: bq27xxx: After charger plug in/out wait 0.5s for things to stabilize
75a7e9de60a2 power: supply: bq27xxx: Ensure power_supply_changed() is called on current sign changes
e4c708a9bbde power: supply: bq27xxx: Move bq27xxx_battery_update() down
2288fa1ae9b1 power: supply: bq27xxx: expose battery data when CI=1
(From OE-Core rev: 44262f31928a20a25b4c4a54c3b76a788cc20216)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit acb7f13dd673b15706f56a6b12ab4637a54e89f8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
0ab06468cbd1 Linux 5.15.114
193c59ba7299 net: phy: mscc: add VSC8502 to MODULE_DEVICE_TABLE
350b95e86ca9 3c589_cs: Fix an error handling path in tc589_probe()
7c2fa3e56d95 regulator: mt6359: add read check for PMIC MT6359
28ebfb74fbf5 firmware: arm_ffa: Set reserved/MBZ fields to zero in the memory descriptors
34b0985ebdfc arm64: dts: imx8mn-var-som: fix PHY detection bug by adding deassert delay
1e7550653680 net/mlx5: Devcom, fix error flow in mlx5_devcom_register_device
a89a69cea44c net/mlx5: Fix error message when failing to allocate device memory
e8a974bbf4a5 net/mlx5: DR, Check force-loopback RC QP capability independently from RoCE
5e0cc0d502d4 net/mlx5: DR, Fix crc32 calculation to work on big-endian (BE) CPUs
792a8233fc01 net/mlx5e: do as little as possible in napi poll when budget is 0
fdf8f33e7d03 platform/mellanox: mlxbf-pmc: fix sscanf() error checking
d5ab5447d910 forcedeth: Fix an error handling path in nv_probe()
ae7c4ec42655 sctp: fix an issue that plpmtu can never go to complete state
ee553694be42 ASoC: Intel: Skylake: Fix declaration of enum skl_ch_cfg
aafa5019e2a3 x86/show_trace_log_lvl: Ensure stack pointer is aligned, again
90314394a16d xen/pvcalls-back: fix double frees with pvcalls_new_active_socket()
ff151810fb95 coresight: Fix signedness bug in tmc_etr_buf_insert_barrier_packet()
24cf11474376 regulator: pca9450: Fix BUCK2 enable_mask
cd41ec23503f fs: fix undefined behavior in bit shift for SB_NOUSER
c2f65991097a firmware: arm_ffa: Fix FFA device names for logical partitions
6a26c62625c5 firmware: arm_ffa: Check if ffa_driver remove is present before executing
f64567bd9566 power: supply: sbs-charger: Fix INHIBITED bit for Status reg
71a9f146b3dc power: supply: bq27xxx: Add cache parameter to bq27xxx_battery_current_and_status()
e98e5bebfcaf power: supply: bq27xxx: Fix poll_interval handling and races on remove
e01820a94aea power: supply: bq27xxx: Fix I2C IRQ race on remove
d21b3448577f power: supply: bq27xxx: Fix bq27xxx_battery_update() race condition
c530f60e5a2e power: supply: mt6360: add a check of devm_work_autocancel in mt6360_charger_probe
0dd4881238bc power: supply: leds: Fix blink to LED on transition
5e4bb063dcaf cifs: mapchars mount option ignored
9b92e2d0eb69 ipv6: Fix out-of-bounds access in ipv6_find_tlv()
bf478c2643ba bpf: Fix mask generation for 32-bit narrow loads of 64-bit fields
79081b3f489a octeontx2-pf: Fix TSOv6 offload
114657365c88 selftests: fib_tests: mute cleanup error message
e06841a2abf9 net: fix skb leak in __skb_tstamp_tx()
8f1512d78b5d ASoC: lpass: Fix for KASAN use_after_free out of bounds
b1bde4b4360c media: radio-shark: Add endpoint checks
43f569fd0699 USB: sisusbvga: Add endpoint checks
da0f4b557682 USB: core: Add routines for endpoint checks in old drivers
387bd0a3af3b udplite: Fix NULL pointer dereference in __sk_mem_raise_allocated().
cf3b5cd7127c net: fix stack overflow when LRO is disabled for virtual interfaces
9e12c58a5ece fbdev: udlfb: Fix endpoint check
aee97eec7702 debugobjects: Don't wake up kswapd from fill_pool()
c09a7b6190f5 x86/topology: Fix erroneous smp_num_siblings on Intel Hybrid platforms
a9ffd42eb9ab perf/x86/uncore: Correct the number of CHAs on SPR
277f206bb874 parisc: Fix flush_dcache_page() for usage from irq context
eff115ca949a selftests/memfd: Fix unknown type name build failure
1a98b6e028ee x86/mm: Avoid incomplete Global INVLPG flushes
683bb30c6947 dt-binding: cdns,usb3: Fix cdns,on-chip-buff-size type
647af8a998c2 btrfs: use nofs when cleaning up aborted transactions
7e93fe1d1733 gpio: mockup: Fix mode of debugfs files
3a2d238c5a3a parisc: Allow to reboot machine after system halt
96f8dd0483c8 parisc: Handle kgdb breakpoints only in kernel context
16deb7413ace m68k: Move signal frame following exception on 68020/030
9be921854e98 net: cdc_ncm: Deal with too low values of dwNtbOutMaxSize
1f6ae24e3d5a ASoC: rt5682: Disable jack detection interrupt during suspend
693acaa739dc mmc: sdhci-esdhc-imx: make "no-mmc-hs400" works
7177586e06ff ALSA: hda/realtek: Enable headset onLenovo M70/M90
e6a624451afb ALSA: hda: Fix unhandled register update during auto-suspend period
7716da3fa10b ALSA: hda/ca0132: add quirk for EVGA X299 DARK
c37eb46c613a arm64: Also reset KASAN tag if page is not PG_mte_tagged
291fe3d6f5db ocfs2: Switch to security_inode_init_security()
4badd33929c0 spi: fsl-cpm: Use 16 bit mode for large transfers with even size
28ffe8c84603 spi: fsl-spi: Re-organise transfer bits_per_word adaptation
381e55bffe15 ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15
ca338fa8032a watchdog: sp5100_tco: Immediately trigger upon starting.
6312c7cc07f3 dt-bindings: ata: ahci-ceva: Cover all 4 iommus entries
7ef9045fe758 dt-bindings: ata: ahci-ceva: convert to yaml
f19171155305 usb: dwc3: fix gadget mode suspend interrupt handler issue
7919af1dcb8e usb: gadget: Properly configure the device for remote wakeup
(From OE-Core rev: 1c8415175dc89a58e8af604163904cbfbe787edc)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit b83b248e5042dd1e9fdbc4c48be1af188fece1df)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The .dot file created by `bitbake -g` changed formats a while ago, which
broke oe-depends-dot.
Also add some useful examples to the --help output.
(From OE-Core rev: e53842ea6c14ed8e97252626e3ae0d3cf4580fbc)
Signed-off-by: Rusty Howell <rustyhowell@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
2 issues:
- the .so extension is hard-coded, and therefore the libxcryt package compiled with
meta-darwin is empty, because the dylib files are not contained in FILES_${PN}
- nothing actually produces a file libcrypt-*.so (the symlink file is libcrypt.so, without dash), thus
defining FILES:${PN} manually to contain libcrypt-*.so has no effect.
(From OE-Core rev: 87d3ad23643abff47ac35ca14f8b4b4bb9ee80da)
Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7ed6bfa2428b4f1ba7f09d6e9e67c462ff355153)
Signed-off-by: Sanjay Chitroda <schitrod@cisco.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Replace the original "Wrong CRC with ASCII CRC for large files"
patch with upstream backport, and add additional fix on top of
the same problem which upstream detected and fixed.
(From OE-Core rev: 727f301e4888c8f59cfc2d8768d02bb52ce23784)
Signed-off-by: Marek Vasut <marex@denx.de>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
If there are several multiconfigs in play for example a non-multiconfig with
a task with one hash and then three multiconfigs for the same task, different
architectures but the same hash (different to the non-mc), the three mcs
will be deferred until after the non-mc task but then will all run together
and race against each other.
Change the code to re-enable deferred tasks one at a time. This way, if they do
race, they won't run in parallel against each other.
(Bitbake rev: 907416ee1062f87f5844ab0638b54616abfc1a22)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9523e28658ad7fb446645b590608dfac2812afd3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
python2 has been deprecated, use python3 instead
(From OE-Core rev: f20a12ead2d5890e88e7f4ce149a777de47edc48)
Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add a dependency which should have been in this list but wasn't, found
when debugging create-spdx hash issues.
(From OE-Core rev: 97c84ca1e138fe95ebd67f1fe42be19ab2aeca89)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1075b9fc5d562dada45b3187cb737511ff8c7376)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
These test recipes shouldn't be built as part of world builds. Some recent
changes are exposing issues from this so exclude them.
(From OE-Core rev: 82ac6a3f22c3aec03d3ba162c67754bbf28fd0ba)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 80d3f5586cd060ae69fbc6dec2e8978d87da10ba)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Without this patch, systemd complains on startup with messages similar
to:
systemd-tmpfiles[128]: /etc/tmpfiles.d/connman_resolvconf.conf:1: Line references path below legacy directory /var/run/, updating /var/run/connman → /run/connman; please update the tmpfiles.d/ drop-in file accordingly.
systemd-tmpfiles[172]: /etc/tmpfiles.d/connman_resolvconf.conf:1: Line references path below legacy directory /var/run/, updating /var/run/connman → /run/connman; please update the tmpfiles.d/ drop-in file accordingly.
By default, connman will use "/var/run/connman" for runstatedir
instead of the now recommended "/run/connman".
(From OE-Core rev: 52268f077af4fd21ac93623017160cb474bbef00)
Signed-off-by: Marc Ferland <ferlandm@amotus.ca>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8d17776765a99a4ae327797206ef2a8a735ce87b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Modify packages to unassigned where appropriate
(From OE-Core rev: 36b862f23afe3ed81006c203e875f900249fd040)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ab37ddf53607111bf5c49c4f2388224999c4a5a9)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 27f15bc3166fda5acd07e9e1c34842a641d24e37)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This was confirmed via private email.
(From OE-Core rev: 826fb858ebf1f8e9e2741b9046fd5c04638ff056)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c30e9f1972a3e1d4099f39fd6d0dfb37acb73ce1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This was confirmed via private email.
(From OE-Core rev: 0823449cb03876ad88643df6c41c9450625d435d)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit cc8bb0da24419424989548ced27b2e76030340d9)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This was confirmed via private email.
(From OE-Core rev: d66095fa0c2ddf11a790d4d2f94ce6c2b80c0143)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 834519933fcd6e4ff54f24d0cf671ea9ce24398a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
It fails to instal pm-utils and lib32-pm-utils at same time:
Error: Transaction test error:
file /usr/bin/pm-is-supported conflicts between attempted installs of lib32-pm-utils-1.4.1-r1.corei7_32 and pm-utils-1.4.1-r1.corei7_64
file /usr/sbin/pm-hibernate conflicts between attempted installs of lib32-pm-utils-1.4.1-r1.corei7_32 and pm-utils-1.4.1-r1.corei7_64
file /usr/sbin/pm-powersave conflicts between attempted installs of lib32-pm-utils-1.4.1-r1.corei7_32 and pm-utils-1.4.1-r1.corei7_64
file /usr/sbin/pm-suspend conflicts between attempted installs of lib32-pm-utils-1.4.1-r1.corei7_32 and pm-utils-1.4.1-r1.corei7_64
file /usr/sbin/pm-suspend-hybrid conflicts between attempted installs of lib32-pm-utils-1.4.1-r1.corei7_32 and pm-utils-1.4.1-r1.corei7_64
All of the conflicted files either is script which source a file in
${libdir}, or a link file to some file in ${libdir}. Compare the content
of installed files in ${libdir} exclude binaries, only the paths of
${libdir} diff. So re-define libdir with ${nonarch_libdir} to fix the
conflicts.
(From OE-Core rev: 7d99987f76c58ec1f9ee5efffee0705b2c542ad7)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f836541bcfdbf033a37537530b4e3b87b0a7f003)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
If pstree in busybox is enabled there is a conflict with pstree from
psmisc resulting in:
do_rootfs: Postinstall scriptlets of ['busybox'] have failed. If
the intention is to defer them to first boot, then please place
them into pkg_postinst_ontarget:${PN} ().
Deferring to first boot via 'exit 1' is no longer supported.
And more detailed in do_rootfs.log:
update-alternatives: Error: not linking [...]/rootfs/usr/bin/pstree to /bin/busybox.nosuid since [...]/rootfs/usr/bin/pstree exists and is not a link
On order to fix this set ALTERNATIVE:pstree accordingly.
(From OE-Core rev: b40a33f0665c7086e806da4f670a3eb25351216c)
Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit deb2176df76dcb16c0d90072ad63d308a0ab1158)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Dropping CONFIG_DECNET as it has been removed from -stable
and we now get a configuration warning.
(From OE-Core rev: 60eb677142dfd0264a99f626b5b9ede1a6d706e1)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
ef0d5feb32ab Linux 5.10.185
ed2bf5cee6c6 um: Fix build w/o CONFIG_PM_SLEEP
f73ec12dc718 drm/i915/gen11+: Only load DRAM information from pcode
27458487c8f4 drm/i915/dg1: Wait for pcode/uncore handshake at startup
2d1c19597d1e media: dvb-core: Fix use-after-free due to race at dvb_register_device()
5c61c3945adf media: dvbdev: fix error logic at dvb_register_device()
a1b26dac8bc6 media: dvbdev: Fix memleak in dvb_register_device
a13dee47fa2a nilfs2: reject devices with insufficient block count
c374552b54d6 mm/memory_hotplug: extend offline_and_remove_memory() to handle more than one memory block
e6dc6a9d0a76 mmc: block: ensure error propagation for non-blk
7ce0e8b28720 batman-adv: Switch to kstrtox.h for kstrtou64
e6104284c42f neighbour: delete neigh_lookup_nodev as not used
bf82668eb950 net: Remove DECnet leftovers from flow.h.
7d07fd03f50c net: Remove unused inline function dst_hold_and_use()
53076071fb92 neighbour: Remove unused inline function neigh_key_eq16()
7230a9e599d3 rcu/kvfree: Avoid freeing new kfree_rcu() memory after old grace period
a26158962176 cgroup: always put cset in cgroup_css_set_put_fork
4c1084386332 afs: Fix vlserver probe RTT handling
49b6607dedc2 selftests/ptp: Fix timestamp printf format for PTP_SYS_OFFSET
08899e8d5a99 net: tipc: resize nlattr array to correct size
5fd696b404fb net: lapbether: only support ethernet devices
6ee3728ae87e net/sched: cls_api: Fix lockup on flushing explicitly created chain
efed5b50f3b8 ext4: drop the call to ext4_error() from ext4_get_group_info()
6ab91d1adb5a drm/nouveau: add nv_encoder pointer check for NULL
5d43bb9b3e0c drm/nouveau/dp: check for NULL nv_connector->native_mode
edb970e03d65 drm/nouveau: don't detect DSM for non-NVIDIA device
8c3446ab5902 igb: fix nvm.ops.read() error handling
221281d60c46 sctp: fix an error code in sctp_sf_eat_auth()
5c47ed7f25d6 ipvlan: fix bound dev checking for IPv6 l3s mode
3c97f2c9ec29 IB/isert: Fix incorrect release of isert connection
da6ae4aab5a6 IB/isert: Fix possible list corruption in CMA handler
2b6f8817ca66 IB/isert: Fix dead lock in ib_isert
2f9d26345c6e IB/uverbs: Fix to consider event queue closing also upon non-blocking mode
6cccdbc9f09c RDMA/cma: Always set static rate to 0 for RoCE
f49abbb27416 RDMA/mlx5: Initiate dropless RQ for RAW Ethernet functions
aa277d5cd4b2 octeontx2-af: fixed resource availability check
0fb48a2a6ad4 iavf: remove mask from iavf_irq_enable_queues()
079a9591ee18 RDMA/rxe: Fix the use-before-initialization error of resp_pkts
089a0e831f68 RDMA/rxe: Removed unused name from rxe_task struct
6205c0d9ff8b RDMA/rxe: Remove the unused variable obj
af6eaa57986e net/sched: cls_u32: Fix reference counter leak leading to overflow
5852d17aaa8b ping6: Fix send to link-local addresses with VRF.
9e666a77f008 net: enetc: correct the indexes of highest and 2nd highest TCs
1200af82cf0b netfilter: nfnetlink: skip error delivery on batch in case of ENOMEM
af42c4fd827c spi: fsl-dspi: avoid SCK glitches with continuous transfers
cb6ec51ddd00 RDMA/rtrs: Fix the last iu->buf leak in err path
26293251ab64 usb: dwc3: gadget: Reset num TRBs before giving back the request
f4bc41694289 serial: lantiq: add missing interrupt ack
0b6e65016c3c USB: serial: option: add Quectel EM061KGL series
1c004b379b03 Remove DECnet support from kernel
e9d384983fa9 ALSA: hda/realtek: Add a quirk for Compaq N14JP6
1148d4ca3029 net: usb: qmi_wwan: add support for Compal RXM-G1
d7acfd522560 RDMA/uverbs: Restrict usage of privileged QKEYs
96e14c91c530 nouveau: fix client work fence deletion race
f1f7117b2236 powerpc/purgatory: remove PGO flags
26c80741ceb6 x86/purgatory: remove PGO flags
f368aed4827b kexec: support purgatories with .text.hot sections
7e78b9142fdf nilfs2: fix possible out-of-bounds segment allocation in resize ioctl
902fcec05295 nilfs2: fix incomplete buffer cleanup in nilfs_btnode_abort_change_key()
d59293f082dc nios2: dts: Fix tse_mac "max-frame-size" property
2847d9eed48b ocfs2: check new file size on fallocate call
e73b135f540c ocfs2: fix use-after-free when unmounting read-only filesystem
370f5d98ffe5 epoll: ep_autoremove_wake_function should use list_del_init_careful
4716c73b1885 io_uring: hold uring mutex around poll removal
93a68acc497b irqchip/gic: Correctly validate OF quirk descriptors
2a2641a842ea drm:amd:amdgpu: Fix missing buffer object unlock in failure path
7c0b17679b43 xen/blkfront: Only check REQ_FUA for writes
8e45fb70f4b5 ASoC: dwc: move DMA init to snd_soc_dai_driver probe()
d47b5a6d2331 mips: Move initrd_start check after initrd address sanitisation.
619672bf2d04 MIPS: Alchemy: fix dbdma2
0ca73b45b767 parisc: Flush gatt writes and adjust gatt mask in parisc_agp_mask_memory()
3f7625e08620 parisc: Improve cache flushing for PCXL in arch_sync_dma_for_cpu()
73102fdb5bf3 ASoC: soc-pcm: test if a BE can be prepared
3bc883132d03 btrfs: handle memory allocation failure in btrfs_csum_one_bio
142fbad31405 btrfs: scrub: try harder to mark RAID56 block groups read-only
35d32d841592 power: supply: Fix logic checking if system is running from battery
8b7a2207ee40 irqchip/gic-v3: Disable pseudo NMIs on Mediatek devices w/ firmware issues
dbf610997242 regulator: Fix error checking for debugfs_create_dir
37bcc48e7dd1 platform/x86: asus-wmi: Ignore WMI events with codes 0x7B, 0xC0
88d1c1365ff6 power: supply: Ratelimit no data debug output
6be7a4bef9dc tools: gpio: fix debounce_period_us output of lsgpio
39eb9eb9ea43 ARM: dts: vexpress: add missing cache properties
b2856c3cd3b2 power: supply: bq27xxx: Use mod_delayed_work() instead of cancel() + schedule()
ce2b5f24caad power: supply: sc27xx: Fix external_power_changed race
9e9e150fa8a6 power: supply: ab8500: Fix external_power_changed race
539c387f0bb9 test_firmware: fix a memory leak with reqs buffer
af36f35074b1 test_firmware: prevent race conditions by a correct implementation of locking
682ca602515d test_firmware: Use kstrtobool() instead of strtobool()
6e2e551e39fd kernel.h: split out kstrtox() and simple_strtox() to a separate header
c2def5578b44 lib: cleanup kstrto*() usage
(From OE-Core rev: 0cacc63b11f85a37e3a91b1097ca516647facb8f)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
7356714b95aa Linux 5.10.183
842156dc0aad ARM: defconfig: drop CONFIG_DRM_RCAR_LVDS
2c0ea7a06db5 ext4: enable the lazy init thread when remounting read/write
92450a1eaa9e selftests: mptcp: join: skip if MPTCP is not supported
1a6db1f92724 selftests: mptcp: simult flows: skip if MPTCP is not supported
4f8356ab74dd selftests: mptcp: diag: skip if MPTCP is not supported
81df7153f011 crypto: ccp: Play nice with vmalloc'd memory for SEV command structs
1f988ce6e44f crypto: ccp: Reject SEV commands with mismatching command buffer
d21a20f4421d scsi: dpt_i2o: Do not process completions with invalid addresses
a2cd7599b558 scsi: dpt_i2o: Remove broken pass-through ioctl (I2OUSERCMD)
6d6612f7f976 drm/rcar: stop using 'imply' for dependencies
c759c9e4bf38 media: ti-vpe: cal: avoid FIELD_GET assertion
d21e955de918 tpm, tpm_tis: Request threaded interrupt handler
608c1f20830c regmap: Account for register length when chunking
cb1cbe430e67 KEYS: asymmetric: Copy sig and digest in public_key_verify_signature()
3295dc04af33 KVM: x86: Account fastpath-only VM-Exits in vCPU stats
21bb3cd2e1bc test_firmware: fix the memory leak of the allocated firmware buffer
510e015b9058 serial: 8250_tegra: Fix an error handling path in tegra_uart_probe()
b02ae50c7fd8 fbcon: Fix null-ptr-deref in soft_cursor
c94228a5aea4 ext4: add lockdep annotations for i_data_sem for ea_inode's
ef70012ab51c ext4: disallow ea_inodes with extended attributes
6f4fa43757bb ext4: set lockdep subclass for the ea_inode in ext4_xattr_inode_cache_find()
6d67d4966c1e ext4: add EA_INODE checking to ext4_iget()
6d0adaa90dbe selftests: mptcp: pm nl: skip if MPTCP is not supported
54dea0aa6bef selftests: mptcp: connect: skip if MPTCP is not supported
57eb824b8cbb tracing/probe: trace_probe_primary_from_call(): checked list_first_entry
122ba1d40bea selinux: don't use make's grouped targets feature yet
e0b8664c2fec btrfs: fix csum_tree_block page iteration to avoid tripping on -Werror=array-bounds
6c859764f44d tty: serial: fsl_lpuart: use UARTCTRL_TXINV to send break instead of UARTCTRL_SBK
6127e956c3a7 mmc: vub300: fix invalid response handling
99cb5ed15d3e eth: sun: cassini: remove dead code
1d8693376aaa gcc-12: disable '-Wdangling-pointer' warning for now
7c602f540bfd ath6kl: Use struct_group() to avoid size-mismatched casting
c92ea38a779f ACPI: thermal: drop an always true check
93e28b66c104 x86/boot: Wrap literal addresses in absolute_pointer()
3442be8f3095 ata: libata-scsi: Use correct device no in ata_find_dev()
ae0d7613e0e3 scsi: stex: Fix gcc 13 warnings
86b2d292c260 misc: fastrpc: reject new invocations during device removal
dacb7c103c2f misc: fastrpc: return -EPIPE to invocations on device removal
a4f88cb043c5 usb: gadget: f_fs: Add unbind event before functionfs_unbind
90f581eb745c net: usb: qmi_wwan: Set DTR quirk for BroadMobi BM818
e18b0009ddfb iio: dac: build ad5758 driver when AD5758 is selected
a869ab6987f4 iio: adc: ad7192: Change "shorted" channels to differential
143dbb313aea iio: dac: mcp4725: Fix i2c_master_send() return value handling
81c70f4beaad iio: light: vcnl4035: fixed chip ID check
ff864a92d903 iio: imu: inv_icm42600: fix timestamp reset
954bd5a44b09 HID: wacom: avoid integer overflow in wacom_intuos_inout()
adac1c22f54b HID: google: add jewel USB id
55c507a34e7e iio: adc: mxs-lradc: fix the order of two cleanup operations
5a445c2bf651 mailbox: mailbox-test: fix a locking issue in mbox_test_message_write()
c05ac53bb0df atm: hide unused procfs functions
ab332304583d drm/msm: Be more shouty if per-process pgtables aren't working
93a61212db4b ALSA: oss: avoid missing-prototype warnings
4987bf04465e netfilter: conntrack: define variables exp_nat_nla_policy and any_addr with CONFIG_NF_NAT
1c2537291e9c wifi: b43: fix incorrect __packed annotation
ea478186ea29 scsi: core: Decrease scsi_device's iorequest_cnt if dispatch failed
05226a8f2288 arm64/mm: mark private VM_FAULT_X defines as vm_fault_t
32f86763c2a2 ARM: dts: stm32: add pin map for CAN controller on stm32f7
01c76cb5e512 wifi: rtl8xxxu: fix authentication timeout due to incorrect RCR value
046721280664 s390/pkey: zeroize key blobs
76169f749089 media: dvb-core: Fix use-after-free due to race condition at dvb_ca_en50221
ca2d171fd1f3 media: dvb-core: Fix kernel WARNING for blocking operation in wait_event*()
2ea7d26ed851 media: dvb-core: Fix use-after-free due on race condition at dvb_net
415651c8f468 media: mn88443x: fix !CONFIG_OF error by drop of_match_ptr from ID table
eb37fef417a2 media: ttusb-dec: fix memory leak in ttusb_dec_exit_dvb()
1995e714725f media: dvb_ca_en50221: fix a size write bug
b85233ab5335 media: netup_unidvb: fix irq init by register it at the end of probe
74c80d2024d9 media: dvb-usb: dw2102: fix uninit-value in su3000_read_mac_address
fcbb72b041d9 media: dvb-usb: digitv: fix null-ptr-deref in digitv_i2c_xfer()
7945c13c9b7f media: dvb-usb-v2: rtl28xxu: fix null-ptr-deref in rtl28xxu_i2c_xfer
2d47867a6b3c media: dvb-usb-v2: ce6230: fix null-ptr-deref in ce6230_i2c_master_xfer()
647da51e4da7 media: dvb-usb-v2: ec168: fix null-ptr-deref in ec168_i2c_xfer()
084e43d9a4c1 media: dvb-usb: az6027: fix three null-ptr-deref in az6027_i2c_xfer()
a81280cf3343 media: dvb_demux: fix a bug for the continuity counter
204e9082f6af ASoC: ssm2602: Add workaround for playback distortions
beee708ccccc ASoC: dt-bindings: Adjust #sound-dai-cells on TI's single-DAI codecs
bd99da647262 xfrm: Check if_id in inbound policy/secpath match
5ee83fef0c24 ASoC: dwc: limit the number of overrun messages
32f6f1bf1bef block/rnbd: replace REQ_OP_FLUSH with REQ_OP_WRITE
01c3d3064975 nbd: Fix debugfs_create_dir error checking
29f6b42a73b3 fbdev: stifb: Fix info entry in sti_struct on error path
742dab42d70e fbdev: modedb: Add 1920x1080 at 60 Hz video mode
d03d31d3a206 gfs2: Don't deref jdesc in evict
fe4f6e159b9a media: rcar-vin: Select correct interrupt mode for V4L2_FIELD_ALTERNATE
16ee4562c7bb ARM: 9295/1: unwind:fix unwind abort for uleb128 case
a3393eb6fb41 btrfs: abort transaction when sibling keys check fails for leaves
c12c288f1e67 mailbox: mailbox-test: Fix potential double-free in mbox_test_message_write()
0dcf021af4cb ALSA: hda: Glenfly: add HD Audio PCI IDs and HDMI Codec Vendor IDs.
d5fcccfc5010 watchdog: menz069_wdt: fix watchdog initialisation
9823ac6e7ae1 mtd: rawnand: marvell: don't set the NAND frequency select
e4666d793a22 mtd: rawnand: marvell: ensure timing values are written
a437d3d25a27 net: dsa: mv88e6xxx: Increase wait after reset deactivation
7c5c67aa2944 net/sched: flower: fix possible OOB write in fl_set_geneve_opt()
f5c29a9e9146 net/mlx5: Read embedded cpu after init bit cleared
f03bc013604c udp6: Fix race condition in udp6_sendmsg & connect
57e6c5403427 net/netlink: fix NETLINK_LIST_MEMBERSHIPS length report
ae7e941f4dc3 net: sched: fix NULL pointer dereference in mq_attach
a8ad1303b9de net/sched: Prohibit regrafting ingress or clsact Qdiscs
676f203803f9 net/sched: Reserve TC_H_INGRESS (TC_H_CLSACT) for ingress (clsact) Qdiscs
18c76349afda net/sched: sch_clsact: Only create under TC_H_CLSACT
1b0163b2dc3b net/sched: sch_ingress: Only create under TC_H_INGRESS
dfb80ebc3bb4 tcp: Return user_mss for TCP_MAXSEG in CLOSE/LISTEN state if user_mss set
cccc6209708f tcp: deny tcp_disconnect() when threads are waiting
8f0365a3e286 af_packet: do not use READ_ONCE() in packet_bind()
4de3c2c43c6f mtd: rawnand: ingenic: fix empty stub helper definitions
11a1f2561b53 amd-xgbe: fix the false linkup in xgbe_phy_status
fa909b138480 af_packet: Fix data-races of pkt_sk(sk)->num.
616da05ff8a9 netrom: fix info-leak in nr_write_internal()
d1b224cb7856 net/mlx5: fw_tracer, Fix event handling
a864a8543cd5 dmaengine: pl330: rename _start to prevent build error
33d7035dc224 iommu/amd: Don't block updates to GATag if guest mode is on
bd9e61ee3e9d iommu/rockchip: Fix unwind goto issue
75c60dacf0b4 RDMA/bnxt_re: Fix return value of bnxt_re_process_raw_qp_pkt_rx
861868b06304 RDMA/bnxt_re: Fix a possible memory leak
ff296fccebcb dmaengine: at_xdmac: fix potential Oops in at_xdmac_prep_interleaved()
6b32ed353f44 dmaengine: at_xdmac: Move the free desc to the tail of the desc list
3041b768cc0f dmaengine: at_xdmac: Fix race for the tx desc callback
127afc87bb02 dmaengine: at_xdmac: Fix concurrency over chan's completed_cookie
958226b3a663 RDMA/efa: Fix unsupported page sizes in device
7d6662e4a4b6 RDMA/bnxt_re: Fix the page_size used during the MR creation
b51c8962853e RDMA/bnxt_re: Code refactor while populating user MRs
(From OE-Core rev: 3a6f5720936c106e35be41b4b3e14e818baec739)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
c7992b6c7f0e Linux 5.10.182
468bebc426ba netfilter: ctnetlink: Support offloaded conntrack entry deletion
18c14d3028c0 ipv{4,6}/raw: fix output xfrm lookup wrt protocol
2218752325a9 binder: fix UAF caused by faulty buffer cleanup
e4d2e6c3054b bluetooth: Add cmd validity checks at the start of hci_sock_ioctl()
6a0712d9fe46 net: phy: mscc: enable VSC8501/2 RGMII RX clock
b556990235c3 net/mlx5: Devcom, serialize devcom registration
57dc3c124e7b net/mlx5: devcom only supports 2 ports
860ad704e450 regulator: pca9450: Fix BUCK2 enable_mask
b3a9c4081db9 regulator: pca9450: Convert to use regulator_set_ramp_delay_regmap
12cb97ed85fb regulator: Add regmap helper for ramp-delay setting
b557220d3140 power: supply: bq24190: Call power_supply_changed() after updating input current
224f7bbf577b power: supply: core: Refactor power_supply_set_input_current_limit_from_supplier()
277b489ad0b7 power: supply: bq27xxx: After charger plug in/out wait 0.5s for things to stabilize
0949c572d42d power: supply: bq27xxx: Ensure power_supply_changed() is called on current sign changes
6ed541254f4b power: supply: bq27xxx: Move bq27xxx_battery_update() down
ed78797a264c power: supply: bq27xxx: expose battery data when CI=1
7ff807d68b5d power: supply: bq27xxx: Add cache parameter to bq27xxx_battery_current_and_status()
432f98c559f2 power: supply: bq27xxx: make status more robust
659094e4057a power: supply: bq27xxx: fix sign of current_now for newer ICs
14e1a958d988 power: supply: bq27xxx: fix polarity of current_now
18c9cf463337 x86/cpu: Drop spurious underscore from RAPTOR_LAKE #define
4a8980cb2a7c x86/cpu: Add Raptor Lake to Intel family
272d4b8a5b96 Linux 5.10.181
cf7ee4b15838 net: phy: mscc: add VSC8502 to MODULE_DEVICE_TABLE
98cedb991094 3c589_cs: Fix an error handling path in tc589_probe()
6f449e409b75 arm64: dts: imx8mn-var-som: fix PHY detection bug by adding deassert delay
d4d10a6df152 net/mlx5: Devcom, fix error flow in mlx5_devcom_register_device
8b9c561b9fc1 net/mlx5: Fix error message when failing to allocate device memory
c21862232f6c net/mlx5: DR, Fix crc32 calculation to work on big-endian (BE) CPUs
058fd18e7477 net/mlx5e: do as little as possible in napi poll when budget is 0
5afd5fb8a9a7 forcedeth: Fix an error handling path in nv_probe()
80a4b9ad4288 ASoC: Intel: Skylake: Fix declaration of enum skl_ch_cfg
c966b58c8515 x86/show_trace_log_lvl: Ensure stack pointer is aligned, again
0de80163dea6 xen/pvcalls-back: fix double frees with pvcalls_new_active_socket()
b663696c0652 coresight: Fix signedness bug in tmc_etr_buf_insert_barrier_packet()
a52d2019ec7c fs: fix undefined behavior in bit shift for SB_NOUSER
52967bbb93eb power: supply: sbs-charger: Fix INHIBITED bit for Status reg
e85757da9091 power: supply: bq27xxx: Fix poll_interval handling and races on remove
1da9a4b55a66 power: supply: bq27xxx: Fix I2C IRQ race on remove
ac1ab213946d power: supply: bq27xxx: Fix bq27xxx_battery_update() race condition
2de6eb7c40f9 power: supply: leds: Fix blink to LED on transition
e5f82688ae10 ipv6: Fix out-of-bounds access in ipv6_find_tlv()
a61d5c13c7d1 bpf: Fix mask generation for 32-bit narrow loads of 64-bit fields
72971f4071b4 octeontx2-pf: Fix TSOv6 offload
1c8a016822bb selftests: fib_tests: mute cleanup error message
a594382ec6d0 net: fix skb leak in __skb_tstamp_tx()
8a30dce9d7f7 media: radio-shark: Add endpoint checks
ccef03c51135 USB: sisusbvga: Add endpoint checks
4c260bbf356a USB: core: Add routines for endpoint checks in old drivers
5014b64e369b udplite: Fix NULL pointer dereference in __sk_mem_raise_allocated().
4bb955c4d283 net: fix stack overflow when LRO is disabled for virtual interfaces
58ecc165abda fbdev: udlfb: Fix endpoint check
fd673079749b debugobjects: Don't wake up kswapd from fill_pool()
a12ce786bef6 x86/topology: Fix erroneous smp_num_siblings on Intel Hybrid platforms
518c39fc1ed6 parisc: Fix flush_dcache_page() for usage from irq context
2d78438c3183 selftests/memfd: Fix unknown type name build failure
d4a5e6ae9967 x86/mm: Avoid incomplete Global INVLPG flushes
628d7e494134 dt-binding: cdns,usb3: Fix cdns,on-chip-buff-size type
139f84c80d9f btrfs: use nofs when cleaning up aborted transactions
ea50ee0ef904 gpio: mockup: Fix mode of debugfs files
c570dbf279a8 parisc: Allow to reboot machine after system halt
de0d7dd5efd4 parisc: Handle kgdb breakpoints only in kernel context
89eba5586aa4 m68k: Move signal frame following exception on 68020/030
42b78c8cc774 net: cdc_ncm: Deal with too low values of dwNtbOutMaxSize
798c1c62cfa5 ALSA: hda/realtek: Enable headset onLenovo M70/M90
1f57a1b97949 ALSA: hda: Fix unhandled register update during auto-suspend period
b0d7e62fd15e ALSA: hda/ca0132: add quirk for EVGA X299 DARK
c41324385aa7 ocfs2: Switch to security_inode_init_security()
60afe299bb54 spi: fsl-cpm: Use 16 bit mode for large transfers with even size
e3674788a865 spi: fsl-spi: Re-organise transfer bits_per_word adaptation
532451037863 act_mirred: use the backlog for nested calls to mirred ingress
f5bf8e3ca13e net/sched: act_mirred: better wording on protection against excessive stack growth
bba7ebe10baf net/sched: act_mirred: refactor the handle of xmit
047f618d198e writeback, cgroup: remove extra percpu_ref_exit()
84fbe6ad0fa3 ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15
dbcc95bb510e watchdog: sp5100_tco: Immediately trigger upon starting.
75258f083868 s390/qdio: fix do_sqbs() inline assembly constraint
3681a0287a73 s390/qdio: get rid of register asm
9c9f253fc60b serial: 8250_exar: Add support for USR298x PCI Modems
1ffa0b8ba928 serial: exar: Add support for Sealevel 7xxxC serial cards
fb3c5714f5ce serial: 8250_exar: derive nr_ports from PCI ID for Acces I/O cards
18fbf8cfbb9d KVM: arm64: Link position-independent string routines into .hyp.text
e266da1656d6 HID: wacom: add three styli to wacom_intuos_get_tool_type
dfd419db0391 HID: wacom: Add new Intuos Pro Small (PTH-460) device IDs
05b170379744 HID: wacom: Force pen out of prox if no events have been received in a while
6b4205ea9790 nilfs2: fix use-after-free bug of nilfs_root in nilfs_evict_inode()
710dee57012e powerpc/64s/radix: Fix soft dirty tracking
ae149cdaef4e tpm/tpm_tis: Disable interrupts for more Lenovo devices
8c0109d76235 ceph: force updating the msg pointer in non-split case
11dddfbb7a4e vc_screen: reload load of struct vc_data pointer in vcs_write() to avoid UAF
ea3d5de90bc0 serial: Add support for Advantech PCI-1611U card
ba061afa060e statfs: enforce statfs[64] structure initialization
845f98af6ae8 can: kvaser_pciefd: Disable interrupts in probe error path
7a7ec807fe54 can: kvaser_pciefd: Do not send EFLUSH command on TFD interrupt
65e85232ffa6 can: kvaser_pciefd: Clear listen-only bit if not explicitly requested
0babb3fabf55 can: kvaser_pciefd: Empty SRB buffer in probe
03714e9c04ec can: kvaser_pciefd: Call request_irq() before enabling interrupts
3bbeba3ce14d can: kvaser_pciefd: Set CAN_STATE_STOPPED in kvaser_pciefd_stop()
073a4d750cec can: isotp: recvmsg(): allow MSG_CMSG_COMPAT flag
b4b8294a41ca can: j1939: recvmsg(): allow MSG_CMSG_COMPAT flag
f7f799a6fe38 ALSA: hda/realtek: Add quirk for 2nd ASUS GU603
b4f770e61230 ALSA: hda/realtek: Add a quirk for HP EliteDesk 805
6cebdffba628 ALSA: hda/realtek: Add quirk for Clevo L140AU
3add6b2a4a69 ALSA: hda: Add NVIDIA codec IDs a3 through a7 to patch table
546b1f5f45a3 ALSA: hda: Fix Oops by 9.1 surround channel names
ff466f77d0a5 usb: typec: altmodes/displayport: fix pin_assignment_show
35e31e1e921c usb: gadget: u_ether: Fix host MAC address case
e35adb75fda5 usb: dwc3: debugfs: Resume dwc3 before accessing registers
66070f5b9995 USB: UHCI: adjust zhaoxin UHCI controllers OverCurrent bit value
0caed1faf5f6 usb-storage: fix deadlock when a scsi command timeouts more than once
6340e432cf70 USB: usbtmc: Fix direction for 0-length ioctl control messages
3b3c6f2d2f1f ALSA: usb-audio: Add a sample rate workaround for Line6 Pod Go
3bd6d11e7e63 bridge: always declare tunnel functions
3fa13203b6d9 netfilter: nft_set_rbtree: fix null deref on element insertion
6cfe6f51856b vlan: fix a potential uninit-value in vlan_dev_hard_start_xmit()
562ec162b04a igb: fix bit_shift to be in [1..8] range
dc61f7582cc9 cassini: Fix a memory leak in the error handling path of cas_init_one()
81139679f4d2 scsi: storvsc: Don't pass unused PFNs to Hyper-V host
d0d39bed9e95 wifi: iwlwifi: mvm: don't trust firmware n_channels
f9337a41772d wifi: mac80211: fix min center freq offset tracing
43f6575004e0 net: bcmgenet: Restore phy_stop() depending upon suspend/close
e92727ed9e8b net: bcmgenet: Remove phy_stop() from bcmgenet_netif_stop()
2937127d24cc tipc: check the bearer min mtu properly when setting it by netlink
2bd4ff4ffb92 tipc: do not update mtu if msg_max is too small in mtu negotiation
097ea78d8cca tipc: add tipc_bearer_min_mtu to calculate min mtu
76ea144a35ba net/tipc: fix tipc header files for kernel-doc
02b20e0bc0c2 net: nsh: Use correct mac_offset to unwind gso skb in nsh_gso_segment()
01cdda0d27d7 drm/exynos: fix g2d_open/close helper function definitions
ce97bb60a6e4 SUNRPC: Fix trace_svc_register() call site
f9982db735a8 media: netup_unidvb: fix use-after-free at del_timer()
0cefa4215243 net: hns3: fix reset delay time to avoid configuration timeout
aba74ad99870 net: hns3: fix sending pfc frames after reset issue
e1f800be74c1 erspan: get the proto with the md version for collect_md
153017561d28 serial: arc_uart: fix of_iomap leak in `arc_serial_probe`
e7fd68abbba3 tcp: fix possible sk_priority leak in tcp_v4_send_reset()
788791990d74 net: Find dst with sk's xfrm policy not ctl_sk
a9ef8b258988 ipv4/tcp: do not use per netns ctl sockets
171669917762 vsock: avoid to close connected socket after the timeout
b1cf6bd8833b ALSA: hda/realtek: Apply HP B&O top speaker profile to Pavilion 15
13c5fa1248bf ALSA: firewire-digi00x: prevent potential use after free
6fb537895d29 net: phy: dp83867: add w/a for packet errors seen with short cables
83996d317b1d net: fec: Better handle pm_runtime_get() failing in .remove()
8f57715f8ef6 af_key: Reject optional tunnel/BEET mode templates in outbound policies
f5cb28a90c8c cpupower: Make TSC read per CPU for Mperf monitor
dc30fed07ddf drm/msm/dpu: Remove duplicate register defines from INTF
eaf9394ed79c drm/msm/dp: unregister audio driver during unbind
c5449195f86e Revert "Fix XFRM-I support for nested ESP tunnels"
295e07a76bf3 xfrm: don't check the default policy if the policy allows the packet
84fdaaf0d76e btrfs: fix space cache inconsistency after error loading it from disk
a842fb6038e5 btrfs: replace calls to btrfs_find_free_ino with btrfs_find_free_objectid
9c69a9d05824 btrfs: move btrfs_find_highest_objectid/btrfs_find_free_objectid to disk-io.c
6a1a72a8cfda mfd: dln2: Fix memory leak in dln2_probe()
7d939e367b64 phy: st: miphy28lp: use _poll_timeout functions for waits
3b37bb0d9290 Input: xpad - add constants for GIP interface numbers
94ec1a44e843 iommu/arm-smmu-v3: Acknowledge pri/event queue overflow if any
cae5f8f4f7a8 clk: tegra20: fix gcc-7 constant overflow warning
8c472e68bea0 iommu/arm-smmu-qcom: Limit the SMR groups to 128
214ae2c1a9ce RDMA/core: Fix multiple -Warray-bounds warnings
2d9ca5f62f2b recordmcount: Fix memory leaks in the uwrite function
cf3e2916017d sched: Fix KCSAN noinstr violation
158502f79076 mcb-pci: Reallocate memory region to avoid memory overlapping
2c86a1305c14 serial: 8250: Reinit port->pm on port specific driver unbind
7ed30db87994 usb: typec: tcpm: fix multiple times discover svids error
60fabcba7543 HID: wacom: generic: Set battery quirk only when we see battery data
d234de1a924e spi: spi-imx: fix MX51_ECSPI_* macros when cs > 3
0898a1df72ac HID: logitech-hidpp: Reconcile USB and Unifying serials
958534d4368b HID: logitech-hidpp: Don't use the USB serial for USB devices
bb1313f37e7b staging: rtl8192e: Replace macro RTL_PCI_DEVICE with PCI_DEVICE
55410a9144c7 Bluetooth: L2CAP: fix "bad unlock balance" in l2cap_disconnect_rsp
a2d816f55da1 Bluetooth: hci_bcm: Fall back to getting bdaddr from EFI if not set
ba66851aba80 ipvs: Update width of source for ip_vs_sync_conn_options
866921dc06b9 wifi: ath11k: Fix SKB corruption in REO destination ring
91ad1ab3cc7e wifi: iwlwifi: dvm: Fix memcpy: detected field-spanning write backtrace
e732a266b973 null_blk: Always check queue mode setting from configfs
059e426d666a wifi: iwlwifi: pcie: Fix integer overflow in iwl_write_to_user_buf
0fc0d287c1e7 wifi: iwlwifi: pcie: fix possible NULL pointer dereference
7560ed6592ff samples/bpf: Fix fout leak in hbm's run_bpf_prog
ad87bd313f70 f2fs: fix to drop all dirty pages during umount() if cp_error is set
fc7237e191b9 ext4: Fix best extent lstart adjustment logic in ext4_mb_new_inode_pa()
3ca3005b502c ext4: set goal start correctly in ext4_mb_normalize_request
4c2c8f959984 gfs2: Fix inode height consistency check
697f92f8317e scsi: message: mptlan: Fix use after free bug in mptlan_remove() due to race condition
f748e1525383 lib: cpu_rmap: Avoid use after free on rmap->obj array entries
4621e24c9257 scsi: target: iscsit: Free cmds before session free
2ea171230a39 net: Catch invalid index in XPS mapping
8b61e7ad13f2 net: pasemi: Fix return type of pasemi_mac_start_tx()
e0e7faee3a7d scsi: lpfc: Prevent lpfc_debugfs_lockstat_write() buffer overflow
22ab5fed07ad ext2: Check block size validity during mount
4e8dc0e5c763 wifi: brcmfmac: cfg80211: Pass the PMK in binary instead of hex
e8d49d1c5968 bpf: Annotate data races in bpf_local_storage
30d041c18dfb wifi: ath: Silence memcpy run-time false positive warning
b8e7589f50b7 drm/amd: Fix an out of bounds error in BIOS parser
978e0d05547a ACPICA: ACPICA: check null return of ACPI_ALLOCATE_ZEROED in acpi_db_display_objects
16359bc02c09 ACPICA: Avoid undefined behavior: applying zero offset to null pointer
3f64a0e66469 drm/tegra: Avoid potential 32-bit integer overflow
f718f1fd3e4c remoteproc: stm32_rproc: Add mutex protection for workqueue
066b90bca755 ACPI: EC: Fix oops when removing custom query handlers
7d8f5ccc826b firmware: arm_sdei: Fix sleep from invalid context BUG
5c23f6da62f7 memstick: r592: Fix UAF bug in r592_remove due to race condition
ae6769fb939c arm64: dts: qcom: msm8996: Add missing DWC3 quirks
bb1616e1057d regmap: cache: Return error in cache sync operations for REGCACHE_NONE
d5138ad7ca1d drm/amd/display: Use DC_LOG_DC in the trasform pixel function
c8daee665858 fs: hfsplus: remove WARN_ON() from hfsplus_cat_{read,write}_inode()
a7d21b858589 rcu: Protect rcu_print_task_exp_stall() ->exp_tasks access
e4842de4ec13 refscale: Move shutdown from wait_event() to wait_event_idle()
100c0ad6c045 ext4: allow ext4_get_group_info() to fail
371d8b8ea0cb ext4: allow to find by goal if EXT4_MB_HINT_GOAL_ONLY is set
8669fff0d0cd ext4: add mballoc stats proc file
9b6a0c140e27 ext4: drop s_mb_bal_lock and convert protected fields to atomic
0983142c5f17 ext4: remove redundant mb_regenerate_buddy()
d48b7eea9469 ext4: fix lockdep warning when enabling MMP
5c87115520d2 ext4: don't clear SB_RDONLY when remounting r/w until quota is re-enabled
8284c7592d90 ext4: reflect error codes from ext4_multi_mount_protect() to its callers
efd18a91c9c2 ext4: remove an unused variable warning with CONFIG_QUOTA=n
df1be652a45f fbdev: arcfb: Fix error handling in arcfb_probe()
bd6b353671fc drm/i915/dp: prevent potential div-by-zero
8307e372e744 af_unix: Fix data races around sk->sk_shutdown.
9b977b0cbb6d af_unix: Fix a data race of sk->sk_receive_queue->qlen.
fb6ac4b5bdfe net: datagram: fix data-races in datagram_poll()
f4a371d3f5a7 ipvlan:Fix out-of-bounds caused by unclear skb->cb
963fe9ed8626 tcp: add annotations around sk->sk_shutdown accesses
f86568eca4c9 tcp: factor out __tcp_close() helper
34a5ee69ec62 net: add vlan_get_protocol_and_depth() helper
9ccf3edbafba net: tap: check vlan with eth_type_vlan() method
449391400960 net: deal with most data-races in sk_wait_event()
1b33bdd76635 net: annotate sk->sk_err write from do_recvmmsg()
f92557f79a60 netlink: annotate accesses to nlk->cb_running
26001e75dc5c netfilter: conntrack: fix possible bug_on with enable_hooks=1
d06f67b2b8dc net: Fix load-tearing on sk->sk_stamp in sock_recv_cmsgs().
8eb35b1aca84 linux/dim: Do nothing if no time delta between samples
4d3ae448e850 net: mdio: mvusb: Fix an error handling path in mvusb_mdio_probe()
b882224d7367 ARM: 9296/1: HP Jornada 7XX: fix kernel-doc warnings
139c27648f8d drm/mipi-dsi: Set the fwnode for mipi_dsi_device
423908e89d7d driver core: add a helper to setup both the of_node and fwnode of a device
(From OE-Core rev: 2829482f2924082ad01f356ea281ed308e35d44f)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Update dbus to 1.14.8 to fix CVE-2023-34969 and serveral bugs
changes:
f90d4f1693/NEWS
commits:
55d11f57 doc/dbus-api-design: fix wrong closing tag
a96f417f CI: Run a detached pipeline for merge requests
9e0477fc CI: Only run for pushes to dbus
077f7e43 CI: Remove an obsolete workaround
07fe44f4 CI: Update Windows runners
ec708d55 CI: Avoid using a no-op download location that gives a 403 error
45e6e93e dbus_message_iter_get_signature: Fix two memory leaks on OOM
0bb1942e dbus-internals: use `_DBUS_FUNCTION_NAME` in `_dbus_verbose()`
8df1b8be dbus-sysdeps-win: do not log function name twice
5c3a4e81 dbus-spawn-win: use `_DBUS_FUNCTION_NAME` instead of `__FUNCTION__`
8e457296 Update NEWS
e1ffce17 Revert "CI: Remove an obsolete workaround"
40c0802f monitor test: Log the messages that we monitored
a70c8f2f bus: Assign a serial number for messages from the driver
39b5c617 monitor test: Reproduce #457
f99e5de1 Update NEWS
21414587 AUTHORS: Update
f90d4f16 Release v1.14.8
(From OE-Core rev: fc3067f163c21434d3f79d03b26b21165be6927a)
Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
=========
configure: Make xf86misc support disabled by default
Variable scope reduction
Remove unnecessary downcast of double to float
Call memset() instead of hand-coding our own equivalent
(From OE-Core rev: 74fef3bca108017f8a1ce0e451b4b2172ae28fcf)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit d87785189336a69ae998f75394ceaebf63decb16)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
===========
test: skip compressed file tests when --disable-open-zfile is used
itlab CI: build with each of --enable-open-zfile & --disable-open-zfile
configure: correct error message to suggest --disable-open-zfile
Fix a memleak in ParsePixels error code path
Fix CVE-2022-44617: Runaway loop with width of 0 and enormous height
open-zfile: Make compress & uncompress commands optional
Require LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
test: Use PACKAGE_BUGREPORT instead of hard-coded URL's
test: Add simple test cases for functions in src/rgb.c
xpmReadRgbNames: constify filename argument
XpmCreateDataFromXpmImage: Fix misleading indentation
parse.c: Wrap FREE_CIDX definition in do { ... } while(0)
parse.c: remove unused function xstrlcpy()
(From OE-Core rev: 22d9e097538f84a12dd262c1ae936fb8107c2768)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 4d9f0958eecdf683434d77a4f65611803cffd247)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
* Adding missing man pages to the tar release file.
(From OE-Core rev: 7e4915c4be7dca35a63a912a55bcfa525a532e22)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 0f6da8601fd4d992550e8afe7b09ba7c491250fd)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
==========
* bt2: honor build system compiler/linker preferences
* Fix: clear_string_field(): set first character to 0
* Fix: src.ctf.fs: Not resolving event common ctx
* debug-info: fix -Wenum-int-mismatch problem in copy_field_class_content_internal
* fix: pass exec-prefix to python bindings install
* fix: document proper Bison version requirement
* cli: use return value of g_string_free
* babeltrace2-query(1): erroneous parameter used in example
* Fix: tests: print real values in a fixed format
* Fix: bt2: autodisc: remove thread error while inserting status in map
* tests: src.ctf.fs: add test for metadata with invalid syntax
* tests: shorten names of session-rotation trace
* bt2: ignore -Wredundant-decls warning
* ctf: fix -Wformat-overflow error in ctf-meta-resolve.cpp
* ctf-writer: fix -Wformat-overflow errors in resolve.c
* Fix: src.text.details: use write_uint_prop_value to handle unsigned values in write_int_range
* Add `dev-requirements.txt` for pip
* Fix: src.ctf.lttng-live: consider empty metadata packet as retry
* Fix: ctf: wrongfully requiring CTF metadata signature for every section
* Fix: src.ctf.lttng-live: session closed before any metadata is received
* fix: obsolete warnings with autoconf >= 2.71
* fix: explicitly disable '-Wsuggest-attribute=format'
* fix: set stable branch in gitreview config
* Fix: ctf-writer: list of reserved keywords
* compiler warning cleanup: is_signed_type: compare -1 to 1
* Update working version to Babeltrace 2.0.5
(From OE-Core rev: 56121b2378899b928bec3a4eb8abe487789aff17)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit ae47b6c2a4bdee031d42687582049c15614faa6d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The go command may generate unexpected code at build time when using cgo.
This may result in unexpected behavior when running a go program which uses cgo.
This may occur when running an untrusted module which contains directories
with newline characters in their names. Modules which are retrieved using the go
command, i.e. via "go get", are not affected (modules retrieved using GOPATH-mode,
i.e. GO111MODULE=off, may be affected).
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-29402
Upstream patches:
4dae3bbe0e
(From OE-Core rev: aeb0829e52c60a77a2135af8332435b6e2db5b3d)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The go command may execute arbitrary code at build time when using cgo.
This may occur when running "go get" on a malicious module, or when running
any other command which builds untrusted code. This is can by triggered by
linker flags, specified via a "#cgo LDFLAGS" directive. Flags containing
embedded spaces are mishandled, allowing disallowed flags to be smuggled
through the LDFLAGS sanitization by including them in the argument of
another flag. This only affects usage of the gccgo compiler.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-29405
Upstream patches:
6d8af00a63
(From OE-Core rev: 7ce6d0029effc06cff500271a124150f1a7db7b3)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The go command may execute arbitrary code at build time when using cgo.
This may occur when running "go get" on a malicious module, or when running
any other command which builds untrusted code. This is can by triggered by
linker flags, specified via a "#cgo LDFLAGS" directive. The arguments for a
number of flags which are non-optional are incorrectly considered optional,
allowing disallowed flags to be smuggled through the LDFLAGS sanitization.
This affects usage of both the gc and gccgo compilers.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-29404
Upstream patches:
bbeb55f5fa
(From OE-Core rev: 3e51122f8e2b4a7cd2a1c711175e6daf59b8368b)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When running prepare_recipe_sysroot task, the extend_recipe_sysroot
is run twice.
What prepare_recipe_sysroot does is executing extend_recipe_sysroot,
there's no need to add extend_recipe_sysroot to its prefuncs.
(From OE-Core rev: dad053c4b99d4aefebe40459500ad53a2b458fa0)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bf7584a2ac16ee46ff5b41536b06bb46d0cbada7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Devtool selftests require poky dir a git repo, when downloading poky as a tar,
this is not the case. Those tests will now skipped.
[YOCTO #12389]
(From OE-Core rev: 9ce30faa488ea905292b9944fb3c1b471019f28c)
Signed-off-by: Thomas Roos <throos@amazon.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 95a5bc130dc51ea9de95c64dbf0e9c7892415d50)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
If a specific kernel provider or configuration wants to enable BTF
and pahole analysis, it isn't currently possible due to the explicit
definition to false in the base kernel build arguments.
pahole is now detected by the kernel built itself, so unless
pahole-native is enabled, the result is the same.
If a kernel does require an explicit disable of pahole, it is better
to carry PAHOLE=false in those specific recipes.
(From OE-Core rev: 44b75c7442b05a2fedcc0d73982566c2bef84357)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b1e4851a36ed47ce6ba880a49264b9a57c78cf4f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is needed as each user could be setting different nice levels
while building, however this should not make the shared cache unusable.
(From OE-Core rev: c89090e148cdf404e25e1262d1366e963277fd2c)
Signed-off-by: Lorenzo Arena <arena.lor@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 42784f9360345da1c01d988070253e7ffd5ac4ac)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
==========
- Translation updates for ISO 3166-1
- Translation updates for ISO 3166-3
- Translation updates for ISO 639-2
- Translation updates for ISO 3166-1
- Translation updates for ISO 3166-2
- Translation updates for ISO 3166-3
- Translation updates for ISO 639-2
- Translation updates for ISO 639-3
- Translation updates for ISO 639-5
- Translation updates for ISO 4217
- Translation updates for ISO 15924
* ISO 3166-2: Fix wrong Spanish translation
(From OE-Core rev: 86e8e31a413fdbb8ffa825c41d0fe83c292a6b76)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 355f2f9fe8a1e6c5e78f136cb3ed77c9004fb75c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit b189240b211e5d8f40747a0128834ed83c38a8f4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The references to the target and host systems (i.e. the client and
server respectively) were swapped in the instructions.
Also, there's no need to specify the device node on the server command
line that is run on the host system.
The previous, incorrect, instructions resulted typically in:
target# blktrace -l /dev/mmcblk1
server: waiting for connections...
and
host$ blktrace -d /dev/mmcblk2 -h target
Invalid path /dev/mmcblk2 specified: 2/No such file or directory
unless the same device node happened to exist on the host system.
Based on
target# blktrace --version
blktrace version 2.0.0
and
host$ blktrace --version
blktrace version 2.0.0
(From yocto-docs rev: 6d16d2bde0aa32276a035ee49703e6eea7c7b29a)
Signed-off-by: Hannu Lounento <hannu.lounento@vaisala.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
It was not clear to me what a "full revision identifier" was in the
context of the note documenting SRCREV. After clarification via IRC,
this submission attempts to clarify what is meant to help future
readers.
(From yocto-docs rev: c570732cededffa2992173e6c43de4845a1d7d44)
Signed-off-by: Ed Beroset <beroset@ieee.org>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
cf9df9e8d89f ("ipk: Decode byte data to string in manifest handling")
did a bit of least-effort fix to a string vs byte sequence issue in the
manifest handling. The approach was chosen as it localised the fix,
rather than having to analyse further call sites.
However since then f2167ae80258 ("package_manager/ipk: do not pipe
stderr to stdout") was applied, reworking the output handling from the
subcommand. dummy_bytes() now returns a string, so stop trying to decode
it.
Fixes: f2167ae80258 ("package_manager/ipk: do not pipe stderr to stdout")
Cc: Curtis Meier <cmeier@us.ibm.com>
Cc: Pam Eggler <eggler@us.ibm.com>
(From OE-Core rev: b61739554780d70307d2b6b37d2b3b1c7df93c77)
(From OE-Core rev: 0e17a5a4f0e3301bf78f77bb5ca4aaf3e4dbc7af)
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 07e5a6331be60d5e35d7336a6215a972ced6eb57)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
At second running, there are four new failed case:
d_loaddump f_bigalloc_badinode f_bigalloc_orphan_list f_dup_resize
The test_data.tmp is necessary, but it is deleted by run-ptest.
So it should be restored after testing.
(From OE-Core rev: 3a5ce6f8090f912bb9744e8cc8f3f2510f351a33)
Signed-off-by: Qiu Tingting <qiutt@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit d0d08dd9a8a179e25b9cfcbac696c1d212a1910c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Refactor _process_deps to expand systemd instance specifier "%i" to the
template instance.
This change expands on prior commit e510222b57 ("systemd-systemctl: fix
instance template WantedBy symlink construction") by substituting every
"%i" pattern-match with the instance name.
The regexp handles the following cases:
* svc-wants@%i.service
* sys-subsystem-net-devices-%i.device
(From OE-Core rev: 11d3f1c8252592c377ea6b92bba77ef6d9c75464)
Signed-off-by: Ian Ray <ian.ray@ge.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 9356276137267a29ae2289d796a2940918375308)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
1fe619a7d252 Linux 5.15.113
7de20a23e52a HID: wacom: add three styli to wacom_intuos_get_tool_type
25b835d40838 HID: wacom: Add new Intuos Pro Small (PTH-460) device IDs
a540aabefa9b HID: wacom: Force pen out of prox if no events have been received in a while
b4c7b54b83f6 s390/qdio: fix do_sqbs() inline assembly constraint
b8427b8522d9 nilfs2: fix use-after-free bug of nilfs_root in nilfs_evict_inode()
cafdd9cefc5b powerpc/64s/radix: Fix soft dirty tracking
fe59dd824fad tpm/tpm_tis: Disable interrupts for more Lenovo devices
b9eb4491f0c9 powerpc/iommu: Incorrect DDW Table is referenced for SR-IOV device
317ee8c54faa ceph: force updating the msg pointer in non-split case
e3d1adcad5b7 vc_screen: reload load of struct vc_data pointer in vcs_write() to avoid UAF
03e39ec73941 thunderbolt: Clear registers properly when auto clear isn't in use
742ed5bb683e serial: qcom-geni: fix enabling deactivated interrupt
6960267e7d0b serial: 8250_exar: Add support for USR298x PCI Modems
7d8873ecbd3c serial: Add support for Advantech PCI-1611U card
51d90382d241 statfs: enforce statfs[64] structure initialization
865be1cff2c0 ksmbd: fix global-out-of-bounds in smb2_find_context_vals
7657321b2624 ksmbd: fix wrong UserName check in session_user
61e043326e72 ksmbd: allocate one more byte for implied bcc[0]
1c2461b41f30 ksmbd: smb2: Allow messages padded to 8byte boundary
49f47945386e SMB3: drop reference to cfile before sending oplock break
653d30a1512c SMB3: Close all deferred handles of inode in case of handle lease break
972a33e6cc76 can: kvaser_pciefd: Disable interrupts in probe error path
143623940a03 can: kvaser_pciefd: Do not send EFLUSH command on TFD interrupt
c724a6edc1c6 can: kvaser_pciefd: Clear listen-only bit if not explicitly requested
f04628305cac can: kvaser_pciefd: Empty SRB buffer in probe
da711a8af0fa can: kvaser_pciefd: Call request_irq() before enabling interrupts
4857ccfbe283 can: kvaser_pciefd: Set CAN_STATE_STOPPED in kvaser_pciefd_stop()
9ac2448c24a9 can: isotp: recvmsg(): allow MSG_CMSG_COMPAT flag
a17cf315f246 can: j1939: recvmsg(): allow MSG_CMSG_COMPAT flag
83af0876040b ALSA: hda/realtek: Add quirk for 2nd ASUS GU603
cc1924ab21d7 ALSA: hda/realtek: Add a quirk for HP EliteDesk 805
3a32c5149461 ALSA: hda/realtek: Add quirk for Clevo L140AU
059a18e95e06 ALSA: hda: Add NVIDIA codec IDs a3 through a7 to patch table
e8c7d7c43d5e ALSA: hda: Fix Oops by 9.1 surround channel names
831a1ffb0a93 xhci: Fix incorrect tracking of free space on transfer rings
4c5c4870694b xhci-pci: Only run d3cold avoidance quirk for s2idle
fc0e18f95c88 usb: typec: altmodes/displayport: fix pin_assignment_show
0ed9257a8ab9 usb: gadget: u_ether: Fix host MAC address case
c51a131cacf4 usb: dwc3: debugfs: Resume dwc3 before accessing registers
720be29c7d1c USB: UHCI: adjust zhaoxin UHCI controllers OverCurrent bit value
2ef3ecff0907 usb-storage: fix deadlock when a scsi command timeouts more than once
3b43d9df27a7 USB: usbtmc: Fix direction for 0-length ioctl control messages
15d744133218 ALSA: usb-audio: Add a sample rate workaround for Line6 Pod Go
62499cf3ddd7 bridge: always declare tunnel functions
ec5caa765f7f netfilter: nft_set_rbtree: fix null deref on element insertion
b0cc763806c0 netfilter: nf_tables: fix nft_trans type confusion
addaba68018b vlan: fix a potential uninit-value in vlan_dev_hard_start_xmit()
3a0450d38a3e igb: fix bit_shift to be in [1..8] range
c15c3bb90c9a net: dsa: mv88e6xxx: Fix mv88e6393x EPC write command offset
234e744d86bd cassini: Fix a memory leak in the error handling path of cas_init_one()
76a7cd047b3a scsi: storvsc: Don't pass unused PFNs to Hyper-V host
05ad5a4d421c wifi: iwlwifi: mvm: don't trust firmware n_channels
d66490c29364 wifi: iwlwifi: mvm: fix cancel_delayed_work_sync() deadlock
fce7d92a8990 wifi: mac80211: fix min center freq offset tracing
fd8bc0f581af net: bcmgenet: Restore phy_stop() depending upon suspend/close
99c5acfd1f6a net: bcmgenet: Remove phy_stop() from bcmgenet_netif_stop()
ed1283c46d90 s390/cio: include subchannels without devices also for evaluation
673cb4798921 tipc: check the bearer min mtu properly when setting it by netlink
575e84d90a74 tipc: do not update mtu if msg_max is too small in mtu negotiation
5cf99d5f656a tipc: add tipc_bearer_min_mtu to calculate min mtu
6a7690f2bd17 virtio_net: Fix error unwinding of XDP initialization
18c0bd6888b3 virtio-net: Maintain reverse cleanup order
cdd8160dcda1 net: nsh: Use correct mac_offset to unwind gso skb in nsh_gso_segment()
f51d15d9bc41 drm/exynos: fix g2d_open/close helper function definitions
45a158a212d9 SUNRPC: Fix trace_svc_register() call site
1c28b206ae49 SUNRPC: always free ctxt when freeing deferred request
54832355b0b1 SUNRPC: Remove svc_rqst::rq_xprt_hlen
7a1dca013124 SUNRPC: Remove dead code in svc_tcp_release_rqst()
9712097e89b2 SUNRPC: Clean up svc_deferred_class trace events
8c26ecd887ef tracing: Introduce helpers to safely handle dynamic-sized sockaddrs
7851771789e8 SUNRPC: double free xprt_ctxt while still in use
051af3f0b7d1 media: netup_unidvb: fix use-after-free at del_timer()
8e37baf62181 net: hns3: fix reset delay time to avoid configuration timeout
aaf7c7d8448f net: hns3: fix sending pfc frames after reset issue
56640004ee56 net: hns3: fix output information incomplete for dumping tx queue info with debugfs
98e964801811 erspan: get the proto with the md version for collect_md
5258395e67fe serial: 8250_bcm7271: fix leak in `brcmuart_probe`
cc2f7cee933f serial: 8250_bcm7271: balance clk_enable calls
f76a18e53a66 serial: arc_uart: fix of_iomap leak in `arc_serial_probe`
15251e783a4b tcp: fix possible sk_priority leak in tcp_v4_send_reset()
2832d6244634 vsock: avoid to close connected socket after the timeout
2c1617dc6dab ALSA: hda/realtek: Apply HP B&O top speaker profile to Pavilion 15
bbb5ac533ca6 ALSA: firewire-digi00x: prevent potential use after free
81c843152422 net: phy: dp83867: add w/a for packet errors seen with short cables
c1bc2870f14e net: fec: Better handle pm_runtime_get() failing in .remove()
b598e76b49cc selftets: seg6: disable rp_filter by default in srv6_end_dt4_l3vpn_test
5041897b9f0f selftests: seg6: disable DAD on IPv6 router cfg for srv6_end_dt4_l3vpn_test
d6c89d776be2 af_key: Reject optional tunnel/BEET mode templates in outbound policies
19457a4423a3 cpupower: Make TSC read per CPU for Mperf monitor
3a4ff14b0ecb ASoC: fsl_micfil: Fix error handler with pm_runtime_enable
a2e5a77ae3c3 dt-bindings: display/msm: dsi-controller-main: Document qcom, master-dsi and qcom, sync-dual-dsi
e1c9c7482e31 drm/msm/dpu: Remove duplicate register defines from INTF
85eb9aef4fb5 drm/msm/dpu: Move non-MDP_TOP INTF_INTR offsets out of hwio header
b688a4115bdf drm/msm/dpu: Add INTF_5 interrupts
d8a291e39af2 drm/msm/dp: unregister audio driver during unbind
288247879f4e Revert "Fix XFRM-I support for nested ESP tunnels"
46f1a953545f xfrm: don't check the default policy if the policy allows the packet
98f179c5b072 platform/x86: hp-wmi: add micmute to hp_wmi_keymap struct
a832a43fdd95 platform/x86: Move existing HP drivers to a new hp subdir
df14d64b36b1 platform/x86: hp-wmi: Support touchpad on/off
6158e958e824 parisc: Replace regular spinlock with spin_trylock on panic path
1fa3fb4f7018 mfd: dln2: Fix memory leak in dln2_probe()
c9faa002ea4b soundwire: qcom: gracefully handle too many ports in DT
b61382a825c0 phy: st: miphy28lp: use _poll_timeout functions for waits
dc9c54d34dbd Input: xpad - add constants for GIP interface numbers
92c089a931fd iommu/sprd: Release dma buffer to avoid memory leak
a2bc5241ee14 iommu/arm-smmu-v3: Acknowledge pri/event queue overflow if any
aa50d0a460cc clk: tegra20: fix gcc-7 constant overflow warning
20f9bfc664d6 fs/ntfs3: Fix a possible null-pointer dereference in ni_clear()
85afd3007465 fs/ntfs3: Add length check in indx_get_root
2a67f26f70ab fs/ntfs3: Validate MFT flags before replaying logs
d4b744825295 fs/ntfs3: Fix NULL dereference in ni_write_inode
1fd5b80c9339 fs/ntfs3: Enhance the attribute size check
6d3d3283e6b4 fs/ntfs3: Fix NULL pointer dereference in 'ni_write_inode'
8ebcbd1811b8 iommu/arm-smmu-qcom: Limit the SMR groups to 128
036e02dfd515 RDMA/core: Fix multiple -Warray-bounds warnings
ff70ad9159fb recordmcount: Fix memory leaks in the uwrite function
f3458b84c627 sched: Fix KCSAN noinstr violation
0652b54957ff mcb-pci: Reallocate memory region to avoid memory overlapping
1ba5594739d8 serial: 8250: Reinit port->pm on port specific driver unbind
ee009c2abc44 usb: typec: tcpm: fix multiple times discover svids error
973f84956b2c HID: wacom: generic: Set battery quirk only when we see battery data
b2069cfe1b33 spi: spi-imx: fix MX51_ECSPI_* macros when cs > 3
6293d0533cfe HID: logitech-hidpp: Reconcile USB and Unifying serials
3f1719790cc3 HID: logitech-hidpp: Don't use the USB serial for USB devices
a97e60bd2896 staging: rtl8192e: Replace macro RTL_PCI_DEVICE with PCI_DEVICE
116b9c002c89 Bluetooth: L2CAP: fix "bad unlock balance" in l2cap_disconnect_rsp
392a06f965fe Bluetooth: hci_bcm: Fall back to getting bdaddr from EFI if not set
c018360885f0 Bluetooth: btintel: Add LE States quirk support
7aa14a7a3a85 ipvs: Update width of source for ip_vs_sync_conn_options
52851d0c3354 nbd: fix incomplete validation of ioctl arg
3d3f8fe01a01 wifi: ath11k: Fix SKB corruption in REO destination ring
87940e4030e4 wifi: iwlwifi: dvm: Fix memcpy: detected field-spanning write backtrace
35e304dbcefa null_blk: Always check queue mode setting from configfs
82f877ec9b04 wifi: iwlwifi: pcie: Fix integer overflow in iwl_write_to_user_buf
7545f21eee13 wifi: iwlwifi: pcie: fix possible NULL pointer dereference
095018267c87 bpf: Add preempt_count_{sub,add} into btf id deny list
e3e6e252d74f samples/bpf: Fix fout leak in hbm's run_bpf_prog
e2759a59a4cc f2fs: fix to check readonly condition correctly
d8f4ad5f3979 f2fs: fix to drop all dirty pages during umount() if cp_error is set
613f6cde5ebb ext4: Fix best extent lstart adjustment logic in ext4_mb_new_inode_pa()
bc4a3e1d07a8 ext4: set goal start correctly in ext4_mb_normalize_request
203e8875d294 scsi: ufs: ufs-pci: Add support for Intel Lunar Lake
71ee06193ed7 gfs2: Fix inode height consistency check
e84282efc87f scsi: message: mptlan: Fix use after free bug in mptlan_remove() due to race condition
c6ed54dd9069 lib: cpu_rmap: Avoid use after free on rmap->obj array entries
1911cca5916b scsi: target: iscsit: Free cmds before session free
a6f9f53d73bf net: Catch invalid index in XPS mapping
e3644d15d74a net: pasemi: Fix return type of pasemi_mac_start_tx()
d5eaf2a6b077 bnxt: avoid overflow in bnxt_get_nvram_directory()
f91037487036 scsi: lpfc: Prevent lpfc_debugfs_lockstat_write() buffer overflow
99f8a15af6c9 ext2: Check block size validity during mount
e242c66f7ecf wifi: brcmfmac: cfg80211: Pass the PMK in binary instead of hex
fe913db2acef bpf: Annotate data races in bpf_local_storage
aa186074b6f2 wifi: ath: Silence memcpy run-time false positive warning
9f87ee85ce1d media: Prefer designated initializers over memset for subdev pad ops
66acfe798cd0 drm/amd: Fix an out of bounds error in BIOS parser
d997c920a530 ACPICA: ACPICA: check null return of ACPI_ALLOCATE_ZEROED in acpi_db_display_objects
3a7a4aa3958c ACPICA: Avoid undefined behavior: applying zero offset to null pointer
0aa3d558f14e drm/msm/dp: Clean up handling of DP AUX interrupts
33cc6ef106c9 drm/tegra: Avoid potential 32-bit integer overflow
19882a49b242 remoteproc: stm32_rproc: Add mutex protection for workqueue
f4a573eed637 ACPI: EC: Fix oops when removing custom query handlers
66caf2278771 firmware: arm_sdei: Fix sleep from invalid context BUG
162a9b321538 memstick: r592: Fix UAF bug in r592_remove due to race condition
dcf632bca424 media: pci: tw68: Fix null-ptr-deref bug in buf prepare and finish
f0a06203f2fe media: cx23885: Fix a null-ptr-deref bug in buffer_prepare() and buffer_finish()
c12733784112 arm64: dts: qcom: msm8996: Add missing DWC3 quirks
15856ab95617 regmap: cache: Return error in cache sync operations for REGCACHE_NONE
e9c5fc4f3f35 drm/amd/display: Use DC_LOG_DC in the trasform pixel function
9fd5be74b38f drm/displayid: add displayid_get_header() and check bounds better
37cab61a52d6 fs: hfsplus: remove WARN_ON() from hfsplus_cat_{read,write}_inode()
e30a55e98ae6 rcu: Protect rcu_print_task_exp_stall() ->exp_tasks access
718b66c5eb65 refscale: Move shutdown from wait_event() to wait_event_idle()
620a3c28221b ext4: allow ext4_get_group_info() to fail
99f7ce0fac22 ext4: allow to find by goal if EXT4_MB_HINT_GOAL_ONLY is set
1de53f2223eb ext4: fix lockdep warning when enabling MMP
c53936d9fb35 ext4: don't clear SB_RDONLY when remounting r/w until quota is re-enabled
3f937d6615dd ext4: reflect error codes from ext4_multi_mount_protect() to its callers
1284253ce95a ext4: remove an unused variable warning with CONFIG_QUOTA=n
96b3233f42fb fbdev: arcfb: Fix error handling in arcfb_probe()
33b5890dfaf2 drm/i915/dp: prevent potential div-by-zero
a41559ae3681 af_unix: Fix data races around sk->sk_shutdown.
610fd07c1370 af_unix: Fix a data race of sk->sk_receive_queue->qlen.
62d43dd14b1d net: datagram: fix data-races in datagram_poll()
7c8be27727fe ipvlan:Fix out-of-bounds caused by unclear skb->cb
3c9d916e39ef gve: Remove the code of clearing PBA bit
43d938a82ed1 tcp: add annotations around sk->sk_shutdown accesses
9dd9ffe11841 net: add vlan_get_protocol_and_depth() helper
538b511bc54e net: deal with most data-races in sk_wait_event()
159a81d5e5a9 net: annotate sk->sk_err write from do_recvmmsg()
1d5c8b01f1df netlink: annotate accesses to nlk->cb_running
1a2b27f2d7ac netfilter: conntrack: fix possible bug_on with enable_hooks=1
8d56f00c61f6 netfilter: nf_tables: always release netdev hooks from notifier
de260d1e02cd net: Fix load-tearing on sk->sk_stamp in sock_recv_cmsgs().
5f5549b99828 net: stmmac: Initialize MAC_ONEUS_TIC_COUNTER register
b0a513ba5b28 net: stmmac: switch to use interrupt for hw crosstimestamping
46e100be0f02 linux/dim: Do nothing if no time delta between samples
2fdce3e52dc3 tick/broadcast: Make broadcast device replacement work correctly
6e455b89f02c scsi: ufs: core: Fix I/O hang that occurs when BKOPS fails in W-LUN suspend
b614567e0dd8 net: mdio: mvusb: Fix an error handling path in mvusb_mdio_probe()
da3cd1a81d4e ARM: 9296/1: HP Jornada 7XX: fix kernel-doc warnings
ac88a1f41f93 drm/mipi-dsi: Set the fwnode for mipi_dsi_device
(From OE-Core rev: 2057c5a6e7480e32709a6afedc3eda1ee64b6709)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit e59689be96bb366233a10db22246751f484691fa)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
9d6bde853685 Linux 5.15.112
0788273bd0a6 drm/amd/display: Fix hang when skipping modeset
de9a3ed42333 RISC-V: Fix up a cherry-pick warning in setup_vm_final()
3c9b08a16978 drbd: correctly submit flush bio on barrier
d0bcf6caa280 serial: 8250: Fix serial8250_tx_empty() race with DMA Tx
0b401c2cccc5 drm/msm/adreno: adreno_gpu: Use suspend() instead of idle() on load error
8beaa3cb293a ext4: fix invalid free tracking in ext4_xattr_move_to_block()
978e5e9111af ext4: remove a BUG_ON in ext4_mb_release_group_pa()
2b3b8f18c0dc ext4: bail out of ext4_xattr_ibody_get() fails for any reason
f22b274429e8 ext4: add bounds checking in get_max_inline_xattr_value_size()
640c8c365999 ext4: fix deadlock when converting an inline directory in nojournal mode
b2531936118d ext4: improve error handling from ext4_dirhash()
b2f1314e6e36 ext4: improve error recovery code paths in __ext4_remount()
5f7d66e5e557 ext4: check iomap type only if ext4_iomap_begin() does not fail
f5e687698c6d ext4: fix data races when using cached status extents
6d9a705a653e ext4: avoid a potential slab-out-of-bounds in ext4_group_desc_csum
d55e76e11592 ext4: fix WARNING in mb_find_extent
c5c385baee9b locking/rwsem: Add __always_inline annotation to __down_read_common() and inlined callers
ed76d3a8910b ksmbd: not allow guest user on multichannel
4f9baa066749 ksmbd: fix deadlock in ksmbd_find_crypto_ctx()
bc77a6e93306 ksmbd: fix racy issue while destroying session on multichannel
a89ff57e4da1 ksmbd: fix kernel oops from idr_remove()
876a7e3b58e3 ksmbd: add channel rwlock
05cbc9806ae8 ksmbd: replace sessions list in connection with xarray
f86a1a74d9a7 ksmbd: fix multi session connection failure
bb3b772f186c ksmbd: set RSS capable in FSCTL_QUERY_NETWORK_INTERFACE_INFO
2456e2889c77 wifi: rtw88: rtw8821c: Fix rfe_option field width
615aff165bda drm/amd/display: Add NULL plane_state check for cursor disable logic
c11b90aced1a drm/amd/display: Refine condition of cursor visibility for pipe-split
bf16debcda5c drm/msm/adreno: fix runtime PM imbalance at gpu load
bac00e57cd5e drm/msm: Remove struct_mutex usage
17eeeac92b47 drm/i915/dg2: Add HDMI pixel clock frequencies 267.30 and 319.89 MHz
6d5e6d5a70e2 drm/i915/dg2: Add additional HDMI pixel clock frequencies
06af228515d1 drm/i915/dg2: Support 4k@30 on HDMI
a63c6b1eed9a ASoC: soc-pcm.c: call __soc_pcm_close() in soc_pcm_close()
aa803e6ecac7 ASoC: DPCM: Don't pick up BE without substream
44b685c4bab3 ASoC: soc-pcm: Move debugfs removal out of spinlock
0d5017dea0c6 ASoC: soc-compress: Inherit atomicity from DAI link for Compress FE
a536c367b0d8 ASoC: soc-pcm: Fix DPCM lockdep warning due to nested stream locks
e2e5b8c72998 fs/ntfs3: Refactoring of various minor issues
5047a228d4c8 HID: wacom: insert timestamp to packed Bluetooth (BT) events
db587340a004 HID: wacom: Set a default resolution for older tablets
823787470e32 drm/amdgpu: disable sdma ecc irq only when sdma RAS is enabled in suspend
b39ba90d69ee drm/amdgpu: Fix vram recover doesn't work after whole GPU reset (v2)
cd3c0f7013c3 drm/amdgpu/gfx: disable gfx9 cp_ecc_error_irq only when enabling legacy gfx ras
6d4b6abedd2d drm/amdgpu: fix an amdgpu_irq_put() issue in gmc_v9_0_hw_fini()
db307e725d5b drm/amd/display: fix flickering caused by S/G mode
61b694b742fb drm/panel: otm8009a: Set backlight parent to panel device
8f57f3e112cf f2fs: fix potential corruption when moving a directory
e2d1cc82ad50 drm/msm: fix NULL-deref on irq uninstall
8f0e1ad5327a drm/msm: fix NULL-deref on snapshot tear down
74543041c03e drm/bridge: lt8912b: Fix DSI Video Mode
9d79ccd97199 ARM: dts: s5pv210: correct MIPI CSIS clock name
137259261cd0 ARM: dts: exynos: fix WM8960 clock name in Itop Elite
eb15fb94d44a remoteproc: imx_rproc: Call of_node_put() on iteration error
de26e064ed9e remoteproc: st: Call of_node_put() on iteration error
8915e44eb3fb remoteproc: stm32: Call of_node_put() on iteration error
975b80702f0e sh: nmi_debug: fix return value of __setup handler
66dbc361214d sh: init: use OF_EARLY_FLATTREE for early init
bb870c4b73d2 sh: mcount.S: fix build error when PRINTK is not enabled
be95f9ebaf10 sh: math-emu: fix macro redefined warning
9fdf3666e3f1 SMB3: force unmount was failing to close deferred close files
c3a0ae5259ea smb3: fix problem remounting a share after shutdown
17ad86d8c122 inotify: Avoid reporting event with invalid wd
e51cd74e32d2 platform/x86: touchscreen_dmi: Add info for the Dexp Ursus KX210i
21de866f75de platform/x86: touchscreen_dmi: Add upside-down quirk for GDIX1002 ts on the Juno Tablet
5af78b437cd3 cifs: release leases for deferred close handles when freezing
f43b5573cddc cifs: fix pcchunk length type in smb2_copychunk_range
69dfa5a2e89d btrfs: fix space cache inconsistency after error loading it from disk
e0710a49799f btrfs: print-tree: parent bytenr must be aligned to sector size
bcc401bb8678 btrfs: zero the buffer before marking it dirty in btrfs_redirty_list_add
f264be24146b btrfs: don't free qgroup space unless specified
29478148bb3b btrfs: fix encoded write i_size corruption with no-holes
91f585024e3e btrfs: zoned: fix wrong use of bitops API in btrfs_ensure_empty_zones
77c6323dad14 btrfs: fix btrfs_prev_leaf() to not return the same key twice
b13e20cc58e4 perf stat: Separate bperf from bpf_profiler
2baa45d8f55e perf evlist: Refactor evlist__for_each_cpu()
871149abc1b9 perf symbols: Fix return incorrect build_id size in elf_read_build_id()
f716374c4e21 crypto: engine - fix crypto_queue backlog handling
fa4e304bbd8a crypto: engine - Use crypto_request_complete
e7ce4ba11635 crypto: api - Add scaffolding to change completion function signature
a8cc4d5adfe5 crypto: engine - check if BH is disabled during completion
7b36a06bacf7 crypto: sun8i-ss - Fix a test in sun8i_ss_setup_ivs()
b6e2d1e253a4 perf map: Delete two variable initialisations before null pointer checks in sort__sym_from_cmp()
4f128167e64b perf pmu: zfree() expects a pointer to a pointer to zero it after freeing its contents
e685e2e2bd14 perf vendor events power9: Remove UTF-8 characters from JSON files
a6ef72c38c23 perf scripts intel-pt-events.py: Fix IPC output for Python 2
53f7b55f6b3a net: enetc: check the index of the SFI rather than the handle
a0cb00295dbe virtio_net: suppress cpu stall when free_unused_bufs
b4e16ea5f146 virtio_net: split free_unused_bufs()
f495e435e588 net: dsa: mt7530: fix corrupt frames using trgmii on 40 MHz XTAL MT7621
dfad4eb4c4d8 ALSA: caiaq: input: Add error handling for unsupported input methods in `snd_usb_caiaq_input_init`
10c5ea39573d drm/amdgpu: add a missing lock for AMDGPU_SCHED
54c466c60e23 af_packet: Don't send zero-byte data in packet_sendmsg_spkt().
c177dd465f5c ionic: catch failure from devlink_alloc
da81af0ef809 ethtool: Fix uninitialized number of lanes
27b0d1b81f82 ionic: remove noise from ethtool rxnfc error msg
d37f6a832331 octeontx2-vf: Detach LF resources on probe cleanup
00e985958b3e octeontx2-pf: Disable packet I/O for graceful exit
b5ad803dec80 octeontx2-af: Skip PFs if not enabled
e39148d3d719 octeontx2-af: Secure APR table update with the lock
a895ab54afce rxrpc: Fix hard call timeout units
f5b44b2a17ca sfc: Fix module EEPROM reporting for QSFP modules
98a20dceddf6 r8152: move setting r8153b_rx_agg_chg_indicate()
4fbf19a5bd31 r8152: fix the poor throughput for 2.5G devices
d0ebe36065a8 r8152: fix flow control issue of RTL8156A
55aeff5361e6 net/sched: act_mirred: Add carrier check
59bf62f0ed7e RISC-V: mm: Enable huge page support to kernel_page_present() function
cc4ae807dbef watchdog: dw_wdt: Fix the error handling path of dw_wdt_drv_probe()
b36cc1c39448 writeback: fix call of incorrect macro
f98f2ac30f75 net: dsa: mv88e6xxx: add mv88e6321 rsvd2cpu
56444f30619b selftests: srv6: make srv6_end_dt46_l3vpn_test more robust
c5ce7c4517d6 sit: update dev->needed_headroom in ipip6_tunnel_bind_dev()
cb145932fcf6 net/sched: cls_api: remove block_cb from driver_list before freeing
480577d419f9 net/ncsi: clear Tx enable mode when handling a Config required AEN
5e756a59cee6 scsi: qedi: Fix use after free bug in qedi_remove()
fd6204d7724a drm/hyperv: Don't overwrite dirt_needed value set by host
f8d9e062a695 fs/ntfs3: Fix null-ptr-deref on inode->i_op in ntfs_lookup()
ce30b2f48b65 ASoC: soc-pcm: fix BE handling of PAUSE_RELEASE
74201b3c3e52 ASoC: soc-pcm: test refcount before triggering
2cf8c9f883de ASoC: soc-pcm: serialize BE triggers
703ebcf64aac ASoC: soc-pcm: Fix and cleanup DPCM locking
c474bb800000 ASoC: soc-pcm: align BE 'atomicity' with that of the FE
13390bea97a4 ASoC: soc-pcm: use GFP_ATOMIC for dpcm structure
25361a0155a1 mailbox: zynqmp: Fix counts of child nodes
f9dd36311bd5 mailbox: zynq: Switch to flexible array to simplify code
2343385fe6ee bus: mhi: host: Range check CHDBOFF and ERDBOFF
a7561c04adb1 bus: mhi: host: Use mhi_tryset_pm_state() for setting fw error state
7517f62ea073 bus: mhi: host: Remove duplicate ee check for syserr
9fbf10148f31 bus: mhi: Move host MHI code to "host" directory
43b2f7d69069 ubifs: Fix memory leak in do_rename
9933a9086cea ubifs: Fix AA deadlock when setting xattr for encrypted file
21ad89e197dd crypto: ccp - Clear PSP interrupt status register before calling handler
93f8b664031b ring-buffer: Ensure proper resetting of atomic variables in ring_buffer_reset_online_cpus
(From OE-Core rev: 6180d99b8af79ceba5096e6f5499a4fb151fc612)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 276039dd77ad0e6276d4e4688db65150fced3d5f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
b0ece631f84a Linux 5.15.111
0a008c5098d8 sched: Fix DEBUG && !SCHEDSTATS warn
21c2a454486d netfilter: nf_tables: deactivate anonymous set from preparation phase
aa6ff950f875 arm64: dts: qcom: sdm845: correct dynamic power coefficients - again
2931ed45bfe3 sound/oss/dmasound: fix 'dmasound_setup' defined but not used
503e554782c9 debugobject: Ensure pool refill (again)
6b84832966a0 perf intel-pt: Fix CYC timestamps after standalone CBR
06106efa20f7 perf auxtrace: Fix address filter entire kernel size
11c6fb35df5c dm: don't lock fs when the map is NULL in process of resume
e11765cea205 dm ioctl: fix nested locking in table_clear() to remove deadlock concern
f76fcb9d43ec dm flakey: fix a crash with invalid table line
a5d8c6bf58e5 dm integrity: call kmem_cache_destroy() in dm_integrity_init() error path
56e952ae6d89 dm clone: call kmem_cache_destroy() in dm_clone_init() error path
f382705d0460 dm verity: fix error handling for check_at_most_once on FEC
1821a33bb23e ia64: fix an addr to taddr in huge_pte_offset()
3a57c70e9e92 s390/dasd: fix hanging blockdevice after request requeue
ed7e8beb201b btrfs: scrub: reject unsupported scrub flags
14383698c0de scripts/gdb: fix lx-timerlist for Python3
33383fbe4f01 clk: rockchip: rk3399: allow clk_cifout to force clk_cifout_src to reparent
e8353dea7d7d wifi: rtl8xxxu: RTL8192EU always needs full init
384a0dcac2a6 mailbox: zynqmp: Fix typo in IPI documentation
09206edff007 mailbox: zynqmp: Fix IPI isr handling
6d1af517817a mtd: core: fix error path for nvmem provider
8444b46e163a mtd: core: fix nvmem error reporting
7c253e98685e mtd: core: provide unique name for nvmem device, take two
68695084077e md/raid10: fix null-ptr-deref in raid10_sync_request
8d07d9119642 nilfs2: fix infinite loop in nilfs_mdt_get_block()
13f73ef77baa nilfs2: do not write dirty data after degenerating to read-only
ab0748f246b7 ALSA: usb-audio: Add quirk for Pioneer DDJ-800
a87e5b9b4c64 parisc: Fix argument pointer in real64_call_asm()
f1b4681cfa0a afs: Fix updating of i_size with dv jump from server
33f302c9bf3e mfd: tqmx86: Correct board names for TQMxE39x
ce01b75447f6 mfd: tqmx86: Specify IO port register range more precisely
a23b3b2be0d0 mfd: tqmx86: Do not access I2C_DETECT register through io_base
388d2578c7d7 thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak in mtk_thermal_probe
bdcf9fec87b2 dmaengine: at_xdmac: do not enable all cyclic channels
a5227b3be869 dmaengine: at_xdmac: Fix race for the tx desc callback
2b68028d771a dmaengine: at_xdmac: Fix concurrency over chan's completed_cookie
738a4fdbd157 dmaengine: dw-edma: Fix to enable to issue dma request on DMA processing
fd6316dec20f dmaengine: dw-edma: Fix to change for continuous transfer
dd23c11136ff dma: gpi: remove spurious unlock in gpi_ch_init
dce3bdaee3f2 phy: tegra: xusb: Add missing tegra_xusb_port_unregister for usb2_port and ulpi_port
1cccf7c5c7f5 pwm: mtk-disp: Configure double buffering before reading in .get_state()
d2798512fafc pwm: mtk-disp: Disable shadow registers before setting backlight values
8ffa1cb8bcfa leds: tca6507: Fix error handling of using fwnode_property_read_string
e63e3a0fc062 dmaengine: mv_xor_v2: Fix an error code.
332ca024a82e leds: TI_LMU_COMMON: select REGMAP instead of depending on it
c904a070d7cd pinctrl: renesas: r8a779a0: Remove incorrect AVB[01] pinmux configuration
40566def189c ext4: fix use-after-free read in ext4_find_extent for bigalloc + inline
18eb23891aea ext4: fix i_disksize exceeding i_size problem in paritally written case
3dc3a86b88bd SMB3: Close deferred file handles in case of handle lease break
0f87e18203bd SMB3: Add missing locks to protect deferred close file list
b574e73db844 timekeeping: Fix references to nonexistent ktime_get_fast_ns()
ccfede0a2cb1 openrisc: Properly store r31 to pt_regs on unhandled exceptions
1c7456aa5d3a clocksource/drivers/davinci: Fix memory leak in davinci_timer_register when init fails
c87c6d50505b RDMA/mlx5: Use correct device num_ports when modify DC
d2823237dabc SUNRPC: remove the maximum number of retries in call_bind_status
c11e44ac1a71 RDMA/mlx5: Fix flow counter query via DEVX
7acad58049ac Input: raspberrypi-ts - fix refcount leak in rpi_ts_probe
b6157a9f0fc7 clk: qcom: gcc-sm8350: fix PCIe PIPE clocks handling
33f9b8de1b00 clk: qcom: regmap: add PHY clock source implementation
0ccc1a6bac34 NFSv4.1: Always send a RECLAIM_COMPLETE after establishing lease
a2bd706ab635 IB/hfi1: Fix bugs with non-PAGE_SIZE-end multi-iovec user SDMA requests
6bbc49661c31 IB/hfi1: Fix SDMA mmu_rb_node not being evicted in LRU order
00cc21e32ea1 RDMA/srpt: Add a check for valid 'mad_agent' pointer
03b9d26f33e6 RDMA/cm: Trace icm_send_rej event before the cm state is reset
30218b769845 clk: qcom: gcc-sm6115: Mark RCGs shared where applicable
5255051c8f31 RDMA/siw: Remove namespace check from siw_netdev_event()
48ba87f6e14d clk: add missing of_node_put() in "assigned-clocks" property parsing
3d7c6f2076f1 power: supply: generic-adc-battery: fix unit scaling
c58ea97aa94f fs/ntfs3: Fix slab-out-of-bounds read in hdr_delete_de()
cd7e1d679240 fs/ntfs3: Fix OOB read in indx_insert_into_buffer
952bbfcedbf8 fs/ntfs3: Add check for kmemdup
3030f2b9b332 fs/ntfs3: Fix memory leak if ntfs_read_mft failed
d1faeb14bce3 rtc: meson-vrtc: Use ktime_get_real_ts64() to get the current time
9911be215572 RDMA/mlx4: Prevent shift wrapping in set_user_sq_size()
44438a49593a rtc: omap: include header for omap_rtc_power_off_program prototype
6d19fe968ef6 workqueue: Fix hung time report of worker pools
6c073c5a5b97 workqueue: Introduce show_one_worker_pool and show_one_workqueue.
e89f95c68536 RDMA/rdmavt: Delete unnecessary NULL check
9721b14e6c8a RDMA/siw: Fix potential page_array out of range access
8d909684bdf6 clk: at91: clk-sam9x60-pll: fix return value check
623941780df3 sched/rt: Fix bad task migration for rt tasks
594d2a055526 Revert "objtool: Support addition to set CFA base"
80973ce36f4b perf/core: Fix hardlockup failure caused by perf throttle
3e09b68fc520 sched/fair: Fix inaccurate tally of ttwu_move_affine
c3b9f95598b8 sched: Make struct sched_statistics independent of fair sched class
6002989848c5 sched/fair: Use __schedstat_set() in set_next_entity()
94bcf94c25aa powerpc/rtas: use memmove for potentially overlapping buffer copy
f7107d44dff7 macintosh: via-pmu-led: requires ATA to be set
85842228df0e powerpc/sysdev/tsi108: fix resource printk format warnings
179cc5ab9591 powerpc/wii: fix resource printk format warnings
516c27922c96 powerpc/mpc512x: fix resource printk format warning
da961d510b21 macintosh/windfarm_smu_sat: Add missing of_node_put()
5b9fc529b689 virtio_ring: don't update event idx on get_buf
ee0b6146317a spmi: Add a check for remove callback when removing a SPMI driver
be267f30b07e staging: rtl8192e: Fix W_DISABLE# does not work after stop/start
424cf2929635 serial: 8250: Add missing wakeup event reporting
8dfd00bfd53f tty: serial: fsl_lpuart: adjust buffer length to the intended size
59ecc2cf3466 firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe
ee53a7a88027 usb: mtu3: fix kernel panic at qmu transfer done irq handler
6b0d399dac58 usb: chipidea: fix missing goto in `ci_hdrc_probe`
6d4325ebd8c0 usb: gadget: tegra-xudc: Fix crash in vbus_draw
d96f6bc10789 sh: sq: Fix incorrect element size for allocating bitmap buffer
397eb669dac0 uapi/linux/const.h: prefer ISO-friendly __typeof__
d1c4dedcd2df scripts/gdb: raise error with reduced debugging information
2d65599ad1e4 i2c: cadence: cdns_i2c_master_xfer(): Fix runtime PM leak on error path
d453f25faf68 spi: cadence-quadspi: fix suspend-resume implementations
6a129c0e9935 ASoC: fsl_mqs: move of_node_put() to the correct location
850631845531 coresight: etm_pmu: Set the module field
db6f1b2bba34 HID: amd_sfh: Add support for shutdown operation
b711dd0ba9b3 scripts/gdb: bail early if there are no generic PD
eaecf281c27f scripts/gdb: bail early if there are no clocks
0110bfacff03 ia64: salinfo: placate defined-but-not-used warning
51395777f66d ia64: mm/contig: fix section mismatch warning/error
1a2a0d5b0617 PCI/EDR: Clear Device Status after EDR error recovery
cc4f0e168a56 of: Fix modalias string generation
770d30b1355c vmci_host: fix a race condition in vmci_host_poll() causing GPF
08c7608798a9 spi: fsl-spi: Fix CPM/QE mode Litte Endian
f345d4d71e87 spi: qup: Don't skip cleanup in remove's error path
77b0c0dd2c56 linux/vt_buffer.h: allow either builtin or modular for macros
af9ec18aa8ee ASoC: es8316: Handle optional IRQ assignment
39287d16b2d2 PCI: imx6: Install the fault handler only on compatible match
1e58fb6b1cef usb: gadget: udc: renesas_usb3: Fix use after free bug in renesas_usb3_remove due to race condition
f90822ad63d1 spi: imx: Don't skip cleanup in remove's error path
e9ded9dd5d05 spi: spi-imx: using pm_runtime_resume_and_get instead of pm_runtime_get_sync
193f7fffdcaf serial: 8250_bcm7271: Fix arbitration handling
f67cc4929ef9 iio: light: max44009: add missing OF device matching
7e42057532ea fpga: bridge: fix kernel-doc parameter description
72b1ce904567 serial: stm32: Re-assert RTS/DE GPIO in RS485 mode only if more data are transmitted
59ed254dd35e serial: stm32: re-introduce an irq flag condition in usart_receive_chars
4b7bb1c7be4f usb: dwc3: gadget: Change condition for processing suspend event
beb12083c1ac usb: host: xhci-rcar: remove leftover quirk handling
295f3fcaa8ea pstore: Revert pmsg_lock back to a normal mutex
2491b999a60d drivers: staging: rtl8723bs: Fix locking in rtw_scan_timeout_handler()
209850f17717 drivers: staging: rtl8723bs: Fix locking in _rtw_join_timeout_handler()
1ffb2ca65051 ipmi: ASPEED_BT_IPMI_BMC: select REGMAP_MMIO instead of depending on it
43e4197dd5f6 tcp/udp: Fix memleaks of sk and zerocopy skbs with TX timestamp.
1d2f799c1604 net: amd: Fix link leak when verifying config failed
5d6e5c054ed2 netlink: Use copy_to_user() for optval in netlink_getsockopt().
a789192f3661 Revert "Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished work"
a54ec573d9b8 ipv4: Fix potential uninit variable access bug in __ip_make_skb()
d0b43125ec89 net/sched: sch_fq: fix integer overflow of "credit"
7a45b4e1c82b netfilter: nf_tables: don't write table validation state without mutex
8913abddad4a bpf: Don't EFAULT for getsockopt with optval=NULL
77f245ce053e net: stmmac:fix system hang when setting up tag_8021q VLAN for DSA ports
a9e96eef8218 net/mlx5: E-switch, Don't destroy indirect table in split rule
05cf6f353d3c ixgbe: Enable setting RSS table to default values
624b73f77664 ixgbe: Allow flow hash to be set via ethtool
e302e9ca14a8 wifi: iwlwifi: fw: fix memory leak in debugfs
53b3b1f563bc wifi: iwlwifi: mvm: check firmware response size
aa11a894458d wifi: mt76: mt7921e: improve reliability of dma reset
f8923ad9dd8e wifi: mt76: fix 6GHz high channel not be scanned
613b51663fc4 wifi: mt76: mt7921e: fix probe timeout after reboot
5279aaf9f5b0 wifi: mt76: add flexible polling wait-interval support
ac9fec5b5688 wifi: mt76: handle failure of vzalloc in mt7615_coredump_work
210e6d01cc49 wifi: iwlwifi: make the loop for card preparation effective
dff2a7b33060 jdb2: Don't refuse invalidation of already invalidated buffers
358317ad9cf4 wifi: iwlwifi: fw: move memset before early return
cccf85e047c3 wifi: iwlwifi: mvm: initialize seq variable
b3cecbb2571c wifi: iwlwifi: yoyo: Fix possible division by zero
4636c35b7e6e wifi: iwlwifi: yoyo: skip dump correctly on hw error
34222897e0eb md/raid10: don't call bio_start_io_acct twice for bio which experienced read error
d6cfcf98b824 md/raid10: fix memleak of md thread
7f673fa34c0e md/raid10: fix memleak for 'conf->bio_split'
8d09065802c5 md/raid10: fix leak of 'r10bio->remaining' for recovery
901b4918faa4 md/raid10: fix task hung in raid10d
fc04998351fe md/raid10: factor out code from wait_barrier() to stop_waiting_barrier()
39db562b3fed md: raid10 add nowait support
74af08efa5cd md: drop queue limitation for RAID1 and RAID10
337d1d88be9d bpf, sockmap: Revert buggy deadlock fix in the sockhash and sockmap
12e70c6f4ed8 selftests/bpf: Fix leaked bpf_link in get_stackid_cannot_attach
103a4275420e nvme-fcloop: fix "inconsistent {IN-HARDIRQ-W} -> {HARDIRQ-ON-W} usage"
9fe41e648254 nvme: fix async event trace event
13475e639162 nvme: handle the persistent internal error AER
30b9073583ac nvmet: fix I/O Command Set specific Identify Controller
42bcbc2a90a8 nvmet: fix Identify Active Namespace ID list handling
92cf81746ebc nvmet: fix Identify Controller handling
ac86d59eaa69 nvmet: fix Identify Namespace handling
c7e98afecab2 nvmet: fix error handling in nvmet_execute_identify_cns_cs_ns()
537083b1275c nvmet: move the call to nvmet_ns_changed out of nvmet_ns_revalidate
080826d16758 nvmet: use i_size_read() to set size for file-ns
f333854dce4a bpf, sockmap: fix deadlocks in the sockhash and sockmap
c8a67bc85772 net: ethernet: stmmac: dwmac-rk: fix optional phy regulator handling
fd8c83d8375b scsi: lpfc: Fix ioremap issues in lpfc_sli4_pci_mem_setup()
9a7f63283af6 f2fs: fix to avoid use-after-free for cached IPU bio
119f278ea9c1 xsk: Fix unaligned descriptor validation
1056b209935d crypto: drbg - Only fail when jent is unavailable in FIPS mode
9317d6612011 crypto: drbg - make drbg_prepare_hrng() handle jent instantiation errors
80bfd8b184d8 bpftool: Fix bug for long instructions in program CFG dumps
afdc3a4bd77d selftests/bpf: Wait for receive in cg_storage_multi test
c5fa99bce673 selftests: xsk: Disable IPv6 on VETH1
c4afd6410f3c net: qrtr: correct types of trace event parameters
eb77c0c0a17c wifi: rt2x00: Fix memory leak when handling surveys
0b0c3e37a43f wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_reg()
0a847af3cb40 wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_rfreg()
3e660d117513 crypto: sa2ul - Select CRYPTO_DES
d82d82e0372b crypto: caam - Clear some memory in instantiate_rng
169134da419c f2fs: compress: fix to call f2fs_wait_on_page_writeback() in f2fs_write_raw_pages()
d0cf44f06dd4 f2fs: apply zone capacity to all zone type
2cc6a05661ad f2fs: enforce single zone capacity
e5a56f13ba2d f2fs: handle dqget error in f2fs_transfer_project_quota()
6d6415e5bce2 scsi: megaraid: Fix mega_cmd_done() CMDID_INT_CMDS
eb4cf26d2e86 scsi: target: iscsit: Fix TAS handling during conn cleanup
9158c86fd323 scsi: target: Fix multiple LUN_RESET handling
ad4a647aa587 net/packet: convert po->auxdata to an atomic flag
f1a111ca05ce net/packet: convert po->origdev to an atomic flag
c3238c7dbed9 net/packet: annotate accesses to po->xmit
97e7b1c1da12 vlan: partially enable SIOCSHWTSTAMP in container
5f44dfa841e9 net: pcs: xpcs: remove double-read of link state when using AN
a7282fc797df bpf: Remove misleading spec_v1 check on var-offset stack read
60f9ed23b954 selftests/bpf: Fix a fd leak in an error path in network_helpers.c
9b9e803b4823 scm: fix MSG_CTRUNC setting condition for SO_PASSSEC
670754766ac3 bpf: fix precision propagation verbose logging
c022b09fcc32 bpf: take into account liveness when propagating precision
23634d119ca7 wifi: rtw88: mac: Return the original error from rtw_mac_power_switch()
3fc0be9f48ff wifi: rtw88: mac: Return the original error from rtw_pwr_seq_parser()
2ba1e4a623bf tools: bpftool: Remove invalid \' json escape
484d95c69fc1 wifi: ath6kl: reduce WARN to dev_dbg() in callback
19ba40acb170 wifi: brcmfmac: support CQM RSSI notification with older firmware
378364abbe55 wifi: ath5k: fix an off by one check in ath5k_eeprom_read_freq_list()
59073060fe09 wifi: ath9k: hif_usb: fix memory leak of remain_skbs
104b1b48b679 wifi: ath6kl: minor fix for allocation size
d1138f118f43 hwmon: (pmbus/fsp-3y) Fix functionality bitmask in FSP-3Y YM-2151E
f1d68061b074 cpufreq: use correct unit when verify cur freq
a55050c7989c tick/common: Align tick period with the HZ tick.
54202488c835 drm/i915: Make intel_get_crtc_new_encoder() less oopsy
500ffa58e70b debugobject: Prevent init race with static objects
af04d8d3c156 arm64: kgdb: Set PSTATE.SS to 1 to re-enable single-step
00132fab90ea x86/ioapic: Don't return 0 from arch_dynirq_lower_bound()
ad6481f49fb2 regulator: stm32-pwr: fix of_iomap leak
b8c2678d0fe7 media: venus: dec: Fix handling of the start cmd
2ed8f8c09d2a media: rc: gpio-ir-recv: Fix support for wake-up
4b1afffdd940 drm/amd/display: Fix potential null dereference
2322b262d220 media: rcar_fdp1: Fix refcount leak in probe and remove function
5847021f8052 media: rcar_fdp1: Convert to platform remove callback returning void
d18789f43484 platform: Provide a remove callback that returns no value
825281f34bec media: rcar_fdp1: Fix the correct variable assignments
3c300022c188 media: rcar_fdp1: Make use of the helper function devm_platform_ioremap_resource()
2f48c0a463a3 media: saa7134: fix use after free bug in saa7134_finidev due to race condition
c94388b5b909 media: dm1105: Fix use after free bug in dm1105_remove due to race condition
cac0f4f36e22 media: rkvdec: fix use after free bug in rkvdec_remove
d991f6139fa6 x86/apic: Fix atomic update of offset in reserve_eilvt_offset()
1e3056b8067c regulator: core: Avoid lockdep reports when resolving supplies
4e5c9738185b regulator: core: Consistently set mutex_owner when using ww_mutex_lock_slow()
678b3f29aaaf drm/ttm/pool: Fix ttm_pool_alloc error path
b19bebc96381 drm/ttm: optimize pool allocations a bit v2
1e26766dc83a arm64: dts: qcom: msm8994-msft-lumia-octagon: drop unit address from PMI8994 regulator
bee1a285732a arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator
fb0bea59d078 arm64: dts: qcom: sc7180-trogdor-lazor: correct trackpad supply
8853aab16787 mailbox: mpfs: switch to txdone_poll
623275db2841 drm/lima/lima_drv: Add missing unwind goto in lima_pdev_probe()
5a8aedb7b9fe ACPI: VIOT: Initialize the correct IOMMU fwspec
111af9798356 firmware: arm_scmi: Fix xfers allocation on Rx channel
657776d47bed ARM: dts: gta04: fix excess dma channel usage
d3047a1b0422 drm: rcar-du: Fix a NULL vs IS_ERR() bug
3cfaa8713e8b mmc: sdhci-of-esdhc: fix quirk to ignore command inhibit for data
60cadfcfa44c ACPI: processor: Fix evaluating _PDC method when running as Xen dom0
aa8d52ddf7c8 drm/amd/display/dc/dce60/Makefile: Fix previous attempt to silence known override-init warnings
d28ec12c48dd drm: msm: adreno: Disable preemption on Adreno 510
2ad781393eb3 drm/msm/adreno: drop bogus pm_runtime_set_active()
86c1a99528c6 drm/msm/adreno: Defer enabling runpm until hw_init()
1ad4b8c4552b media: max9286: Free control handler
3d7003c400ca drm/bridge: adv7533: Fix adv7533_mode_valid for adv7533 and adv7535
a3ea89b5978d firmware: qcom_scm: Clear download bit during reboot
ca4ce92e3ec9 media: av7110: prevent underflow in write_ts_to_decoder()
519b08494011 media: bdisp: Add missing check for create_workqueue
11c58a0c1937 x86/MCE/AMD: Use an u64 for bank_map
88a9d3c0b59a ARM: dts: qcom: ipq8064: Fix the PCI I/O port range
112ff0f25305 ARM: dts: qcom: ipq8064: reduce pci IO size to 64K
99e7b14569da ARM: dts: qcom: ipq4019: Fix the PCI I/O port range
96158bfc764f arm64: dts: qcom: sm8250: Fix the PCI I/O port range
cc1ae8710ac4 arm64: dts: qcom: msm8996: Fix the PCI I/O port range
656657bdeb8a arm64: dts: qcom: ipq6018: Fix the PCI I/O port range
a19c40b97908 arm64: dts: qcom: ipq8074: Fix the PCI I/O port range
9f89689d8b9d arm64: dts: qcom: msm8998: Fix the PCI I/O port range
16111402966e arm64: dts: qcom: sdm845: Fix the PCI I/O port range
3e7be9b63264 arm64: dts: qcom: sdm845: correct dynamic power coefficients
a9e9a4a62725 arm64: dts: qcom: msm8998: Fix stm-stimulus-base reg name
a46878476c55 arm64: dts: broadcom: bcmbca: bcm4908: fix procmon nodename
1994284cb922 arm64: dts: broadcom: bcmbca: bcm4908: fix NAND interrupt name
6ae67829fa5e arm64: dts: Move BCM4908 dts to bcmbca folder
fe8ab85ed495 arm64: dts: Add base DTS file for bcmbca device Asus GT-AX6000
aefde9ada466 ARM64: dts: Add DTS files for bcmbca SoC BCM6858
273be36e4209 arm64: dts: Add DTS files for bcmbca SoC BCM4912
fe07b3b5af01 arm64: dts: Add DTS files for bcmbca SoC BCM63158
77112d23a671 arm64: dts: broadcom: bcm4908: add DT for Netgear RAXE500
a53862a20239 arm64: dts: ti: k3-j721e-main: Remove ti,strobe-sel property
e3143e6cca0a regulator: core: Shorten off-on-delay-us for always-on/boot-on by time since booted
30b4edaf221d EDAC/skx: Fix overflows on the DRAM row address mapping arrays
d450fa865750 drm/msm/disp/dpu: check for crtc enable rather than crtc active to release shared resources
62cd3e056123 arm64: dts: renesas: r8a774c0: Remove bogus voltages from OPP table
667c86b2a941 arm64: dts: renesas: r8a77990: Remove bogus voltages from OPP table
6a50350033e0 soc: ti: pm33xx: Fix refcount leak in am33xx_pm_probe
fb2a6e00291a tools/x86/kcpuid: Fix avx512bw and avx512lvl fields in Fn00000007
00f79abccc5b drm/probe-helper: Cancel previous job before starting new one
9fde84fb59e5 drm/vgem: add missing mutex_destroy
a51b71af169f drm/rockchip: Drop unbalanced obj unref
0834a2b554e5 erofs: fix potential overflow calculating xattr_isize
060fecf1114f erofs: stop parsing non-compact HEAD index if clusterofs is invalid
5a37916d988e tpm, tpm_tis: Claim locality when interrupts are reenabled on resume
46da635566dc tpm, tpm: Implement usage counter for locality
51162b05a44c tpm, tpm_tis: Claim locality before writing interrupt registers
b665edd7a585 tpm, tpm_tis: Disable interrupts if tpm_tis_probe_irq() failed
fd9b4b2bff6b tpm, tpm_tis: Claim locality before writing TPM_INT_ENABLE register
8c08c74de718 tpm, tpm_tis: Do not skip reset of original interrupt vector
dfa1e84b774c selinux: ensure av_permissions.h is built when needed
8a3a1f7b54b8 selinux: fix Makefile dependencies of flask.h
08e403705778 selftests/resctrl: Check for return value after write_schemata()
25661fe5f658 selftests/resctrl: Allow ->setup() to return errors
b5adaf5045d0 selftests/resctrl: Move ->setup() call outside of test specific branches
f9eeea03a5e7 selftests/resctrl: Extend CPU vendor detection
ebd40f52de19 selftests/resctrl: Return NULL if malloc_and_init_memory() did not alloc mem
988901984ddd rcu: Fix missing TICK_DEP_MASK_RCU_EXP dependency check
74f06429b727 sound/oss/dmasound: fix build when drivers are mixed =y/=m
c628b07d5974 xfs: don't consider future format versions valid
ce840284929b ubifs: Free memory for tmpfile name
20ef288612e5 ubi: Fix return value overwrite issue in try_write_vid_and_data()
3ae75f82c33f ubifs: Fix memleak when insert_old_idx() failed
149ea56995c2 Revert "ubifs: dirty_cow_znode: Fix memleak in error handling path"
dc299bd1d5c4 iommu/amd: Fix "Guest Virtual APIC Table Root Pointer" configuration in IRTE
b7bc8f6c8a31 tracing: Fix permissions for the buffer_percent file
b91a5aa1e7ea riscv: mm: remove redundant parameter of create_fdt_early_page_table
ec1814116fa4 i2c: omap: Fix standard mode false ACK readings
671f21fbcb47 ksmbd: fix memleak in session setup
227eb2689b44 ksmbd: fix NULL pointer dereference in smb2_get_info_filesystem()
c053e389db0d ksmbd: call rcu_barrier() in ksmbd_server_exit()
2db4b91480b2 writeback, cgroup: fix null-ptr-deref write in bdi_split_work_to_wbs
0b46ee654a9d relayfs: fix out-of-bounds access in relay_file_read
a18bdaca46d0 KVM: nVMX: Emulate NOPs in L2, and PAUSE if it's not intercepted
a79fb2ce4fbe reiserfs: Add security prefix to xattr name in reiserfs_security_write()
4c3d1a6720ae rcu: Avoid stack overflow due to __rcu_irq_enter_check_tick() being kprobe-ed
09e177d6f7ed crypto: safexcel - Cleanup ring IRQ workqueues on load failure
63b7fbaa1278 crypto: api - Demote BUG_ON() in crypto_unregister_alg() to a WARN_ON()
c63741e872fc ring-buffer: Sync IRQ works before buffer destruction
333f49fcf0e7 pinctrl: qcom: lpass-lpi: set output value before enabling output
3028ac7dc0c0 soundwire: qcom: correct setting ignore bit on v1.5.1
01fefb82fd79 pwm: meson: Fix g12a ao clk81 name
dcf6611e80f9 pwm: meson: Fix axg ao mux parents
2104e15b0072 wifi: mt76: add missing locking to protect against concurrent rx/status calls
4a07d2d511e2 kheaders: Use array declaration instead of char
99d561199bf8 ipmi: fix SSIF not responding under certain cond.
8fddbd9c5c86 ipmi:ssif: Add send_retries increment
3ef93b7bd9e0 MIPS: fw: Allow firmware to pass a empty env
e047e40676d1 tick/nohz: Fix cpu_is_hotpluggable() by checking with nohz subsystem
9c0b37d0da47 xhci: fix debugfs register accesses while suspended
321e16a5709e tty: Prevent writing chars during tcsetattr TCSADRAIN/FLUSH
fa30909fbd1f staging: iio: resolver: ads1210: fix config mode
ac44e1275dae ext4: use ext4_journal_start/stop for fast commit transactions
5bb4005fb667 blk-crypto: make blk_crypto_evict_key() more robust
f8d9d6c3ffcc blk-crypto: make blk_crypto_evict_key() return void
d206f79d9cd6 blk-mq: release crypto keyslot before reporting I/O complete
2c62f4abd714 posix-cpu-timers: Implement the missing timer_wait_running callback
dca7427a8b12 hwmon: (adt7475) Use device_property APIs when configuring polarity
d50321946ec0 hwmon: (k10temp) Check range scale when CUR_TEMP register is read-write
d40fa6f78835 USB: dwc3: fix runtime pm imbalance on unbind
9436221ea250 USB: dwc3: fix runtime pm imbalance on probe errors
bfd693628192 IMA: allow/fix UML builds
c23e103fd736 PCI: qcom: Fix the incorrect register usage in v2.7.0 config
8a0b61e5a7d2 PCI: pciehp: Fix AB-BA deadlock between reset_lock and device_lock
402d2b1d54b7 arm64: Stash shadow stack pointer in the task struct on interrupt
21cc4e5304d2 arm64: Always load shadow stack pointer directly from the task struct
a00f75f71fca wifi: mt76: mt7921e: Set memory space enable in PCI_COMMAND if unset
a646556769e1 wireguard: timers: cast enum limits members to int in prints
95ec7a59ceb2 x86/cpu: Add model number for Intel Arrow Lake processor
520820400608 asm-generic/io.h: suppress endianness warnings for readq() and writeq()
5e3c87e4d3bd selftests mount: Fix mount_setattr_test builds failed
e1383b440132 ASoC: Intel: bytcr_rt5640: Add quirk for the Acer Iconia One 7 B1-750
21976532f274 iio: adc: palmas_gpadc: fix NULL dereference on rmmod
50015dbdec70 x86/hyperv: Block root partition functionality in a Confidential VM
a7d91f67a10a ASoC: soc-pcm: fix hw->formats cleared by soc_pcm_hw_init() for dpcm
cf5b14b8de0d ASOC: Intel: sof_sdw: add quirk for Intel 'Rooks County' NUC M15
(From OE-Core rev: ea29961df7334f4df7d19ede2a955fadb64fdf0e)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 5425b3557b6efdba07bd3efa51c647bd62d5259b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
8a7f2a5c5aa1 Linux 5.15.110
cab0f985037b riscv: No need to relocate the dtb as it lies in the fixmap region
1f09c9bab723 riscv: Do not set initial_boot_params to the linear address of the dtb
bbf94b042155 riscv: Move early dtb mapping into the fixmap region
ccb29694c2da selftests: mptcp: join: fix "invalid address, ADD_ADDR timeout"
0994aa001fde driver core: Don't require dynamic_debug for initcall_debug probe timing
3dcebcaa258c USB: serial: option: add UNISOC vendor and TOZED LT70C product
f1e6a14d5ae8 bluetooth: Perform careful capability checks in hci_sock_ioctl()
39c472809aab drm/fb-helper: set x/yres_virtual in drm_fb_helper_check_var
936a23293bbb wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies()
2bd716c6e4d1 KVM: arm64: Fix buffer overflow in kvm_arm_set_fw_reg()
00f74003edf5 KVM: arm64: Retry fault if vma_lookup() results become invalid
c1da649699e1 selftests/kselftest/runner/run_one(): allow running non-executable files
c88435054153 PCI/ASPM: Remove pcie_aspm_pm_state_change()
(From OE-Core rev: 0c328f0b044f5851bd5c53adcdfd795ee3c996ba)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 8fb28c7f71888d65c170c9f5400438a077860c6f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add new fetcher for the NVD database using the 2.0 API [1].
The implementation changes as little as possible, keeping the current
database format (but using a different database file for the transition
period), with a notable exception of not using the META table.
Minor changes that could be visible:
- the database starts in 1999 instead of 2002
- the complete fetch is longer (30 minutes typically)
[1] https://nvd.nist.gov/developers/vulnerabilities
(From OE-Core rev: b8ae26aabe825c1bc8d84fd7e0ee197695f1dee7)
Signed-off-by: Marta Rybczynska <marta.rybczynska@syslinbit.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit fb62c4c3dbca4e58f7ce6cf29d4b630a06411a97)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A use after free issue was addressed with improved memory management.
This issue is fixed in Safari 16.2, tvOS 16.2, macOS Ventura 13.1, iOS
16.2 and iPadOS 16.2, watchOS 9.2. Processing maliciously crafted web
content may lead to arbitrary code execution.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2022-42867https://support.apple.com/en-us/HT213537
(From OE-Core rev: d4a872b6ac8c41d9c3f4d5f7255d4561684ef7d5)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A memory corruption issue was addressed with improved state management.
This issue is fixed in Safari 16.2, tvOS 16.2, macOS Ventura 13.1, iOS
16.2 and iPadOS 16.2, watchOS 9.2. Processing maliciously crafted web
content may lead to arbitrary code execution.
References:
https://nvd.nist.gov/vuln/detail/CVE-2022-46699https://support.apple.com/en-us/HT213537
(From OE-Core rev: 8f71f60af366837399290a7fc9e0e38452f379cc)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A memory consumption issue was addressed with improved memory handling.
This issue is fixed in Safari 16.2, tvOS 16.2, macOS Ventura 13.1, iOS
15.7.2 and iPadOS 15.7.2, iOS 16.2 and iPadOS 16.2, watchOS 9.2. Processing
maliciously crafted web content may lead to arbitrary code execution.
References:
https://nvd.nist.gov/vuln/detail/CVE-2022-46691https://support.apple.com/en-us/HT213531
(From OE-Core rev: 15603261034610b6606df99996d065c254d8f8f9)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
OpenPrinting CUPS is an open source printing system. In versions 2.4.2
and prior, a heap buffer overflow vulnerability would allow a remote
attacker to launch a denial of service (DoS) attack. A buffer overflow
vulnerability in the function `format_log_line` could allow remote
attackers to cause a DoS on the affected system. Exploitation of the
vulnerability can be triggered when the configuration file `cupsd.conf`
sets the value of `loglevel `to `DEBUG`. No known patches or
workarounds exist at time of publication.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-32324https://security-tracker.debian.org/tracker/CVE-2023-32324
Upstream Patch:
https://github.com/OpenPrinting/cups/commit/fd8bc2d32589
(From OE-Core rev: cf741646f41835024c7e53234cfd527ff3f8542b)
Signed-off-by: Sanjay Chitroda <schitrod@cisco.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
We don't compare reproducibility of the native/cross components, only the
target ones. With the long build times of rust-native, the test now takes
crazy lengths of time so this tweak should allow us to reuse native/cross
artefacts from sstate whilst still testing the target output is
reproducible.
(From OE-Core rev: 18a9596ae711ba37ac7e44e46744298ba79ae320)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b494d83c639a877cefeb7cbab6d37195e492f059)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Upstream v250 of systemd-newtorkd contains a race which will drop the
config of unmanaged wireless interfaces during reconfigure or carrier
loss. This bug is fixed in v251 by this commit:
commit a0e99a377a2f22c0ba460d3e7228214008714c14
Author: Yu Watanabe <watanabe.yu+github@gmail.com>
Date: Mon Jan 31 19:08:27 2022 +0900
network: remove only managed configs on reconfigure or carrier lost
Otherwise, if the carrir of the non-managed interface is lost, the
configs such as addresses or routes on the interface will be removed by
networkd.
A bug was filed upstream on v250 to have upstream backport but was
rejected as "version-too-ancient", so backport this commit as a patch to
systemd-networkd for kirkstone.
Fixes: [YOCTO #15134]
(From OE-Core rev: 56fdf57d99900b8dfb75bf915fcab45d4c1a458e)
Signed-off-by: C. Andy Martin <cam@myfastmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Below upstream commit removed BSD-4-Clause from the LICENSE variable,
Link: https://git.yoctoproject.org/poky/commit/?id=2c86f586d55d0f6b99053e3e4d14c9ee36fa8aa8
But actually if we check from the source code of the openssh for this
version (8.9p1), there are some files (openbsd-compat/libressl-api-compat.c)
still affected.
As upstream removed this BSD-4-clause license, there are still some files
has this license. Below file is affected by this BSD-4-clause contents when
the below command is executed
grep -rl "All advertising materials mentioning features or use of this software" *|grep -v \.1|grep -v \.5|grep -v \.8 | sort
openbsd-compat/libressl-api-compat.c
All advertising materials mentioning features or use of this software
Reason for backporting is some of the product restrict the BSD-4-Clause usage and the purpose of this commit is
to completely remove the BSD-4-Clause license from the openssh.
When checked in the master branch, openssh upstream removes the bsd-4 license compeletely from this commit
7280401bdd
Hence Backport this commit completely to remove license of BSD-4-clause contents from code. Hunks are refreshed.
(From OE-Core rev: 10b9fdce3553a69714de17d3ed5c13c99ec8c460)
Signed-off-by: Riyaz Khan <Riyaz.Khan@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Requests is a HTTP library. Since Requests 2.3.0, Requests has been leaking
Proxy-Authorization headers to destination servers when redirected to an HTTPS
endpoint. This is a product of how we use `rebuild_proxies` to reattach the
`Proxy-Authorization` header to requests. For HTTP connections sent through the
tunnel, the proxy will identify the header in the request itself and remove it
prior to forwarding to the destination server. However when sent over HTTPS,
the `Proxy-Authorization` header must be sent in the CONNECT request as the proxy
has no visibility into the tunneled request. This results in Requests forwarding
proxy credentials to the destination server unintentionally, allowing a malicious
actor to potentially exfiltrate sensitive information. This issue has been patched
in version 2.31.0.
Reference: https://github.com/advisories/GHSA-j8r2-6x86-q33q
(From OE-Core rev: e806c625d9a7eb08079a3268d2d8b20b582d0b6c)
Signed-off-by: Narpat Mali <narpat.mali@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* fix CVEs CVE-2023-1255 and CVE-2023-2650
* drop CVE patches merged upstream
* refresh 0001-Configure-do-not-tweak-mips-cflags.patch
https://www.openssl.org/news/openssl-3.0-notes.html
Major changes between OpenSSL 3.0.8 and OpenSSL 3.0.9 [30 May 2023]
* Mitigate for very slow `OBJ_obj2txt()` performance with gigantic OBJECT IDENTIFIER sub-identities. ([CVE-2023-2650])
* Fixed buffer overread in AES-XTS decryption on ARM 64 bit platforms ([CVE-2023-1255])
* Fixed documentation of X509_VERIFY_PARAM_add0_policy() ([CVE-2023-0466])
* Fixed handling of invalid certificate policies in leaf certificates ([CVE-2023-0465])
* Limited the number of nodes created in a policy tree ([CVE-2023-0464])
(From OE-Core rev: 5140fdf3417c7553d3b035d7eafacda139936494)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CPAN.pm before 2.35 does not verify TLS certificates when downloading
distributions over HTTPS.
(From OE-Core rev: b093db144b35e7c140ac830dbe67cabfaac69f73)
Signed-off-by: Soumya <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Correction of backport link inside the patch with correct commit link as
below
Link: cb49e67303
(From OE-Core rev: 4691bc257d0bf2372e31535f0b90cf49ef0ed0d8)
Signed-off-by: Sourav Kumar Pramanik <pramanik.souravkumar@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Angle brackets should not appear in CSS contexts, as they may affect
token boundaries (such as closing a <style> tag, resulting in
injection). Instead emit filterFailsafe, matching the behavior for other
dangerous characters.
Thanks to Juho Nurminen of Mattermost for reporting this issue.
For #59720Fixes#59811
Fixes CVE-2023-24539
(From OE-Core rev: 0a09194f3d4ad98d0cf0d070ec0c99e7a6c8a158)
Signed-off-by: Vivek Kumbhar <vkumbhar@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Upstream's dtb directory structure has no real standard. They just tend
to idle around the 2/3 directory depth. Recursively search for the
dtb/dtbo files instead of assuming anything.
Fixes: 04ab57d200 (kernel-devicetree: allow specification of dtb
directory, 2023-05-02)
(From OE-Core rev: 717b9f18a51e9c9fd5a471238aa2ea4de439ef17)
Signed-off-by: Randolph Sapp <rs@ti.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Use the notation suggested by Martin Jansa to avoid a bashism. Also
switch KERNEL_DTBVENDORED to the more common 0/1 notation instead of
true/false.
Fixes: 04ab57d200 (kernel-devicetree: allow specification of dtb
directory, 2023-05-02)
(From OE-Core rev: b7d6fc07462e6fca09d0db7f43a62920250ef053)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Randolph Sapp <rs@ti.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Fedora/Redhat and Arch are somewhat standardized on their dtb directory
structure. Let's add some flags to configure yocto to mimic that
behavior.
Add the following variables to the kernel class:
- KERNEL_DTBDEST (controls the destination directory for dtbs)
- KERNEL_DTBVENDORED (controls if vendor subdirectories are to
be respected)
Currently KERNEL_DTBDEST is expected to be a subdir of KERNEL_IMAGEDEST
and KERNEL_DTBVENDORED is expected to be "true"/"false". This only
applies to the package directory structure. The deploydir structure is
purposely left untouched for compatibility with existing recipes.
By default this is configured to behave the same as the current recipe
and produce a flat dtb directory at KERNEL_IMAGEDEST.
(From OE-Core rev: 77d6118e20751f68ad7104edec8f14dbb5ba6ec1)
Signed-off-by: Randolph Sapp <rs@ti.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
4c893ff55907 Linux 5.10.180
3ebe5d6d69ce drm/amd/display: Fix hang when skipping modeset
a992c387b411 mm/page_alloc: fix potential deadlock on zonelist_update_seq seqlock
f2656f437fb1 drm/exynos: move to use request_irq by IRQF_NO_AUTOEN flag
32232bcd4e53 printk: declare printk_deferred_{enter,safe}() in include/linux/printk.h
fcfe05990a5c KVM: x86: move guest_pv_has out of user_access section
85cfbaa575ea KVM: x86: do not report preemption if the steal time cache is stale
4bffae22bec7 KVM: x86: revalidate steal time cache if MSR value changes
e10a73f53809 KVM: x86: do not set st->preempted when going back to user space
029662004359 KVM: x86: Remove obsolete disabling of page faults in kvm_arch_vcpu_put()
8e39c2f407af KVM: Fix steal time asm constraints
ebd3010d42ba KVM: x86: Fix recording of guest steal time / preempted status
4b19cbdb1dd3 KVM: x86: Ensure PV TLB flush tracepoint reflects KVM behavior
01c0002ec7bd drbd: correctly submit flush bio on barrier
ef77d602e306 serial: 8250: Fix serial8250_tx_empty() race with DMA Tx
1a8822343e67 ext4: fix invalid free tracking in ext4_xattr_move_to_block()
b0fc279de4bf ext4: remove a BUG_ON in ext4_mb_release_group_pa()
d88fe8e61126 ext4: bail out of ext4_xattr_ibody_get() fails for any reason
4597554b4f7b ext4: add bounds checking in get_max_inline_xattr_value_size()
5f8b55136ad7 ext4: fix deadlock when converting an inline directory in nojournal mode
37c69da3adc4 ext4: improve error recovery code paths in __ext4_remount()
08838aeefa6f ext4: check iomap type only if ext4_iomap_begin() does not fail
4aa7f744fa37 ext4: fix data races when using cached status extents
0dde3141c527 ext4: avoid a potential slab-out-of-bounds in ext4_group_desc_csum
5d356d902e9d ext4: fix WARNING in mb_find_extent
529f41f0eb1e KVM: x86: do not report a vCPU as preempted outside instruction boundaries
0cb6e9e7d3f1 KVM: x86: hyper-v: Avoid calling kvm_make_vcpus_request_mask() with vcpu_mask==NULL
4502ebbdc0e2 HID: wacom: insert timestamp to packed Bluetooth (BT) events
77fd800d3f1b HID: wacom: Set a default resolution for older tablets
c1420276be7a drm/amdgpu: disable sdma ecc irq only when sdma RAS is enabled in suspend
20ca90ceda71 drm/amdgpu/gfx: disable gfx9 cp_ecc_error_irq only when enabling legacy gfx ras
eed63477ae06 drm/amdgpu: fix an amdgpu_irq_put() issue in gmc_v9_0_hw_fini()
c85327c1e93c drm/panel: otm8009a: Set backlight parent to panel device
957904f531fd f2fs: fix potential corruption when moving a directory
4a638a958230 ARM: dts: s5pv210: correct MIPI CSIS clock name
fed6318e4722 ARM: dts: exynos: fix WM8960 clock name in Itop Elite
777952ce1187 remoteproc: st: Call of_node_put() on iteration error
30e0834becd8 remoteproc: stm32: Call of_node_put() on iteration error
62fe5d74ef7f sh: nmi_debug: fix return value of __setup handler
9245f34029b7 sh: init: use OF_EARLY_FLATTREE for early init
f19bc0d2a68c sh: mcount.S: fix build error when PRINTK is not enabled
bbad64abd610 sh: math-emu: fix macro redefined warning
2d65c97777e5 inotify: Avoid reporting event with invalid wd
73aef14407de platform/x86: touchscreen_dmi: Add info for the Dexp Ursus KX210i
4b87eec73e47 platform/x86: touchscreen_dmi: Add upside-down quirk for GDIX1002 ts on the Juno Tablet
8c2cdb7326f0 cifs: fix pcchunk length type in smb2_copychunk_range
829c20fd7a7b btrfs: print-tree: parent bytenr must be aligned to sector size
148b16cd30b2 btrfs: don't free qgroup space unless specified
08fa23adbdcc btrfs: fix btrfs_prev_leaf() to not return the same key twice
7a4db11f00f3 perf symbols: Fix return incorrect build_id size in elf_read_build_id()
87a1fa0ad74e crypto: sun8i-ss - Fix a test in sun8i_ss_setup_ivs()
be3517ae6b80 perf map: Delete two variable initialisations before null pointer checks in sort__sym_from_cmp()
604b650fb574 perf pmu: zfree() expects a pointer to a pointer to zero it after freeing its contents
1ebd0dfb271e perf vendor events power9: Remove UTF-8 characters from JSON files
796616f216d0 net: enetc: check the index of the SFI rather than the handle
b6b15de5129e virtio_net: suppress cpu stall when free_unused_bufs
c043714ef230 virtio_net: split free_unused_bufs()
0773270b1314 net: dsa: mt7530: fix corrupt frames using trgmii on 40 MHz XTAL MT7621
0f1ad0ef60cc ALSA: caiaq: input: Add error handling for unsupported input methods in `snd_usb_caiaq_input_init`
7f497a9451d7 drm/amdgpu: add a missing lock for AMDGPU_SCHED
f00ef2618fa1 af_packet: Don't send zero-byte data in packet_sendmsg_spkt().
02359ba526ce ionic: remove noise from ethtool rxnfc error msg
3605b3318483 octeontx2-vf: Detach LF resources on probe cleanup
ea7453f5e5b6 octeontx2-pf: Disable packet I/O for graceful exit
15152b8a4bbb rxrpc: Fix hard call timeout units
9291aba0ffa0 sfc: Fix module EEPROM reporting for QSFP modules
774da7052156 net/sched: act_mirred: Add carrier check
f3fae1b1c721 watchdog: dw_wdt: Fix the error handling path of dw_wdt_drv_probe()
3b7798b42e1d writeback: fix call of incorrect macro
f47f0fb5b58b net: dsa: mv88e6xxx: add mv88e6321 rsvd2cpu
d6f0687d506d sit: update dev->needed_headroom in ipip6_tunnel_bind_dev()
7311c8be3755 net/sched: cls_api: remove block_cb from driver_list before freeing
cc8efc78c3f6 net/ncsi: clear Tx enable mode when handling a Config required AEN
fa19c533ab19 scsi: qedi: Fix use after free bug in qedi_remove()
4285cc0a22d2 dm verity: fix error handling for check_at_most_once on FEC
fc097cfca004 dm verity: skip redundant verity_handle_err() on I/O errors
26b1b0d0bebd mailbox: zynqmp: Fix counts of child nodes
67fb57f24737 mailbox: zynq: Switch to flexible array to simplify code
c4e636f025a1 crypto: ccp - Clear PSP interrupt status register before calling handler
6f60aae72ccc ring-buffer: Ensure proper resetting of atomic variables in ring_buffer_reset_online_cpus
2fcb12b3f421 tty: Prevent writing chars during tcsetattr TCSADRAIN/FLUSH
6c2ee50c9012 tty: clean include/linux/tty.h up
57b510c7d377 tty: move some tty-only functions to drivers/tty/tty.h
1924d47a2809 tty: move some internal tty lock enums and functions out of tty.h
f665d81ffad7 tty: audit: move some local functions out of tty.h
6a392b806f18 tty: create internal tty.h file
e044a2444718 netfilter: nf_tables: deactivate anonymous set from preparation phase
a222d2794c53 scsi: target: core: Avoid smp_processor_id() in preemptible code
14fc6af67b3f arm64: dts: qcom: sdm845: correct dynamic power coefficients
c820c05c5ff6 sound/oss/dmasound: fix 'dmasound_setup' defined but not used
9079ff34a1ac debugobject: Ensure pool refill (again)
3f225f29c69c arm64: Stash shadow stack pointer in the task struct on interrupt
9134b5a4647e arm64: Always load shadow stack pointer directly from the task struct
a25a403e4b31 perf intel-pt: Fix CYC timestamps after standalone CBR
905f847675cf perf auxtrace: Fix address filter entire kernel size
ea827627a924 dm ioctl: fix nested locking in table_clear() to remove deadlock concern
a1e3fffe02e0 dm flakey: fix a crash with invalid table line
44f29e93a55b dm integrity: call kmem_cache_destroy() in dm_integrity_init() error path
717ceb487bc3 dm clone: call kmem_cache_destroy() in dm_clone_init() error path
eded3ad80a04 ia64: fix an addr to taddr in huge_pte_offset()
abb427cb7730 s390/dasd: fix hanging blockdevice after request requeue
c96807a4adbe btrfs: scrub: reject unsupported scrub flags
f7fd1eed3125 scripts/gdb: fix lx-timerlist for Python3
9aabb5f9ef32 afs: Fix updating of i_size with dv jump from server
3530a795bb07 mfd: tqmx86: Correct board names for TQMxE39x
cbe060011b56 mfd: tqmx86: Specify IO port register range more precisely
640a1f7e36e8 mfd: tqmx86: Add support for TQMx110EB and TQMxE40x
4be49b7c2457 mfd: tqmx86: Remove incorrect TQMx90UC board ID
6697a3b0ed83 mfd: tqmx86: Do not access I2C_DETECT register through io_base
15da2acad515 thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak in mtk_thermal_probe
08012d9edc52 dmaengine: at_xdmac: do not enable all cyclic channels
4f6303fd8f90 dmaengine: dw-edma: Fix to enable to issue dma request on DMA processing
b29543194594 dmaengine: dw-edma: Fix to change for continuous transfer
da67d60467dd phy: tegra: xusb: Add missing tegra_xusb_port_unregister for usb2_port and ulpi_port
45e4c00940be pwm: mtk-disp: Disable shadow registers before setting backlight values
6d13804388d6 pwm: mtk-disp: Adjust the clocks to avoid them mismatch
060bd30bf705 pwm: mtk-disp: Don't check the return code of pwmchip_remove()
795cec288e9c leds: tca6507: Fix error handling of using fwnode_property_read_string
033f00eb8969 dmaengine: mv_xor_v2: Fix an error code.
198fbdd10620 leds: TI_LMU_COMMON: select REGMAP instead of depending on it
770b0613637f ext4: fix use-after-free read in ext4_find_extent for bigalloc + inline
8f009ae90b2b openrisc: Properly store r31 to pt_regs on unhandled exceptions
1fe1580521dd clocksource/drivers/davinci: Fix memory leak in davinci_timer_register when init fails
3bc78eddf0a0 RDMA/mlx5: Use correct device num_ports when modify DC
95468f165d93 SUNRPC: remove the maximum number of retries in call_bind_status
50440cdb0b47 RDMA/mlx5: Fix flow counter query via DEVX
0d6a5c9489c8 Input: raspberrypi-ts - fix refcount leak in rpi_ts_probe
09bfd90d040f input: raspberrypi-ts: Release firmware handle when not needed
3aa2503717ba firmware: raspberrypi: Introduce devm_rpi_firmware_get()
73a65744c7fd NFSv4.1: Always send a RECLAIM_COMPLETE after establishing lease
9c4c6512d733 IB/hfi1: Fix bugs with non-PAGE_SIZE-end multi-iovec user SDMA requests
f84c02597857 IB/hfi1: Add additional usdma traces
1af73620a191 IB/hfi1: Add AIP tx traces
823b59fc5617 IB/hfi1: Fix SDMA mmu_rb_node not being evicted in LRU order
8ec6acdb9b6a RDMA/srpt: Add a check for valid 'mad_agent' pointer
16f596cfe956 RDMA/cm: Trace icm_send_rej event before the cm state is reset
3ef7a4c0d5cd RDMA/siw: Remove namespace check from siw_netdev_event()
ac7f79ee11c3 clk: add missing of_node_put() in "assigned-clocks" property parsing
391fbf0d081d power: supply: generic-adc-battery: fix unit scaling
9e5a7c110645 rtc: meson-vrtc: Use ktime_get_real_ts64() to get the current time
9ad3221c86cc RDMA/mlx4: Prevent shift wrapping in set_user_sq_size()
889a2070dc09 rtc: omap: include header for omap_rtc_power_off_program prototype
647781347af9 workqueue: Fix hung time report of worker pools
77d9a64cfbc6 workqueue: Rename "delayed" (delayed by active management) to "inactive"
960167e0e019 RDMA/rdmavt: Delete unnecessary NULL check
f7790aecb3c7 RDMA/siw: Fix potential page_array out of range access
ab8646c9a0b1 clk: at91: clk-sam9x60-pll: fix return value check
8f381b249424 perf/core: Fix hardlockup failure caused by perf throttle
3ea9186a3ef5 powerpc/rtas: use memmove for potentially overlapping buffer copy
6339b9dcdba2 macintosh: via-pmu-led: requires ATA to be set
15f3a811bfde powerpc/sysdev/tsi108: fix resource printk format warnings
4f41f55d82cb powerpc/wii: fix resource printk format warnings
701e3e599913 powerpc/mpc512x: fix resource printk format warning
d68265ec0bb1 macintosh/windfarm_smu_sat: Add missing of_node_put()
c45ab3ab9c37 spmi: Add a check for remove callback when removing a SPMI driver
4ca4a3e45436 staging: rtl8192e: Fix W_DISABLE# does not work after stop/start
d5d628fea5f6 serial: 8250: Add missing wakeup event reporting
fde8ffaaacfa tty: serial: fsl_lpuart: adjust buffer length to the intended size
5a76bc35cce8 firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe
012936502a9c usb: mtu3: fix kernel panic at qmu transfer done irq handler
e8f64f3200cd usb: chipidea: fix missing goto in `ci_hdrc_probe`
7d667749b3dd usb: gadget: tegra-xudc: Fix crash in vbus_draw
95d97e182dbd sh: sq: Fix incorrect element size for allocating bitmap buffer
a69eb1200eb6 uapi/linux/const.h: prefer ISO-friendly __typeof__
fd7bf900c321 i2c: cadence: cdns_i2c_master_xfer(): Fix runtime PM leak on error path
b24f1ecc8fe2 spi: cadence-quadspi: fix suspend-resume implementations
b5a6930fc6a4 ASoC: fsl_mqs: move of_node_put() to the correct location
5bf2d84074dd coresight: etm_pmu: Set the module field
174d7483f15c scripts/gdb: bail early if there are no generic PD
01710564a92a scripts/gdb: bail early if there are no clocks
b4b4409510a3 ia64: salinfo: placate defined-but-not-used warning
65b5b2c5fd86 ia64: mm/contig: fix section mismatch warning/error
fd4e45d8d7c8 PCI/EDR: Clear Device Status after EDR error recovery
9e5ee4fa0d06 of: Fix modalias string generation
85b4aa4eb2e3 vmci_host: fix a race condition in vmci_host_poll() causing GPF
4bdae667f911 spi: fsl-spi: Fix CPM/QE mode Litte Endian
bc88243bbe61 spi: qup: Don't skip cleanup in remove's error path
00c5b5498bd1 linux/vt_buffer.h: allow either builtin or modular for macros
d4a3c912c87b ASoC: es8316: Handle optional IRQ assignment
67b6e077fb89 ASoC: es8316: Use IRQF_NO_AUTOEN when requesting the IRQ
eb971efca7f0 PCI: imx6: Install the fault handler only on compatible match
36c237b202a4 usb: gadget: udc: renesas_usb3: Fix use after free bug in renesas_usb3_remove due to race condition
aa93a46f998a spi: imx: Don't skip cleanup in remove's error path
c3aba912f40e spi: spi-imx: using pm_runtime_resume_and_get instead of pm_runtime_get_sync
f1f3bc9915b2 iio: light: max44009: add missing OF device matching
ed1f459af644 fpga: bridge: fix kernel-doc parameter description
98bf98e749e6 usb: dwc3: gadget: Change condition for processing suspend event
8a859ac86dea usb: host: xhci-rcar: remove leftover quirk handling
c76ba917915c pstore: Revert pmsg_lock back to a normal mutex
7d285c6cfee6 ipmi: ASPEED_BT_IPMI_BMC: select REGMAP_MMIO instead of depending on it
230a5ed7d813 tcp/udp: Fix memleaks of sk and zerocopy skbs with TX timestamp.
0abcb0b0d629 net: amd: Fix link leak when verifying config failed
b978d22fa122 netlink: Use copy_to_user() for optval in netlink_getsockopt().
0837d10f6c37 Revert "Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished work"
566785731c6d ipv4: Fix potential uninit variable access bug in __ip_make_skb()
4b8a05e38016 net/sched: sch_fq: fix integer overflow of "credit"
cb71b24a8927 netfilter: nf_tables: don't write table validation state without mutex
f4fc43fde12a bpf: Don't EFAULT for getsockopt with optval=NULL
80090acb5885 ixgbe: Enable setting RSS table to default values
7a150a5b5468 ixgbe: Allow flow hash to be set via ethtool
89496d6cff29 wifi: iwlwifi: fw: fix memory leak in debugfs
f4eb14d2618f wifi: iwlwifi: mvm: check firmware response size
4ff7c0fbb3fd wifi: iwlwifi: make the loop for card preparation effective
62fde4651759 jdb2: Don't refuse invalidation of already invalidated buffers
038cbab55069 wifi: iwlwifi: fw: move memset before early return
c0ca3824190e wifi: iwlwifi: yoyo: Fix possible division by zero
2a65555f7e0f md/raid10: fix memleak of md thread
6361b0592b46 md/raid10: fix memleak for 'conf->bio_split'
1697fb124c6d md/raid10: fix leak of 'r10bio->remaining' for recovery
fcacaa9d0457 bpf, sockmap: Revert buggy deadlock fix in the sockhash and sockmap
21f2503d37ee nvme-fcloop: fix "inconsistent {IN-HARDIRQ-W} -> {HARDIRQ-ON-W} usage"
e119d1918303 nvme: fix async event trace event
a9e3d9bac963 nvme: handle the persistent internal error AER
2f9307222227 bpf, sockmap: fix deadlocks in the sockhash and sockmap
2be04fa7ee85 net: ethernet: stmmac: dwmac-rk: fix optional phy regulator handling
bab8dc38b1a0 scsi: lpfc: Fix ioremap issues in lpfc_sli4_pci_mem_setup()
b2f423fda64f f2fs: fix to avoid use-after-free for cached IPU bio
5877980dc2e4 xsk: Fix unaligned descriptor validation
2a67bc52cd3f crypto: drbg - Only fail when jent is unavailable in FIPS mode
9dbdedd44ff4 crypto: drbg - make drbg_prepare_hrng() handle jent instantiation errors
27942f477d10 bpftool: Fix bug for long instructions in program CFG dumps
072d16abf567 selftests/bpf: Wait for receive in cg_storage_multi test
d64a12eeb4a6 net: qrtr: correct types of trace event parameters
dc55805db254 wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_reg()
c621697505b3 wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_rfreg()
adc2d82eee22 crypto: sa2ul - Select CRYPTO_DES
de3908e15152 crypto: caam - Clear some memory in instantiate_rng
a8226a45b2a9 f2fs: compress: fix to call f2fs_wait_on_page_writeback() in f2fs_write_raw_pages()
d11a74577c21 f2fs: apply zone capacity to all zone type
d420c4a06d8f f2fs: enforce single zone capacity
c3a1914b9678 f2fs: handle dqget error in f2fs_transfer_project_quota()
202048ec1ee5 scsi: megaraid: Fix mega_cmd_done() CMDID_INT_CMDS
bfe67e056327 scsi: target: iscsit: Fix TAS handling during conn cleanup
e1f59cd18a10 scsi: target: Fix multiple LUN_RESET handling
008b936bbde3 scsi: target: Make state_list per CPU
7c8a29f1b22e scsi: target: Rename cmd.bad_sector to cmd.sense_info
621c89a0216a scsi: target: Rename struct sense_info to sense_detail
05c6db12aece net/packet: convert po->auxdata to an atomic flag
5ca1be3658cd net/packet: convert po->origdev to an atomic flag
8bb81a925a9f net/packet: annotate accesses to po->xmit
ba6d56b20e8a vlan: partially enable SIOCSHWTSTAMP in container
118df5df1b4b bpf: Remove misleading spec_v1 check on var-offset stack read
10c105126787 scm: fix MSG_CTRUNC setting condition for SO_PASSSEC
10702be8b373 bpf: fix precision propagation verbose logging
6be8ad4cdcac bpf: take into account liveness when propagating precision
243fab8e37d4 wifi: rtw88: mac: Return the original error from rtw_mac_power_switch()
1980dd8c53ec wifi: rtw88: mac: Return the original error from rtw_pwr_seq_parser()
3ab6ec6c485b tools: bpftool: Remove invalid \' json escape
1300517e371e wifi: ath6kl: reduce WARN to dev_dbg() in callback
6c91b3b57b1f wifi: ath5k: fix an off by one check in ath5k_eeprom_read_freq_list()
320d760a3527 wifi: ath9k: hif_usb: fix memory leak of remain_skbs
129c3fb5795d wifi: ath6kl: minor fix for allocation size
c4013689269d tick/common: Align tick period with the HZ tick.
107ea1f63b26 tick: Get rid of tick_period
fdc48767461a tick/sched: Optimize tick_do_update_jiffies64() further
93c43008368d tick/sched: Reduce seqcount held scope in tick_do_update_jiffies64()
ca721584e9a4 tick/sched: Use tick_next_period for lockless quick check
780f303233c3 drm/i915: Make intel_get_crtc_new_encoder() less oopsy
9edf5518db25 debugobject: Prevent init race with static objects
f16f065f8ce3 arm64: kgdb: Set PSTATE.SS to 1 to re-enable single-step
55fc2246c46d x86/ioapic: Don't return 0 from arch_dynirq_lower_bound()
dfce9bb3517a regulator: stm32-pwr: fix of_iomap leak
a6aeba550c59 media: venus: dec: Fix handling of the start cmd
3a227dc12b1a media: venus: vdec: Handle DRC after drain
5bac3de7f49f media: venus: preserve DRC state across seeks
4c1239274f41 media: venus: vdec: Make decoder return LAST flag for sufficient event
a30297bff881 media: venus: vdec: Fix non reliable setting of LAST flag
025a34716c88 media: rc: gpio-ir-recv: Fix support for wake-up
1acb982e3616 media: rcar_fdp1: Fix refcount leak in probe and remove function
ccc454881f09 media: rcar_fdp1: Fix the correct variable assignments
ee24c9e23206 media: rcar_fdp1: Make use of the helper function devm_platform_ioremap_resource()
bf91fb6c1e9d media: rcar_fdp1: fix pm_runtime_get_sync() usage count
21de9d0daab1 media: rcar_fdp1: simplify error check logic at fdp_open()
7dac96e9cc98 media: saa7134: fix use after free bug in saa7134_finidev due to race condition
e9d64e90a0ad media: dm1105: Fix use after free bug in dm1105_remove due to race condition
de19d02d734e media: rkvdec: fix use after free bug in rkvdec_remove
4883f0f7ee44 x86/apic: Fix atomic update of offset in reserve_eilvt_offset()
06140d6dfe72 regulator: core: Avoid lockdep reports when resolving supplies
4c0b98d87c3e regulator: core: Consistently set mutex_owner when using ww_mutex_lock_slow()
e21c93b20a86 drm/lima/lima_drv: Add missing unwind goto in lima_pdev_probe()
0fc1a90bcef7 ARM: dts: gta04: fix excess dma channel usage
f59421334e94 mmc: sdhci-of-esdhc: fix quirk to ignore command inhibit for data
1487b29030ba ACPI: processor: Fix evaluating _PDC method when running as Xen dom0
ee22417f8299 drm: msm: adreno: Disable preemption on Adreno 510
00f02bb8cb05 drm/msm/adreno: drop bogus pm_runtime_set_active()
f9ba5962ccfc drm/msm/adreno: Defer enabling runpm until hw_init()
9a3a907cf69f media: max9286: Free control handler
f8d28cecf210 drm/bridge: adv7533: Fix adv7533_mode_valid for adv7533 and adv7535
076cdba34de2 firmware: qcom_scm: Clear download bit during reboot
4362444dca02 media: bdisp: Add missing check for create_workqueue
a9b9ea0e63a0 x86/MCE/AMD: Use an u64 for bank_map
a8504f9a1304 ARM: dts: qcom: ipq8064: Fix the PCI I/O port range
7d731faebc8e ARM: dts: qcom: ipq8064: reduce pci IO size to 64K
870644bf1bfc ARM: dts: qcom: ipq4019: Fix the PCI I/O port range
45855912958f arm64: dts: qcom: msm8996: Fix the PCI I/O port range
b6082e8caad8 arm64: dts: qcom: ipq8074: Fix the PCI I/O port range
5f6302ab78f4 arm64: dts: qcom: msm8998: Fix the PCI I/O port range
212352542d72 arm64: dts: qcom: sdm845: Fix the PCI I/O port range
eb9c5b383e03 arm64: dts: qcom: sdm845: correct dynamic power coefficients
94e6f7e75729 arm64: dts: qcom: msm8998: Fix stm-stimulus-base reg name
e951bdaa6586 EDAC/skx: Fix overflows on the DRAM row address mapping arrays
6e6c27b2fb9d drm/msm/disp/dpu: check for crtc enable rather than crtc active to release shared resources
9c4c9010ae80 arm64: dts: renesas: r8a774c0: Remove bogus voltages from OPP table
fbfca9b8399f arm64: dts: renesas: r8a77990: Remove bogus voltages from OPP table
08310f810975 soc: ti: pm33xx: Fix refcount leak in am33xx_pm_probe
a1e6a4161a27 soc: ti: pm33xx: Enable basic PM runtime support for genpd
e33f374d65d9 drm/probe-helper: Cancel previous job before starting new one
67f07215eb8b drm/vgem: add missing mutex_destroy
ae784c3ed373 drm/rockchip: Drop unbalanced obj unref
056a1217cffa erofs: fix potential overflow calculating xattr_isize
7a4579cd6e49 erofs: stop parsing non-compact HEAD index if clusterofs is invalid
e5ec129158f3 tpm, tpm_tis: Claim locality when interrupts are reenabled on resume
933bfc5ad213 tpm, tpm: Implement usage counter for locality
140735c46d37 tpm, tpm_tis: Claim locality before writing interrupt registers
35ca7f625283 tpm, tpm_tis: Disable interrupts if tpm_tis_probe_irq() failed
cbb1dd27058e tpm, tpm_tis: Claim locality before writing TPM_INT_ENABLE register
c62a2331abfa tpm, tpm_tis: Do not skip reset of original interrupt vector
3ec77043a27d selinux: ensure av_permissions.h is built when needed
fea314463926 selinux: fix Makefile dependencies of flask.h
0c29f14cf470 selftests/resctrl: Check for return value after write_schemata()
4075fbcde40f selftests/resctrl: Return NULL if malloc_and_init_memory() did not alloc mem
d0653cc6e0c7 rcu: Fix missing TICK_DEP_MASK_RCU_EXP dependency check
d1ab8b54b2ce clk: rockchip: rk3399: allow clk_cifout to force clk_cifout_src to reparent
e0dd13b49da9 wifi: rtl8xxxu: RTL8192EU always needs full init
0fd9b0f61119 mailbox: zynqmp: Fix typo in IPI documentation
63314371ebbf mailbox: zynqmp: Fix IPI isr handling
bdbf104b1c91 md/raid10: fix null-ptr-deref in raid10_sync_request
8a89d36a07af nilfs2: fix infinite loop in nilfs_mdt_get_block()
7c3e66204805 nilfs2: do not write dirty data after degenerating to read-only
e4b526442247 parisc: Fix argument pointer in real64_call_asm()
be649ea153b0 sound/oss/dmasound: fix build when drivers are mixed =y/=m
b8f444a4fadf ubifs: Free memory for tmpfile name
5b4b6cb7246e ubi: Fix return value overwrite issue in try_write_vid_and_data()
66e9f2fb3e75 ubifs: Fix memleak when insert_old_idx() failed
a4904c56fc6f Revert "ubifs: dirty_cow_znode: Fix memleak in error handling path"
87d98984b050 iommu/amd: Fix "Guest Virtual APIC Table Root Pointer" configuration in IRTE
db8b34ffb29b i2c: omap: Fix standard mode false ACK readings
2b00b2a0e642 writeback, cgroup: fix null-ptr-deref write in bdi_split_work_to_wbs
1b0df44753bf relayfs: fix out-of-bounds access in relay_file_read
e28df70df007 KVM: nVMX: Emulate NOPs in L2, and PAUSE if it's not intercepted
680c419d0d8a reiserfs: Add security prefix to xattr name in reiserfs_security_write()
eb18bc5a8678 rcu: Avoid stack overflow due to __rcu_irq_enter_check_tick() being kprobe-ed
0a89d4a07552 crypto: safexcel - Cleanup ring IRQ workqueues on load failure
ff86deaba1fa crypto: api - Demote BUG_ON() in crypto_unregister_alg() to a WARN_ON()
1c99f65d6af2 ring-buffer: Sync IRQ works before buffer destruction
dda1372c8d83 pwm: meson: Fix g12a ao clk81 name
c1cabb10e072 pwm: meson: Fix axg ao mux parents
fcd2da2e6bf2 kheaders: Use array declaration instead of char
1b633da2fecf ipmi: fix SSIF not responding under certain cond.
6d5993d56963 ipmi:ssif: Add send_retries increment
47e61cadc7a5 MIPS: fw: Allow firmware to pass a empty env
2884595932ea tick/nohz: Fix cpu_is_hotpluggable() by checking with nohz subsystem
29b89908fdd9 xhci: fix debugfs register accesses while suspended
a863ac03fae0 staging: iio: resolver: ads1210: fix config mode
c8714ddf3ccf ext4: use ext4_journal_start/stop for fast commit transactions
701a8220762f blk-crypto: make blk_crypto_evict_key() more robust
5072008bef23 blk-crypto: make blk_crypto_evict_key() return void
874bdf43b4a7 blk-mq: release crypto keyslot before reporting I/O complete
68494eb75f1f perf sched: Cast PTHREAD_STACK_MIN to int as it may turn into sysconf(__SC_THREAD_STACK_MIN_VALUE)
7c5811b95c57 posix-cpu-timers: Implement the missing timer_wait_running callback
aed39acf7ed6 hwmon: (adt7475) Use device_property APIs when configuring polarity
b009006887e3 hwmon: (k10temp) Check range scale when CUR_TEMP register is read-write
a71cb92ec431 USB: dwc3: fix runtime pm imbalance on unbind
27dc207c386e USB: dwc3: fix runtime pm imbalance on probe errors
b978269ddad4 PCI: qcom: Fix the incorrect register usage in v2.7.0 config
2f31633da843 PCI: pciehp: Fix AB-BA deadlock between reset_lock and device_lock
5434c7019d23 wireguard: timers: cast enum limits members to int in prints
69fdbb334d6e asm-generic/io.h: suppress endianness warnings for readq() and writeq()
925cbb725367 ASoC: Intel: bytcr_rt5640: Add quirk for the Acer Iconia One 7 B1-750
f5e96af71eab iio: adc: palmas_gpadc: fix NULL dereference on rmmod
8aa079c2fdfc driver core: Don't require dynamic_debug for initcall_debug probe timing
f964a00386ca USB: serial: option: add UNISOC vendor and TOZED LT70C product
c0e921422359 x86/fpu: Prevent FPU state corruption
98cfbad52fc2 bluetooth: Perform careful capability checks in hci_sock_ioctl()
dc110b20f4ce drm/fb-helper: set x/yres_virtual in drm_fb_helper_check_var
549825602e3e wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies()
1dd95b2109de KVM: arm64: Fix buffer overflow in kvm_arm_set_fw_reg()
0f29d0e8fc77 counter: 104-quad-8: Fix race condition between FLAG and CNTR reads
d4a895e924b4 seccomp: Move copy_seccomp() to no failure path.
(From OE-Core rev: c00e421942407b60145cc52844290e9e0f18f84c)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
791a854ae5a5 Linux 5.10.178
f177b382c339 sysctl: Fix data-races in proc_dou8vec_minmax().
56314b90fd43 panic, kexec: make __crash_kexec() NMI safe
d425f348211f kexec: turn all kexec_mutex acquisitions into trylocks
784b6ba15eb2 kexec: move locking into do_kexec_load
0b077b22ea9f riscv: Handle zicsr/zifencei issues between clang and binutils
c36a25101179 kbuild: check CONFIG_AS_IS_LLVM instead of LLVM_IAS
d5f67f6d4ec4 kbuild: Switch to 'f' variants of integrated assembler flag
83f55e6f298e kbuild: check the minimum assembler version in Kconfig
6facabb4d069 coresight-etm4: Fix for() loop drvdata->nr_addr_cmp range bug
7b78445bce52 watchdog: sbsa_wdog: Make sure the timeout programming is within the limits
10b7a33c5de3 i2c: ocores: generate stop condition after timeout in polling mode
b4210b10dc7e x86/rtc: Remove __init for runtime functions
ba4a2f6d99fc sched/fair: Fix imbalance overflow
68387ae3b63e sched/fair: Move calculate of avg_load to a better location
ccbec01cc99c powerpc/papr_scm: Update the NUMA distance table for the target node
453b3188be89 powerpc/pseries: Add support for FORM2 associativity
498618e0a1e7 powerpc/pseries: Add a helper for form1 cpu distance
18ce785effd9 powerpc/pseries: Consolidate different NUMA distance update code paths
f2ae0eb96bfb powerpc/pseries: Rename TYPE1_AFFINITY to FORM1_AFFINITY
f6d8a3a2eaab powerpc/pseries: rename min_common_depth to primary_domain_index
5abf8af8df97 ubi: Fix deadlock caused by recursively holding work_sem
33611d4a8181 mtd: ubi: wl: Fix a couple of kernel-doc issues
0279e82e1484 ubi: Fix failure attaching when vid_hdr offset equals to (sub)page size
37a3cf4abc5a cgroup/cpuset: Wake up cpuset_attach_wq tasks in cpuset_cancel_attach()
10bda0ec3160 x86/PCI: Add quirk for AMD XHCI controller that loses MSI-X state in D3hot
176d7345b89c scsi: ses: Handle enclosure with just a primary component gracefully
cf22c98bcbf8 net: sfp: initialize sfp->i2c_block_size at sfp allocation
2a4835b8ede0 riscv: add icache flush for nommu sigreturn trampoline
c76e79e526cd asymmetric_keys: log on fatal failures in PE/pkcs7
5de2e1f5e26f verify_pefile: relax wrapper length check
e4b9f0bf91a3 drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Book X90F
9f0ee9ed54e1 efi: sysfb_efi: Add quirk for Lenovo Yoga Book X91F/L
e1f80b4dfad9 i2c: imx-lpi2c: clean rx/tx buffers upon new message
81c30f89b9c3 wifi: mwifiex: mark OF related data as maybe unused
ab39582f3081 power: supply: cros_usbpd: reclassify "default case!" as debug
6de0d0699f5c libbpf: Fix single-line struct definition output in btf_dump
1bec9da233f7 net: macb: fix a memory corruption in extended buffer descriptor mode
7d8c844b337d udp6: fix potential access to stale information
d1b9b3191697 RDMA/core: Fix GID entry ref leak when create_ah fails
79b28f42214a sctp: fix a potential overflow in sctp_ifwdtsn_skip
3814d211ff13 net: qrtr: Fix an uninit variable access bug in qrtr_tx_resume()
dad92d8ada07 qlcnic: check pci_reset_function result
4a519731ece8 drm/armada: Fix a potential double free in an error handling path
a069d4d98cd2 tcp: restrict net.ipv4.tcp_app_win
cc9f9a49f5b3 tcp: convert elligible sysctls to u8
f662a0786dfd ipv4: shrink netns_ipv4 with sysctl conversions
389dab6142d7 sysctl: add proc_dou8vec_minmax()
8a1fdb35459d niu: Fix missing unwind goto in niu_alloc_channels()
9266e939d762 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race condition
ae1149885142 RDMA/cma: Allow UD qp_type to join multicast only
5e567fd29611 IB/mlx5: Add support for 400G_8X lane speed
a1d2fb5d13c9 IB/mlx5: Add support for NDR link speed
8a886f01b85d clk: sprd: set max_register according to mapping range
6e2845284b12 mtd: rawnand: stm32_fmc2: use timings.mode instead of checking tRC_min
9e946e4e8c3d mtd: rawnand: stm32_fmc2: remove unsupported EDO mode
6b0e71919264 mtd: rawnand: meson: fix bitmask for length in command word
441e57ff87c2 mtdblock: tolerate corrected bit-flips
0d07ea8d385c fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace
5635e6940656 btrfs: fix fast csum implementation detection
3576e08f19dc btrfs: print checksum type and implementation at mount time
f7ec5ca433ce Bluetooth: Fix race condition in hidp_session_thread
d9ba36c22a7b Bluetooth: L2CAP: Fix use-after-free in l2cap_disconnect_{req,rsp}
8533fe864574 ALSA: hda/sigmatel: fix S/PDIF out on Intel D*45* motherboards
8f6a20a4f4ce ALSA: firewire-tascam: add missing unwind goto in snd_tscm_stream_start_duplex()
69108a8a45c6 ALSA: i2c/cs8427: fix iec958 mixer control deactivation
e63a515d11de ALSA: hda/sigmatel: add pin overrides for Intel DP45SG motherboard
df4af0ddf7f0 ALSA: emu10k1: fix capture interrupt handler unlinking
14e90335bc73 Revert "pinctrl: amd: Disable and mask interrupts on resume"
59dc9767cefb bpftool: Print newline before '}' for struct with padding only fields
2765aca63776 ocfs2: fix freeing uninitialized resource on ocfs2_dlm_shutdown
a412ba6b6cc6 Revert "media: ti: cal: fix possible memory leak in cal_ctx_create()"
2d96c8dca946 drm/bridge: lt9611: Fix PLL being unable to lock
a2773afc81fc selftests: intel_pstate: ftime() is deprecated
ea8c42b3b6d9 mm/swap: fix swap_info_struct race between swapoff and get_swap_pages()
5a74837809cc ring-buffer: Fix race while reader and writer are on the same page
c1bbe926a1c7 drm/nouveau/disp: Support more modes by checking with lower bpc
8250f7f7ae21 drm/panfrost: Fix the panfrost_mmu_map_fault_addr() error path
acbbfdba9ca6 ASoC: hdac_hdmi: use set_stream() instead of set_tdm_slots()
6e36373aa5ff tracing: Free error logs of tracing instances
9c5df2f14ee3 can: isotp: isotp_ops: fix poll() to not report false EPOLLOUT events
70caa596d158 can: j1939: j1939_tp_tx_dat_new(): fix out-of-bounds memory access
f018ef34c44b ftrace: Fix issue that 'direct->addr' not restored in modify_ftrace_direct()
eadcad0a47bf ftrace: Mark get_lock_parent_ip() __always_inline
9470fc63ab42 perf/core: Fix the same task check in perf_event_set_output
499757ad3332 scsi: iscsi_tcp: Check that sock is valid before iscsi_set_param()
4bfdead17443 iio: adc: ad7791: fix IRQ flags
14f9ff7857e7 ALSA: hda/realtek: Add quirk for Clevo X370SNW
1f3b8c3b047a dt-bindings: serial: renesas,scif: Fix 4th IRQ for 4-IRQ SCIFs
3dbee84bf9e3 nilfs2: fix sysfs interface lifetime
f32297dba338 nilfs2: fix potential UAF of struct nilfs_sc_info in nilfs_segctor_thread()
a17bed82c0d3 tty: serial: fsl_lpuart: avoid checking for transfer complete when UARTCTRL_SBK is asserted in lpuart32_tx_empty
25eff5e7f743 tty: serial: sh-sci: Fix Rx on RZ/G2L SCI
72a3e4fa882d tty: serial: sh-sci: Fix transmit end interrupt handler
741d73fc573c iio: light: cm32181: Unregister second I2C client if present
58bf30479a2e iio: dac: cio-dac: Fix max DAC write value check for 12-bit
f47659f1e942 iio: adc: ti-ads7950: Set `can_sleep` flag for GPIO chip
52a003870ee2 USB: serial: option: add Quectel RM500U-CN modem
e6655d483766 USB: serial: option: add Telit FE990 compositions
9d1f2a6b8d9a usb: typec: altmodes/displayport: Fix configure initial pin assignment
4be2b71e9d36 USB: serial: cp210x: add Silicon Labs IFS-USB-DATACABLE IDs
ec20260950af xhci: also avoid the XHCI_ZERO_64B_REGS quirk with a passthrough iommu
b4b4f17aa46c usb: xhci: tegra: fix sleep in atomic call
07216da8fb1d NFSD: callback request does not use correct credential for AUTH_SYS
a3c4aa48e5f2 sunrpc: only free unix grouplist after RCU settles
890517a4a255 net: stmmac: fix up RX flow hash indirection table when setting channels
bdbbd3fa58f8 net: ethernet: ti: am65-cpsw: Fix mdio cleanup in probe
d8c8476c1433 gpio: davinci: Add irq chip flag to skip set wake
605b056d6330 ipv6: Fix an uninit variable access bug in __ip6_make_skb()
ff2565fb8f19 net: qrtr: Do not do DEL_SERVER broadcast after DEL_CLIENT
b4b6dfad41aa sctp: check send stream number after wait_for_sndbuf
efda95cebfdd net: don't let netpoll invoke NAPI if in xmit context
ec81049f0957 icmp: guard against too small mtu
98a9cd82c541 net: qrtr: Fix a refcount bug in qrtr_recvmsg()
94c53d294944 net: qrtr: combine nameservice into main module
3fe20515449a wifi: mac80211: fix invalid drv_sta_pre_rcu_remove calls for non-uploaded sta
2951229ee7d0 KVM: s390: pv: fix external interruption loop not always detected
b43a8939f1e1 pwm: sprd: Explicitly set .polarity in .get_state()
d59b83494d1b pwm: cros-ec: Explicitly set .polarity in .get_state()
176c6b488919 Drivers: vmbus: Check for channel allocation before looking up relids
c51b336bd951 gpio: GPIO_REGMAP: select REGMAP instead of depending on it
(From OE-Core rev: 91f9c4095a3f99cb880400259fcaa2606c831bf1)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
387078f9030c Linux 5.10.177
34a02011c5d1 hsr: ratelimit only when errors are printed
7c414f6f06e9 gfs2: Always check inode size of inline inodes
3392d67af0a4 ext4: fix kernel BUG in 'ext4_write_inline_data_end()'
b4781477f397 libbpf: Fix btf_dump's packed struct determination
7ad30ad8c684 selftests/bpf: Add few corner cases to test padding handling of btf_dump
e5a16bcb131c libbpf: Fix BTF-to-C converter's padding logic
b9f7422dd94a selftests/bpf: Test btf dump for struct with padding only fields
f1c17475a9dc zonefs: Fix error message in zonefs_file_dio_append()
b51e4422952b btrfs: scan device in non-exclusive mode
3eeff8d26c6d s390/uaccess: add missing earlyclobber annotations to __clear_user()
7051d51f1241 drm/amd/display: Add DSC Support for Synaptics Cascaded MST Hub
79815326a516 drm/etnaviv: fix reference leak when mmaping imported buffer
a484f8bec8ee rcu: Fix rcu_torture_read ftrace event
08bfd05987df xtensa: fix KASAN report for show_stack
8ada1b5c8b43 ALSA: hda/realtek: Add quirk for Lenovo ZhaoYang CF4620Z
3b6992bdf09d ALSA: usb-audio: Fix regression on detection of Roland VS-100
0044721f4f95 ALSA: hda/conexant: Partial revert of a quirk for Lenovo
3d328a17c8cb NFSv4: Fix hangs when recovering open state after a server reboot
80a4200d51e5 powerpc: Don't try to copy PPR for task with NULL pt_regs
12c2612e18ca pinctrl: at91-pio4: fix domain name assignment
25065ed83b5f pinctrl: amd: Disable and mask interrupts on resume
fbf3fe7f7bc3 net: phy: dp83869: fix default value for tx-/rx-internal-delay
b3d7a4478ce0 xen/netback: don't do grant copy across page boundary
5f6347034341 btrfs: fix race between quota disable and quota assign ioctls
ba5deb64ddde Input: goodix - add Lenovo Yoga Book X90F to nine_bytes_report DMI table
26a32a212bc5 cifs: fix DFS traversal oops without CONFIG_CIFS_DFS_UPCALL
63bbe24b99f9 cifs: prevent infinite recursion in CIFSGetDFSRefer()
8b3d7ad3e8f1 Input: focaltech - use explicitly signed char type
449a1a61f7f1 Input: alps - fix compatibility with -funsigned-char
988061d09972 pinctrl: ocelot: Fix alt mode for ocelot
ed3439a8c4fe net: dsa: mv88e6xxx: Enable IGMP snooping on user ports only
8104c795517c bnxt_en: Add missing 200G link speed reporting
62850a076353 bnxt_en: Fix typo in PCI id to device description string mapping
f524d1e55013 i40e: fix registers dump after run ethtool adapter self test
fa7fafedc9fd net: ipa: compute DMA pool size properly
96e34c88000f ALSA: ymfpci: Fix BUG_ON in probe function
688b1178c443 ALSA: ymfpci: Fix assignment in if condition
ee17dea3072d s390/vfio-ap: fix memory leak in vfio_ap device driver
ab2a55907823 can: bcm: bcm_tx_setup(): fix KMSAN uninit-value in vfs_write
9b22e0cfc4d7 net: stmmac: don't reject VLANs when IFF_PROMISC is set
f032e125149d net/net_failover: fix txq exceeding warning
1025c471517b regulator: Handle deferred clk
69ed49a7b881 r8169: fix RTL8168H and RTL8107E rx crc error
3907fcb5a439 ptp_qoriq: fix memory leak in probe()
6ff4a54c0218 scsi: megaraid_sas: Fix crash after a double completion
059c3a7a3d6d sfc: ef10: don't overwrite offload features at NIC reset
4a81e2da7297 mtd: rawnand: meson: invalidate cache on polling ECC bit
47a449ec09b4 mips: bmips: BCM6358: disable RAC flush for TP1
ac63f78d9aca ca8210: Fix unsigned mac_len comparison with zero in ca8210_skb_tx()
8b1269b709c9 tracing: Fix wrong return in kprobe_event_gen_test.c
038765a095fd tools/power turbostat: Fix /dev/cpu_dma_latency warnings
5ec5680dc656 fbdev: au1200fb: Fix potential divide by zero
ce5551db3629 fbdev: lxfb: Fix potential divide by zero
c2be7f80562d fbdev: intelfb: Fix potential divide by zero
78eb964805f9 fbdev: nvidia: Fix potential divide by zero
1f2a94baee43 sched_getaffinity: don't assume 'cpumask_size()' is fully initialized
6eaa2254cc5e fbdev: tgafb: Fix potential divide by zero
baef27176ea5 ALSA: hda/ca0132: fixup buffer overrun at tuning_ctl_set()
fcf80111a4f6 ALSA: asihpi: check pao in control_message()
b94ffa287415 net: hsr: Don't log netdev_err message on unknown prp dst node
74d6d33f3695 md: avoid signed overflow in slot_store()
10941fd5c3e1 fsverity: don't drop pagecache at end of FS_IOC_ENABLE_VERITY
0b9493b504fc dm crypt: avoid accessing uninitialized tasklet
b2d19565478f bus: imx-weim: fix branch condition evaluates to a garbage value
1635a062fa0e drm/meson: fix missing component unbind on bind errors
794a6cea2268 drm/meson: Fix error handling when afbcd.ops->init fails
f7385e0886cd kcsan: avoid passing -g for test
46ae204069e7 kernel: kcsan: kcsan_test: build without structleak plugin
a5ce0a559b66 usb: dwc3: gadget: Add 1ms delay after end transfer command without IOC
ddb1973e6765 usb: dwc3: gadget: move cmd_endtransfer to extra function
01e4c9c03de8 NFSD: fix use-after-free in __nfs42_ssc_open()
34ef9cd887d5 KVM: fix memoryleak in kvm_init()
a6d345c3a31e xfs: don't reuse busy extents on extent trim
cb61e1e36fb3 xfs: shut down the filesystem if we screw up quota reservation
91d7a4bd5656 ocfs2: fix data corruption after failed write
d4a5181ba1b1 sched/fair: Sanitize vruntime of entity being migrated
dfdcda25fb5e sched/fair: sanitize vruntime of entity being placed
66ff37993dd7 dm crypt: add cond_resched() to dmcrypt_write()
c68f08cc7456 dm stats: check for and propagate alloc_percpu failure
1eaa2b7ae90c i2c: xgene-slimpro: Fix out-of-bounds bug in xgene_slimpro_i2c_xfer()
85b637feee1e firmware: arm_scmi: Fix device node validation for mailbox transport
f632a90f8e39 tee: amdtee: fix race condition in amdtee_open_session
4ede0da36c2f drm/i915: Preserve crtc_state->inherited during state clearing
d5329a06b4cb drm/i915/active: Fix missing debug object activation
d18db946cc6a nilfs2: fix kernel-infoleak in nilfs_ioctl_wrap_copy()
560437bba14d wifi: mac80211: fix qos on mesh interfaces
a6adfe9bbd6a usb: ucsi: Fix NULL pointer deref in ucsi_connector_change()
09671cfc2b22 usb: chipidea: core: fix possible concurrent when switch role
073ce98aa3a6 usb: chipdea: core: fix return -EINVAL if request role is the same with current role
5a36b601aff3 usb: cdns3: Fix issue with using incorrect PCI device function
aae6d1bf4d8e dm thin: fix deadlock when swapping to thin device
4d2626e10709 igb: revert rtnl_lock() that causes deadlock
e66f3039c792 fsverity: Remove WQ_UNBOUND from fsverity read workqueue
33f341c1fc60 usb: gadget: u_audio: don't let userspace block driver unbind
1f01027c51eb usb: dwc2: fix a devres leak in hw_enable upon suspend resume
dce128421554 scsi: core: Add BLIST_SKIP_VPD_PAGES for SKhynix H28U74301AMR
f7a4ce351426 cifs: empty interface list when server doesn't support query interfaces
8beb18c25bef sh: sanitize the flags on sigreturn
87e800e3dc77 net: usb: qmi_wwan: add Telit 0x1080 composition
27d4ce4aa3bb net: usb: cdc_mbim: avoid altsetting toggling for Telit FE990
ddfc06179338 scsi: storvsc: Handle BlockSize change in Hyper-V VHD/VHDX file
3e0a423a55a7 scsi: lpfc: Avoid usage of list iterator variable after loop
f9a937f75ba2 scsi: ufs: core: Add soft dependency on governor_simpleondemand
522314863f78 scsi: hisi_sas: Check devm_add_action() return value
799d29a447dc scsi: target: iscsi: Fix an error message in iscsi_check_key()
8c42442887db selftests/bpf: check that modifier resolves after pointer
df1da53a7e98 m68k: Only force 030 bus error if PC not in exception table
7df72bedbdd1 ca8210: fix mac_len negative array access
3d8fafc5308f HID: cp2112: Fix driver not registering GPIO IRQ chip as threaded
082b8240a66a riscv: Bump COMMAND_LINE_SIZE value to 1024
2d6c2dee59a3 thunderbolt: Use const qualifier for `ring_interrupt_index`
06e04b450bb4 thunderbolt: Use scale field when allocating USB3 bandwidth
32fa53c27ea3 uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS583Gen 2
231cfa78ec5b scsi: qla2xxx: Perform lockless command completion in abort path
f73a88df19b7 hwmon (it87): Fix voltage scaling for chips with 10.9mV ADCs
33c2fa39fb9e hwmon: fix potential sensor registration fail if of_node is missing
f86ff88a1548 platform/chrome: cros_ec_chardev: fix kernel data leak from ioctl
da3d3fdfb4d5 Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished work
fce0e47e9ec5 Bluetooth: L2CAP: Fix responding with wrong PDU type
77a61df0a0e6 Bluetooth: L2CAP: Fix not checking for maximum number of DCID
65ceb170749b Bluetooth: btqcomsmd: Fix command timeout after setting BD address
7aa3d03e1b30 net: mdio: thunder: Add missing fwnode_handle_put()
94ef1715d263 gve: Cache link_speed value from device
3c72445dadc3 nvme-tcp: fix nvme_tcp_term_pdu to match spec
73db80dcdc20 net/sonic: use dma_mapping_error() for error check
f8cec30541f5 erspan: do not use skb_mac_header() in ndo_start_xmit()
19aa85b9df48 atm: idt77252: fix kmemleak when rmmod idt77252
5eadc8032829 net/mlx5: E-Switch, Fix an Oops in error handling code
265101aea4c0 net/mlx5: Read the TC mapping of all priorities on ETS query
18cead61e437 net/mlx5: Fix steering rules cleanup
a4bbab27c4bf bpf: Adjust insufficient default bpf_jit_limit
a44e98abcca4 keys: Do not cache key in task struct if key is requested from kernel thread
ec23a669deca bootconfig: Fix testcase to increase max node
56e0bc4a72a0 net/ps3_gelic_net: Use dma_mapping_error
3d5a97283e2a net/ps3_gelic_net: Fix RX sk_buff length
cb5879efde4f net: qcom/emac: Fix use after free bug in emac_remove due to race condition
d04dac7fae75 net: mdio: fix owner field for mdio buses registered using device-tree
1b333766ea7a net: phy: Ensure state transitions are processed from phy_stop()
bfeeb3aaad4e xirc2ps_cs: Fix use after free bug in xirc2ps_detach
39c3b9dd481c qed/qed_sriov: guard against NULL derefs from qed_iov_get_vf_info
33d1603a38e0 net: usb: smsc95xx: Limit packet length to skb->len
c09cdf6eb815 scsi: scsi_dh_alua: Fix memleak for 'qdata' in alua_activate()
a3ada13f20fd i2c: imx-lpi2c: check only for enabled interrupt flags
bde2e73d5232 igc: fix the validation logic for taprio's gate list
d3e4844c1829 igbvf: Regard vf reset nack as success
fe3850c72a72 intel/igbvf: free irq on the error path in igbvf_request_msix()
155d6d434f86 iavf: fix non-tunneled IPv6 UDP packet type and hashing
15dcb57eba09 iavf: fix inverted Rx hash condition leading to disabled hash
580634b03a55 xsk: Add missing overflow check in xdp_umem_reg
7b5dffe048f9 ARM: dts: imx6sl: tolino-shine2hd: fix usbotg1 pinctrl
35a49d27585c ARM: dts: imx6sll: e60k02: fix usbotg1 pinctrl
75e2144291e8 power: supply: da9150: Fix use after free bug in da9150_charger_remove due to race condition
2b346876b931 power: supply: bq24190: Fix use after free bug in bq24190_remove due to race condition
18359b8e30c4 power: supply: bq24190_charger: using pm_runtime_resume_and_get instead of pm_runtime_get_sync
1fde5782f187 net: tls: fix possible race condition between do_tls_getsockopt_conf() and do_tls_setsockopt_conf()
cfeda9432c1d drm/sun4i: fix missing component unbind on bind errors
b5131ed83c83 serial: 8250: ASPEED_VUART: select REGMAP instead of depending on it
5fcb12f00a05 serial: 8250: SERIAL_8250_ASPEED_VUART should depend on ARCH_ASPEED
19a98d56dfed tty: serial: fsl_lpuart: fix race on RX DMA shutdown
ae12308c7d55 serial: fsl_lpuart: Fix comment typo
a43f7d0628e4 KVM: Register /dev/kvm as the _very_ last thing during initialization
7958663668ef KVM: Pre-allocate cpumasks for kvm_make_all_cpus_request_except()
6100066358ee KVM: Optimize kvm_make_vcpus_request_mask() a bit
ad120bc86930 KVM: KVM: Use cpumask_available() to check for NULL cpumask when kicking vCPUs
4cc54f6ae535 KVM: Clean up benign vcpu->cpu data races when kicking vCPUs
8f9ae017dd35 ipmi:ssif: Add a timer between request retries
c94de7f85d99 ipmi:ssif: resend_msg() cannot fail
cd35cbde0078 ipmi:ssif: Increase the message retry time
4d57c90f24e1 ipmi:ssif: make ssif_i2c_send() void
18dd825b8651 perf: fix perf_event_context->time
ddcf83200036 perf/core: Fix perf_output_begin parameter is incorrectly invoked in perf_event_bpf_output
29ee1495e857 interconnect: qcom: osm-l3: fix icc_onecell_data allocation
(From OE-Core rev: 87febe433a6bf27b1a85ba4866f395dbcd131271)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
ca9787bdecfa Linux 5.10.176
e57f797e3ffa HID: uhid: Over-ride the default maximum data buffer value with our own
9bc878756b01 HID: core: Provide new max_buffer_size attribute to over-ride the default
daa97e770e78 xfs: remove xfs_setattr_time() declaration
183ca919544c fs: use consistent setgid checks in is_sxid()
0e9dbde96cac attr: use consistent sgid stripping checks
240b96ffece8 attr: add setattr_should_drop_sgid()
baea3ae425fb fs: move should_remove_suid()
24378d6f7486 attr: add in_group_or_capable()
94ac142c19f1 fs: move S_ISGID stripping into the vfs_*() helpers
347750e1b69c fs: add mode_strip_sgid() helper
f60b68c46444 xfs: use setattr_copy to set vfs inode attributes
8cf9400f8948 xfs: set prealloc flag in xfs_alloc_file_space()
308dfe49eb75 xfs: fallocate() should call file_modified()
35f049abbae3 xfs: remove XFS_PREALLOC_SYNC
c84fb2962680 xfs: don't leak btree cursor when insrec fails after a split
be60f08c03de xfs: purge dquots after inode walk fails during quotacheck
d6f223cfef32 xfs: don't assert fail on perag references on teardown
d0292124bb57 PCI/DPC: Await readiness of secondary bus after reset
337aa99f76ea PCI: Unify delay handling for reset and resume
b5e0b3d74285 s390/ipl: add missing intersection check to ipl_report handling
84e2e393bf9f io_uring: avoid null-ptr-deref in io_arm_poll_handler
5e784a7d07af drm/i915/active: Fix misuse of non-idle barriers as fence trackers
8f27d4321700 drm/i915: Don't use stolen memory for ring buffers with LLC
b4a798374f2d x86/mm: Fix use of uninitialized buffer in sme_enable()
764217184f9e x86/mce: Make sure logged MCEs are processed after sysfs update
15e926dfd820 cpuidle: psci: Iterate backwards over list in psci_pd_remove()
38742635eda9 fbdev: stifb: Provide valid pixelclock and add fb_check_var() checks
03fc29e75e44 mmc: sdhci_am654: lower power-on failed message severity
b2747b690cb9 mm/userfaultfd: propagate uffd-wp bit when PTE-mapping the huge zeropage
83c3b2f4e7c6 ftrace: Fix invalid address access in lookup_rec() when index is 0
f9a98b8dde09 mptcp: avoid setting TCP_CLOSE state twice
684c7372bbd6 drm/shmem-helper: Remove another errant put in error path
fbc5ffcce72b ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro
9addf5e1050a ALSA: hda: intel-dsp-config: add MTL PCI id
c54974ccaff7 KVM: nVMX: add missing consistency checks for CR0 and CR4
7b18dea697e4 cifs: Fix smb2_set_path_size()
ec663c410ce0 tracing: Make tracepoint lockdep check actually test something
8ae86ef7a058 tracing: Check field value in hist_field_name()
de3170bd41de tracing: Make splice_read available again
efae80ca13fa interconnect: fix mem leak when freeing nodes
b37d3ccbd549 firmware: xilinx: don't make a sleepable memory allocation from an atomic context
0c16c20b8787 serial: 8250_em: Fix UART port type
f5a5150c7066 tty: serial: fsl_lpuart: skip waiting for transmission complete when UARTCTRL_SBK is asserted
020166bc6669 ext4: fix possible double unlock when moving a directory
7257070be70e drm/amd/display: fix shift-out-of-bounds in CalculateVMAndRowBytes
ab7da8d93a6f sh: intc: Avoid spurious sizeof-pointer-div warning
6936525142a0 drm/amdkfd: Fix an illegal memory access
a98160d8f3e6 ext4: fix task hung in ext4_xattr_delete_inode
0bf15bc393a1 ext4: fail ext4_iget if special inode unallocated
8e7f26b9565a jffs2: correct logic when creating a hole in jffs2_write_begin
980d4e70c708 mmc: atmel-mci: fix race between stop command and start of next command
04eaeaa2f79f media: m5mols: fix off-by-one loop termination error
a4c048d502eb hwmon: (adm1266) Set `can_sleep` flag for GPIO chip
a4c3e1132422 hwmon: tmp512: drop of_match_ptr for ID table
c5bd9719b53b hwmon: (ucd90320) Add minimum delay between bus accesses
663c3afee81e hwmon: (ina3221) return prober error code
0a73c8b3cc99 hwmon: (xgene) Fix use after free bug in xgene_hwmon_remove due to race condition
4a8c3ad12c9d hwmon: (adt7475) Fix masking of hysteresis registers
aff84fadba53 hwmon: (adt7475) Display smoothing attributes in correct order
d4dbd26f985c ethernet: sun: add check for the mdesc_grab()
eb80cb66a2c5 qed/qed_mng_tlv: correctly zero out ->min instead of ->hour
1c06d1223728 selftests: net: devlink_port_split.py: skip test if no suitable device available
bd2e78462ae1 net/iucv: Fix size of interrupt data
2cc46ed406bb net: usb: smsc75xx: Move packet length check to prevent kernel panic in skb_pull
013fae04b8ff ipv4: Fix incorrect table ID in IOCTL path
1f0586dcc076 net: dsa: mv88e6xxx: fix max_mtu of 1492 on 6165, 6191, 6220, 6250, 6290
cccba1ff0798 ice: xsk: disable txq irq before flushing hw
2f28cb5c2a51 block: sunvdc: add check for mdesc_grab() returning NULL
a6317235da8a nvmet: avoid potential UAF in nvmet_req_complete()
9ebc344ce547 nvme: fix handling single range discard request
4cf15887a41b block: null_blk: Fix handling of fake timeout request
d14d2574a54c null_blk: Move driver into its own directory
d5e61a859a8a drm/bridge: Fix returned array size name for atomic_get_input_bus_fmts kdoc
e294f0aa47e4 net: usb: smsc75xx: Limit packet length to skb->len
9708efad9ba5 net/smc: fix deadlock triggered by cancel_delayed_work_syn()
43aa468df246 nfc: st-nci: Fix use after free bug in ndlc_remove due to race condition
194248138f8d net: phy: smsc: bail out in lan87xx_read_status if genphy_read_status fails
be59b87ee4ae net: tunnels: annotate lockless accesses to dev->needed_headroom
281e86e3fab6 qed/qed_dev: guard against a possible division by zero
31817c530768 net/smc: fix NULL sndbuf_desc in smc_cdc_tx_handler()
3cbecb1c9085 i40e: Fix kernel crash during reboot when adapter is in recovery mode
91eb59240150 ipvlan: Make skb->skb_iif track skb->dev for l3s mode
2703da78849c nfc: pn533: initialize struct pn533_out_arg properly
77ad58bca011 tcp: tcp_make_synack() can be called from process context
68c665bb1850 scsi: core: Fix a procfs host directory removal regression
be5aa2534188 scsi: core: Fix a comment in function scsi_host_dev_release()
0fac20b1806b netfilter: nft_redir: correct value of inet type `.maxattrs`
c144dff64ea9 netfilter: nft_redir: correct length for loading protocol registers
3a0f8ea35ddc netfilter: nft_masq: correct length for loading protocol registers
eff050d83eee netfilter: nft_nat: correct length for loading protocol registers
0c6c5abeb471 ALSA: hda: Match only Intel devices with CONTROLLER_IN_GPU()
6f0c2f70d992 scsi: mpt3sas: Fix NULL pointer access in mpt3sas_transport_port_add()
79fe786dab5c docs: Correct missing "d_" prefix for dentry_operations member d_weak_revalidate
ea1e21d38a8d clk: HI655X: select REGMAP instead of depending on it
081893e254f1 drm/meson: fix 1px pink line on GXM when scaling video overlay
ed9ed2f58ceb cifs: Move the in_send statistic to __smb_send_rqst()
a3c502218cd3 drm/panfrost: Don't sync rpm suspension after mmu flushing
0da0b816972a xfrm: Allow transport-mode states with AF_UNSPEC selector
(From OE-Core rev: 9f27f11e19fc1929d42820e88e8df3380495f659)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add patches to fix CVE-2023-28322
more POST-after-PUT confusion
When doing HTTP(S) transfers, libcurl might erroneously use the read
callback (`CURLOPT_READFUNCTION`) to ask for data to send, even when
the `CURLOPT_POSTFIELDS` option has been set, if the same handle
previously was used to issue a `PUT` request which used that callback.
This flaw may surprise the application and cause it to misbehave and
either send off the wrong data or use memory after free or similar in
the second transfer.The problem exists in the logic for a reused
handle when it is (expected tobe) changed from a PUT to a POST.
CVE-2023-28322-1.patch is a supporting patch to resolve hunk
error in the actual patch file : CVE-2023-28322-2.patch
Link: https://curl.se/docs/CVE-2023-28322.html
(From OE-Core rev: 9ef793eca87ac568d9c22067aa854a50837cf92f)
Signed-off-by: Bhabu Bindu <bhabu.bindu@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add patch to fix CVE-2023-28321
IDN wildcard match
curl supports matching of wildcard patterns when listed as
"Subject Alternative Name" in TLS server certificates. curl can be
built to use its own name matching function for TLS rather than one
provided by a TLS library. This private wildcard matching function
would match IDN (International Domain Name)hosts incorrectly and
could as a result accept patterns that otherwise should mismatch.
IDN hostnames are converted to puny code before used for certificate
checks. Puny coded names always start with `xn--` and should not be
allowed to pattern match, but the wildcard check in curl could still
check for `x*`,which would match even though the IDN name most likely
contained nothing even resembling an `x`.
Link: https://curl.se/docs/CVE-2023-28321.html
(From OE-Core rev: 75d8593ab3b090266fd2cde27ddc56ad88de7ac7)
Signed-off-by: Bhabu Bindu <bhabu.bindu@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add patch to fix CVE-2023-28320
siglongjmp race condition
libcurl provides several different backends for resolving host names,
selectedat build time. If it is built to use the synchronous resolver,
it allows nameresolves to time-out slow operations using `alarm()` and
`siglongjmp()`.
When doing this, libcurl used a global buffer that was not mutex
protected anda multi-threaded application might therefore
crash or otherwise misbehave.
Link: https://curl.se/docs/CVE-2023-28320.html
(From OE-Core rev: c761d822be5ffc4a88600fbd7282c469b1e9902a)
Signed-off-by: Bhabu Bindu <bhabu.bindu@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add patch to fix CVE-2023-28319
UAF in SSH sha256 fingerprint check
libcurl offers a feature to verify an SSH server's public key using
a SHA 256hash. When this check fails, libcurl would free the memory
for the fingerprintbefore it returns an error message containing the
(now freed) hash.
This flaw risks inserting sensitive heap-based data into the error
message that might be shown to users or otherwise get
leaked and revealed.
Link: https://curl.se/docs/CVE-2023-28319.html
(From OE-Core rev: f7d6751828683ac2adbf140e77dbf7454cfa8eb1)
Signed-off-by: Bhabu Bindu <bhabu.bindu@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This reverts commit c9922076f5c1285d9cfd6aff8ce5b6635d88222f.
Since the minimum version required to build the docs has been bumped in
the previous commit to 4.0, this commit is not required. Moreover, since
Sphinx 5.0 triggers a warning when extlinks captions are not using %s
substitution and Sphinx 6.0 will fail to build without the substitution
characters, this revert is now required to be able to build the docs.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: 444df054f0bf3ad7614e1613b22ee5b9e8cb94ef)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- Allow GLX tests to be disabled for systems that don't support it.
- Allow OpenCL tests to be enabled.
(From OE-Core rev: b0f54a3db7877a95a163bd480b93cfe6f0b97dcd)
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Otherwise xwayland.pc would not be present in sysroot, this leads to
some xwayland configs missing like have_listenfd, have_glamor.
(From OE-Core rev: 4e42196754b19926b2219c6ffda47bd389e9d9fb)
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7f1932cb5a408320a5b542e20ba2807718349e8f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
"sysconfdir" contains "/" by definition and thus using os.path.join()
leads to self.target_rootfs being always ignored (and thus attempting to
generate paths in host's /etc).
Use oe.path.join() instead which was made for this purpose.
(From OE-Core rev: 4766ba017b7562e42b33fde7f2e84c2a339e3f4c)
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8414c504138f6de663f5130c6b4a6ede5605d88b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is consistently seen with musl and grep from busybox
Therefore backport a patch from upstream to fix it
(From OE-Core rev: 769290794fc23894211c56b1878a73634fd20283)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 511bcd965af658e6bb0c61d9f2adb1af75af773b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Fix issue of the below instance template systemd service dependency
[Install]
WantedBy=svc-wants@%i.service
creating the symlink (instance "a" example)
/etc/systemd/system/svc-wants@%i.service.wants/svc-wanted-by@a.service
which should be
/etc/systemd/system/svc-wants@a.service.wants/svc-wanted-by@a.service
as implemented by this change.
The functionality appears regressed just after "thud" baseline when the
logic was refactored from shell script into python (commit
925e30cb10)
(From OE-Core rev: 308397f0bb3d6f3d4e9ec2c6a10823184049c9b5)
(From OE-Core rev: e572d096e81bb7dba8a07ee9dba93d0944857212)
Signed-off-by: Martin Siegumfeldt <mns@gomspace.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 372b29c8ad270d4d430c26a4e614976c7029afaf)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This recipe is needed to build softhsm (in meta-oe) in with p11-kit
support, which is useful when multiple PKCS#11 modules need to be used.
(From OE-Core rev: 19498bea309f19d841187a7063286b2a68ce2587)
Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4942a42d5a071b283fe49047dcb4fee2c96422e8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
By default there is nothing in nghttp2-client and nghttp2-server ,nghttp2-client
and nghttp2-server aren't created. So there are dependences error if install
main package.
Problem: conflicting requests
- nothing provides nghttp2-client >= 1.52.0 needed by nghttp2-1.52.0-r0.core2_64
- nothing provides nghttp2-server >= 1.52.0 needed by nghttp2-1.52.0-r0.core2_64
Upstream-Status: Backport [OE-core d2cbe060955c598bd81923ecd554fbe82c17af99]
(From OE-Core rev: 619a643f71eceab73bbbe4dacd1eb42b6d6b01d1)
Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* needed for llvm-native on hosts with gcc-13
(From OE-Core rev: 3382759cb6c5cee42151e72fd94e99a3060317f5)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
some standalone targets e.g. riscv64-elf disable shared linking for
baremetal ELF ABI in ld, therefore lets make it a static library
(From OE-Core rev: 3c6219dfcbcbde314648ba8cc54a90b32ea1c952)
(From OE-Core rev: 4ee9d5839669560ec10f23445fa8bbc03a4c5406)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Due to signedness, the checksum is not computed when filesize is bigger
a 2GB. Pick a fix for this problem from CPIO ML, where the fix has been
posted for 5 years. Since CPIO upstream is effectively unresponsive and
any and all attempts to communicate with the maintainer and get the fix
applied upstream failed, add the fix here instead.
(From OE-Core rev: bfff138af4bdd356ac66571e6ad91c1a5599b935)
(From OE-Core rev: 8320097487cc46045482f5d0d41ad799a2435bce)
Signed-off-by: Marek Vasut <marex@denx.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The Waffle bugfix release 1.7.1 is now available.
What is new in this release:
- cmake: pass deps' cflags to the build
- gbm: fix crash when platform lacks modifier support
- gitlab-ci: stabilise CI runs under X
- gitlab-ci: add more warnings, make all warnings fatal
- gitlab-ci: update to bullseye
- meson: add override_* support, when using waffle as submodule
- meson: skip installing bash completion when custom prefix is used
- meson: silence deprecation warnings
- meson: generate cmake files only on Windows
- meson: find wayland.xml from wayland-scanner.pc
- misc: zsh completion
- misc: fix dozens of compiler warnings
- misc: update website references
- wayland: fix build against wayland 1.20
The Waffle bugfix release 1.7.2 is now available.
What is new in this release:
- all: use format(gnu_printf), enable in mingw
- meson: don't run TLS checks on mingw
- wgl: remove unused dummy wgl_error.[ch]
Upstream now only generates CMake files on Windows, so remove all
references to CMake.
A zsh completion is now installed, remove this for now as we don't really
use zsh.
(From OE-Core rev: 6b1d94fe5d8728e3eb152426cde08634d248e1f7)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 94cf6ef11bba381ab6f65b03ed1ed14022438151)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit e4ebfb5c7892488fc834d9837e9a5a4c28eb676f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
===========
audio: channel-mix: allow up to 64 channels instead of up to 63 channels
AOM AV1 encoder timestamp handling improvements
AV1 video codec caps handling improvements in aom plugin, isomp4 and matroska muxers/demuxers.
avvidenc: fix bitrate control and timestamps off FFmpeg-based video encoders
h264parse: fix missing timestamps on outputs when splitting a frame
rtspsrc: more workarounds for servers with broken control uri handling
playbin3: fix issue with UDP streams, making sure there's enough buffering
qmlglsrc: Fix deadlock when stopping and some other fixes
qtmux: fix default timescale unit for N/1001 framerates
v4l2h264dec: Fix Raspberry Pi4 will not play video in application
vtdec: Fix non-deterministic frame output after seeks
wasapi2src: Fix loopback capture on Windows 10 Anniversary Update
macOS, iOS: Fix Xcode 14 ABI breakage with older Xcode
cerbero: Fix some regressions for CentOS in the 1.20 branch
cerbero: Fix setuptools site.py breakage in Python 3.11
Fix gst-libav build against FFmpeg from git
gobject-introspection annotation fixes for bindings
Miscellaneous bug fixes, memory leak fixes, and other stability and reliability improvements
Performance improvements
(From OE-Core rev: 102c453668f71dd30c3f0f13502f0993a051d7fe)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is specific to Git-for-Windows.
(From OE-Core rev: 472a3e05270deace2862973dee2e65e60f9c0c19)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Function 'gen_updatealternativesvardeps' still used old override
syntax when fetching variable flags. Update to use ':' instead to match
recipe meta data. This was found by review and no real issue encountered
but it is a bug that affects variable dependencies and can affect rebuilds
as task hashes might not be accurate.
(From OE-Core rev: d5fd577c066fa2fddbd16c286f2dde2883cc7828)
Signed-off-by: Peter Bergin <peter.bergin@windriver.com>
Signed-off-by: Peter Bergin <peter@berginkonsult.se>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5691f554b2cd50f256a8cbb1d96781e9eb6b930e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is a partial fix for bugzilla 15059 [https://bugzilla.yoctoproject.org/show_bug.cgi?id=15059]
It has been noted by several people that when an initramfs is bundled:
- a lot of the kernel is rebuilt
- it takes a really long time
When looking at the logs, the second kernel compilation (that performs
the bundle) is not using the parallel make settings, and builds with
-j1.
We are already explicitly passing PARALLEL_MAKE when building kernel
modules, and by extending that explicit use to the main kernel
compilation, we ensure that we always get a parallel build.
Build times chnaged from more than 30 minutes for the bundle, to
3 minutes in local testing.
The question of whether or not too much is rebuilding during the
bundle step is still an open question, but with this tweak, at least
the build time is back in the realm of acceptable.
(From OE-Core rev: a2a889b760785474dbc04e3ec11521f6da90161d)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 88fd394ecf0f2174b792075d409d87046896426b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This will use default values when no distribution is set.
[YOCTO #15086]
(From OE-Core rev: 01eb8d4ad71c587d56608d83ec4187375b2f4c44)
Signed-off-by: Thomas Roos <throos@amazon.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 888fe63b46efceeff08dbe8c4f66fec33d06cb7a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Reproducer:
1.Enable the ptest of libpam and build the image.
2.Boot the rootfs with nfs, then run the following tests as root:
cd /usr/share/Linux-PAM/xtests
/usr/share/Linux-PAM/xtests# ./run-xtests.sh . tst-pam_motd1
/usr/share/Linux-PAM/xtests# ./run-xtests.sh . tst-pam_motd3
After applying this patch, the ptest doesn't be failed.
(From OE-Core rev: 928b7e880e6a5d1b807cb7f605649233c7195578)
Signed-off-by: Zhixiong Chi <zhixiong.chi@windriver.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 549e54ad6a175359b0a57987ccdab8989df9d3a9)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* otherwise it ends '<unknown>' inside esdk, because of parsing order:
# $METADATA_REVISION [3 operations]
# set /OE/build/test-D/conf/local.conf:43
# "f2da54ef432eac89b0f18eaad68e602b6990b5de"
# immediate /OE/build/test-D/layers/poky/meta/classes/metadata_scm.bbclass:9
# "${@oe.buildcfg.detect_revision(d)}"
# set /OE/build/test-D/layers/poky/meta/classes/metadata_scm.bbclass:10
# [vardepvalue] "${METADATA_REVISION}"
# pre-expansion value:
# "<unknown>"
METADATA_REVISION="<unknown>"
* This causes base-files.do_install and following tasks to have different
signatures between esdk and the build directory where this esdk was created:
bitbake-diffsigs {test-D,poky/build-uninative-disabled}/tmp/stamps/qemux86_64-poky-linux/base-files/*do_install*sigdata*
NOTE: Starting bitbake server...
basehash changed from 5b6981cf58bfd57d416b0e31611b73a26baae635dd1ac31c08d46f95064c3ffc to dbdce042da4d7813d632b6d1cc87a16f728ad20e55fecbc392830e6acf72babd
Variable METADATA_REVISION value changed from '<unknown>' to 'f2da54ef432eac89b0f18eaad68e602b6990b5de'
and an warning from "python3 /OE/build/test-D/ext-sdk-prepare.py" when eSDK is being prepared for use:
WARNING: The base-files:do_install sig is computed to be 83b9c9a6ef1145baac5a1e0d08814b9156af239c58fc42df95c25a9cd8a7f201,
but the sig is locked to 3dc22233059075978e5503691e98e79e7cc60db94259dfcd886bca2291c0add7 in SIGGEN_LOCKEDSIGS_t-qemux86-64
[RP: Add commit about why we need the override for future reference]
(From OE-Core rev: da6f6340f97e80cb1b21f6083ef5d0a9a856eef5)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 675ea7281c17f77bf5dea17cfd4d9da0928382a0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Libarchive is being used by OPKG package manager as default
API for extracting tar files. This fix allows us to extract
ipks packages with preserved ACLs and xattrs.
Partially addresses [YOCTO #15091]
[RP: Merge into main PACKAGECONFIG and tweak commit message]
(From OE-Core rev: b1f80f0a2bf30698192c7a214c5802b76464d095)
Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 913aad1ac013368aef8f6af332588ef24bba46bd)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Avoids pulling in potential GPLv3 packages through python3-misc catch-all.
python3-core is the intended minimal RDEPENDS for packages requiring python3
support. Other python3 module dependencies should be listed explicitly.
(From OE-Core rev: d4e9a2c0c666244f5a197682dabe018a4a3e06f8)
Signed-off-by: Kyle Russell <bkylerussell@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 231f93becad619f6afa383f9b1132f1d4b02fa64)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This release contains the fix for CVE-2023-1393 in today's security
advisory: https://lists.x.org/archives/xorg-announce/2023-March/003374.html
Benno Schulenberg (1):
xkbUtils: use existing symbol names instead of deleted deprecated ones
Olivier Fourdan (2):
composite: Fix use-after-free of the COW
xserver 21.1.8
git tag: xorg-server-21.1.8
(From OE-Core rev: 732b51f073105d4c6a0e2e06c559bffcac093fbf)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 7b08dff8f46bcaa05f7fbffbe27d524579af4faf)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This reverts commit dc2c777cab0230fc54e078d20d872aaa9287a8b9.
Fixed in subsequent version bump
(From OE-Core rev: 151149b590a9051a6de58115a6796ccf17894498)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
==========
- Reverted a change introduced in 1.14.1 which introduced crashes both
with WebKitGTK and WPE running under Wayland in some configurations.
- Fix a crash caused by wrong assertion, which was typically triggered in
debug builds when using the NVidia drivers.
- Fix WebKit no longer repainting after provisional navigation with
PSON enabled.
- Fix graphics buffer leaks by always freeing them in buffer destroy
listener callbacks.
(From OE-Core rev: 7991fb7aa30cf56105ebbe060195f16aa1c9b6da)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit aa37e18a51714af3281b4127dceb40b38aa8ac3c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Exclude CVEs that are fixed in both current linux-yocto version
v5.10.175 and v5.15.108.
To get the commit fixing a CVE, I used the Debian kernel-sec repo [1].
[1]: 86d5040aee
(From OE-Core rev: d1de8d75648282a421022becf61c80c3e6e8b75b)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Git is a revision control system. Prior to versions 2.30.9, 2.31.8, 2.32.7,
2.33.8, 2.34.8, 2.35.8, 2.36.6, 2.37.7, 2.38.5, 2.39.3, and 2.40.1, by feeding
specially crafted input to `git apply --reject`, a path outside the working
tree can be overwritten with partially controlled contents (corresponding to
the rejected hunk(s) from the given patch). A fix is available in versions
2.30.9, 2.31.8, 2.32.7, 2.33.8, 2.34.8, 2.35.8, 2.36.6, 2.37.7, 2.38.5, 2.39.3,
and 2.40.1. As a workaround, avoid using `git apply` with `--reject` when applying
patches from an untrusted source. Use `git apply --stat` to inspect a patch before
applying; avoid applying one that create a conflict where a link corresponding to
the `*.rej` file exists.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-25652
Upstream patches:
9db05711c9
(From OE-Core rev: 335ad8a6d795cd94b872370e44a033ce3fbf4890)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Git is a revision control system. Prior to versions 2.30.9, 2.31.8, 2.32.7, 2.33.8,
2.34.8, 2.35.8, 2.36.6, 2.37.7, 2.38.5, 2.39.3, and 2.40.1, a specially crafted
`.gitmodules` file with submodule URLs that are longer than 1024 characters can used
to exploit a bug in `config.c::git_config_copy_or_rename_section_in_file()`. This bug
can be used to inject arbitrary configuration into a user's `$GIT_DIR/config` when
attempting to remove the configuration section associated with that submodule. When the
attacker injects configuration values which specify executables to run (such as
`core.pager`, `core.editor`, `core.sshCommand`, etc.) this can lead to a remote code
execution. A fix A fix is available in versions 2.30.9, 2.31.8, 2.32.7, 2.33.8, 2.34.8,
2.35.8, 2.36.6, 2.37.7, 2.38.5, 2.39.3, and 2.40.1. As a workaround, avoid running
`git submodule deinit` on untrusted repositories or without prior inspection of any
submodule sections in `$GIT_DIR/config`.
References:
https://nvd.nist.gov/vuln/detail/CVE-2023-29007
Upstream patches:
528290f8c629198213c9a5bb10fd5ee91cfe60853bb3d6bac5
(From OE-Core rev: 1b55343b6346437b80b8a8180ae1bc9f480d92ef)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
If a package with a postsints script requires ldconfig, the package class adds
a ldconfig postinst fragment to initialize it before. Systemd has its own
ldconfig.service to initialize it and sometimes if both services are running
at the same time in the first boot, the first one will work, but the second
one will fail with the following error:
ldconfig[141]: /sbin/ldconfig: Renaming of /etc/ld.so.cache~ to /etc/ld.so.cache failed: No such file or directory
This commit adds a ordering dependency between them to make sure that only one
service is running at the same time.
(From OE-Core rev: 5fca673d8fe0ee97dc37ed2c9941696842cd667a)
Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4e9d812e127dc6743f52f4881e509e8e2e833afe)
Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
BSD-4-Clause is only applicable to the {PN}-doc package as when I
check for the source code I find below files which only uses the
license BSD-4-Clause
~/sources/libbsd$ grep -rl "All advertising materials mentioning features or use of this software" *|grep -v \.1|grep -v \.5|grep -v \.8 | sort
COPYING
man/arc4random.3bsd
man/getprogname.3bsd
~/sources/libbsd$ grep -rnB5 "BSD-4"
COPYING-9-Files:
COPYING-10- man/arc4random.3bsd
COPYING-11-Copyright:
COPYING-12- Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
COPYING-13- All rights reserved.
COPYING:14:License: BSD-4-clause-Niels-Provos
(From OE-Core rev: aa5bdac99e187801db56ca4bcc4d5f18b2403f40)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is a bit of a compatibility issue more than anything. Some devices
get upset if the FAT file system contains less blocks than the
partition.
The fixed-size argument is currently respected by the partition creation
step but not by the file system creation step. Let's make it so the file
system respects this value as well.
(From OE-Core rev: d16301ccdfb97bf126738262eec594008c282df1)
Signed-off-by: Randolph Sapp <rs@ti.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
cryptography is a package designed to expose cryptographic primitives
and recipes to Python developers. In affected versions `Cipher.update_into`
would accept Python objects which implement the buffer protocol, but
provide only immutable buffers. This would allow immutable objects
(such as `bytes`) to be mutated, thus violating fundamental rules of
Python and resulting in corrupted output. This now correctly raises
an exception. This issue has been present since `update_into` was
originally introduced in cryptography 1.8.
(From OE-Core rev: 368e450c2d800790a05924519f34c579e28e9cbb)
Signed-off-by: Narpat Mali <narpat.mali@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backport patches to fix CVE-2022-32888 and CVE-2022-32923 for webkitgtk
2.36.8. The bugzilla IDs of the CVEs are from https://support.apple.com
which have been listed in patch headers.
(From OE-Core rev: e24e16974e81a0f62dd6f5862a465fc74ad751d3)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A parsed MIME header is a map[string][]string. In the common case,
a header contains many one-element []string slices. To avoid
allocating a separate slice for each key, ReadMIMEHeader looks
ahead in the input to predict the number of keys that will be
parsed, and allocates a single []string of that length.
The individual slices are then allocated out of the larger one.
The prediction of the number of header keys was done by counting
newlines in the input buffer, which does not take into account
header continuation lines (where a header key/value spans multiple
lines) or the end of the header block and the start of the body.
This could lead to a substantial amount of overallocation, for
example when the body consists of nothing but a large block of
newlines.
Fix header key count prediction to take into account the end of
the headers (indicated by a blank line) and continuation lines
(starting with whitespace).
Thanks to Jakob Ackermann (@das7pad) for reporting this issue.
Fixes CVE-2023-24534
For #58975Fixes#59267
(From OE-Core rev: 28bfa033ce965d7316a8b4296d10f3ad74d711db)
Signed-off-by: Vivek Kumbhar <vkumbhar@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Fix An integer overflow vulnerability was discovered in Freetype in tt_hvadvance_adjust() function in src/truetype/ttgxvar.c
(From OE-Core rev: 6a07e1524746bd3cfa5aec090a882f4a7f954dad)
Signed-off-by: Vivek Kumbhar <vkumbhar@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
libavcodec/pthread_frame.c in FFmpeg before 5.1.2, as used in VLC and
other products, leaves stale hwaccel state in worker threads, which
allows attackers to trigger a use-after-free and execute arbitrary
code in some circumstances (e.g., hardware re-initialization upon a
mid-video SPS change when Direct3D11 is used).
(From OE-Core rev: 392f984ffd95bcd3ce4c364b40425e7808ca7719)
Signed-off-by: Narpat Mali <narpat.mali@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add SDK_ZIP_OPTIONS to remove symbolic link creation in zip archive or add options, e.g. for encryption of the zip archive.
(From OE-Core rev: 04b62f9459b401c276255f166d0738b6f902a576)
(From OE-Core rev: 4f5bf144bfe4f34adfc22d86783d6ce29e9f6e15)
Signed-off-by: Christoph Lauer <christoph.lauer@xtronic.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This already got fixed in the toolchain file that is used during development
in cb42802f2f
The toolchain file generated by the cmake.bbclass however does not set
CMAKE_SYSROOT. Under certain circumstances this also leads to the error:
`"stdlib.h: No such file or directory #include_next <stdlib.h>"`
during the build of a recipe.
An example where this accured was during the upgrade of the Apache Thrift
recipe in meta-openembedded to 0.11.0. With this change the build works out of
the box.
CMAKE_SYSROOT must only be set when crosscompiling, otherwise it will interfere
with the native compiler headers.
(From OE-Core rev: 1105c67d554bcd155e8247cb16efc8d6a642444f)
Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
(from http://lists.openembedded.org/pipermail/openembedded-core/2018-August/154791.html )
Signed-off-by: Mikko Rapeli <mikko.rapeli@bmw.de>
Signed-off-by: Poonam Jadhav <poonam.jadhav@kpit.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Upgrade libxpm 3.5.13 to 3.5.15
License-update: additional copyright holders
f0857c0 man pages: Correct Copyright/License notices
The above commit is introduced while upgrading the libxpm 3.5.15.
which is mentioned in below changelog.
Due to this commit LIC_FILES_CHKSUM is changed.
Disable reading compressed files as that requires compress/uncompress executables.
Following the approach in oe-core/master:
7de4084634 libxpm: upgrade 3.5.14 -> 3.5.15
Changelog:
-------------
-------------
ddd8339 libXpm 3.5.15
8178eb0 Use gzip -d instead of gunzip
c5ab17b Prevent a double free in the error code path
515294b Fix CVE-2022-4883: compression commands depend on $PATH
f80fa6a Fix CVE-2022-44617: Runaway loop with width of 0 and enormous height
f7fbbb9 test: add test cases for CVE-2022-44617 (zero-width w/enormous height)
a3a7c6d Fix CVE-2022-46285: Infinite loop on unclosed comments
f7a167a test: add test case for CVE-2022-46285 (unclosed comments)
0ff2c6a cxpm: getc/ungetc wrappers should not adjust position when c == EOF
501494c test: Add unit tests using glib framework
4841039 configure: add --disable-open-zfile instead of requiring -DNO_ZPIPE
aef0c8d man pages: Apply standard man page style/formatting
5d55a0b man pages: Replace "See Also" entries with more useful ones
392cb8f man pages: Fix typos and other minor editing
08bc174 libXpm 3.5.14
f0857c0 man pages: Correct Copyright/License notices
deb81a9 man pages: Fix typos
2d5fa4c man pages: Add missing word 'function' where needed
2b7357e man pages: Make function synopses more consistent with other pages
fb8590c man pages: Fix shadow man pages
bfaebfd man pages: Make file names consistent with their displayed names
7a138a5 gitlab CI: add a basic build test
3433f43 man: strip trailing whitespace
9612454 Fix spelling/wording issues
fa16fbd Build xz tarballs instead of bzip2
83e5427 update man pages
e48e649 add man pages based on doc/xpm.PS
(From OE-Core rev: a549319e5fdae685f93122627226f9b102307bc3)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Upstream has switched some new releases from bz2 to xz compression. Add
an XORG_EXT variable so recipes can set the file name extension needed
for the compression type.
Following the approach in oe-core/master:
6a8068e036b4b2a40b38896275b936916b4db76e xorg-lib-common: Add variable to set tarball type
use a variable for the tarball suffix/compression format.
(From OE-Core rev: 56ea2b625f81e397e911b3610130d3e838d10938)
Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
3299fb36854f Linux 5.15.108
adef0cebea85 nvme-pci: avoid the deepest sleep state on ZHITAI TiPro5000 SSDs
c6897dfe2bb6 counter: Add the necessary colons and indents to the comments of counter_compi
fa934784fb65 counter: fix docum. build problems after filename change
0cf283340023 panic, kexec: make __crash_kexec() NMI safe
9e1e511119b1 kexec: turn all kexec_mutex acquisitions into trylocks
6fc7a53fcc4c nvme-pci: add NVME_QUIRK_BOGUS_NID for T-FORCE Z330 SSD
fa43e0591900 nvme-pci: mark Lexar NM760 as IGNORE_DEV_SUBNQN
a814fc9e6e59 nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM760
972e06d09e86 nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM610
cf773832139b nvme-pci: Crucial P2 has bogus namespace ids
5a19b9a49aea nvme-pci: avoid the deepest sleep state on ZHITAI TiPro7000 SSDs
65f5dc5dff29 nvme-pci: add NVME_QUIRK_BOGUS_NID for ADATA XPG GAMMIX S50
3daaa5f7aae2 i2c: ocores: generate stop condition after timeout in polling mode
0af686415ca2 x86/rtc: Remove __init for runtime functions
b11ff3ef4d09 sched/fair: Fix imbalance overflow
90e3dc510106 sched/fair: Move calculate of avg_load to a better location
6d1353781bba powerpc/papr_scm: Update the NUMA distance table for the target node
0b031f5983f8 ubi: Fix deadlock caused by recursively holding work_sem
85d7a7044b75 ubi: Fix failure attaching when vid_hdr offset equals to (sub)page size
f0b4a4086cf2 mptcp: stricter state check in mptcp_worker
925e1a510a2e mptcp: use mptcp_schedule_work instead of open-coding it
f4f2a1d491e9 cgroup/cpuset: Wake up cpuset_attach_wq tasks in cpuset_cancel_attach()
19c7f9329bdb x86/PCI: Add quirk for AMD XHCI controller that loses MSI-X state in D3hot
05143d90ac90 scsi: ses: Handle enclosure with just a primary component gracefully
aaae6d303150 net: phy: nxp-c45-tja11xx: fix unsigned long multiplication overflow
b1ca14361d49 net: phy: nxp-c45-tja11xx: add remove callback
0359e505bcd7 net: sfp: initialize sfp->i2c_block_size at sfp allocation
a42f565c0e96 riscv: add icache flush for nommu sigreturn trampoline
6eeb1cba4c9d drm/i915: fix race condition UAF in i915_perf_add_config_ioctl
9b344cf6aea0 i915/perf: Replace DRM_DEBUG with driver specific drm_dbg call
6b337a13c144 tracing: Have tracing_snapshot_instance_cond() write errors to the appropriate instance
1403518ed0d9 tracing: Add trace_array_puts() to write into instance
670e54151b7a counter: 104-quad-8: Fix Synapse action reported for Index signals
6e25d374cd95 counter: Internalize sysfs interface code
c4153e662883 counter: stm32-timer-cnt: Provide defines for slave mode selection
4c1010848b12 counter: stm32-lptimer-cnt: Provide defines for clock polarities
189ada57e88c ACPI: resource: Add Medion S17413 to IRQ override quirk
248a18a895e2 wifi: iwlwifi: mvm: fix mvmtxq->stopped handling
0efd9ed92926 asymmetric_keys: log on fatal failures in PE/pkcs7
ae2b44aeade1 verify_pefile: relax wrapper length check
744f80ae0716 drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Book X90F
05a24344296e efi: sysfb_efi: Add quirk for Lenovo Yoga Book X91F/L
0f9d2fc58824 i2c: hisi: Avoid redundant interrupts
d21a46212009 i2c: imx-lpi2c: clean rx/tx buffers upon new message
8451da304b4a wifi: mwifiex: mark OF related data as maybe unused
9aeff275b7f7 power: supply: cros_usbpd: reclassify "default case!" as debug
788f4a3d3987 ARM: 9290/1: uaccess: Fix KASAN false-positives
53967ac8080b libbpf: Fix single-line struct definition output in btf_dump
906a6689bb01 skbuff: Fix a race between coalescing and releasing SKBs
7ccc58a1a756 net: macb: fix a memory corruption in extended buffer descriptor mode
ed2ec39e46fe udp6: fix potential access to stale information
e97ff11b396c RDMA/core: Fix GID entry ref leak when create_ah fails
6109f5b13ce3 sctp: fix a potential overflow in sctp_ifwdtsn_skip
c6a796ee5a63 net: qrtr: Fix an uninit variable access bug in qrtr_tx_resume()
9b1ca43bcf3d qlcnic: check pci_reset_function result
ffa4f32952e2 drm/armada: Fix a potential double free in an error handling path
a94f5d35fdbb tcp: restrict net.ipv4.tcp_app_win
a08ec4ed3b6e niu: Fix missing unwind goto in niu_alloc_channels()
e35ae49bc198 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race condition
b41da67451b0 bpf: tcp: Use sock_gen_put instead of sock_put in bpf_iter_tcp
48e8e7851dc0 RDMA/cma: Allow UD qp_type to join multicast only
1569a4cdb973 IB/mlx5: Add support for 400G_8X lane speed
f6711bc5c016 RDMA/irdma: Add ipv4 check to irdma_find_listener()
c8c7a7aee861 RDMA/irdma: Increase iWARP CM default rexmit count
810250c9c661 RDMA/irdma: Fix memory leak of PBLE objects
aa2607bae45f clk: sprd: set max_register according to mapping range
0004a50c535f drm/i915/dsi: fix DSS CTL register offsets for TGL+
1bb4a52c3caa KVM: arm64: PMU: Restore the guest's EL0 event counting after migration
c7acce3a0eeb mtd: rawnand: stm32_fmc2: use timings.mode instead of checking tRC_min
7233b5baba10 mtd: rawnand: stm32_fmc2: remove unsupported EDO mode
5ded9b750f30 mtd: rawnand: meson: fix bitmask for length in command word
0162836a51bb mtdblock: tolerate corrected bit-flips
ad574345ce26 fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace
a55a95365e08 btrfs: fix fast csum implementation detection
6da03c237d56 btrfs: print checksum type and implementation at mount time
0efb276d5848 Bluetooth: Fix race condition in hidp_session_thread
ac6725a634f7 Bluetooth: L2CAP: Fix use-after-free in l2cap_disconnect_{req,rsp}
d98498ad5695 ALSA: hda/sigmatel: fix S/PDIF out on Intel D*45* motherboards
c5797c87e74e ALSA: emu10k1: don't create old pass-through playback device on Audigy
f1ef453157b4 ALSA: firewire-tascam: add missing unwind goto in snd_tscm_stream_start_duplex()
7901d787e455 ALSA: i2c/cs8427: fix iec958 mixer control deactivation
d8697aa12ae6 ALSA: hda/sigmatel: add pin overrides for Intel DP45SG motherboard
34a0ada0a8b2 ALSA: emu10k1: fix capture interrupt handler unlinking
55e4eef5545d Revert "pinctrl: amd: Disable and mask interrupts on resume"
(From OE-Core rev: f13a78efa325d0debf4910756acfcb63d036967c)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5339d44b0b0b23f30cb0f8ab395da62e83733c40)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
4fdad925aa1a Linux 5.15.107
c862d7debe55 bpftool: Print newline before '}' for struct with padding only fields
1585f3fc24b5 ocfs2: fix freeing uninitialized resource on ocfs2_dlm_shutdown
b97e4100be37 kbuild: fix single directory build
326b80bd2267 mm: take a page reference when removing device exclusive entries
1fc9263ad795 drm/bridge: lt9611: Fix PLL being unable to lock
4bdf1514b426 mm/swap: fix swap_info_struct race between swapoff and get_swap_pages()
cbe5f7fed7f7 ring-buffer: Fix race while reader and writer are on the same page
23ed5af5767a drm/nouveau/disp: Support more modes by checking with lower bpc
6f2180c5273a drm/panfrost: Fix the panfrost_mmu_map_fault_addr() error path
a184df0de132 mm: vmalloc: avoid warn_alloc noise caused by fatal signal
d88d7a9fcf20 ASoC: hdac_hdmi: use set_stream() instead of set_tdm_slots()
33d5d4e67a0e tracing: Free error logs of tracing instances
c74065da695e can: isotp: isotp_ops: fix poll() to not report false EPOLLOUT events
4fe1d9b6231a can: j1939: j1939_tp_tx_dat_new(): fix out-of-bounds memory access
0af8fae81d8b fs: drop peer group ids under namespace lock
33a503b7c339 ftrace: Fix issue that 'direct->addr' not restored in modify_ftrace_direct()
20c5e10950e9 ftrace: Mark get_lock_parent_ip() __always_inline
a007b7dc19de perf/core: Fix the same task check in perf_event_set_output
8417eb9aaf1e cifs: sanitize paths in cifs_update_super_prepath.
df23c702d11c smb3: lower default deferred close timeout to address perf regression
1d9cad9c5873 smb3: allow deferred close timeout to be configurable
5e5c5f472972 scsi: iscsi_tcp: Check that sock is valid before iscsi_set_param()
ae73c4dd48f2 scsi: qla2xxx: Fix memory leak in qla2x00_probe_one()
c8c17991dab0 iio: adc: ad7791: fix IRQ flags
bc61cce6a658 coresight-etm4: Fix for() loop drvdata->nr_addr_cmp range bug
97302eb6ca48 coresight: etm4x: Do not access TRCIDR1 for identification
fd23e9bbfccc ALSA: hda/realtek: Add quirk for Clevo X370SNW
f204f38212dc ksmbd: do not call kvmalloc() with __GFP_NORETRY | __GFP_NO_WARN
091b3e31275b dt-bindings: serial: renesas,scif: Fix 4th IRQ for 4-IRQ SCIFs
d540aea451ab nilfs2: fix sysfs interface lifetime
92684e02654c nilfs2: fix potential UAF of struct nilfs_sc_info in nilfs_segctor_thread()
ba3a88b444cd tty: serial: fsl_lpuart: avoid checking for transfer complete when UARTCTRL_SBK is asserted in lpuart32_tx_empty
ad142624ccc3 tty: serial: sh-sci: Fix Rx on RZ/G2L SCI
1184bd5c5ee4 tty: serial: sh-sci: Fix transmit end interrupt handler
1f49173be32d iio: light: cm32181: Unregister second I2C client if present
77593b4e963c iio: dac: cio-dac: Fix max DAC write value check for 12-bit
73742a446e08 iio: adc: ti-ads7950: Set `can_sleep` flag for GPIO chip
7a1e21d26104 iio: adis16480: select CONFIG_CRC32
4d3841fe16c4 USB: serial: option: add Quectel RM500U-CN modem
7151d2af0656 USB: serial: option: add Telit FE990 compositions
e1aa1c1bc51f usb: typec: altmodes/displayport: Fix configure initial pin assignment
9cd66aa2fa04 USB: serial: cp210x: add Silicon Labs IFS-USB-DATACABLE IDs
f8d59e2a36ac usb: dwc3: pci: add support for the Intel Meteor Lake-S
11453332fa40 usb: cdnsp: Fixes error: uninitialized symbol 'len'
83637720ea20 xhci: also avoid the XHCI_ZERO_64B_REGS quirk with a passthrough iommu
1122474b757a usb: xhci: tegra: fix sleep in atomic call
f5c5934580e7 kbuild: refactor single builds of *.ko
e62d179b9177 gve: Secure enough bytes in the first TX desc for all TCP pkts
40c6802d7dae ethtool: reset #lanes when lanes is omitted
4eada1dabdfb ice: Reset FDIR counter in FDIR init stage
391d28c0e38c ice: fix wrong fallback logic for FDIR
e215928a510c NFSD: callback request does not use correct credential for AUTH_SYS
bbca64f2052e sunrpc: only free unix grouplist after RCU settles
ca7c3b4ae03e net: stmmac: fix up RX flow hash indirection table when setting channels
3a997c0d2341 net: ethernet: ti: am65-cpsw: Fix mdio cleanup in probe
0ae8cdf0153c gpio: davinci: Add irq chip flag to skip set wake
1c19a42b2863 platform/x86: think-lmi: Clean up display of current_value on Thinkstation
cccdb30935c8 platform/x86: think-lmi: Fix memory leaks when parsing ThinkStation WMI strings
b9396d991abe platform/x86: think-lmi: Fix memory leak when showing current settings
d65ff2fe877c ipv6: Fix an uninit variable access bug in __ip6_make_skb()
926c8299ac3d net: qrtr: Do not do DEL_SERVER broadcast after DEL_CLIENT
667eb99cf7c1 sctp: check send stream number after wait_for_sndbuf
9692e16b5991 net: dsa: mv88e6xxx: Reset mv88e6393x force WD event bit
5d1007e81fb6 net: don't let netpoll invoke NAPI if in xmit context
e150a5c9f44c icmp: guard against too small mtu
a64160124d5a NFSD: Avoid calling OPDESC() with ops->opnum == OP_ILLEGAL
b9ba5906c420 net: qrtr: Fix a refcount bug in qrtr_recvmsg()
3ef52e4bcfd7 net: qrtr: combine nameservice into main module
30c5a016a37a wifi: mac80211: fix invalid drv_sta_pre_rcu_remove calls for non-uploaded sta
32a8dc8d9ebe KVM: s390: pv: fix external interruption loop not always detected
fcd6c7476e43 pwm: sprd: Explicitly set .polarity in .get_state()
a8ab13c73259 pwm: cros-ec: Explicitly set .polarity in .get_state()
c373e49fbb87 Drivers: vmbus: Check for channel allocation before looking up relids
b50cd6789dbb gpio: GPIO_REGMAP: select REGMAP instead of depending on it
0a473f834393 bpf: hash map, avoid deadlock with suitable hash mask
543d66a54dbf serial: exar: Add support for Sealevel 7xxxC serial cards
7773bb08e8b6 serial: 8250_exar: derive nr_ports from PCI ID for Acces I/O cards
c73db89da686 iavf/iavf_main: actually log ->src mask when talking about it
b2d29830db30 iavf: return errno code instead of status code
cdf3f5ef1893 platform/x86: int3472/discrete: Ensure the clk/power enable pins are in output mode
7798cd69cfc3 platform/x86: int3472: Split into 2 drivers
5cc70e78bbcc RDMA/irdma: Do not request 2-level PBLEs for CQ alloc
c22ac849aabb NFSD: pass range end to vfs_fsync_range() instead of count
34a14759d90c NFSD: Fix sparse warning
8059e200259e ocfs2: fix memory leak in ocfs2_mount_volume()
b613d8dcdff3 ocfs2: rewrite error handling of ocfs2_fill_super
05abe9c0bf38 ocfs2: ocfs2_mount_volume does cleanup job before return error
(From OE-Core rev: 84efe52ea8b1c28614200683289e589211c35b44)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 214643f386a3e4f226acd25903cde14a2c0a7376)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating to the latest korg -stable release that comprises
the following commits:
d86dfc4d95cd Linux 5.15.106
06a948b8347c x86/PVH: avoid 32-bit build warning when obtaining VGA console info
3abdf6d71fdb hsr: ratelimit only when errors are printed
fcc09ef87e79 libbpf: Fix btf_dump's packed struct determination
74059587b25d selftests/bpf: Add few corner cases to test padding handling of btf_dump
c74ae8678dfa libbpf: Fix BTF-to-C converter's padding logic
17a61d1e9431 selftests/bpf: Test btf dump for struct with padding only fields
6777291c7b14 zonefs: Fix error message in zonefs_file_dio_append()
71ab5c1d506d KVM: x86: Purge "highest ISR" cache when updating APICv state
61e0863dc8dd KVM: x86: Inject #GP on x2APIC WRMSR that sets reserved bits 63:32
4483dc41d123 KVM: VMX: Move preemption timer <=> hrtimer dance to common x86
a58d4e66712b s390/uaccess: add missing earlyclobber annotations to __clear_user()
1dfccde646aa KVM: arm64: Disable interrupts while walking userspace PTs
25e74e728168 drm/amd/display: Add DSC Support for Synaptics Cascaded MST Hub
3bfedfdbf92b drm/etnaviv: fix reference leak when mmaping imported buffer
fd1f48613e9f rcu: Fix rcu_torture_read ftrace event
9097ba15ea5c xtensa: fix KASAN report for show_stack
8861429f883e ALSA: hda/realtek: Add quirk for Lenovo ZhaoYang CF4620Z
77ab3e5f9873 ALSA: hda/realtek: Add quirks for some Clevo laptops
f775413ffeff ALSA: usb-audio: Fix regression on detection of Roland VS-100
b39d42ed67d5 ALSA: hda/conexant: Partial revert of a quirk for Lenovo
305a171cf617 NFSv4: Fix hangs when recovering open state after a server reboot
7624973bc15b powerpc: Don't try to copy PPR for task with NULL pt_regs
3a9510113f5b pinctrl: at91-pio4: fix domain name assignment
6c1bc7b50e02 pinctrl: amd: Disable and mask interrupts on resume
45ed4e5149e8 net: phy: dp83869: fix default value for tx-/rx-internal-delay
0f75ef136169 xen/netback: don't do grant copy across page boundary
8a581b71cf68 can: j1939: prevent deadlock by moving j1939_sk_errqueue()
a3373a681d9a zonefs: Always invalidate last cached page on append write
c1310fc7abe6 btrfs: scan device in non-exclusive mode
c976f9233ef9 btrfs: fix race between quota disable and quota assign ioctls
1484852ca152 Input: goodix - add Lenovo Yoga Book X90F to nine_bytes_report DMI table
b64305185b76 cifs: fix DFS traversal oops without CONFIG_CIFS_DFS_UPCALL
0a2e0baf3677 cifs: prevent infinite recursion in CIFSGetDFSRefer()
a5075c097de1 Input: focaltech - use explicitly signed char type
cf43bc826159 Input: alps - fix compatibility with -funsigned-char
16c951f3eba4 iommu/vt-d: Allow zero SAGAW if second-stage not supported
e4fbeaa31362 pinctrl: ocelot: Fix alt mode for ocelot
76f09582a191 net: ethernet: mtk_eth_soc: fix flow block refcounting logic
9caf3cbf1224 net: dsa: mv88e6xxx: Enable IGMP snooping on user ports only
4c6c0e8510a2 bnxt_en: Add missing 200G link speed reporting
c519174366a3 bnxt_en: Fix typo in PCI id to device description string mapping
24722a0e0925 bnxt_en: Fix reporting of test result in ethtool selftest
3e3654bf679f i40e: fix registers dump after run ethtool adapter self test
8d7b0b22ea22 net: ipa: compute DMA pool size properly
81d2a7e93c83 ALSA: ymfpci: Fix BUG_ON in probe function
95642872c466 ALSA: ymfpci: Create card with device-managed snd_devm_card_new()
9cb4f23e4f7a ice: fix invalid check for empty list in ice_sched_assoc_vsi_to_agg()
938eba5b434d ice: add profile conflict check for AVF FDIR
0ea60b230d19 smsc911x: avoid PHY being resumed when interface is not up
41f77a6d9841 net: mvpp2: parser fix PPPoE
ec117d22f143 net: mvpp2: parser fix QinQ
18d6e95fbb08 net: mvpp2: classifier flow fix fragmentation flags
aa45d3dd74e9 loop: LOOP_CONFIGURE: send uevents for partitions
83ee49ab185d loop: suppress uevents while reconfiguring the device
aa2bff25e9bb s390/vfio-ap: fix memory leak in vfio_ap device driver
bf70e0eab64c can: bcm: bcm_tx_setup(): fix KMSAN uninit-value in vfs_write
959348f7c300 platform/x86/intel/pmc: Alder Lake PCH slp_s0_residency fix
c8e7ff3071bf drm/i915/tc: Fix the ICL PHY ownership check in TC-cold state
61e2e6d444cd net: stmmac: don't reject VLANs when IFF_PROMISC is set
2d5cebf57296 net/net_failover: fix txq exceeding warning
829a0d013c00 regulator: Handle deferred clk
75155f4d8dcd r8169: fix RTL8168H and RTL8107E rx crc error
4597e104a365 net: dsa: microchip: ksz8863_smi: fix bulk access
c0de1a26e659 ptp_qoriq: fix memory leak in probe()
d84796008a89 scsi: mpt3sas: Don't print sense pool info twice
27b1ae000bf1 scsi: megaraid_sas: Fix crash after a double completion
d63a83146d25 sfc: ef10: don't overwrite offload features at NIC reset
7ea88e90dabb SUNRPC: fix shutdown of NFS TCP client socket
34c554376ec9 mtd: rawnand: meson: invalidate cache on polling ECC bit
dae47bf0222e platform/x86: think-lmi: Add possible_values for ThinkStation
e91ffea491af platform/x86: think-lmi: only display possible_values if available
fbfd5f59fa5c platform/x86: think-lmi: use correct possible_values delimiters
2c67f08bdc5f platform/x86: think-lmi: add missing type attribute
cb1baad60e5d ALSA: usb-audio: Fix recursive locking at XRUN during syncing
65b723644294 mips: bmips: BCM6358: disable RAC flush for TP1
e38b0ab9dba3 ca8210: Fix unsigned mac_len comparison with zero in ca8210_skb_tx()
5362344e1c2c tracing: Fix wrong return in kprobe_event_gen_test.c
19c71156fa92 tools/power turbostat: fix decoding of HWP_STATUS
f8580c0a3279 tools/power turbostat: Fix /dev/cpu_dma_latency warnings
6494344d7ef7 fbdev: au1200fb: Fix potential divide by zero
f9c5deee4b66 fbdev: lxfb: Fix potential divide by zero
86c8db5d12f4 fbdev: intelfb: Fix potential divide by zero
c22a8d3ae54a fbdev: nvidia: Fix potential divide by zero
9de1325bc2cc sched_getaffinity: don't assume 'cpumask_size()' is fully initialized
f9584dcc5549 fbdev: tgafb: Fix potential divide by zero
d23f65f08247 ALSA: hda/ca0132: fixup buffer overrun at tuning_ctl_set()
cb1bc1223906 ALSA: asihpi: check pao in control_message()
1ec57d1bed38 net: hsr: Don't log netdev_err message on unknown prp dst node
4e90e52616f6 x86/PVH: obtain VGA console info in Dom0
5175ed17a5a8 md: avoid signed overflow in slot_store()
da35a4e6eee5 ASoC: codecs: tx-macro: Fix for KASAN: slab-out-of-bounds
0725daaa9a87 xfrm: Zero padding when dumping algos and encap
7258c58f6e25 bus: imx-weim: fix branch condition evaluates to a garbage value
07987422023e ksmbd: don't terminate inactive sessions after a few seconds
0c873ab68fcb kcsan: avoid passing -g for test
b27e663cf1e5 kernel: kcsan: kcsan_test: build without structleak plugin
1450c82a16bb usb: dwc3: gadget: Add 1ms delay after end transfer command without IOC
1536e51c30ad usb: dwc3: gadget: move cmd_endtransfer to extra function
0f7fddb5a9b7 fsverity: don't drop pagecache at end of FS_IOC_ENABLE_VERITY
c957cbb87315 Linux 5.15.105
ec5b78143535 NFSD: fix use-after-free in __nfs42_ssc_open()
a9e53869cb43 ocfs2: fix data corruption after failed write
5229bb42fba2 mm: kfence: fix using kfence_metadata without initialization in show_object()
7a74603c248d sched/fair: Sanitize vruntime of entity being migrated
ab938a0c81eb sched/fair: sanitize vruntime of entity being placed
1ac20290f6b4 dm crypt: avoid accessing uninitialized tasklet
eb485b7404a2 dm crypt: add cond_resched() to dmcrypt_write()
443c9d522397 dm stats: check for and propagate alloc_percpu failure
272dc775a52f i2c: xgene-slimpro: Fix out-of-bounds bug in xgene_slimpro_i2c_xfer()
8e69fae32e88 firmware: arm_scmi: Fix device node validation for mailbox transport
02b296978a21 tee: amdtee: fix race condition in amdtee_open_session
9c7ee9471550 riscv: Handle zicsr/zifencei issues between clang and binutils
c10023682096 riscv: mm: Fix incorrect ASID argument when flushing TLB
555ec88c75ad drm/i915: Preserve crtc_state->inherited during state clearing
476b3f03dca8 drm/i915/active: Fix missing debug object activation
ef3c38f33b62 drm/amdgpu/nv: Apply ASPM quirk on Intel ADL + AMD Navi
fdd5b4e37200 drm/meson: fix missing component unbind on bind errors
071a69cde196 drm/bridge: lt8912b: return EPROBE_DEFER if bridge is not found
5bb105cc72be nilfs2: fix kernel-infoleak in nilfs_ioctl_wrap_copy()
8ec5e996c2f8 wifi: mac80211: fix qos on mesh interfaces
51a8534c0f35 ksmbd: return unsupported error on smb1 mount
496e186bc005 ksmbd: return STATUS_NOT_SUPPORTED on unsupported smb2.0 dialect
604a4a6f8414 ksmbd: set FILE_NAMED_STREAMS attribute in FS_ATTRIBUTE_INFORMATION
52e7ac849971 KVM: x86: hyper-v: Avoid calling kvm_make_vcpus_request_mask() with vcpu_mask==NULL
6f682b070f46 kfence: avoid passing -g for test
7dd27aed9c45 usb: ucsi: Fix NULL pointer deref in ucsi_connector_change()
27c40c3aa4b0 usb: chipidea: core: fix possible concurrent when switch role
ef74a7ffe77c usb: chipdea: core: fix return -EINVAL if request role is the same with current role
76e8bd0f5544 usb: cdnsp: changes PCI Device ID to fix conflict with CNDS3 driver
e4df290deb33 usb: cdnsp: Fixes issue with redundant Status Stage
5662d139e6e1 usb: cdns3: Fix issue with using incorrect PCI device function
bb579b3f75c6 usb: typec: tcpm: fix warning when handle discover_identity message
0f84b0b71179 dm thin: fix deadlock when swapping to thin device
66e5577cabc3 igb: revert rtnl_lock() that causes deadlock
a179d3450c0c arm64: dts: imx8mm-nitrogen-r2: fix WM8960 clock name
ed1869a25286 lockd: set file_lock start and end when decoding nlm4 testargs
0bfadbbcd7a5 fsverity: Remove WQ_UNBOUND from fsverity read workqueue
992a3f3e8a0c fscrypt: destroy keyring after security_sb_delete()
287bb9a918e2 mm/slab: Fix undefined init_cache_node_node() for NUMA and !SMP
408dcd7c3883 efi: sysfb_efi: Fix DMI quirks not working for simpledrm
b131989797f7 usb: gadget: u_audio: don't let userspace block driver unbind
cba76e1fb896 usb: dwc2: fix a devres leak in hw_enable upon suspend resume
c83f7ba71d38 scsi: core: Add BLIST_SKIP_VPD_PAGES for SKhynix H28U74301AMR
df0462e4b361 cifs: print session id while listing open files
9a45df4ec39b cifs: empty interface list when server doesn't support query interfaces
169a41073993 act_mirred: use the backlog for nested calls to mirred ingress
5b347652aebd net/sched: act_mirred: better wording on protection against excessive stack growth
f6cf5f13fa5b sh: sanitize the flags on sigreturn
91bcae3df2a4 net: usb: qmi_wwan: add Telit 0x1080 composition
f631af07cfc9 net: usb: cdc_mbim: avoid altsetting toggling for Telit FE990
41b67e621b93 scsi: storvsc: Handle BlockSize change in Hyper-V VHD/VHDX file
60643ef5a139 scsi: lpfc: Avoid usage of list iterator variable after loop
67b8343998b8 scsi: lpfc: Check kzalloc() in lpfc_sli4_cgn_params_read()
d758f543cea2 scsi: ufs: core: Add soft dependency on governor_simpleondemand
0267cd047133 scsi: hisi_sas: Check devm_add_action() return value
83e7b1db4523 scsi: target: iscsi: Fix an error message in iscsi_check_key()
40c216efb327 selftests/bpf: check that modifier resolves after pointer
8bf8d5dade4c m68k: Only force 030 bus error if PC not in exception table
8c1d378b8c22 HID: intel-ish-hid: ipc: Fix potential use-after-free in work function
d143e327c972 ca8210: fix mac_len negative array access
3056af1a2d46 HID: cp2112: Fix driver not registering GPIO IRQ chip as threaded
3e9aac5e935f drm/cirrus: NULL-check pipe->plane.state->fb in cirrus_pipe_update()
a4c639012ad0 riscv: Bump COMMAND_LINE_SIZE value to 1024
c2cf47dc0822 ACPI: x86: utils: Add Cezanne to the list for forcing StorageD3Enable
8dc1c6efd7d2 thunderbolt: Rename shadowed variables bit to interrupt_bit and auto_clear_bit
a74a2e124c48 thunderbolt: Use const qualifier for `ring_interrupt_index`
752007df40ca thunderbolt: Add missing UNSET_INBOUND_SBTX for retimer access
8f7525a8b98c thunderbolt: Disable interrupt auto clear for rings
56cba129dd11 thunderbolt: Call tb_check_quirks() after initializing adapters
d50a527b4815 thunderbolt: Use scale field when allocating USB3 bandwidth
7ab026561cb0 uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS583Gen 2
d6f7377528d2 scsi: qla2xxx: Perform lockless command completion in abort path
6295b3ec64a3 scsi: qla2xxx: Synchronize the IOCB count to be in order
f1e2ab24c4ea hwmon (it87): Fix voltage scaling for chips with 10.9mV ADCs
5662f50cd9e9 hwmon: fix potential sensor registration fail if of_node is missing
8f6b943f9fc9 entry/rcu: Check TIF_RESCHED _after_ delayed RCU wake-up
eb57d0dcd5da entry: Snapshot thread flags
d9c53eb46217 thread_info: Add helpers to snapshot thread flags
ebea2e16504f platform/chrome: cros_ec_chardev: fix kernel data leak from ioctl
8efae2112d91 Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished work
c35fd1b9b90a Bluetooth: L2CAP: Fix responding with wrong PDU type
b203ee4be2f1 Bluetooth: btqcomsmd: Fix command timeout after setting BD address
771d3c1c949b net: mdio: thunder: Add missing fwnode_handle_put()
b433fbf17603 net: dsa: mt7530: move setting ssc_delta to PHY_INTERFACE_MODE_TRGMII case
01c727402ddc net: dsa: mt7530: move lowering TRGMII driving to mt7530_setup()
5163bb8e4c6b net: dsa: mt7530: move enabling disabling core clock to mt7530_pll_setup()
a76d35f3448c gve: Cache link_speed value from device
c33344b79722 ksmbd: fix possible refcount leak in smb2_open()
96039c44ae47 ksmbd: add low bound validation to FSCTL_QUERY_ALLOCATED_RANGES
d897216325d7 ksmbd: add low bound validation to FSCTL_SET_ZERO_DATA
7a83bb6d56a5 hvc/xen: prevent concurrent accesses to the shared ring
29e80d7964cf nvme-tcp: fix nvme_tcp_term_pdu to match spec
c7037dea19f0 net/sonic: use dma_mapping_error() for error check
b41f37dbd9cd erspan: do not use skb_mac_header() in ndo_start_xmit()
4a8286baf22e atm: idt77252: fix kmemleak when rmmod idt77252
48f52431af99 net: dsa: tag_brcm: legacy: fix daisy-chained switches
388188fb58be net/mlx5: E-Switch, Fix an Oops in error handling code
6068a6db3a96 net/mlx5: Read the TC mapping of all priorities on ETS query
4df1f2d36bdc net/mlx5: Fix steering rules cleanup
2b0f1716c107 net/mlx5e: Set uplink rep as NETNS_LOCAL
54869daa6a43 bpf: Adjust insufficient default bpf_jit_limit
9b2e9105230f i40e: fix flow director packet filter programming
7a29799fc141 iavf: fix hang on reboot with ice
ce19c70f308f keys: Do not cache key in task struct if key is requested from kernel thread
0cb68c307e72 bootconfig: Fix testcase to increase max node
90874b76e5f8 octeontx2-vf: Add missing free for alloc_percpu
77d2f5ff9365 net/ps3_gelic_net: Use dma_mapping_error
cc8531d0e223 net/ps3_gelic_net: Fix RX sk_buff length
8c4a180dc123 net: qcom/emac: Fix use after free bug in emac_remove due to race condition
e686b78a003a drm/i915/gt: perform uc late init after probe error injection
cbb8bac2388a net: mdio: fix owner field for mdio buses registered using ACPI
b94af62cdd50 net: mdio: fix owner field for mdio buses registered using device-tree
0bdf593390e7 net: phy: Ensure state transitions are processed from phy_stop()
4ab9e85a5ce0 xirc2ps_cs: Fix use after free bug in xirc2ps_detach
e42d3bde4ec0 qed/qed_sriov: guard against NULL derefs from qed_iov_get_vf_info
ba6c40227108 net: usb: smsc95xx: Limit packet length to skb->len
9bbb3d3f218f net: dsa: b53: mmap: fix device tree support
9311e7a554df scsi: scsi_dh_alua: Fix memleak for 'qdata' in alua_activate()
257738627a9b i2c: hisi: Only use the completion interrupt to finish the transfer
c0deddabb278 i2c: imx-lpi2c: check only for enabled interrupt flags
b82b0a0eea27 igc: fix the validation logic for taprio's gate list
68ebdcba619a igbvf: Regard vf reset nack as success
9630432b427f intel/igbvf: free irq on the error path in igbvf_request_msix()
2afe7aebf642 iavf: fix non-tunneled IPv6 UDP packet type and hashing
078e049c49a6 iavf: fix inverted Rx hash condition leading to disabled hash
3cfc3564411a xsk: Add missing overflow check in xdp_umem_reg
1d59b8fae0c3 arm64: dts: imx8mn: specify #sound-dai-cells for SAI nodes
98c9bca167e6 ARM: dts: imx6sl: tolino-shine2hd: fix usbotg1 pinctrl
ed5f3c0b95bd ARM: dts: imx6sll: e60k02: fix usbotg1 pinctrl
0fdb1cc4fe52 power: supply: da9150: Fix use after free bug in da9150_charger_remove due to race condition
4ca3fd39c72e power: supply: bq24190: Fix use after free bug in bq24190_remove due to race condition
10ce6db6253d power: supply: bq24190_charger: using pm_runtime_resume_and_get instead of pm_runtime_get_sync
0b54d75aa43a net: tls: fix possible race condition between do_tls_getsockopt_conf() and do_tls_setsockopt_conf()
2ebe231abaf1 trace/hwlat: Do not start per-cpu thread if it is already running
7743dd873f2a trace/hwlat: make use of the helper function kthread_run_on_cpu()
909c5eb6ed76 kthread: add the helper function kthread_run_on_cpu()
09b51f10bc1f serial: 8250: ASPEED_VUART: select REGMAP instead of depending on it
cfb64de61f07 serial: 8250: SERIAL_8250_ASPEED_VUART should depend on ARCH_ASPEED
90530e7214c8 tty: serial: fsl_lpuart: fix race on RX DMA shutdown
b7d0fbe4976d tty: serial: fsl_lpuart: switch to new dmaengine_terminate_* API
90a77bca4240 serial: fsl_lpuart: Fix comment typo
bde1ae240751 tracing/hwlat: Replace sched_setaffinity with set_cpus_allowed_ptr
5255e6d49ff9 perf: fix perf_event_context->time
ac5f88642cb2 perf/core: Fix perf_output_begin parameter is incorrectly invoked in perf_event_bpf_output
d2430d45f1a0 interconnect: qcom: osm-l3: fix icc_onecell_data allocation
115472395b0a Linux 5.15.104
de3ef7ba684a perf: Fix check before add_event_to_groups() in perf_group_detach()
02904e8a2f65 HID: uhid: Over-ride the default maximum data buffer value with our own
3df32812eb4b HID: core: Provide new max_buffer_size attribute to over-ride the default
ffe2318405e6 PCI/DPC: Await readiness of secondary bus after reset
09795f82aecc PCI: Unify delay handling for reset and resume
f4ba55411cc8 io_uring: avoid null-ptr-deref in io_arm_poll_handler
6ab7d3361755 drm/i915/active: Fix misuse of non-idle barriers as fence trackers
71dffdd4764c drm/i915: Don't use stolen memory for ring buffers with LLC
86db319d25db x86/resctrl: Clear staged_config[] before and after it is used
0186f7656940 x86/mm: Fix use of uninitialized buffer in sme_enable()
09d3a46c8c02 x86/mce: Make sure logged MCEs are processed after sysfs update
8575c98224b2 cpuidle: psci: Iterate backwards over list in psci_pd_remove()
b3d042638049 net: phy: nxp-c45-tja11xx: fix MII_BASIC_CONFIG_REV bit
f3de49782612 trace/hwlat: Do not wipe the contents of per-cpu thread data
cb72b4bd81b9 fbdev: stifb: Provide valid pixelclock and add fb_check_var() checks
e9cdd3f722b6 mmc: sdhci_am654: lower power-on failed message severity
b02de083c7c7 mm/userfaultfd: propagate uffd-wp bit when PTE-mapping the huge zeropage
87b9ac7bd301 ice: avoid bonding causing auxiliary plug/unplug under RTNL lock
520e134431ac nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV3000
2a0d71fabfeb ftrace: Fix invalid address access in lookup_rec() when index is 0
ad7f9c6982b1 mptcp: fix lockdep false positive in mptcp_pm_nl_create_listen_socket()
f4afee17de43 mptcp: avoid setting TCP_CLOSE state twice
64473c18d27a mptcp: add ro_after_init for tcp{,v6}_prot_override
c1df4bed3d91 mptcp: fix possible deadlock in subflow_error_report
ccf44ffbbf25 drm/amd/pm: Fix sienna cichlid incorrect OD volage after resume
64ef8aa3910b drm/sun4i: fix missing component unbind on bind errors
5cfb617967b0 drm/shmem-helper: Remove another errant put in error path
d1d826954475 riscv: asid: Fixup stale TLB entry cause application crash
aeefcfc57978 Revert "riscv: mm: notify remote harts about mmu cache updates"
882cbe0c5d6a ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro
36d75e1f7357 ALSA: hda: intel-dsp-config: add MTL PCI id
9c2f09add608 KVM: nVMX: add missing consistency checks for CR0 and CR4
77fcc52d2919 cifs: Fix smb2_set_path_size()
9b9a118cc428 tracing: Make tracepoint lockdep check actually test something
2846bf67cd24 tracing: Check field value in hist_field_name()
2dd00dbc6a5a tracing: Make splice_read available again
fd4738ae1a0c interconnect: exynos: fix node leak in probe PM QoS error path
2e0b13a18272 interconnect: fix mem leak when freeing nodes
62b74cf8bcee s390/ipl: add missing intersection check to ipl_report handling
86afb633beaa firmware: xilinx: don't make a sleepable memory allocation from an atomic context
250a11f9c43b serial: 8250_fsl: fix handle_irq locking
4c23bf093449 serial: 8250_em: Fix UART port type
53a5ab3a8991 tty: serial: fsl_lpuart: skip waiting for transmission complete when UARTCTRL_SBK is asserted
1c93c42c7bb2 ext4: fix possible double unlock when moving a directory
bec1bea2fa97 drm/amd/display: fix shift-out-of-bounds in CalculateVMAndRowBytes
f9252605b8f3 sh: intc: Avoid spurious sizeof-pointer-div warning
0fc608a115ce net/9p: fix bug in client create for .L
2fece63b55c5 drm/amdkfd: Fix an illegal memory access
1aec41c98cce ext4: fix task hung in ext4_xattr_delete_inode
499fef2030fb ext4: update s_journal_inum if it changes after journal replay
088da6b80539 ext4: fail ext4_iget if special inode unallocated
eccd017165db jffs2: correct logic when creating a hole in jffs2_write_begin
4392e87c47e8 mmc: atmel-mci: fix race between stop command and start of next command
0c511f926b00 media: m5mols: fix off-by-one loop termination error
233058efee02 hwmon: (ltc2992) Set `can_sleep` flag for GPIO chip
b576de01da80 hwmon: (adm1266) Set `can_sleep` flag for GPIO chip
c80b2acdb049 kconfig: Update config changed flag before calling callback
52f64c5fc0d6 hwmon: tmp512: drop of_match_ptr for ID table
3f3576e25bfe hwmon: (ucd90320) Add minimum delay between bus accesses
9cc4aa40b58c hwmon: (ina3221) return prober error code
7091951c2ca9 hwmon: (xgene) Fix use after free bug in xgene_hwmon_remove due to race condition
a8e42dbfc493 hwmon: (adt7475) Fix masking of hysteresis registers
d1f4eda1ae85 hwmon: (adt7475) Display smoothing attributes in correct order
93c8cbeb1b2b bonding: restore bond's IFF_SLAVE flag if a non-eth dev enslave fails
d424c7b1c478 bonding: restore IFF_MASTER/SLAVE flags on bond enslave ether type change
8a1ce024f1f6 ethernet: sun: add check for the mdesc_grab()
030393041f8c qed/qed_mng_tlv: correctly zero out ->min instead of ->hour
a7836253349e selftests: net: devlink_port_split.py: skip test if no suitable device available
3cfdefdaaa4b net/iucv: Fix size of interrupt data
7bf0eac3fdd2 net: usb: smsc75xx: Move packet length check to prevent kernel panic in skb_pull
c99779740100 ipv4: Fix incorrect table ID in IOCTL path
340dd8f1942a sh_eth: avoid PHY being resumed when interface is not up
d5236286398d ravb: avoid PHY being resumed when interface is not up
7059be754873 net: dsa: mv88e6xxx: fix max_mtu of 1492 on 6165, 6191, 6220, 6250, 6290
b89a453c6918 ice: xsk: disable txq irq before flushing hw
d1bfd4cf6bb8 block: sunvdc: add check for mdesc_grab() returning NULL
f1d5888a5efe nvmet: avoid potential UAF in nvmet_req_complete()
07eac3310e00 nvme: fix handling single range discard request
fff9441da1c3 block: null_blk: Fix handling of fake timeout request
6d3ff07347d3 drm/bridge: Fix returned array size name for atomic_get_input_bus_fmts kdoc
105db6574281 net: usb: smsc75xx: Limit packet length to skb->len
b615238e5bc0 net/smc: fix deadlock triggered by cancel_delayed_work_syn()
84dd9cc34014 nfc: st-nci: Fix use after free bug in ndlc_remove due to race condition
edc0a34e277b net: phy: smsc: bail out in lan87xx_read_status if genphy_read_status fails
e0a557fc1daf net: tunnels: annotate lockless accesses to dev->needed_headroom
407badf73ec9 loop: Fix use-after-free issues
a0316de981ce net: dsa: mt7530: set PLL frequency and trgmii only when trgmii is used
f48468b27c0b net: dsa: mt7530: remove now incorrect comment regarding port 5
6ffa05700100 qed/qed_dev: guard against a possible division by zero
b108bd9e6be0 net/smc: fix NULL sndbuf_desc in smc_cdc_tx_handler()
d59d2561da73 drm/i915/psr: Use calculated io and fast wake lines
297ae18bd2cd drm/i915/display: clean up comments
21d679cb983e drm/i915/display/psr: Handle plane and pipe restrictions at every page flip
8c80b12e697f drm/i915/display/psr: Use drm damage helpers to calculate plane damaged area
eea001d88ffd drm/i915/display: Workaround cursor left overs with PSR2 selective fetch enabled
437bb839e36c PCI: s390: Fix use-after-free of PCI resources with per-function hotplug
ee6ef8137789 vdpa_sim: set last_used_idx as last_avail_idx in vdpasim_queue_ready
1cdbaf18a5e4 vdpa_sim: not reset state in vdpasim_queue_ready
4ff826952665 i40e: Fix kernel crash during reboot when adapter is in recovery mode
ecaa1bf50635 ipvlan: Make skb->skb_iif track skb->dev for l3s mode
2bee84369b76 nfc: pn533: initialize struct pn533_out_arg properly
ad07290d63ff tcp: tcp_make_synack() can be called from process context
2a764d55e938 scsi: core: Fix a procfs host directory removal regression
a219cabadaee netfilter: nft_redir: correct value of inet type `.maxattrs`
de03d130176b netfilter: nft_redir: correct length for loading protocol registers
d2a2ad64b9b6 netfilter: nft_masq: correct length for loading protocol registers
343fe451e6d3 netfilter: nft_nat: correct length for loading protocol registers
256bcf626b7c ALSA: hda: Match only Intel devices with CONTROLLER_IN_GPU()
9937f784a608 scsi: mpt3sas: Fix NULL pointer access in mpt3sas_transport_port_add()
29cb0f6c1dd8 docs: Correct missing "d_" prefix for dentry_operations member d_weak_revalidate
a5a1a7112e98 clk: HI655X: select REGMAP instead of depending on it
0f78e36f652a drm/meson: fix 1px pink line on GXM when scaling video overlay
630f8a857578 cifs: Move the in_send statistic to __smb_send_rqst()
418bde7227dd drm/panfrost: Don't sync rpm suspension after mmu flushing
b9cd2f875525 xfrm: Allow transport-mode states with AF_UNSPEC selector
(From OE-Core rev: 8814af71d54ffaf7507789855b645211f769240d)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d04122e76e21654caef2ec42ab5612bc9883d5f7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Setting a large line or column number using a //line directive can cause
integer overflow even in small source files.
Limit line and column numbers in //line directives to 2^30-1, which
is small enough to avoid int32 overflow on all reasonbly-sized files.
Fixes CVE-2023-24537
Fixes#59273
For #59180
(From OE-Core rev: 15c07dff384ce4fb0e90f4f32c182a82101a1c82)
Signed-off-by: Vivek Kumbhar <vkumbhar@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This CVE is specific to Microsoft Windows, ignore it.
Patch fixing it (https://go-review.googlesource.com/c/go/+/446916)
also adds a redundant check to generic os/exec which
could be backported but it should not be necessary as
backport always takes a small risk to break old code.
(From OE-Core rev: ae8167754ff1c02f2d92af03de804754ea77a3e5)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The fix of CVE-2023-29383.patch contains a bug that it rejects all
characters that are not control ones, so backup another patch named
"0001-Overhaul-valid_field.patch" from upstream to fix it.
(From OE-Core rev: ab48ab23de6f6bb1f05689c97724140d4bef8faa)
Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
path/filepath: do not Clean("a/../c:/b") into c:\b on Windows
Backport from bdf07c2e16
(From OE-Core rev: f60637b3c9045656047d6ffcfaadbef5ad1d3d06)
Signed-off-by: Shubham Kulkarni <skulkarni@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This cve (https://nvd.nist.gov/vuln/detail/CVE-2022-46176) is a security vulnirability when using cargo ssh.
Kirkstone doesn't support rust on-target images and the bitbake using the 'wget' (which uses 'https') for fetching the sources instead of ssh.
So, cargo-native also not vulnerable to this cve and so added to excluded list.
(From OE-Core rev: 7e4037fd0a66a860b4809be72a89e2de97960a17)
Signed-off-by: Sundeep KOKKONDA <sundeep.kokkonda@windriver.com>
Acked-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Get rid of the duplicate code and add extra check that the
locale en_US.UTF-8 is available on the system. This new helper
method is now located right above the method filter_environment()
which sets LC_ALL environment variable to 'en_US.UTF-8'.
[YOCTO #10165]
(Bitbake rev: 0c6f86b60cfba67c20733516957c0a654eb2b44c)
Signed-off-by: Frank de Brabander <debrabander@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a4ce040a6fd540a1cac52f808f909f9fcf8c961c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Newly introduced kirkstone-only commit
https://git.openembedded.org/openembedded-core/commit/?h=kirkstone&id=80839835ec9fcb63069289225a3c1af257ffdef7
broke builds with externalsrc in Gitlab-CI.
This is yocto-4.0.9 regression.
It checks if directory starts with "build" instead of
if checking if it equals to "build".
Gitlab-CI uses directory "/builds" which matches the check
but directory /build does not exist, only /builds.
After successful check it tries to move this non-existent
directory which does not exists and thus do_package fails.
(From OE-Core rev: b67e714b367a08fdeeeff68c2d9495ec9bc07304)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When building with the previous a number of atomic functions come back as
undefined. Switching to linux-latomic fixes this.
(From OE-Core rev: 88d5bf78ffb1d120df48139b1ed3c2e3fa8310d0)
(From OE-Core rev: 26b4db753c4f2080a132fb176b514efafa3ff8e3)
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backport from go-1.19. The godebug package is needed by
the fix to CVE-2022-41725.
Mostly a cherry-pick but exceptions are noted in comments
marked "backport".
(From OE-Core rev: e5cf04f55b4849ae6db1253b39ad8b037cf01af4)
Signed-off-by: Joe Slater <joe.slater@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Disable cmd/internal/moddeps test, since this update includes PRIVATE
track fixes.
Backport from 5c3e11bd0b
(From OE-Core rev: 7440ebac50813e5df73da2d660a50fa97de650de)
Signed-off-by: Shubham Kulkarni <skulkarni@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This helps in building rsync without autoconf patch, since it will be a
while that the round trip is made, better to apply this patch here until
next release of autoconf.
(From OE-Core rev: 11522b98697befcf13076a90cec4f8ade1fa0645)
(From OE-Core rev: 3eeab90fd45a1e8de6d9d16dfdec79c72639614b)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8d6b8fb086)
Signed-off-by: pawan <badganchipv@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
If we try to parse a buildstats directory which was either aborted or
is still being built then the top-level build_stats file doesn't
contain an elapsed value which causes an exception:
UnboundLocalError: local variable 'elapsed' referenced before assignment
Default both start and elapsed to 0 so that the parse succeeds.
(From OE-Core rev: 19815bb76e414a1c1fd8d31a84492d72dd29205e)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 701d985aa8f2e9c2b9c0736fa25b424f3701889e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This function is referencing '${S}/..'.
It uses ${S} only as good known directory path to start
traversing from, and it does not need it to exist or be populated.
If ${S} does not exist yet, the function will fail because
it cannot evaluate path .. from non-existing directory.
Reproducer (verified in master and kirkstone):
bitbake gcc -c deploy_source_date_epoch
bitbake gcc -c cleansstate
rm -rf build/tmp
bitbake gcc -c deploy_source_date_epoch
(From OE-Core rev: 728018bbfe1de53661881a05e0359083ad544f97)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 42661a59cda164b2d236ffc35b4d8cf43312b677)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* with my build/conf/local.conf:
SSTATE_DIR = "/OE/build/poky/build/sstate-cache"
these devtool tests will first set own SSTATE_DIR and the original one set as SSTATE_MIRROR:
2023-03-11 11:51:46,837 - oe-selftest - INFO - test_devtool_update_recipe_append (devtool.DevtoolUpdateTests.test_devtool_update_recipe_append)
2023-03-11 11:51:46,846 - oe-selftest - DEBUG - Appending to: /OE/build/poky/build/build-st-2023-03-11-patch2/devtool.DevtoolUpdateTests.test_devtool_update_recipe_append/build-st/conf/selftest.inc
SSTATE_DIR = "/OE/build/poky/build/build-st-2023-03-11-patch2/devtool.DevtoolUpdateTests.test_devtool_update_recipe_append/build-st/sstate_devtool"
SSTATE_MIRRORS += "file://.* file:////OE/build/poky/build/sstate-cache/PATH"
* but that unfortunately leads to a warning from sanity.bbclass
about SSTATE_MIRRORS without matching BB_HASHSERVE, because
BB_HASHSERVE is set to "auto" by default
these tests failing with:
2023-03-11 11:55:39,610 - oe-selftest - INFO - ======================================================================
2023-03-11 11:55:39,610 - oe-selftest - INFO - FAIL: test_devtool_update_recipe_append_git (devtool.DevtoolUpdateTests.test_devtool_update_recipe_append_git)
2023-03-11 11:55:39,610 - oe-selftest - INFO - ----------------------------------------------------------------------
2023-03-11 11:55:39,611 - oe-selftest - INFO - Traceback (most recent call last):
File "/OE/build/poky/meta/lib/oeqa/selftest/cases/devtool.py", line 1118, in test_devtool_update_recipe_append_git
self.assertNotIn('WARNING:', result.output)
AssertionError: 'WARNING:' unexpectedly found in 'NOTE: Starting bitbake server...\nWARNING: You are using a local hash equivalence server but have configured an sstate mirror. This will likely mean no sstate will match from the mirror. You may wish to disable the hash equivalence use (BB_HASHSERVE), or use a hash equivalence server alongside the sstate mirror.\nLoading cache...done.\nLoaded 0 entries from dependency cache.\nParsing recipes...done.\nParsing of 947 .bb files complete (0 cached, 947 parsed). 1764 targets, 52 skipped, 0 masked, 0 errors.\n\nSummary: There was 1 WARNING message.\nINFO: Updating SRCREV in recipe mtd-utils-selftest_git.bb\nNOTE: Writing append file /tmp/devtoolqa1m2lh02v/layer/recipes-devtools/mtd/mtd-utils-selftest_git.bbappend'
----------------------------------------------------------------------
* just setting BB_HASHSERVE to empty doesn't work, because then we
would need to disable OEEquivHash as well as it fails with:
ERROR: OEEquivHash requires BB_HASHSERVE to be set
(From OE-Core rev: e634a87d2f4f1e57d28c4e7462d56515ed2ea9ef)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 96d4392ee9c5c3674e5c4c4512f527a2ca6765e4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating to the latest korg -stable release that comprises
the following commits:
8020ae3c051d Linux 5.15.103
10a72c677bce Makefile: use -gdwarf-{4|5} for assembler for DEBUG_INFO_DWARF{4|5}
6e7bc50f97c9 KVM: VMX: Fix crash due to uninitialized current_vmcs
61e5087231f3 KVM: VMX: Introduce vmx_msr_bitmap_l01_changed() helper
1f47cba9364f KVM: nVMX: Don't use Enlightened MSR Bitmap for L3
2153dd644ce4 fs: hold writers when changing mount's idmapping
8c3be6925a92 UML: define RUNTIME_DISCARD_EXIT
f616fa79d536 xfs: remove xfs_setattr_time() declaration
5588657f418c KVM: fix memoryleak in kvm_init()
4441a9009193 tools bpftool: Fix compilation error with new binutils
1c27fab24333 tools bpf_jit_disasm: Fix compilation error with new binutils
97f005c0bdba tools perf: Fix compilation error with new binutils
451c9d7b1616 tools include: add dis-asm-compat.h to handle version differences
51b99dc38c1a tools build: Add feature test for init_disassemble_info API changes
381492ef0c51 sh: define RUNTIME_DISCARD_EXIT
1e49bb9ba912 s390: define RUNTIME_DISCARD_EXIT to fix link error with GNU ld < 2.36
d517faf3db23 powerpc/vmlinux.lds: Don't discard .rela* for relocatable builds
4e6708a0f36e powerpc/vmlinux.lds: Define RUNTIME_DISCARD_EXIT
0bfde8c9bb27 arch: fix broken BuildID for arm64 and riscv
560a2744cbbf ext4: block range must be validated before use in ext4_mb_clear_bb()
270422f3e183 ext4: add strict range checks while freeing blocks
2da16af37847 ext4: add ext4_sb_block_valid() refactored out of ext4_inode_block_valid()
09546886a0ea ext4: refactor ext4_free_blocks() to pull out ext4_mb_clear_bb()
48302ee67dd7 filelocks: use mount idmapping for setlease permission check
513572bb89e8 media: rc: gpio-ir-recv: add remove function
5f328c9d32b1 media: ov5640: Fix analogue gain control
4cb302546556 scripts: handle BrokenPipeError for python scripts
405ec99d1d25 PCI: Add SolidRun vendor ID
2c75e258adb9 macintosh: windfarm: Use unsigned type for 1-bit bitfields
6c6f956c9295 alpha: fix R_ALPHA_LITERAL reloc for large modules
adb939031af3 powerpc/kcsan: Exclude udelay to prevent recursive instrumentation
e3a62a35f903 powerpc/iommu: fix memory leak with using debugfs_lookup()
93aa548a339c MIPS: Fix a compilation issue
e69d841d143b fs: use consistent setgid checks in is_sxid()
78eecf2e5cd4 attr: use consistent sgid stripping checks
449badcf876d attr: add setattr_should_drop_sgid()
7e8a9b53141e fs: move should_remove_suid()
93395e1184ed attr: add in_group_or_capable()
0123712492f6 fs: move S_ISGID stripping into the vfs_*() helpers
9c3a620bbf0c fs: add mode_strip_sgid() helper
79821ab3284a xfs: set prealloc flag in xfs_alloc_file_space()
a881c1ef16f1 xfs: fallocate() should call file_modified()
f8937e4d1d46 xfs: remove XFS_PREALLOC_SYNC
95aab524e12e xfs: use setattr_copy to set vfs inode attributes
2115c14c93ec tpm/eventlog: Don't abort tpm_read_log on faulty ACPI address
b43cb0f08767 watch_queue: fix IOC_WATCH_QUEUE_SET_SIZE alloc error paths
d15c9ae1c6d9 staging: rtl8723bs: Fix key-store index handling
7fa3bb1bcabe staging: rtl8723bs: fix placement of braces
962293f5443c Staging: rtl8723bs: Placing opening { braces in previous line
890e24564c0a staging: rtl8723bs: clean up comparsions to NULL
c513043e0afe iommu/amd: Add a length limitation for the ivrs_acpihid command-line parameter
0fd72f1d1b94 iommu/amd: Fix ill-formed ivrs_ioapic, ivrs_hpet and ivrs_acpihid options
2af17167804c iommu/amd: Add PCI segment support for ivrs_[ioapic/hpet/acpihid] commands
ce4bbb2aa9d8 nbd: use the correct block_device in nbd_bdev_reset
7889dfc19492 irqdomain: Fix mapping-creation race
a2bc806e95bd ext4: Fix deadlock during directory rename
07b0aba4adf0 RISC-V: Don't check text_mutex during stop_machine
d1b47f735f60 s390/ftrace: remove dead code
3a9418d2c93c riscv: Use READ_ONCE_NOCHECK in imprecise unwinding stack mode
f3969427fb06 af_unix: fix struct pid leaks in OOB support
a9f99eacf79f af_unix: Remove unnecessary brackets around CONFIG_AF_UNIX_OOB.
6a29d71ab421 net: dsa: mt7530: permit port 5 to work without port 6 on MT7621 SoC
ad7e40ee157b SUNRPC: Fix a server shutdown leak
64d4eb412761 octeontx2-af: Unlock contexts in the queue context cache in case of fault detection
03c1cc6f554d net/smc: fix fallback failed while sendmsg with fastopen
dafde1072202 platform: x86: MLX_PLATFORM: select REGMAP instead of depending on it
36bcbcaf01d8 netfilter: conntrack: adopt safer max chain length
a316da050d80 scsi: megaraid_sas: Update max supported LD IDs to 240
2adc29350a5b net: ethernet: mtk_eth_soc: fix RX data corruption issue
fe8787c1e4f6 net: phy: smsc: fix link up detection in forced irq mode
d83813f724ec net: phy: smsc: Cache interrupt mask
18ab31b8cd37 btf: fix resolving BTF_KIND_VAR after ARRAY, STRUCT, UNION, PTR
2662c5b1f0ef netfilter: tproxy: fix deadlock due to missing BH disable
bef8cf77e21c netfilter: ctnetlink: revert to dumping mark regardless of event type
20fd0607acbf bnxt_en: Avoid order-5 memory allocation for TPA data
98fa707a52a3 net: phylib: get rid of unnecessary locking
67431417617d net: stmmac: add to set device wake up flag when stmmac init phy
af5c333c84e5 drm/msm/dpu: fix len of sc7180 ctl blocks
4a476285f6d2 bpf, sockmap: Fix an infinite loop error when len is 0 in tcp_bpf_recvmsg_parser()
c813f7a31614 ice: copy last block omitted in ice_get_module_eeprom()
3f14457e1584 net: caif: Fix use-after-free in cfusbl_device_notify()
c2c71922c5e9 net: lan78xx: fix accessing the LAN7800's internal phy specific registers from the MAC driver
c026917887d1 perf stat: Fix counting when initial delay configured
fdecfb2603d0 selftests: nft_nat: ensuring the listening side is up before starting the client
91aceb3844d4 ila: do not generate empty messages in ila_xlat_nl_cmd_get_mapping()
a5a7f6e6e126 powerpc: dts: t1040rdb: fix compatible string for Rev A boards
4357bbb921fe nfc: fdp: add null check of devm_kmalloc_array in fdp_nci_i2c_read_device_properties
04bfc5bcdfc0 bgmac: fix *initial* chip reset to support BCM5358
60530bfdb647 drm/msm/a5xx: fix context faults during ring switch
7f854b4803e5 drm/msm/a5xx: fix the emptyness check in the preempt code
bf66e98285f7 drm/msm/a5xx: fix highest bank bit for a530
2e8efe8c8dab drm/msm/a5xx: fix setting of the CP_PREEMPT_ENABLE_LOCAL register
b77c764b4371 drm/msm: Fix potential invalid ptr free
ced1f5dd6c1d drm/nouveau/kms/nv50: fix nv50_wndw_new_ prototype
e974d8755578 drm/nouveau/kms/nv50-: remove unused functions
c50fc503ee1b ext4: Fix possible corruption when moving a directory
cfb89ceb22fd regulator: core: Use ktime_get_boottime() to determine how long a regulator was off
e1a078cac3e9 regulator: core: Fix off-on-delay-us for always-on/boot-on regulators
67a791df1457 regulator: Flag uncontrollable regulators as always_on
e471e928de97 scsi: core: Remove the /proc/scsi/${proc_name} directory earlier
463ae58d7c80 riscv: Add header include guards to insn.h
4dd43ee784a1 riscv: Avoid enabling interrupts in die()
5ab1d0528b04 RISC-V: Avoid dereferening NULL regs in die()
6a72729ed6ac arm64: efi: Make efi_rt_lock a raw_spinlock
14ddb4e6e9de brd: mark as nowait compatible
5089247d6cf3 block/brd: add error handling support for add_disk()
5c65f0971247 iommu/vt-d: Fix PASID directory pointer coherency
8ff7db51d3ed irqdomain: Refactor __irq_domain_alloc_irqs()
62e4ba36a3d7 ipmi:ssif: Add a timer between request retries
2fb8b122ba8f ipmi:ssif: Increase the message retry time
a6ef5a9d7263 f2fs: retry to update the inode page given data corruption
a517c651f116 f2fs: do not bother checkpoint by f2fs_get_node_info
e55332319825 f2fs: avoid down_write on nat_tree_lock during checkpoint
31b5793ca2de udf: Fix off-by-one error when discarding preallocation
30e29af746ee fs: dlm: start midcomms before scand
9c9dd2b3ba83 fs: dlm: add midcomms init/start functions
2e0415522835 fs: dlm: fix log of lowcomms vs midcomms
c5a23d43c23a KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target
a78a355052ab KVM: SVM: Don't rewrite guest ICR on AVIC IPI virtualization failure
45bcf4a4f2b1 KVM: Register /dev/kvm as the _very_ last thing during initialization
0a0ecaf0988b KVM: Pre-allocate cpumasks for kvm_make_all_cpus_request_except()
3e48a6349d29 KVM: Optimize kvm_make_vcpus_request_mask() a bit
339e480baafc nfc: change order inside nfc_se_io error path
01a821aacc64 ext4: zero i_disksize when initializing the bootloader inode
ca500cf2eceb ext4: fix WARNING in ext4_update_inline_data
d16576142fb9 ext4: move where set the MAY_INLINE_DATA flag is set
c5d7c31e1722 ext4: fix another off-by-one fsmap error on 1k block filesystems
df621af95e89 ext4: fix RENAME_WHITEOUT handling for inline directories
7349cc5ab32e ext4: fix cgroup writeback accounting with fs-layer encryption
fd7b8ebc1dd5 staging: rtl8723bs: Pass correct parameters to cfg80211_get_bss()
0b22cbc05ce2 drm/connector: print max_requested_bpc in state debugfs
5e0eed414156 drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc15
328d069e9c35 x86/CPU/AMD: Disable XSAVES on AMD family 0x17
92d1caad9f78 fork: allow CLONE_NEWTIME in clone3 flags
7ba76b2ac187 perf inject: Fix --buildid-all not to eat up MMAP2
2072e75b4942 btrfs: fix percent calculation for bg reclaim message
f8cd8754a03a fs: prevent out-of-bounds array speculation when closing a file descriptor
2ddbd0f967b3 Linux 5.15.102
cbecbd884e81 staging: rtl8192e: Remove call_usermodehelper starting RadioPower.sh
515017e952ea staging: rtl8192e: Remove function ..dm_check_ac_dc_power calling a script
528dbd80ac21 wifi: cfg80211: Partial revert "wifi: cfg80211: Fix use after free for wext"
bbf9f29bac04 Linux 5.15.101
cba6bbf501be Revert "drm/i915: Don't use BAR mappings for ring buffers with LLC"
d214f240b0f6 Linux 5.15.100
acf252c1f5c3 usb: gadget: uvc: fix missing mutex_unlock() if kstrtou8() fails
1c7988d5c79f malidp: Fix NULL vs IS_ERR() checking
545d72ba4c2c scsi: mpt3sas: Remove usage of dma_get_required_mask() API
953841f959e3 scsi: mpt3sas: re-do lost mpt3sas DMA mask fix
de1afc58a905 scsi: mpt3sas: Don't change DMA mask while reallocating pools
8e6612ff8b5d Revert "scsi: mpt3sas: Fix return value check of dma_get_required_mask()"
72bf6d493c95 drm/virtio: Fix error code in virtio_gpu_object_shmem_init()
8e62139840c0 media: uvcvideo: Fix race condition with usb_kill_urb
a1ddee82de80 Bluetooth: hci_sock: purge socket queues in the destruct() callback
22d021232657 drm/display/dp_mst: Fix down message handling after a packet reception error
db35e49413a4 drm/display/dp_mst: Fix down/up message handling after sink disconnect
e23fa593f1ab x86/resctl: fix scheduler confusion with 'current'
be5d5d0637fd net: tls: avoid hanging tasks on the tx_lock
e1a3cfdbf5b3 soundwire: cadence: Drain the RX FIFO after an IO timeout
ecb33d7a5b58 soundwire: cadence: Remove wasted space in response_buf
473efca280d4 phy: rockchip-typec: Fix unsigned comparison with less than zero
ffcd94262e0e PCI: Add ACS quirk for Wangxun NICs
19c4d6c7b049 PCI: loongson: Add more devices that need MRRS quirk
bb99db06b8b6 kernel/fail_function: fix memory leak with using debugfs_lookup()
7f1e53f88e8b drivers: base: dd: fix memory leak with using debugfs_lookup()
09709a49283f drivers: base: component: fix memory leak with using debugfs_lookup()
b94b39bf3d54 misc: vmw_balloon: fix memory leak with using debugfs_lookup()
cf042964c2fa tty: pcn_uart: fix memory leak with using debugfs_lookup()
49ae24f44713 PCI: Take other bus devices into account when distributing resources
dba6280105e1 PCI: Align extra resources for hotplug bridges properly
92d6e6bf9cf1 usb: gadget: uvc: Make bSourceID read/write
14cbfd08551a usb: uvc: Enumerate valid values for color matching
7e902b949600 USB: ene_usb6250: Allocate enough memory for full object
95ee8cb26db5 usb: host: xhci: mvebu: Iterate over array indexes instead of using pointer math
8da78a60f332 USB: gadget: pxa27x_udc: fix memory leak with using debugfs_lookup()
6236a6d2cdfb USB: gadget: pxa25x_udc: fix memory leak with using debugfs_lookup()
036ada6ca9ee USB: gadget: lpc32xx_udc: fix memory leak with using debugfs_lookup()
b0a2663ecbe8 USB: gadget: bcm63xx_udc: fix memory leak with using debugfs_lookup()
30f9ba2396a1 USB: gadget: gr_udc: fix memory leak with using debugfs_lookup()
fb284bee1e21 USB: isp1362: fix memory leak with using debugfs_lookup()
6f12097467ea USB: isp116x: fix memory leak with using debugfs_lookup()
4a71b15744b8 USB: fotg210: fix memory leak with using debugfs_lookup()
bb4d5eefb670 USB: sl811: fix memory leak with using debugfs_lookup()
c6af1dbc99ad USB: uhci: fix memory leak with using debugfs_lookup()
4322661af6d7 USB: chipidea: fix memory leak with using debugfs_lookup()
cf52c320cf74 USB: dwc3: fix memory leak with using debugfs_lookup()
baec889a81b8 PCI: loongson: Prevent LS7A MRRS increases
19da678d38d2 soundwire: bus_type: Avoid lockdep assert in sdw_drv_probe()
587b48b18a8a iio: accel: mma9551_core: Prevent uninitialized variable in mma9551_read_config_word()
2b59fdcaaf24 iio: accel: mma9551_core: Prevent uninitialized variable in mma9551_read_status_word()
9e58ebb12210 tools/iio/iio_utils:fix memory leak
54179274476d mei: bus-fixup:upon error print return values of send and receive
49b326ce8a68 serial: sc16is7xx: setup GPIO controller later in probe
45083b86141e tty: serial: fsl_lpuart: disable the CTS when send break signal
f9d9d25ad1f0 tty: fix out-of-bounds access in tty_driver_lookup_tty()
4be3213e9d79 staging: emxx_udc: Add checks for dma_alloc_coherent()
6683327b51a6 USB: fix memory leak with using debugfs_lookup()
b32d922f86f3 media: uvcvideo: Silence memcpy() run-time false positive warnings
c1343a879cce media: uvcvideo: Quirk for autosuspend in Logitech B910 and C910
cdccb1c3fcd2 media: uvcvideo: Handle errors from calls to usb_string
31a8d11d28b5 media: uvcvideo: Handle cameras with invalid descriptors
57b0ff53f4de media: uvcvideo: Remove format descriptions
1f11ed61d69d iommu/amd: Fix error handling for pdev_pri_ats_enable()
77d567091ec3 IB/hfi1: Update RMT size calculation
5a47bb71b1a9 mfd: arizona: Use pm_runtime_resume_and_get() to prevent refcnt leak
1b46c2a76c21 bootconfig: Increase max nodes of bootconfig from 1024 to 8192 for DCC support
0a65cd7379a2 firmware/efi sysfb_efi: Add quirk for Lenovo IdeaPad Duet 3
2e07fa2e30d4 kernel/printk/index.c: fix memory leak with using debugfs_lookup()
ba279dc7e47a tracing: Add NULL checks for buffer in ring_buffer_free_read_page()
9c28c74fbd67 thermal: intel: BXT_PMIC: select REGMAP instead of depending on it
5eaf55b38691 thermal: intel: quark_dts: fix error pointer dereference
d11f9f030fd8 ASoC: mediatek: mt8195: add missing initialization
488bc1b823c7 ASoC: zl38060 add gpiolib dependency
69e997420cb9 ASoC: zl38060: Remove spurious gpiolib select
35b855381898 ASoC: adau7118: don't disable regulators on device unbind
3e7d0968203d loop: loop_set_status_from_info() check before assignment
746d4e369e04 rtc: allow rtc_read_alarm without read_alarm callback
6e47bb21b63b scsi: ipr: Work around fortify-string warning
c775a5246151 genirq: Add and use an irq_data_update_affinity helper
00340ccb5407 genirq: Refactor accessors to use irq_data_get_affinity_mask
2163cf142272 rtc: sun6i: Always export the internal oscillator
660e8f2eeafa vc_screen: modify vcs_size() handling in vcs_read()
72db07cf0d6b tcp: tcp_check_req() can be called from process context
ac7014af85aa ARM: dts: spear320-hmi: correct STMPE GPIO compatible
dff967aee88a net/sched: act_sample: fix action bind logic
850f914efe04 net/sched: act_mpls: fix action bind logic
da4df0cbdf7c net/sched: act_pedit: fix action bind logic
5654a12277b0 net/sched: transition act_pedit to rcu and percpu stats
c494365432dc nfc: fix memory leak of se_io context in nfc_genl_se_io
6398bd3c4a50 net/mlx5: Geneve, Fix handling of Geneve object id as error code
48a8c76c7dc6 net/mlx5e: Verify flow_source cap before using it
2721d966680a 9p/rdma: unmap receive dma buffer in rdma_request()/post_recv()
8d3fc907d060 9p/xen: fix connection sequence
fc772313f2da 9p/xen: fix version parsing
df192270eb72 net: fix __dev_kfree_skb_any() vs drop monitor
ada4f805c9e4 octeontx2-pf: Use correct struct reference in test condition
bf5540cbd20e sctp: add a refcnt in sctp_stream_priorities to avoid a nested loop
dcdddb5f4908 ipv6: Add lwtunnel encap size of all siblings in nexthop calculation
e306dbee4c98 netfilter: x_tables: fix percpu counter block leak on error path when creating new netns
dbb3cbbf03b3 netfilter: ebtables: fix table blob use-after-free
af41b3cd9a92 netfilter: ctnetlink: fix possible refcount leak in ctnetlink_create_conntrack()
041fdbe73de9 watchdog: sbsa_wdog: Make sure the timeout programming is within the limits
3e765f7ff256 watchdog: pcwd_usb: Fix attempting to access uninitialized memory
23cc41c3f19c watchdog: Fix kmemleak in watchdog_cdev_register
dd7605dd48e5 watchdog: at91sam9_wdt: use devm_request_irq to avoid missing free_irq() in error path
a27e95a6ff3f um: virt-pci: properly remove PCI device from bus
6c738b8805c6 um: virtio_uml: move device breaking into workqueue
b7d5712cf9f4 um: virtio_uml: mark device as unregistered when breaking it
1b1ef45d48e1 um: virtio_uml: free command if adding to virtqueue failed
8ba6b0fade97 x86: um: vdso: Add '%rcx' and '%r11' to the syscall clobber list
ed1d288ec85d netfilter: nf_tables: allow to fetch set elements when table has an owner
98db4a032244 ext4: use ext4_fc_tl_mem in fast-commit replay path
aa4d726af72a f2fs: fix to avoid potential memory corruption in __update_iostat_latency()
3afaaf6f5867 ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed
79548ccdd992 ubi: Fix UAF wear-leveling entry in eraseblk_count_seq_show()
003bb9868a51 ubi: fastmap: Fix missed fm_anchor PEB in wear-leveling after disabling fastmap
79db0e8323b5 ubifs: ubifs_writepage: Mark page dirty after writing inode failed
10b6c359e374 ubifs: dirty_cow_znode: Fix memleak in error handling path
aeb92507ea25 ubifs: Re-statistic cleaned znode count if commit failed
5ec4c8aca5a2 ubi: Fix possible null-ptr-deref in ubi_free_volume()
3e29634eb56e ubifs: Fix memory leak in alloc_wbufs()
95a72417dd13 ubi: Fix unreferenced object reported by kmemleak in ubi_resize_volume()
53818746e549 ubi: Fix use-after-free when volume resizing failed
91bc31579e9f ubifs: Reserve one leb for each journal head while doing budget
2b6d85db0e07 ubifs: do_rename: Fix wrong space budget when target inode's nlink > 1
8e30559876d8 ubifs: Fix wrong dirty space budget for dirty inode
8e166cc9b64b ubifs: Rectify space budget for ubifs_xrename()
de6d6bf150b7 ubifs: Rectify space budget for ubifs_symlink() if symlink is encrypted
8c3ebc5e3cd0 ubifs: Fix build errors as symbol undefined
701bb3ed5a88 ubi: ensure that VID header offset + VID header size <= alloc, size
276a7298af6a um: vector: Fix memory leak in vector_config
354dfc05bd5f f2fs: allow set compression option of files without blocks
add8515d59a1 fs: f2fs: initialize fsdata in pagecache_write()
06fa1a839fae f2fs: use memcpy_{to,from}_page() where possible
804817f02e2f pwm: stm32-lp: fix the check on arr and cmp registers update
81ea09ae3040 pwm: sifive: Always let the first pwm_apply_state succeed
852703ed6d81 pwm: sifive: Reduce time the controller lock is held
3a75866a5cef objtool: Fix memory leak in create_static_call_sections()
ea30508b7bb1 fs/jfs: fix shift exponent db_agl2size negative
8311961a1724 auxdisplay: hd44780: Fix potential memory leak in hd44780_remove()
7c183dc0af47 net/sched: Retire tcindex classifier
abddfcf701a5 Linux 5.15.99
d2fb2739e956 kbuild: Port silent mode detection to future gnu make.
2da950a044ee wifi: ath9k: use proper statements in conditionals
7e6eeb5fb3aa arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY
6ac2adcc2bff iommu/vt-d: Fix an unbalanced rcu_read_lock/rcu_read_unlock()
26f8b1ef30f6 media: uvcvideo: Fix memory leak of object map on error exit path
2137e7c83ed6 qede: avoid uninitialized entries in coal_entry array
a8da5a8900fa perf intel-pt: pkt-decoder: Add CFE and EVD packets
922bd6b37276 drm/edid: fix AVI infoframe aspect ratio handling
4eb6789f9177 drm/i915: Don't use BAR mappings for ring buffers with LLC
64bcaffa2d5c drm/radeon: Fix eDP for single-display iMac11,2
6a5f31c3fbf3 drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv
5f63c879ca95 vfio/type1: restore locked_vm
7329ab7f0249 vfio/type1: track locked_vm per dma
eafb81c50da8 vfio/type1: prevent underflow of locked_vm via exec()
2fd6f6c8cb35 iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode
77ffe5501e02 PCI: Avoid FLR for AMD FCH AHCI adapters
99eefc2c62e0 PCI: hotplug: Allow marking devices as disconnected during bind/unbind
2bb559f12e54 PCI/PM: Observe reset delay irrespective of bridge_d3
b07ded08cd9c MIPS: DTS: CI20: fix otg power gpio
71f81b6842af riscv: ftrace: Reduce the detour code size to half
4accfc428fec riscv: ftrace: Remove wasted nops for !RISCV_ISA_C
f6b5db68b256 riscv, mm: Perform BPF exhandler fixup on page fault
043d1657cc51 riscv: jump_label: Fixup unaligned arch_static_branch function
ac5ff022d916 riscv: mm: fix regression due to update_mmu_cache change
59b83f7b057d RISC-V: add a spin_shadow_stack declaration
0595cdb58772 scsi: ses: Fix slab-out-of-bounds in ses_intf_remove()
584892fd29a4 scsi: ses: Fix possible desc_ptr out-of-bounds accesses
384aa697d8f2 scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses
2b28a7d261cb scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process()
6fce2307650a scsi: ses: Don't attach if enclosure has no components
cb121c4137b2 scsi: qla2xxx: Remove increment of interface err cnt
5f40ca617ef5 scsi: qla2xxx: Fix erroneous link down
77a11df33c48 scsi: qla2xxx: Remove unintended flag clearing
77302fb0e357 scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests
476126f14dfe scsi: qla2xxx: Check if port is online before sending ELS
c54e9311ee0b scsi: qla2xxx: Fix link failure in NPIV environment
37a38ff7edf4 tools/bootconfig: fix single & used for logical condition
d41db100bc38 ring-buffer: Handle race between rb_move_tail and rb_check_pages
145999aed74f ktest.pl: Add RUN_TIMEOUT option with default unlimited
aab7db9e1e08 ktest.pl: Fix missing "end_monitor" when machine check fails
0c2f4a234bb2 ktest.pl: Give back console on Ctrt^C on monitor
fe463fe6aa80 mm/thp: check and bail out if page in deferred queue already
ef1fcad8548d mm: memcontrol: deprecate charge moving
d0d794371bde docs: gdbmacros: print newest record
a16bd95eeb2e remoteproc/mtk_scp: Move clk ops outside send_lock
505627bebd45 media: ipu3-cio2: Fix PM runtime usage_count in driver unbind
d15f73b01bce mips: fix syscall_get_nr
34dbf5dd0711 dax/kmem: Fix leak of memory-hotplug resources
7eb171ada303 alpha: fix FEN fault handling
efa228b2e6a4 ceph: update the time stamps and try to drop the suid/sgid
a73783e4e0c4 rbd: avoid use-after-free in do_rbd_add() when rbd_dev_create() fails
c6cc86c6d847 fuse: add inode/permission checks to fileattr_get/fileattr_set
cfa97a3b266a ARM: dts: exynos: correct TMU phandle in Odroid HC1
70e18548311c ARM: dts: exynos: correct TMU phandle in Odroid XU
816f83bd2868 ARM: dts: exynos: correct TMU phandle in Exynos5250
269926de8454 ARM: dts: exynos: correct TMU phandle in Odroid XU3 family
78a5fa65a5d7 ARM: dts: exynos: correct TMU phandle in Exynos4
52739e0f7413 ARM: dts: exynos: correct TMU phandle in Exynos4210
89e99f0b031f ARM: dts: qcom: sdx55: Add Qcom SMMU-500 as the fallback for IOMMU node
0e22e0477479 dm flakey: fix a bug with 32-bit highmem systems
ff60b2bb680e dm flakey: don't corrupt the zero page
673ca7e7872f dm flakey: fix logic when corrupting a bio
8cbbe0651971 thermal: intel: powerclamp: Fix cur_state for multi package system
935ba268ac0b qede: fix interrupt coalescing configuration
fd081afd21eb wifi: cfg80211: Fix use after free for wext
60e49fe9b7e4 wifi: ath11k: allow system suspend to survive ath11k
f592cd2f1390 wifi: rtl8xxxu: Use a longer retry limit of 48
931dc7e232b2 dm: add cond_resched() to dm_wq_work()
d71a0899e497 dm: send just one event on resize, not two
61d44a4db2f5 mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type
afd61540ba77 mtd: spi-nor: spansion: Consider reserved bits in CFR5 register
73a4cbf91e04 mtd: spi-nor: sfdp: Fix index value for SCCR dwords
116008ada3d0 ext4: refuse to create ea block when umounted
a6744e14ce70 ext4: optimize ea_inode block expansion
c325350d0c54 jbd2: fix data missing when reusing bh which is ready to be checkpointed
83c4e017fbfd ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC
ff9657b1e845 ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls()
345fb368e5f5 io_uring/poll: allow some retries for poll triggering spuriously
7e8cd208e9c2 io_uring: remove MSG_NOSIGNAL from recvmsg
dde0d0dfbde2 io_uring/rsrc: disallow multi-source reg buffers
abd54d87daba io_uring: add a conditional reschedule to the IOPOLL cancelation loop
337eb887c74d io_uring: mark task TASK_RUNNING before handling resume/task work
54df6c5edf87 io_uring: handle TIF_NOTIFY_RESUME when checking for task_work
7697139d5dfd crypto: qat - fix out-of-bounds read
ffc9d001fed1 irqdomain: Fix domain registration race
a2a46bd4f40c irqdomain: Drop bogus fwspec-mapping error handling
27842d6884d7 irqdomain: Look for existing mapping only once
562e332dd306 irqdomain: Fix disassociation race
ee82369e29fb irqdomain: Fix association race
1cb936fee7e7 ima: Align ima_file_mmap() parameters with mmap_file LSM hook
cb104b880d78 brd: return 0/-error from brd_insert_page()
113d4b0e12f4 Documentation/hw-vuln: Document the interaction between IBRS and STIBP
e7f1ddebd9f5 x86/speculation: Allow enabling STIBP with legacy IBRS
be2710deaed3 x86/microcode/AMD: Fix mixed steppings support
5830ff467ab3 x86/microcode/AMD: Add a @cpu parameter to the reloading functions
865af457dd89 x86/microcode/amd: Remove load_microcode_amd()'s bsp parameter
e1d35d0d1830 x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe range
c5a2c2bf0b4f x86/kprobes: Fix __recover_optprobed_insn check optimizing logic
f46a42130c03 x86/reboot: Disable SVM, not just VMX, when stopping CPUs
5427c3cee789 x86/reboot: Disable virtualization in an emergency if SVM is supported
1e3edbabf57a x86/crash: Disable virt in core NMI crash handler to avoid double shootdown
83a27cd866dd x86/virt: Force GIF=1 prior to disabling SVM (for reboot flows)
6e46d9ff3ed3 KVM: s390: disable migration mode when dirty tracking is disabled
21c95b736058 KVM: SVM: hyper-v: placate modpost section mismatch error
033a4c062124 KVM: SVM: Fix potential overflow in SEV's send|receive_update_data()
11d4b35674c6 KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI
999439fd5da5 KVM: Destroy target device if coalesced MMIO unregistration fails
ac791643e77b RDMA/siw: Fix user page pinning accounting
a155ad9506f9 udf: Fix file corruption when appending just after end of preallocated extent
37e74003d81e udf: Detect system inodes linked into directory hierarchy
e6574337df78 udf: Preserve link count of system files
c5787d77a5c2 udf: Do not update file length for failed writes to inline files
9a8d602f0723 udf: Do not bother merging very long extents
e43adce883e1 udf: Truncate added extents on failed expansion
aa502e760c26 selftests/landlock: Test ptrace as much as possible with Yama
6249f305cd34 selftests/landlock: Skip overlayfs tests when not supported
597ecd95b1f2 ocfs2: fix non-auto defrag path not working issue
33665d104266 ocfs2: fix defrag path triggering jbd2 ASSERT
f901c39e670b f2fs: fix cgroup writeback accounting with fs-layer encryption
117d4f6687b1 f2fs: fix information leak in f2fs_move_inline_dirents()
936a8383a021 fs: dlm: send FIN ack back in right cases
e9463d46af47 fs: dlm: move sending fin message into state change handling
3ed92883b387 fs: dlm: don't set stop rx flag after node reset
19e99109fb77 exfat: fix inode->i_blocks for non-512 byte sector size device
9717df94d7d0 exfat: redefine DIR_DELETED as the bad cluster number
c2c3d86bd4a9 exfat: fix unexpected EOF while reading dir
0d3902cbcf80 exfat: fix reporting fs error when reading dir beyond EOF
05103d88482d fs: hfsplus: fix UAF issue in hfsplus_put_super
2cab8db14566 hfs: fix missing hfs_bnode_get() in __hfs_bnode_create
6817d13c62db ARM: dts: exynos: correct HDMI phy compatible in Exynos4
851c34f19c0a ksmbd: do not allow the actual frame length to be smaller than the rfc1002 length
f9b816c55bea ksmbd: fix wrong data area length for smb2 lock request
db1c5ec57611 locking/rwsem: Prevent non-first waiter from spinning in down_write() slowpath
79a0583a31ae btrfs: hold block group refcount during async discard
0eba9b4a86e8 cifs: Fix uninitialized memory read in smb3_qfs_tcon()
2c00c08a081e s390/kprobes: fix current_kprobe never cleared after kprobes reenter
f12874e6a169 s390/kprobes: fix irq mask clobbering on kprobe reenter from post_handler
76c683864bea s390: discard .interp section
61e64c322739 s390/extmem: return correct segment type in __segment_load()
49be6b25acb7 ipmi_ssif: Rename idle state and check
66db2b9a2dc5 ipmi:ssif: resend_msg() cannot fail
db44fae4cb19 rtc: pm8xxx: fix set-alarm race
8b44b4d81598 block: don't allow multiple bios for IOCB_NOWAIT issue
ce3eb3c37b2c firmware: coreboot: framebuffer: Ignore reserved pixel color bits
d44d34a22ff0 wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu
90ca3fa30fc4 drm/shmem-helper: Revert accidental non-GPL export
bde7dcd77807 nfsd: zero out pointers after putting nfsd_files on COPY setup error
8c5f6c699241 dm cache: add cond_resched() to various workqueue loops
01663c215843 dm thin: add cond_resched() to various workqueue loops
f0c8b85af2f6 drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5
fbc357c9ad67 HID: logitech-hidpp: Don't restart communication if not necessary
5a46d8bdaf03 scsi: snic: Fix memory leak with using debugfs_lookup()
73dbd0f325af pinctrl: at91: use devm_kasprintf() to avoid potential leaks
52ea47a0ddfb hwmon: (coretemp) Simplify platform device handling
c713ebf2fe3f gfs2: Improve gfs2_make_fs_rw error handling
a4b3893e4183 regulator: s5m8767: Bounds check id indexing into arrays
88001ac08e69 regulator: max77802: Bounds check regulator id against opmode
4e8c955abc52 ASoC: kirkwood: Iterate over array indexes instead of using pointer math
9576b7ccc203 ASoC: soc-compress: Reposition and add pcm_mutex
204233695407 docs/scripts/gdb: add necessary make scripts_gdb step
5dfe7a5386fd drm/msm/dsi: Add missing check for alloc_ordered_workqueue
9ae15ebaefc4 drm: amd: display: Fix memory leakage
a40b97acb817 Revert "fbcon: don't lose the console font across generic->chip driver switch"
51ab4eb1a25e scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write
cda2f7efbc2d drm/radeon: free iio for atombios when driver shutdown
340d1cc503f6 drm/tiny: ili9486: Do not assume 8-bit only SPI controllers
1f09c5321f03 HID: Add Mapping for System Microphone Mute
fc4f90d6ebd0 drm/omap: dsi: Fix excessive stack usage
bb9a5562beb9 drm/amd/display: Fix potential null-deref in dm_resume
54ba1ec7ed34 drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h write
93be5b2dda27 scm: add user copy checks to put_cmsg()
ad01fa14f65c hv_netvsc: Check status in SEND_RNDIS_PKT completion message
90c260fddc65 Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE
84e4d4885d0a PM: EM: fix memory leak with using debugfs_lookup()
dddc132eb0dc PM: domains: fix memory leak with using debugfs_lookup()
dc39fbd865a9 time/debug: Fix memory leak with using debugfs_lookup()
49aa49952116 s390/idle: mark arch_cpu_idle() noinstr
eb1fbdf985cc uaccess: Add minimum bounds check on kernel buffer size
ce1fb07b7130 coda: Avoid partial allocation of sig_inputArgs
dca8fd0f7d70 net/mlx5: fw_tracer: Fix debug print
4d9d7e5e4c79 ACPI: video: Fix Lenovo Ideapad Z570 DMI match
90fa009c6d51 wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup
634986c94c57 tools/power/x86/intel-speed-select: Add Emerald Rapid quirk
2493966c877f netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj()
fcf9fb5242d2 m68k: Check syscall_trace_enter() return code
124ca24e0de9 net: bcmgenet: Add a check for oversized packets
bcb03f2be982 crypto: hisilicon: Wipe entire pool on error
f1e093291cd6 clocksource: Suspend the watchdog temporarily when high read latency detected
e6900ee15d87 thermal: intel: intel_pch: Add support for Wellsburg PCH
31f4c98ecd17 ACPI: Don't build ACPICA with '-Os'
57bb8235ba8f ice: add missing checks for PF vsi type
38f564996906 ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB
b279fa1ceadb inet: fix fast path in __inet_hash_connect()
1a1f43059afa wifi: mt7601u: fix an integer underflow
a0f0ce1c8ab9 wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out-of-bounds
f5df8d35b228 x86/bugs: Reset speculation control settings on init
aa70d1e0f941 timers: Prevent union confusion from unexpected restart_syscall()
599a9dcef8a7 thermal: intel: Fix unsigned comparison with less than zero
208065148930 wifi: ath11k: debugfs: fix to work with multiple PCI devices
4a84fcea596d rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
0d9fc1397f71 rcu: Suppress smp_processor_id() complaint in synchronize_rcu_expedited_wait()
6f2ce125c760 rcu: Make RCU_LOCKDEP_WARN() avoid early lockdep checks
3a3a5e3f9406 wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds()
634a5471a6bd wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect()
a2e4b48d6f9b trace/blktrace: fix memory leak with using debugfs_lookup()
3538ade9d8c2 blk-iocost: fix divide by 0 error in calc_lcoefs()
2e68a0f7bc57 ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy
1492fc9b50a4 udf: Define EFSCORRUPTED error code
de23e98c1c34 rpmsg: glink: Avoid infinite loop on intent for missing channel
6d24202b8d3d media: saa7134: Use video_unregister_device for radio_dev
114f768e7314 media: usb: siano: Fix use after free bugs caused by do_submit_urb
d2512e1c9073 media: i2c: ov7670: 0 instead of -EINVAL was returned
29962c478e8b media: rc: Fix use-after-free bugs caused by ene_tx_irqsim()
09fc82a6a7a8 media: imx-jpeg: Apply clk_bulk api instead of operating specific clk
8f9722ffa432 media: v4l2-jpeg: ignore the unknown APP14 marker
ecefc14dd1c9 media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data
5ed8dde3aa5b media: i2c: imx219: Fix binning for RAW8 capture
800bb32c7636 media: i2c: imx219: Split common registers from mode tables
1da495101ef7 media: i2c: ov772x: Fix memleak in ov772x_probe()
ba54908ae822 media: ov5675: Fix memleak in ov5675_init_controls()
3969b2ebc660 media: ov2740: Fix memleak in ov2740_init_controls()
5897fe3ebe82 media: max9286: Fix memleak in max9286_v4l2_register()
956186b8e2c1 builddeb: clean generated package content
edc6f486be31 s390/vdso: Drop '-shared' from KBUILD_CFLAGS_64
4ecc0a347da7 s390/vdso: remove -nostdlib compiler flag
a26436b90808 powerpc: Remove linker flag from KBUILD_AFLAGS
60abe015c3b5 media: platform: ti: Add missing check for devm_regulator_get
954f27086c07 media: ti: cal: fix possible memory leak in cal_ctx_create()
d4f4aa9ec112 remoteproc: qcom_q6v5_mss: Use a carveout to authenticate modem headers
bd57756a7e43 IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors
08210a63eb4f IB/hfi1: Fix math bugs in hfi1_can_pin_pages()
a495b6a5d027 iommu/vt-d: Allow to use flush-queue when first level is default
990c539e9c33 iommu/vt-d: Use second level for GPA->HPA translation
727fb414fe9f iommu/vt-d: Check FL and SL capability sanity in scalable mode
b0a2bf28af77 iommu/vt-d: Remove duplicate identity domain flag
db05a58ed435 iommu/vt-d: Fix error handling in sva enable/disable paths
0bb33c5fe4a0 dmaengine: dw-axi-dmac: Do not dereference NULL structure
ad222c9af25e dmaengine: sf-pdma: pdma_desc memory leak fix
f119ef452e2d iommu: Fix error unwind in iommu_group_alloc()
76e0396313c7 iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry()
3df71bb7e8ad phy: rockchip-typec: fix tcphy_get_mode error case
295ab6d49ee5 dmaengine: dw-edma: Fix readq_ch() return value truncation
3d41d9b256ae tty: serial: imx: disable Ageing Timer interrupt request irq
908e091e1b66 tty: serial: imx: Handle RS485 DE signal active high
3fe888ce8152 serial: fsl_lpuart: fix RS485 RTS polariy inverse issue
87674a359ad1 RDMA/irdma: Cap MSIX used to online CPUs + 1
d9e1dae1e278 usb: max-3421: Fix setting of I/O pins
9dca64042d85 RDMA/cxgb4: Fix potential null-ptr-deref in pass_establish()
16603bced2d1 power: supply: remove faulty cooling logic
c4f590e84a60 iommu/vt-d: Set No Execute Enable bit in PASID table entry
7bd1d1305c89 usb: gadget: configfs: Restrict symlink creation is UDC already binded
da589849cfdd usb: gadget: configfs: remove using list iterator after loop body as a ptr
3d0127aca18f usb: gadget: configfs: use to_usb_function_instance() in cfg (un)link func
c955f9cf75b7 usb: gadget: configfs: use to_config_usb_cfg() in os_desc_link()
f12829e5130f usb: musb: mediatek: don't unregister something that wasn't registered
2aff0632ac6b RDMA/cxgb4: add null-ptr-check after ip_dev_find()
fcbbf34d7820 tty: serial: fsl_lpuart: Fix the wrong RXWATER setting for rx dma case
e8fb0f13e45c usb: early: xhci-dbc: Fix a potential out-of-bound memory access
49bf49312b30 dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers
834af318db66 fotg210-udc: Add missing completion handler
b4fe158259fb firmware: dmi-sysfs: Fix null-ptr-deref in dmi_sysfs_register_handle
ca39a7c65944 drivers: base: transport_class: fix resource leak when transport_add_device() fails
817b415f481b drivers: base: transport_class: fix possible memory leak
8d389e363075 driver core: fix resource leak in device_add()
6cdcee7393d4 misc/mei/hdcp: Use correct macros to initialize uuid_le
a3c89e8c69a5 VMCI: check context->notify_page after call to get_user_pages_fast() to avoid GPF
b1cdf1113e21 firmware: stratix10-svc: add missing gen_pool_destroy() in stratix10_svc_drv_probe()
7f9416f14e86 applicom: Fix PCI device refcount leak in applicom_init()
4a77ce51f9a8 eeprom: idt_89hpesx: Fix error handling in idt_init()
4143de03d397 Revert "char: pcmcia: cm4000_cs: Replace mdelay with usleep_range in set_protocol"
c177d5f24723 serial: tegra: Add missing clk_disable_unprepare() in tegra_uart_hw_init()
7159dced6ffb tty: serial: fsl_lpuart: clear LPUART Status Register in lpuart32_shutdown()
d5dcc89c8df8 tty: serial: fsl_lpuart: disable Rx/Tx DMA in lpuart32_shutdown()
707d954d9b5c PCI: switchtec: Return -EFAULT for copy_to_user() errors
53b65fa40c01 PCI/IOV: Enlarge virtfn sysfs name buffer
645384e26f20 usb: typec: intel_pmc_mux: Don't leak the ACPI device reference count
2a023b47d9f5 usb: typec: intel_pmc_mux: Use the helper acpi_dev_get_memory_resources()
2dc1dba1d8d3 ACPI: resource: Add helper function acpi_dev_get_memory_resources()
950c6df6ec6e coresight: cti: Add PM runtime call in enable_store
ec4808025406 coresight: cti: Prevent negative values of enable count
4f125de654c4 coresight: etm4x: Fix accesses to TRCSEQRSTEVR and TRCSEQSTR
4ff283009f55 media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible()
5052fe8a95a4 media: uvcvideo: Check controls flags before accessing them
bd3a78ace9bd media: uvcvideo: Use control names from framework
5f0b4c77e70d media: uvcvideo: Add support for V4L2_CTRL_TYPE_CTRL_CLASS
c7121f186c1c media: uvcvideo: refactor __uvc_ctrl_add_mapping
d9eacd945f16 media: uvcvideo: Remove s_ctrl and g_ctrl
07ab366a9aaf media: uvcvideo: Do not check for V4L2_CTRL_WHICH_DEF_VAL
0305bf6af005 alpha/boot/tools/objstrip: fix the check for ELF header
89a0079049f5 kobject: Fix slab-out-of-bounds in fill_kobj_path()
e8bfba508cf3 kobject: modify kobject_get_path() to take a const *
2c59650d078b driver core: fix potential null-ptr-deref in device_add()
18f50b830408 soundwire: cadence: Don't overflow the command FIFOs
83ce72f41464 i2c: designware: fix i2c_dw_clk_rate() return size to be u32
d725bc59db96 usb: gadget: fusb300_udc: free irq on the error path in fusb300_probe()
806d41135051 iio: light: tsl2563: Do not hardcode interrupt trigger type
0d6282dc2bd3 dmaengine: HISI_DMA should depend on ARCH_HISI
d901a7fb4069 dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0
6a8a02dcfae1 mfd: pcf50633-adc: Fix potential memleak in pcf50633_adc_async_read()
413f8b1f8be6 mfd: cs5535: Don't build on UML
41aed1bddcec objtool: add UACCESS exceptions for __tsan_volatile_read/write
1ca4adf2e099 printf: fix errname.c list
3927846a2a53 selftests/ftrace: Fix bash specific "==" operator
b41a42d11df7 sparc: allow PM configs for sparc32 COMPILE_TEST
1f3d6661f3f4 perf tools: Fix auto-complete on aarch64
f9a35cd8f017 perf intel-pt: Do not try to queue auxtrace data on pipe
bb0a6b5bcebf perf intel-pt: Add support for emulated ptwrite
6d60fdc1e6a1 perf intel-pt: Add link to the perf wiki's Intel PT page
ceecd014a8cc perf intel-pt: Add documentation for Event Trace and TNT disable
b51f0131fd41 perf inject: Use perf_data__read() for auxtrace
690efcb5827c leds: led-core: Fix refcount leak in of_led_get()
1cdf973d2b3a perf llvm: Fix inadvertent file creation
321b8b2b0b2b gfs2: jdata writepage fix
7cbd5bdb5bd4 cifs: Fix warning and UAF when destroy the MR list
46cd6c639cdd cifs: Fix lost destroy smbd connection when MR allocate failed
22f55cbb0605 nfsd: fix race to check ls_layouts
4abe8b100407 drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt()
350f0fc9052d hid: bigben_probe(): validate report count
0fd999805292 HID: bigben: use spinlock to safely schedule workers
be0b3f4a10bc HID: bigben_worker() remove unneeded check on report_field
4dccaf1e45e1 HID: bigben: use spinlock to protect concurrent accesses
547d18473a16 ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared
78b4d1e54531 spi: synquacer: Fix timeout handling in synquacer_spi_transfer_one()
91758289faad NFS: fix disabling of swap
c78cfb19c9a2 nfs4trace: fix state manager flag printing
ccbf841c73ef NFSv4: keep state manager thread active if swap is enabled
24ff9c5cdea9 dm: remove flush_scheduled_work() during local_exit()
6739473a05ba ASoC: tlv320adcx140: fix 'ti,gpio-config' DT property init
75eef8cb9d07 hwmon: (mlxreg-fan) Return zero speed for broken fan
528181646644 spi: bcm63xx-hsspi: Fix multi-bit mode setting
caed289f95f2 ASoC: codecs: lpass: fix incorrect mclk rate
110589ecae84 ASoC: codecs: tx-macro: move to individual clks from bulk
b1c7f77e2831 ASoC: codecs: rx-macro: move to individual clks from bulk
05fd63e7f640 ASoC: codecs: tx-macro: move clk provider to managed variants
8ca893710c67 ASoC: codecs: rx-macro: move clk provider to managed variants
bed34709711a ASoC: codecs: Change bulk clock voting to optional voting in digital codecs
bf29fda763a9 HID: retain initial quirks set up when creating HID devices
2098a330b2a6 HID: multitouch: Add quirks for flipped axes
f6e9b77257c1 scsi: aic94xx: Add missing check for dma_map_single()
378cc0eec4aa scsi: mpt3sas: Fix a memory leak
2dc8d09c1e68 drm/amdgpu: fix enum odm_combine_mode mismatch
8b9415aecb1f hwmon: (ltc2945) Handle error case in ltc2945_value_store
9cd1a9b7de20 ASoC: dt-bindings: meson: fix gx-card codec node regex
fecd236ef6be ASoC: mchp-spdifrx: Fix uninitialized use of mr in mchp_spdifrx_hw_params()
2b346cc075ec ASoC: rsnd: fixup #endif position
fa077baab8ea ASoC: mchp-spdifrx: disable all interrupts in mchp_spdifrx_dai_remove()
667782d7ef5b ASoC: mchp-spdifrx: fix controls that works with completion mechanism
12396e9300da ASoC: mchp-spdifrx: fix return value in case completion times out
0c4e4d2ccb88 ASoC: mchp-spdifrx: fix controls which rely on rsr register
e4d1c3ce2fe3 spi: dw_bt1: fix MUX_MMIO dependencies
5f54a1d08e26 gpio: vf610: connect GPIO label to dev name
0b64984dfbc4 ASoC: soc-compress.c: fixup private_data on snd_soc_new_compress()
49cf87919dae drm/mediatek: Clean dangling pointer on bind error path
62952905e195 drm/mediatek: mtk_drm_crtc: Add checks for devm_kcalloc
cd98ea8fa15b drm/mediatek: Drop unbalanced obj unref
088a31fe1edb drm/mediatek: Use NULL instead of 0 for NULL pointer
2a83e2b5b121 drm/mediatek: dsi: Reduce the time of dsi from LP11 to sending cmd
be30b05c4a33 drm/msm/dpu: set pdpu->is_rt_pipe early in dpu_plane_sspp_atomic_update()
f50858d1b66a drm/tegra: firewall: Check for is_addr_reg existence in IMM check
6f3614226430 gpu: host1x: Don't skip assigning syncpoints to channels
11d6f70f07b0 pinctrl: mediatek: Initialize variable *buf to zero
47a117028113 pinctrl: mediatek: Initialize variable pullen and pullup to zero
b5b81fc1ac08 pinctrl: mediatek: fix coding style
58151b609821 pinctrl: bcm2835: Remove of_node_put() in bcm2835_of_gpio_ranges_fallback()
82943a0730e0 drm/msm/mdp5: Add check for kzalloc
c7ee1772e3c3 drm/msm/dpu: Add check for pstates
d4ba50614cb3 drm/msm/dpu: Add check for cstate
f0e9f3e1d6c8 drm/msm: use strscpy instead of strncpy
c9b6a75aae4d drm/msm/dsi: Allow 2 CTRLs on v2.5.0
ce9fedc3099e drm: exynos: dsi: Fix MIPI_DSI*_NO_* mode flags
3a40fd51e81e drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness
15edaafbff75 drm/bridge: lt9611: pass a pointer to the of node
75b3c2777dbb drm/bridge: lt9611: fix clock calculation
a2c196f05a30 drm/bridge: lt9611: fix programming of video modes
24e51dea9885 drm/bridge: lt9611: fix polarity programming
77ba2d294e16 drm/bridge: lt9611: fix HPD reenablement
1b5adc8752b0 drm/bridge: lt9611: fix sleep mode setup
bf661c5e3bc4 drm/msm/dpu: Disallow unallocated resources to be returned
436fb91cadb8 drm/msm/gem: Add check for kmalloc
525c43e67d47 ALSA: hda/ca0132: minor fix for allocation size
399d01375659 drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup()
e69f8e959b72 ASoC: fsl_sai: initialize is_dsp_mode flag
6fd4144985fc ASoC: fsl_sai: Update to modern clocking terminology
d58b45bbbea8 scsi: qla2xxx: Fix exchange oversubscription for management commands
2232e689f9d9 scsi: qla2xxx: Fix exchange oversubscription
9b2aab3da463 scsi: qla2xxx: edif: Fix I/O timeout due to over-subscription
09af894bc3bd drm/msm: clean event_thread->worker in case of an error
e76fbfdad503 drm/vc4: hdmi: Correct interlaced timings again
55f2645e4e12 drm/vc4: hvs: Fix colour order for xRGB1555 on HVS5
ae8b24e8289b drm/vc4: hvs: Set AXI panic modes
0f735f232ff5 pinctrl: rockchip: Fix refcount leak in rockchip_pinctrl_parse_groups
af54707c0cca pinctrl: stm32: Fix refcount leak in stm32_pctrl_get_irq_domain
b31ad2ecc4f7 pinctrl: qcom: pinctrl-msm8976: Correct function names for wcss pins
9a01ecc312e7 drm/msm/hdmi: Add missing check for alloc_ordered_workqueue
1721badebfc8 hwmon: (ftsteutates) Fix scaling of measurements
11226ab2f99f gpu: ipu-v3: common: Add of_node_put() for reference returned by of_graph_get_port_by_id()
262f8e5940c6 drm: tidss: Fix pixel format definition
d2991e6b3002 drm/vc4: dpi: Fix format mapping for RGB565
8e04aaffb6de drm/vc4: dpi: Add option for inverting pixel clock and output enable
1f9836f95271 drm/vkms: Fix null-ptr-deref in vkms_release()
bad13de76488 drm/vkms: Fix memory leak in vkms_init()
309e785bae07 drm/bridge: megachips: Fix error handling in i2c_register_driver()
b02742255620 drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC
da56b06f3828 drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec
d72f8548a613 drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats
d06e827a65a6 drm: Fix potential null-ptr-deref due to drmm_mode_config_init()
50c75e7ce64c sefltests: netdevsim: wait for devlink instance after netns removal
1a452b449a29 selftest: fib_tests: Always cleanup before exit
96cf406dea06 net: bcmgenet: fix MoCA LED control
f6df58aa15f7 l2tp: Avoid possible recursive deadlock in l2tp_tunnel_register()
f7854541b02e selftests/net: Interpret UDP_GRO cmsg data as an int value
75ee94229062 irqchip/irq-bcm7120-l2: Set IRQ_LEVEL for level triggered interrupts
3a413b05c66e irqchip/irq-brcmstb-l2: Set IRQ_LEVEL for level triggered interrupts
95ab0725c521 bpf: Fix global subprog context argument resolution logic
bfc344d1e78c can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a bus error
f5aaf140ab1c thermal/drivers/hisi: Drop second sensor hi3660
2d20f9b6dd81 wifi: mac80211: make rate u32 in sta_set_rate_info_rx()
62ff301aa492 crypto: crypto4xx - Call dma_unmap_page when done
74fe2bf6746e ACPI: resource: Do IRQ override on all TongFang GMxRGxx
b577d0bde456 ACPI: resource: Add IRQ overrides for MAINGEAR Vector Pro 2 models
e0ae2d90bc0c selftests/bpf: Fix out-of-srctree build
15fe03e5dd05 wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize()
f15ef0ebcf56 wifi: iwl4965: Add missing check for create_singlethread_workqueue()
505c74c4c0b1 wifi: iwl3945: Add missing check for create_singlethread_workqueue
5ac2f1e3bbe6 RISC-V: time: initialize hrtimer based broadcast clock event device
e97dd92c3611 m68k: /proc/hardware should depend on PROC_FS
b677cb4f0b6b crypto: rsa-pkcs1pad - Use akcipher_request_complete
99e8e6fd70a1 rds: rds_rm_zerocopy_callback() correct order for list_add_tail()
d7bd166859fe libbpf: Fix alen calculation in libbpf_nla_dump_errormsg()
b8f6c28ce1cf s390/ap: fix status returned by ap_qact()
900a0c25a653 s390/ap: fix status returned by ap_aqic()
0e872b4da7c6 Bluetooth: hci_qca: get wakeup status from serdev device handle
31a288a4df7f Bluetooth: L2CAP: Fix potential user-after-free
bf1b79d57e44 OPP: fix error checking in opp_migrate_dentry()
db6efde0ab80 tap: tap_open(): correctly initialize socket uid
67f9f02928a3 tun: tun_chr_open(): correctly initialize socket uid
a8353cfb4eec net: add sock_init_data_uid()
15a66714bf28 s390/vmem: fix empty page tables cleanup under KASAN
6ce9a22fc021 s390/mem_detect: fix detect_memory() error handling
856fc2195494 irqchip/ti-sci: Fix refcount leak in ti_sci_intr_irq_domain_probe
88cb93d3a16f irqchip/irq-mvebu-gicp: Fix refcount leak in mvebu_gicp_probe
d6c66c468897 irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains
4401b4858557 irqchip: Fix refcount leak in platform_irqchip_probe
a7724a7c2236 net/mlx5: Enhance debug print in page allocation failure
a25ff23ba2d7 mt76: mt7915: fix polling firmware-own status
9af6aa18b4e8 bpftool: profile online CPUs instead of possible
457139238f34 crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware
68c1cfd01332 crypto: ccp - Refactor out sev_fw_alloc()
13cb7851a5b1 leds: led-class: Add missing put_device() to led_put()
912eb10b6564 crypto: xts - Handle EBUSY correctly
55a7f88059c8 x86/microcode: Adjust late loading result reporting message
36b6fc833437 x86/microcode: Check CPU capabilities after late microcode update correctly
de6e20f3f33e x86/microcode: Add a parameter to microcode_check() to store CPU capabilities
a9e76b276b10 x86/microcode: Print previous version of microcode after reload
6d2b3a319144 x86/microcode: Default-disable late loading
dce39c10d885 x86/microcode: Rip out the OLD_INTERFACE
54aa76ad5f01 x86: Mark stop_this_cpu() __noreturn
e4de2b98c4bd powercap: fix possible name leak in powercap_register_zone()
36ec108b7bd7 crypto: seqiv - Handle EBUSY correctly
840a1d3b77c1 crypto: essiv - Handle EBUSY correctly
416eb7cc967d crypto: ccp - Failure on re-initialization due to duplicate sysfs filename
3496c1b3f500 ACPI: battery: Fix missing NUL-termination with large strings
ac75c78f8f76 wifi: cfg80211: Fix extended KCK key length check in nl80211_set_rekey_data()
53c8a256e5d3 wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup
1af7eacfad45 wifi: ath9k: Fix potential stack-out-of-bounds write in ath9k_wmi_rsp_callback()
61490d271027 wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails
f1cdbe94f728 ath9k: htc: clean up statistics macros
4adfc9eb8a45 ath9k: hif_usb: simplify if-if to if-else
c0c0614f143b wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback function
88f6608c7ede wifi: orinoco: check return value of hermes_write_wordrec()
35fb0e275af1 wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU
ae17414de71b thermal/drivers/tsens: limit num_sensors to 9 for msm8939
80726a391973 thermal/drivers/tsens: fix slope values for msm8939
e991430d2375 thermal/drivers/tsens: Sort out msm8976 vs msm8956 data
df56f5265e73 thermal/drivers/tsens: Add compat string for the qcom,msm8960
21cb4e5700be thermal/drivers/tsens: Drop msm8976-specific defines
801d10065b8a ACPICA: nsrepair: handle cases without a return value correctly
0cf3af4de06a crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2
9ae0f82aa70b lib/mpi: Fix buffer overrun when SG is too long
d215e32fe18a rcu-tasks: Fix synchronize_rcu_tasks() VS zap_pid_ns_processes()
f7dc606a47d3 rcu-tasks: Remove preemption disablement around srcu_read_[un]lock() calls
a0818534fb64 rcu-tasks: Improve comments explaining tasks_rcu_exit_srcu purpose
bcaa8b8fc1f1 genirq: Fix the return type of kstat_cpu_irqs_sum()
4222cc9e7912 ACPICA: Drop port I/O validation for some regions
2b56df9102a8 crypto: x86/ghash - fix unaligned access in ghash_setkey()
4f47453c39f3 wifi: wl3501_cs: don't call kfree_skb() under spin_lock_irqsave()
f19c9ed16294 wifi: libertas: cmdresp: don't call kfree_skb() under spin_lock_irqsave()
b9294aedfb17 wifi: libertas: main: don't call kfree_skb() under spin_lock_irqsave()
e9c889b0c458 wifi: libertas: if_usb: don't call kfree_skb() under spin_lock_irqsave()
068e986f2ba8 wifi: libertas_tf: don't call kfree_skb() under spin_lock_irqsave()
ddb864ea9ca2 wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid()
e8ef89e5b89e wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit()
5706d00fde3f wifi: wilc1000: fix potential memory leak in wilc_mac_xmit()
9424ea9d557e wifi: ipw2200: fix memory leak in ipw_wdev_init()
345692e96bb7 wifi: ipw2x00: don't call dev_kfree_skb() under spin_lock_irqsave()
d78d85d84a44 libbpf: Fix btf__align_of() by taking into account field offsets
0c962dcd6bf6 wifi: rtlwifi: Fix global-out-of-bounds bug in _rtl8812ae_phy_set_txpower_limit()
507ad94346da wifi: rtl8xxxu: don't call dev_kfree_skb() under spin_lock_irqsave()
037f84c0bfae wifi: libertas: fix memory leak in lbs_init_adapter()
8722f96adece wifi: iwlegacy: common: don't call dev_kfree_skb() under spin_lock_irqsave()
53aa5137560a wifi: rtlwifi: rtl8723be: don't call kfree_skb() under spin_lock_irqsave()
993cd8cf5442 wifi: rtlwifi: rtl8188ee: don't call kfree_skb() under spin_lock_irqsave()
7d2cb8abaad7 wifi: rtlwifi: rtl8821ae: don't call kfree_skb() under spin_lock_irqsave()
b56e60b3b158 wifi: rsi: Fix memory leak in rsi_coex_attach()
3d30678a59af block: bio-integrity: Copy flags when bio_integrity_payload is cloned
cabad071ab17 arm64: dts: qcom: pmk8350: Use the correct PON compatible
0e12d7725d58 arm64: dts: qcom: pmk8350: Specify PBS register for PON
2936952fa626 KEYS: asymmetric: Fix ECDSA use via keyctl uapi
a5fa5a41791c x86/perf/zhaoxin: Add stepping check for ZXC
2c36c390a749 sched/rt: pick_next_rt_entity(): check list_entry
3f191c2cc567 sched/deadline,rt: Remove unused parameter from pick_next_[rt|dl]_entity()
544a552be086 s390/dasd: Fix potential memleak in dasd_eckd_init()
a00cf3619f19 arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM and MPSS memory regions
8173defc3635 blk-mq: correct stale comment of .get_budget
7dd5f83c1149 blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx
5eb99e7a80fc blk-mq: avoid sleep in blk_mq_alloc_request_hctx
20b9d7b4e0e6 arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node
88022f659f63 arm64: dts: mt8192: Fix CPU map for single-cluster SoC
770e769834e1 ARM: dts: imx7s: correct iomuxc gpr mux controller cells
2fe22748d511 ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference
762c821b97a7 arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN
e29709ba5847 arm64: dts: renesas: beacon-renesom: Fix gpio expander reference
3f5ec3c335dd locking/rwsem: Disable preemption in all down_read*() and up_read() code paths
ab4d47a343da locking/rwsem: Optimize down_read_trylock() under highly contended case
ac0e5a181eff arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip
f4891e5725a0 arm64: dts: amlogic: meson-gxbb-kii-pro: fix led node name
665bdfabec52 arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name
f0b5101a6432 arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names
ae03ae3b6b93 arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name
5be0df1849b6 arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux node name
7a5b8cd5622b arm64: dts: amlogic: meson-gx: add missing unit address to rng node name
5c1ce648c6c3 arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names property
d089142bcc73 arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible
f562cc37f0f0 arm64: dts: amlogic: meson-axg: fix SCPI clock dvfs node name
334bb3461204 arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name
88083a25d80a ARM: imx: Call ida_simple_remove() for ida_simple_get
abfdfa339675 ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato
70aac3c6b14d arm64: dts: ti: k3-j7200: Fix wakeup pinmux range
c42defea2db0 ARM: s3c: fix s3c64xx_set_timer_source prototype
af48760133f1 ARM: bcm2835_defconfig: Enable the framebuffer
37858e17e45e ARM: OMAP1: call platform_device_put() in error case in omap1_dm_timer_init()
89895442387d arm64: dts: meson: remove CPU opps below 1GHz for G12A boards
69c7a270357a arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names
feb8c71f015d arm64: dts: qcom: ipq8074: fix Gen3 PCIe node
1563af0f28af arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges
e88204931d9a arm64: dts: qcom: ipq8074: fix Gen3 PCIe QMP PHY
d9df682bcea5 arm64: dts: qcom: ipq8074: fix PCIe PHY serdes size
a55a645aa303 arm64: dts: qcom: Fix IPQ8074 PCIe PHY nodes
dd3d021ae547 arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names
8a5d81afa6e1 arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem
76e794cfd137 arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size
10c5fae6f99d arm64: dts: msm8992-bullhead: add memory hole region
410028a170f3 arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address
a240ab41b3bc arm64: dts: meson-g12a: Fix internal Ethernet PHY unit name
472c333be2c2 arm64: dts: meson-gx: Fix Ethernet MAC address unit name
b63bb187696c arm64: dts: qcom: sc7280: correct SPMI bus address cells
9e4063237957 arm64: dts: qcom: sc7180: correct SPMI bus address cells
6ca79943f5e3 arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name
e192005e3f69 arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description
1cc12d10d13a ARM: zynq: Fix refcount leak in zynq_early_slcr_init
a1d42650cf29 arm64: dts: imx8m: Align SoC unique ID node unit address
61ecb2df6923 arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings
738a716d2de6 arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k
a7d6e757169f arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up
795a9a93ed8d arm64: dts: qcom: qcs404: use symbol names for PCIe resets
10fcdad2b9f3 ARM: OMAP2+: Fix memory leak in realtime_counter_init()
e2f62d8302bb powerpc/mm: Rearrange if-else block to avoid clang warning
3959316f8ceb HID: asus: use spinlock to safely schedule workers
d2ce7b6f3ae4 HID: asus: use spinlock to protect concurrent accesses
(From OE-Core rev: d9f73959645060982bcec6729cb8dfd511ab8de0)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7be1bc5ce77b31bb634bd3572d8553cad127f38e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating to the latest korg -stable release that comprises
the following commits:
d9b4a0c83a2d Linux 5.15.98
937c15e27a63 io_uring: ensure that io_init_req() passes in the right issue_flags
bf7123dd26a0 Linux 5.15.97
cf7f9cd50013 io_uring: add missing lock in io_get_file_fixed
77358093331e USB: core: Don't hold device lock while reading the "descriptors" sysfs file
3b24c980dc07 usb: gadget: u_serial: Add null pointer check in gserial_resume
2d72795ccde2 USB: serial: option: add support for VW/Skoda "Carstick LTE"
02190d23b731 usb: dwc3: pci: add support for the Intel Meteor Lake-M
cc09a7d5a6a1 scripts/tags.sh: fix incompatibility with PCRE2
1aee4ab2c107 scripts/tags.sh: Invoke 'realpath' via 'xargs'
06740b433d9d vc_screen: don't clobber return value in vcs_read
e7f460696340 net: Remove WARN_ON_ONCE(sk->sk_forward_alloc) from sk_stream_kill_queues().
16d319ec18b0 bpf: bpf_fib_lookup should not return neigh in NUD_FAILED state
6dd1de27d771 staging: mt7621-dts: change palmbus address to lower case
07f0c6f9c357 x86/cpu: Add Lunar Lake M
e1b09162f268 HID: core: Fix deadloop in hid_apply_multiplier.
f1ee47003075 neigh: make sure used and confirmed times are valid
2590058fb058 IB/hfi1: Assign npages earlier
4534ea429ed8 ASoC: rt715-sdca: fix clock stop prepare timeout issue
e430f058d90c btrfs: send: limit number of clones and allocated memory size
d454a7212e17 ACPI: NFIT: fix a potential deadlock during NFIT teardown
435e8fabd19a HID: elecom: add support for TrackBall 056E:011C
6bd2f1754393 ARM: dts: rockchip: add power-domains property to dp node on rk3288
839a9c0047a1 arm64: dts: rockchip: drop unused LED mode property from rk3328-roc-cc
503e3d93cf35 Fix XFRM-I support for nested ESP tunnels
765b3a0e0a81 ionic: refactor use of ionic_rx_fill()
(From OE-Core rev: 10736085c3e47c23c377bd68623b0753557e3a06)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4961d295599b1c3822752c42891006a49aea8ff3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bumping lttng-modules to version v2.13.9-4-g12f43cab, which comprises the following commits:
da1f5a26 Version 2.13.9
dc2d1294 fix: jbd2: use the correct print format (v5.4.229)
d04c1211 fix: jbd2 upper bound for v5.10.163
4b8864fc fix: jbd2: use the correct print format (v5.10.163)
69d3aa79 fix: btrfs: move accessor helpers into accessors.h (v6.2)
We drop our previously backported commits as well, since they are part
of the release.
(From OE-Core rev: 8864e50267327b474806de8b12ec60137a3cf17b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 79d8e93adde07ff3a4a239d66649ee566a2437d6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating to the latest korg -stable release that comprises
the following commits:
9fd42770b507 Linux 5.10.172
da24142b1ef9 io_uring: ensure that io_init_req() passes in the right issue_flags
a25aa776b0c4 Linux 5.10.171
08681391b84d io_uring: add missing lock in io_get_file_fixed
218925bfd5d1 USB: core: Don't hold device lock while reading the "descriptors" sysfs file
c5360eec648b usb: gadget: u_serial: Add null pointer check in gserial_resume
cebcd4300af9 USB: serial: option: add support for VW/Skoda "Carstick LTE"
87c647def389 drm/virtio: Correct drm_gem_shmem_get_sg_table() error handling
0a4181b23acf drm/virtio: Fix NULL vs IS_ERR checking in virtio_gpu_object_shmem_init
a401ef0557da scripts/tags.sh: fix incompatibility with PCRE2
65c07e15f2ce scripts/tags.sh: Invoke 'realpath' via 'xargs'
1c44109c3094 md: Flush workqueue md_rdev_misc_wq in md_alloc()
80653a6e6e28 vc_screen: don't clobber return value in vcs_read
3e4bbd1f38a8 net: Remove WARN_ON_ONCE(sk->sk_forward_alloc) from sk_stream_kill_queues().
a2957adbf3f5 bpf: bpf_fib_lookup should not return neigh in NUD_FAILED state
75fbe1e43505 HID: core: Fix deadloop in hid_apply_multiplier.
2fd5059f4fdf neigh: make sure used and confirmed times are valid
065f6a663392 IB/hfi1: Assign npages earlier
6195cea4c738 btrfs: send: limit number of clones and allocated memory size
8e833fe47f45 ACPI: NFIT: fix a potential deadlock during NFIT teardown
abbf52efadeb ARM: dts: rockchip: add power-domains property to dp node on rk3288
1f3a209b2f4e arm64: dts: rockchip: drop unused LED mode property from rk3328-roc-cc
887975834dea Fix XFRM-I support for nested ESP tunnels
(From OE-Core rev: 2f13f3e02efb83e9d935efac71bbf0b750420d23)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating to the latest korg -stable release that comprises
the following commits:
22d269bb30db Linux 5.10.170
12e3119a8762 bpf: add missing header file include
c44e96d6c31a Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child qdiscs"
1ba10d3640e9 ext4: Fix function prototype mismatch for ext4_feat_ktype
01e652f03a86 audit: update the mailing list in MAINTAINERS
e1dc3f102a81 wifi: mwifiex: Add missing compatible string for SD8787
4311ad1e7654 nbd: fix possible overflow on 'first_minor' in nbd_dev_add()
2e0c3e43ebb9 nbd: fix possible overflow for 'first_minor' in nbd_dev_add()
fd8107206a67 nbd: fix max value for 'first_minor'
f3f6b33b77ba Revert "Revert "block: nbd: add sanity check for first_minor""
3b6ce54cfa2c uaccess: Add speculation barrier to copy_from_user()
267f62b7f3ee mac80211: mesh: embedd mesh_paths and mpp_paths into ieee80211_if_mesh
3d743415c6fb drm/i915/gvt: fix double free bug in split_2MB_gtt_entry
b50f6fc9d79f powerpc: dts: t208x: Disable 10G on MAC1 and MAC2
6a3fb887da7d can: kvaser_usb: hydra: help gcc-13 to figure out cmd_len
1b0cafaae888 KVM: VMX: Execute IBPB on emulated VM-exit when guest has IBRS
c41d856b7064 KVM: SVM: Skip WRMSR fastpath on VM-Exit if next RIP isn't valid
a7ef904b68f0 KVM: x86: Fail emulation during EMULTYPE_SKIP on any exception
119e75d8fe4d random: always mix cycle counter in add_latent_entropy()
2da1f9508579 clk: mxl: syscon_node_to_regmap() returns error pointers
1423d88753ed powerpc: dts: t208x: Mark MAC1 and MAC2 as 10G
caa47d91738f clk: mxl: Fix a clk entry by adding relevant flags
9dcf2ca5d301 clk: mxl: Add option to override gate clks
3789e905f488 clk: mxl: Remove redundant spinlocks
072eb5fbd69c clk: mxl: Switch from direct readl/writel based IO to regmap based IO
051d73eb9ab4 wifi: rtl8xxxu: gen2: Turn on the rate control
eb9236d74c8c drm/etnaviv: don't truncate physical page address
2ae73796985b Linux 5.10.169
e95381034519 nvmem: core: fix return value
c00867afe4ef net: sched: sch: Fix off by one in htb_activate_prios()
31167df7c21f ASoC: SOF: Intel: hda-dai: fix possible stream_tag leak
6af2872cc625 alarmtimer: Prevent starvation by small intervals and SIG_IGN
6416c2108ba5 kvm: initialize all of the kvm_debugregs structure before sending it to userspace
4fe9950815e1 net/sched: tcindex: search key must be 16 bits
b452e20b95d7 i40e: Add checking for null for nlmsg_find_attr()
5dfa51dbfc12 net/sched: act_ctinfo: use percpu stats
015ea70d72c3 flow_offload: fill flags to action structure
1d76a8444874 drm/i915/gen11: Wa_1408615072/Wa_1407596294 should be on GT list
210e6011806a drm/i915/gen11: Moving WAs to icl_gt_workarounds_init()
0ee5ed0126a2 nilfs2: fix underflow in second superblock position calculations
7546fb3554df ipv6: Fix tcp socket connection with DSCP.
5337bb508ba2 ipv6: Fix datagram socket connection with DSCP.
1a4a5fd652dd ixgbe: add double of VLAN header when computing the max MTU
7ff0fdba8229 net: mpls: fix stale pointer if allocation fails during device rename
2dd914105a1e net: stmmac: Restrict warning on disabling DMA store and fwd mode
7eb8ebb5e83f bnxt_en: Fix mqprio and XDP ring checking logic
cc7ca4871a92 net: stmmac: fix order of dwmac5 FlexPPS parametrization sequence
c0f65ee0a332 net: openvswitch: fix possible memory leak in ovs_meter_cmd_set()
525bdcb0838d net/usb: kalmia: Don't pass act_len in usb_bulk_msg error path
9d68bfa2205d dccp/tcp: Avoid negative sk_forward_alloc by ipv6_pinfo.pktoptions.
eb8e9d8572d1 net/sched: tcindex: update imperfect hash filters respecting rcu
747a17e25aec sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list
a5c51e0c3202 net: bgmac: fix BCM5358 support by setting correct flags
23974088fd6a i40e: add double of VLAN header when computing the max MTU
152a5f32ac9e ixgbe: allow to increase MTU to 3K with XDP enabled
3a63392c19e9 revert "squashfs: harden sanity check in squashfs_read_xattr_id_table"
e2bf52ff159d net: Fix unwanted sign extension in netdev_stats_to_stats64()
1933be146c96 Revert "mm: Always release pages to the buddy allocator in memblock_free_late()."
9662320238b9 hugetlb: check for undefined shift on 32 bit architectures
ec9c7aa08819 sched/psi: Fix use-after-free in ep_remove_wait_queue()
7ed5c147220f ALSA: hda/realtek - fixed wrong gpio assigned
59d5c80ce538 ALSA: hda/conexant: add a new hda codec SN6180
0b3edcb24bd8 mmc: mmc_spi: fix error handling in mmc_spi_probe()
30716d9f0fa1 mmc: sdio: fix possible resource leaks in some error paths
73ad25c50d3c mmc: jz4740: Work around bug on JZ4760(B)
eaba3f9b672c netfilter: nft_tproxy: restrict to prerouting hook
6618b0dcf265 ovl: remove privs in ovl_fallocate()
f6f94837d92f ovl: remove privs in ovl_copyfile()
645df4047bd6 s390/signal: fix endless loop in do_signal
c261f798f7ba aio: fix mremap after fork null-deref
2dcb474af1d5 nvmem: core: fix registration vs use race
23676ecd2eb3 nvmem: core: fix cleanup after dev_set_name()
89991ededcb5 nvmem: core: remove nvmem_config wp_gpio
a19a0f67dbb8 nvmem: core: add error handling for dev_set_name
25f65c83f5f7 platform/x86: touchscreen_dmi: Add Chuwi Vi8 (CWI501) DMI match
ecf5b49df38f nvme-fc: fix a missing queue put in nvmet_fc_ls_create_association
55dbd6f4ea95 s390/decompressor: specify __decompress() buf len to avoid overflow
90fcf55d83b2 net: sched: sch: Bounds check priority
614a58e00d7b net: stmmac: do not stop RX_CLK in Rx LPI state for qcs404 SoC
aa84a8cc1b53 net/rose: Fix to not accept on connected socket
37bb61763d9f tools/virtio: fix the vringh test for virtio ring changes
3ec44268e29c ASoC: cs42l56: fix DT probe
7fc4e7191eae ALSA: hda: Do not unset preset when cleaning up codec
490fcbc7b5f6 selftests/bpf: Verify copy_register_state() preserves parent/live fields
7d3a5ec57975 ASoC: Intel: sof_rt5682: always set dpcm_capture for amplifiers
(From OE-Core rev: 5ea52e8cbb054de807caee8f7d82840af181f8a5)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating to the latest korg -stable release that comprises
the following commits:
707c48210a53 Linux 5.10.168
0a626e27f984 Fix page corruption caused by racy check in __free_pages
0ef2490a876b arm64: dts: meson-axg: Make mmc host controller interrupts level-sensitive
5bfc8f09619a arm64: dts: meson-g12-common: Make mmc host controller interrupts level-sensitive
809f4acb7f01 arm64: dts: meson-gx: Make mmc host controller interrupts level-sensitive
8eee3521bca7 riscv: Fixup race condition on PG_dcache_clean in flush_icache_pte
6ff8b4825392 ceph: flush cap releases when the session is flushed
4f518a4a79bd usb: typec: altmodes/displayport: Fix probe pin assign check
f25fa93e5236 usb: core: add quirk for Alcor Link AK9563 smartcard reader
dd965ad39de4 btrfs: free device in btrfs_close_devices for a single device filesystem
1be271c52bf3 net: USB: Fix wrong-direction WARNING in plusb.c
2b693fe3f760 cifs: Fix use-after-free in rdata->read_into_pages()
bbc850904457 pinctrl: intel: Restore the pins that used to be in Direct IRQ mode
4863f46ddaf9 spi: dw: Fix wrong FIFO level setting for long xfers
6e2a0521e4e8 pinctrl: single: fix potential NULL dereference
61f8a493c076 pinctrl: aspeed: Fix confusing types in return value
ef3edede7b73 ALSA: pci: lx6464es: fix a debug loop
3914b71dad5a selftests: forwarding: lib: quote the sysctl values
c53f34ec3fbf rds: rds_rm_zerocopy_callback() use list_first_entry()
3eb04ef27811 net/mlx5: fw_tracer, Zero consumer index when reloading the tracer
fac1fb80088a net/mlx5: fw_tracer, Clear load bit when freeing string DBs buffers
703c3efa4b0b net/mlx5e: IPoIB, Show unknown speed instead of error
896bd85688b4 net: mscc: ocelot: fix VCAP filters not matching on MAC with "protocol 802.1Q"
1ad4112c9fcf ice: Do not use WQ_MEM_RECLAIM flag for workqueue
34a5af788ed4 uapi: add missing ip/ipv6 header dependencies for linux/stddef.h
4259a4082772 ionic: clean interrupt before enabling queue to avoid credit race
07097ad30b36 net: phy: meson-gxl: use MMD access dummy stubs for GXL, internal PHY
cafa2ad4f1d7 bonding: fix error checking in bond_debug_reregister()
30fdf660356f xfrm: fix bug with DSCP copy to v6 from v4 tunnel
491b7a5fc8e2 RDMA/usnic: use iommu_map_atomic() under spin_lock()
b1afb666c329 IB/IPoIB: Fix legacy IPoIB due to wrong number of queues
a893cc644812 xfrm/compat: prevent potential spectre v1 gadget in xfrm_xlate32_attr()
79b595d95914 IB/hfi1: Restore allocated resources on failed copyout
3797e94c1992 xfrm: compat: change expression for switch in xfrm_xlate64
bc9771cd6398 can: j1939: do not wait 250 ms if the same addr was already claimed
edaf5c718314 of/address: Return an error when no valid dma-ranges are found
b7d5fa8052ad tracing: Fix poll() and select() do not work on per_cpu trace_pipe and trace_pipe_raw
35452bf986ab ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro 360
e1646e2be956 ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control()
1c6576239906 ALSA: hda/realtek: Add Positivo N14KP6-TG
f1fd16cd9753 btrfs: zlib: zero-initialize zlib workspace
a1406d5aa393 btrfs: limit device extents to the device size
dbe5a11954d8 migrate: hugetlb: check for hugetlb shared PMD in node migration
97a5104d640d mm/migration: return errno when isolate_huge_page failed
91ad3104b211 iio:adc:twl6030: Enable measurement of VAC
e4c3ea9b6045 bpf: Do not reject when the stack read size is different from the tracked scalar size
34ec4c7831c4 nvmem: core: Fix a conflict between MTD and NVMEM on wp-gpios property
b2e412879595 wifi: brcmfmac: Check the count value of channel spec to prevent out-of-bounds reads
914e38f02a49 f2fs: fix to do sanity check on i_extra_isize in is_alive()
3931014367ef fbdev: smscufx: fix error handling code in ufx_usb_probe
6c8a2c67a9d6 serial: 8250_dma: Fix DMA Rx rearm race
967e726e57c3 serial: 8250_dma: Fix DMA Rx completion race
1fd7a6a57968 nvmem: core: fix cell removal on error
bb875f0a34e7 nvmem: core: initialise nvmem->id early
b591abac78e2 drm/i915: Fix potential bit_17 double-free
5c4d4a83bf1a Squashfs: fix handling and sanity checking of xattr_ids count
30187be29052 mm/swapfile: add cond_resched() in get_swap_pages()
639b40007a48 fpga: stratix10-soc: Fix return value check in s10_ops_write_init()
0139d61d28a2 x86/debug: Fix stack recursion caused by wrongly ordered DR7 accesses
556959327b19 mm: hugetlb: proc: check for hugetlb shared PMD in /proc/PID/smaps
50d31309c999 riscv: disable generation of unwind tables
71a4f39f99e8 parisc: Wire up PTRACE_GETREGS/PTRACE_SETREGS for compat case
2982b473d764 parisc: Fix return code of pdc_iodc_print()
170e1cc3c00f nvmem: qcom-spmi-sdam: fix module autoloading
f11330b7ba51 iio: imu: fxos8700: fix MAGN sensor scale and unit
5b30998c7f05 iio: imu: fxos8700: remove definition FXOS8700_CTRL_ODR_MIN
42e34a08394a iio: imu: fxos8700: fix failed initialization ODR mode assignment
ab976ecd0430 iio: imu: fxos8700: fix incorrect ODR mode readback
9d6502ed6314 iio: imu: fxos8700: fix swapped ACCEL and MAGN channels readback
aff4add60998 iio: imu: fxos8700: fix map label of channel type to MAGN sensor
9545ce720ab1 iio: imu: fxos8700: fix IMU data bits returned to user space
6d43eddc567b iio: imu: fxos8700: fix incomplete ACCEL and MAGN channels readback
f7d996c953bf iio: imu: fxos8700: fix ACCEL measurement range selection
11ac43f7631e iio:adc:twl6030: Enable measurements of VUSB, VBAT and others
5602f6a244ab iio: adc: berlin2-adc: Add missing of_node_put() in error path
33483172b35c iio: hid: fix the retval in accel_3d_capture_sample
55cf65461b20 efi: Accept version 2 of memory attributes table
8fb515c8b127 ALSA: hda/realtek: Add Acer Predator PH315-54
192fd121d04f watchdog: diag288_wdt: fix __diag288() inline assembly
5bcdcf437d3f watchdog: diag288_wdt: do not use stack buffers for hardware data
0c76eddc1f89 net: qrtr: free memory on error path in radix_tree_insert()
28d190882ba5 fbcon: Check font dimension limits
658e0d99dbfb Input: i8042 - add Clevo PCX0DX to i8042 quirk table
a82d49360496 Input: i8042 - add TUXEDO devices to i8042 quirk tables
04d99a0a966a Input: i8042 - merge quirk tables
ab85074c308f Input: i8042 - move __initconst to fix code styling warning
55515d7d8743 vc_screen: move load of struct vc_data pointer in vcs_read() to avoid UAF
434a36ed64ac usb: gadget: f_fs: Fix unbalanced spinlock in __ffs_ep0_queue_wait
6e5565aa0047 usb: dwc3: qcom: enable vbus override when in OTG dr-mode
1ca8629505fd usb: dwc3: dwc3-qcom: Fix typo in the dwc3 vbus override API
30d0e2cf9900 iio: adc: stm32-dfsdm: fill module aliases
4bbc34401d97 net/x25: Fix to not accept on connected socket
2b1e8e20b984 platform/x86: dell-wmi: Add a keymap for KEY_MUTE in type 0x0010 table
ac4d9c86e9f5 i2c: rk3x: fix a bunch of kernel-doc warnings
9758ffe1c07b scsi: iscsi_tcp: Fix UAF during login when accessing the shost ipaddress
1b28bf868fce scsi: target: core: Fix warning on RT kernels
4e66ba3cfb4f i2c: mxs: suppress probe-deferral error message
d09b0bf9ffd3 qede: execute xdp_do_flush() before napi_complete_done()
8aba483f7034 qede: add netpoll support for qede driver
87d4ff18738f efi: fix potential NULL deref in efi_mem_reserve_persistent
70154489f531 net: openvswitch: fix flow memory leak in ovs_flow_cmd_new
4fb430c69878 virtio-net: Keep stop() to follow mirror sequence of open()
812236bb6a89 selftests: net: udpgso_bench_tx: Cater for pending datagrams zerocopy benchmarking
9e7e2887ccb8 selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs
4babbd1f594d selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided
a4a493e599e3 selftests: net: udpgso_bench_rx: Fix 'used uninitialized' compiler warning
4d9c9627161a ata: libata: Fix sata_down_spd_limit() when no link speed is reported
b6d44072117b can: j1939: fix errant WARN_ON_ONCE in j1939_session_deactivate
6362b861704f igc: return an error if the mac type is unknown in igc_ptp_systim_to_hwtstamp()
98c93a01608f net: phy: meson-gxl: Add generic dummy stubs for MMD register access
de2785aa3448 squashfs: harden sanity check in squashfs_read_xattr_id_table
f53c6e7e77df netfilter: br_netfilter: disable sabotage_in hook after first suppression
dd6991251a13 netrom: Fix use-after-free caused by accept on already connected socket
362a2f5531dc net: phy: dp83822: Fix null pointer access on DP83825/DP83826 devices
6824169e7488 sfc: correctly advertise tunneled IPv6 segmentation
539fc3ef5104 virtio-net: execute xdp_do_flush() before napi_complete_done()
63d1c4edbfc1 fix "direction" argument of iov_iter_kvec()
0c67fb777508 fix iov_iter_bvec() "direction" argument
b5437e0ba9e7 READ is "data destination", not source...
fefb47a8331c WRITE is "data source", not destination...
f9815b303e61 vhost/net: Clear the pending messages when the backend is removed
de990d157179 scsi: Revert "scsi: core: map PQ=1, PDT=other values to SCSI_SCAN_TARGET_PRESENT"
d08a9b0ad211 drm/vc4: hdmi: make CEC adapter name unique
8c6b46d426ed arm64: dts: imx8mm: Fix pad control for UART1_DTE_RX
9bd6074e1872 bpf, sockmap: Check for any of tcp_bpf_prots when cloning a listener
36dbb8daf08a bpf: Fix to preserve reg parent/live fields when copying range info
8de8c4a25ed8 bpf: Support <8-byte scalar spill and refill
2b557fa635e7 ALSA: hda/via: Avoid potential array out-of-bound in add_secret_dac_path()
1b1f56cc0eaa bpf: Fix a possible task gone issue with bpf_send_signal[_thread]() helpers
2d0f276d504f powerpc/imc-pmu: Revert nest_init_lock to being a mutex
9ff2bebc2cea bpf: Fix incorrect state pruning for <8B spill/fill
60c27e0e37c8 bus: sunxi-rsb: Fix error handling in sunxi_rsb_init()
d5a2dcee53fa firewire: fix memory leak for payload of request subaction to IEC 61883-1 FCP region
a5acb54d4066 Linux 5.10.167
6446369fb9f0 net: fix NULL pointer in skb_segment_list
0f9db1209f59 Bluetooth: fix null ptr deref on hci_sync_conn_complete_evt
d744c03c04a7 ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel systems
bd0050b7ffa8 dmaengine: imx-sdma: Fix a possible memory leak in sdma_transfer_init
19c9a2ba4699 blk-cgroup: fix missing pd_online_fn() while activating policy
a1c0263f1eb4 bpf: Skip task with pid=1 in send_signal_common()
f18546863123 arm64: dts: imx8mq-thor96: fix no-mmc property for SDHCI
a26cef004146 ARM: dts: vf610: Fix pca9548 i2c-mux node names
67a8beb8544e ARM: dts: imx: Fix pca9547 i2c-mux node name
(From OE-Core rev: d5eaf4d5a3a4ba24d8ebf84c84bf454c7e5fa02f)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating to the latest korg -stable release that comprises
the following commits:
8d823aaa220e Linux 5.10.166
19f1f99be371 clk: Fix pointer casting to prevent oops in devm_clk_release()
f84c9b72fb20 perf/x86/amd: fix potential integer overflow on shift of a int
743435cd1705 netfilter: conntrack: unify established states for SCTP paths
e284c273dbb4 x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL
2eca102b350f block: fix and cleanup bio_check_ro
7fe4fab87061 Revert "selftests/ftrace: Update synthetic event syntax errors"
032a7d5ff519 nfsd: Ensure knfsd shuts down when the "nfsd" pseudofs is unmounted
8fe3e574b3ac nouveau: explicitly wait on the fence in nouveau_bo_move_m2mf
9f3dd454fea5 Revert "Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI mode"
230be65a18f8 tools: gpio: fix -c option of gpio-event-mon
7ff8128bb116 net: mdio-mux-meson-g12a: force internal PHY off on mux switch
62a0806eb4d2 net/tg3: resolve deadlock in tg3_reset_task() during EEH
e9c1b1e1a00b thermal: intel: int340x: Add locking to int340x_thermal_get_trip_type()
3af20f63212d net: ravb: Fix possible hang if RIS2_QFF1 happen
6ef652f35dcf sctp: fail if no bound addresses can be used for a given scope
cf9a2ce0383e net/sched: sch_taprio: do not schedule in taprio_reset()
7de16d75b20a netrom: Fix use-after-free of a listening socket.
498584ccf46c netfilter: conntrack: fix vtag checks for ABORT/SHUTDOWN_COMPLETE
7f9828fb1f68 ipv4: prevent potential spectre v1 gadget in fib_metrics_match()
34c6142f0df9 ipv4: prevent potential spectre v1 gadget in ip_metrics_convert()
870a565bd6fe netlink: annotate data races around sk_state
8583f52c23c3 netlink: annotate data races around dst_portid and dst_group
eccb532adabc netlink: annotate data races around nlk->portid
0308b7dfea6f netfilter: nft_set_rbtree: skip elements in transaction from garbage collection
4aacf3d78424 netfilter: nft_set_rbtree: Switch to node list walk for overlap detection
d4c008f3b7f7 net: fix UaF in netns ops registration error path
539ca5dcbc91 netlink: prevent potential spectre v1 gadgets
ed173f77fd28 i2c: designware: use casting of u64 in clock multiplication to avoid overflow
8949ef3a7a0c i2c: designware: Use DIV_ROUND_CLOSEST() macro
8ebc2efcb6d6 units: Add SI metric prefix definitions
974aaf11804f units: Add Watt units
76d9ebb7f0bc EDAC/qcom: Do not pass llcc_driv_data as edac_device_ctl_info's pvt_info
511f6c7c40b0 EDAC/device: Respect any driver-supplied workqueue polling value
0cb922cef7e9 ARM: 9280/1: mm: fix warning on phys_addr_t to void pointer assignment
98d85586aace thermal: intel: int340x: Protect trip temperature from concurrent updates
76c5640737b8 KVM: x86/vmx: Do not skip segment attributes if unusable bit is set
e037baee16e0 cifs: Fix oops due to uncleared server->smbd_conn in reconnect
c42a6e687060 ftrace/scripts: Update the instructions for ftrace-bisect.sh
886aa449235f trace_events_hist: add check for return value of 'create_hist_field'
de3930a4883d tracing: Make sure trace_printk() can output as soon as it can be used
083b3dda86f8 module: Don't wait for GOING modules
ce3aa7694627 scsi: hpsa: Fix allocation size for scsi_host_alloc()
6da7055826a1 xhci: Set HCD flag to defer primary roothub registration
1d580d3e1311 Bluetooth: hci_sync: cancel cmd_timer if hci_open failed
b98a8b731bd2 exit: Use READ_ONCE() for all oops/warn limit reads
53f177b50449 docs: Fix path paste-o for /sys/kernel/warn_count
b0bd5dcfa608 panic: Expose "warn_count" to sysfs
8c99d4c4c192 panic: Introduce warn_limit
55eba18262cb panic: Consolidate open-coded panic_on_warn checks
530cdae5c2b2 exit: Allow oops_limit to be disabled
7cffbcd68f1c exit: Expose "oops_count" to sysfs
de586785b981 exit: Put an upper limit on how often we can oops
191a3b17dd9b panic: Separate sysctl logic from CONFIG_SMP
1b9a33a94b9c ia64: make IA64_MCA_RECOVERY bool instead of tristate
6d971830da31 csky: Fix function name in csky_alignment() and die()
648d8b8c4938 h8300: Fix build errors from do_exit() to make_task_dead() transition
63d77c559678 hexagon: Fix function name in die()
b2c178f31162 objtool: Add a missing comma to avoid string concatenation
d9c740c765e5 exit: Add and use make_task_dead.
715a63588f56 kasan: no need to unset panic_on_warn in end_report()
b857b42a8c09 ubsan: no need to unset panic_on_warn in ubsan_epilogue()
590ba6fee095 panic: unset panic_on_warn inside panic()
e97ec099d7fd kernel/panic: move panic sysctls to its own file
e6226917f4cf sysctl: add a new register_sysctl_init() interface
c4097e844a6e fs: reiserfs: remove useless new_opts in reiserfs_remount
1f6768143bf7 x86: ACPI: cstate: Optimize C3 entry on AMD CPUs
5fb884d748e4 netfilter: conntrack: do not renew entry stuck in tcp SYN_SENT state
a7345145e7bd Revert "selftests/bpf: check null propagation only neither reg is PTR_TO_BTF_ID"
20a02bc84508 lockref: stop doing cpu_relax in the cmpxchg loop
f8ddf7dbf5e7 platform/x86: asus-nb-wmi: Add alternate mapping for KEY_SCREENLOCK
9968f9a86251 platform/x86: touchscreen_dmi: Add info for the CSL Panther Tab HD
52249c2168af scsi: hisi_sas: Set a port invalid only if there are no devices attached when refreshing port id
71bd134c4e9e KVM: s390: interrupt: use READ_ONCE() before cmpxchg()
300da569a128 spi: spidev: remove debug messages that access spidev->spi without locking
a84def9b108a ASoC: fsl-asoc-card: Fix naming of AC'97 CODEC widgets
d9a0752a6a11 ASoC: fsl_ssi: Rename AC'97 streams to avoid collisions with AC'97 CODEC
00f230161187 cpufreq: armada-37xx: stop using 0 as NULL pointer
2ca345d19cbd s390/debug: add _ASM_S390_ prefix to header guard
ae108a5fc929 drm: Add orientation quirk for Lenovo ideapad D330-10IGL
96f4899a3810 ASoC: fsl_micfil: Correct the number of steps on SX controls
3b154d5204ff kcsan: test: don't put the expect array on the stack
b75e9fc402c4 cpufreq: Add Tegra234 to cpufreq-dt-platdev blocklist
6bc564f3fec0 scsi: iscsi: Fix multiple iSCSI session unbind events sent to userspace
d79e700680f9 tcp: fix rate_app_limited to default to 1
a84240df7079 net: dsa: microchip: ksz9477: port map correction in ALU table entry register
704a423c9379 driver core: Fix test_async_probe_init saves device in wrong array
216f35db6ec6 w1: fix WARNING after calling w1_process()
8e5be0ae5506 w1: fix deadloop in __w1_remove_master_device()
ddf16dae65d3 tcp: avoid the lookup process failing to get sk in ehash table
5f10f7efe0fc nvme-pci: fix timeout request state check
98519ed69113 dmaengine: xilinx_dma: call of_node_put() when breaking out of for_each_child_of_node()
28fc6095da22 HID: betop: check shape of output reports
16791d5a7a9a l2tp: prevent lockdep issue in l2tp_tunnel_register()
f96b2f690887 net: macb: fix PTP TX timestamp failure due to packet padding
42ecd72f02cd dmaengine: Fix double increment of client_count in dma_chan_get()
1e97e2e08e79 drm/panfrost: fix GENERIC_ATOMIC64 dependency
31f63c62a8e8 net: mlx5: eliminate anonymous module_init & module_exit
4b3b5cc1a7dc usb: gadget: f_fs: Ensure ep0req is dequeued before free_request
6dd9ea05534f usb: gadget: f_fs: Prevent race during ffs_ep0_queue_wait
55be77aa8974 HID: revert CHERRY_MOUSE_000C quirk
34f11949938b net: stmmac: fix invalid call to mdiobus_get_phy()
20fd4598762e HID: check empty report_list in bigben_probe()
5dc3469a1170 HID: check empty report_list in hid_validate_values()
4bc5f1f6bc94 net: mdio: validate parameter addr in mdiobus_get_phy()
67866b1e0ab9 net: usb: sr9700: Handle negative len
2d77e5c0ad79 l2tp: close all race conditions in l2tp_tunnel_register()
76c640d6a1e8 l2tp: convert l2tp_tunnel_list to idr
5b209b8c99d4 l2tp: Don't sleep and disable BH under writer-side sk_callback_lock
e34a965f771f l2tp: Serialize access to sk_user_data with sk_callback_lock
c60fe70078d6 net/sched: sch_taprio: fix possible use-after-free
802fd7623e9e wifi: rndis_wlan: Prevent buffer overflow in rndis_query_oid
1af8071bd08e gpio: mxc: Always set GPIOs used as interrupt source to INPUT mode
613020d0489e net: wan: Add checks for NULL for utdm in undo_uhdlc_init and unmap_si_regs
ad1baab3a5c0 net: nfc: Fix use-after-free in local_cleanup()
2a0156a4aaea phy: rockchip-inno-usb2: Fix missing clk_disable_unprepare() in rockchip_usb2phy_power_on()
da75dec7c661 bpf: Fix pointer-leak due to insufficient speculative store bypass mitigation
f351af45e203 amd-xgbe: Delay AN timeout during KR training
a65a8727a2fe amd-xgbe: TX Flow Ctrl Registers are h/w ver dependent
aa8b584cec01 ARM: dts: at91: sam9x60: fix the ddr clock for sam9x60
fa566549a152 phy: ti: fix Kconfig warning and operator precedence
b18490138dc6 PM: AVS: qcom-cpr: Fix an error handling path in cpr_probe()
39ab0fc49842 affs: initialize fsdata in affs_truncate()
f6fa12fbb17c IB/hfi1: Remove user expected buffer invalidate race
6ce4382bd137 IB/hfi1: Immediately remove invalid memory from hardware
6dd8136fd1b3 IB/hfi1: Fix expected receive setup error exit issues
ee474dd66e82 IB/hfi1: Reserve user expected TIDs
73e5666bf30d IB/hfi1: Reject a zero-length user expected buffer
d66c1d4178c2 RDMA/core: Fix ib block iterator counter overflow
eab7a920379a tomoyo: fix broken dependency on *.conf.default
6813d8ba7dac firmware: arm_scmi: Harden shared memory access in fetch_notification
e85df1db28dc firmware: arm_scmi: Harden shared memory access in fetch_response
329fbd260352 EDAC/highbank: Fix memory leak in highbank_mc_probe()
7b4516ba56f1 HID: intel_ish-hid: Add check for ishtp_dma_tx_map
d775671dccf4 ARM: imx: add missing of_node_put()
5c1dcedd5206 arm64: dts: imx8mm-beacon: Fix ecspi2 pinmux
cccb0aea9c3f ARM: dts: imx6qdl-gw560x: Remove incorrect 'uart-has-rtscts'
6805e392f508 ARM: dts: imx7d-pico: Use 'clock-frequency'
2a3c3a01e2f0 ARM: dts: imx6ul-pico-dwarf: Use 'clock-frequency'
e57ea0c6ba7f memory: mvebu-devbus: Fix missing clk_disable_unprepare in mvebu_devbus_probe()
53f55d6e07c4 memory: atmel-sdramc: Fix missing clk_disable_unprepare in atmel_ramc_probe()
935ec78de50e clk: Provide new devm_clk helpers for prepared and enabled clocks
0b8b21c0b38f clk: generalize devm_clk_get() a bit
179624a57b78 Linux 5.10.165
e699cce29acc io_uring/rw: remove leftover debug statement
3d5f181bda25 io_uring/rw: ensure kiocb_end_write() is always called
c1a279d79e31 io_uring: fix double poll leak on repolling
ddaaadf22bea io_uring: Clean up a false-positive warning from GCC 9.3.0
8bc72b4952cf mm/khugepaged: fix collapse_pte_mapped_thp() to allow anon_vma
217721b76313 Bluetooth: hci_qca: Fixed issue during suspend
c208f1e84a67 Bluetooth: hci_qca: check for SSR triggered flag while suspend
ef11bc4bb975 Bluetooth: hci_qca: Wait for SSR completion during suspend
c392c350a042 soc: qcom: apr: Make qcom,protection-domain optional again
71e5cd1018d3 Revert "wifi: mac80211: fix memory leak in ieee80211_if_add()"
be1067427abd net/mlx5: fix missing mutex_unlock in mlx5_fw_fatal_reporter_err_work()
f6c201b4382d net/ulp: use consistent error code when blocking ULP
fc2491562a9b io_uring/net: fix fast_iov assignment in io_setup_async_msg()
89a77271d254 io_uring: io_kiocb_update_pos() should not touch file for non -1 offset
c6e3c12ff9fb tracing: Use alignof__(struct {type b;}) instead of offsetof()
03ba86bb3811 x86/fpu: Use _Alignof to avoid undefined behavior in TYPE_ALIGN
2f45b20c3999 Revert "drm/amdgpu: make display pinning more flexible (v2)"
d6544bccc196 efi: rt-wrapper: Add missing include
4012603cbd46 arm64: efi: Execute runtime services from a dedicated stack
bf1d287c1413 drm/amd/display: Fix COLOR_SPACE_YCBCR2020_TYPE matrix
75105d943d7a drm/amd/display: Calculate output_color_space after pixel encoding adjustment
a3ef53248399 drm/amd/display: Fix set scaling doesn's work
59590f50ec9d drm/i915: re-disable RC6p on Sandy Bridge
d960fff8e2c0 mei: me: add meteor lake point M DID
ae2a9dcc8caa gsmi: fix null-deref in gsmi_get_variable
a75e80d11826 serial: atmel: fix incorrect baudrate setup
5a7a04079592 dmaengine: tegra210-adma: fix global intr clear
c9da2cb968ea serial: pch_uart: Pass correct sg to dma_unmap_sg()
e924f79e67d7 dt-bindings: phy: g12a-usb3-pcie-phy: fix compatible string documentation
31132df12a93 dt-bindings: phy: g12a-usb2-phy: fix compatible string documentation
a9f2658a0192 usb-storage: apply IGNORE_UAS only for HIKSEMI MD202 on RTL9210
e92c70059178 usb: gadget: f_ncm: fix potential NULL ptr deref in ncm_bitrate()
06600ae7e069 usb: gadget: g_webcam: Send color matching descriptor per frame
6107a8f15c0f usb: typec: altmodes/displayport: Fix pin assignment calculation
d26f38d16fcb usb: typec: altmodes/displayport: Add pin assignment helper
9c58f1e9e693 usb: host: ehci-fsl: Fix module alias
3dc896db027b USB: serial: cp210x: add SCALANCE LPE-9000 device id
856e4b5e53f2 USB: gadgetfs: Fix race between mounting and unmounting
894681682dbe tty: serial: qcom-geni-serial: fix slab-out-of-bounds on RX FIFO buffer
c4ab24e3334b thunderbolt: Use correct function to calculate maximum USB3 link rate
531268a875dc cifs: do not include page data when checking signature
3bd433748571 btrfs: fix race between quota rescan and disable leading to NULL pointer deref
6ee8feca9150 mmc: sdhci-esdhc-imx: correct the tuning start tap and step setting
79819909c223 mmc: sunxi-mmc: Fix clock refcount imbalance during unbind
2eed23765b7e comedi: adv_pci1760: Fix PWM instruction handling
7efeed828c90 usb: core: hub: disable autosuspend for TI TUSB8041
b171d0d2cf1b misc: fastrpc: Fix use-after-free race condition for maps
193cd853145b misc: fastrpc: Don't remove map on creater_process and device_release
e0db5d44bc27 USB: misc: iowarrior: fix up header size for USB_DEVICE_ID_CODEMERCS_IOW100
20d0dedc7a04 staging: vchiq_arm: fix enum vchiq_status return types
a06e9ec5abde USB: serial: option: add Quectel EM05CN modem
2f44c60bb89c USB: serial: option: add Quectel EM05CN (SG) modem
fcd49b230906 USB: serial: option: add Quectel EC200U modem
21c5b618128b USB: serial: option: add Quectel EM05-G (RS) modem
46b898f9345d USB: serial: option: add Quectel EM05-G (CS) modem
3774654f7a63 USB: serial: option: add Quectel EM05-G (GR) modem
9f8e45720e0e prlimit: do_prlimit needs to have a speculation check
96562a23cfaf xhci: Detect lpm incapable xHC USB3 roothub ports from ACPI tables
2551f8cbf2de usb: acpi: add helper to check port lpm capability using acpi _DSM
4d70a8a9ab8e xhci: Add a flag to disable USB3 lpm on a xhci root port level.
83e3a5be7475 xhci: Add update_hub_device override for PCI xHCI hosts
081105213ff6 xhci: Fix null pointer dereference when host dies
66fc1600855c usb: xhci: Check endpoint is valid before dereferencing it
8ca60d59b963 xhci-pci: set the dma max_seg_size
ea2e6286e3e8 io_uring/rw: defer fsnotify calls to task context
e90cfb969994 io_uring: do not recalculate ppos unnecessarily
ea528ecac3ae io_uring: update kiocb->ki_pos at execution time
076f872314d4 io_uring: remove duplicated calls to io_kiocb_ppos
e9c6556708d3 io_uring: ensure that cached task references are always put on exit
e0140e9da31e io_uring: fix CQ waiting timeout handling
de77faee2801 io_uring: lock overflowing for IOPOLL
78e8151f04f0 io_uring: check for valid register opcode earlier
aa4c9b3e45e2 io_uring: fix async accept on O_NONBLOCK sockets
4bc17e6381bd io_uring: allow re-poll if we made progress
f901b4bfd03e io_uring: support MSG_WAITALL for IORING_OP_SEND(MSG)
96ccba4a1a59 io_uring: add flag for disabling provided buffer recycling
aadd9b093018 io_uring: ensure recv and recvmsg handle MSG_WAITALL correctly
abdc16c8361b io_uring: improve send/recv error handling
2fd232bbd66f io_uring: don't gate task_work run on TIF_NOTIFY_SIGNAL
e84ec6e25df9 Bluetooth: hci_qca: Fix driver shutdown on closed serdev
1ab0098333f5 Bluetooth: hci_qca: Wait for timeout during suspend
413638f61501 drm/i915/gt: Reset twice
cab2123567af ALSA: hda/realtek - Turn on power early
5822baf9501a efi: fix userspace infinite retry read efivars after EFI runtime services page fault
712bd74eccb9 nilfs2: fix general protection fault in nilfs_btree_insert()
03bf73e09ad6 zonefs: Detect append writes at invalid locations
20d0a6d17e85 Add exception protection processing for vd in axi_chan_handle_err function
187523fa7c2d wifi: mac80211: sdata can be NULL during AMPDU start
2d1fd99e8e12 wifi: brcmfmac: fix regression for Broadcom PCIe wifi devices
72009139a661 f2fs: let's avoid panic if extent_tree is not created
bf6c7f180131 x86/asm: Fix an assembler warning with current binutils
18bd1c9c02e6 btrfs: always report error in run_one_delayed_ref()
936b8b15a23b RDMA/srp: Move large values to a new enum for gcc13
0040e48492f3 net/ethtool/ioctl: return -EOPNOTSUPP if we have no phy stats
f7845de23f90 tools/virtio: initialize spinlocks in vring_test.c
3093027183f2 selftests/bpf: check null propagation only neither reg is PTR_TO_BTF_ID
c7c36bb6eafd pNFS/filelayout: Fix coalescing test for single DS
2cbd815970f8 btrfs: fix trace event name typo for FLUSH_DELAYED_REFS
(From OE-Core rev: 4696c21e0b6f096847559dff4ac71d0cb91fda57)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating to the latest korg -stable release that comprises
the following commits:
3a9f1b907bc4 Linux 5.10.164
74985c575767 Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout"
a88a0d16e18f io_uring/io-wq: only free worker if it was allocated for creation
b912ed1363b3 io_uring/io-wq: free worker if task_work creation is canceled
68bcd0638570 drm/virtio: Fix GEM handle creation UAF
4ca71bc0e199 efi: fix NULL-deref in init error path
057f5ddfbc13 arm64: cmpxchg_double*: hazard against entire exchange variable
9a5fd0844e7f arm64: atomics: remove LL/SC trampolines
28840e46eaaf arm64: atomics: format whitespace consistently
5dac4c7212a7 x86/resctrl: Fix task CLOSID/RMID update race
446c7251f007 x86/resctrl: Use task_curr() instead of task_struct->on_cpu to prevent unnecessary IPI
196c6f0c3e21 KVM: x86: Do not return host topology information from KVM_GET_SUPPORTED_CPUID
0027164b24f2 Documentation: KVM: add API issues section
caaea2ab6b6d iommu/mediatek-v1: Fix an error handling path in mtk_iommu_v1_probe()
cf38e7624179 iommu/mediatek-v1: Add error handle for mtk_iommu_probe
60806adc9be0 mm: Always release pages to the buddy allocator in memblock_free_late().
092f0c2d1f83 net/mlx5e: Don't support encap rules with gbp option
b3d47227f06f net/mlx5: Fix ptp max frequency adjustment range
453277feb41c net/sched: act_mpls: Fix warning during failed attribute validation
0ca78c99656f nfc: pn533: Wait for out_urb's completion in pn533_usb_send_frame()
92b30a27e4fa hvc/xen: lock console list traversal
14e72a56e16c octeontx2-af: Fix LMAC config in cgx_lmac_rx_tx_enable
8e2bfcfaabc3 octeontx2-af: Map NIX block from CGX connection
d9be5b57ab2c octeontx2-af: Update get/set resource count functions
0d0675bc33e6 tipc: fix unexpected link reset due to discovery messages
d83cac6c00b8 ASoC: wm8904: fix wrong outputs volume after power reactivation
d4aa749e0464 regulator: da9211: Use irq handler when ready
3ca8ef4d91ef EDAC/device: Fix period calculation in edac_device_reset_delay_period()
28b9a0e216db x86/boot: Avoid using Intel mnemonics in AT&T syntax asm
8cbeb60320ac powerpc/imc-pmu: Fix use of mutex in IRQs disabled section
4e6a70fd8404 netfilter: ipset: Fix overflow before widen in the bitmap_ip_create() function.
a3a1114aa615 xfrm: fix rcu lock in xfrm_notify_userpolicy()
091f85db4c3f ext4: fix uninititialized value in 'ext4_evict_inode'
98407a4ae34b usb: ulpi: defer ulpi_register on ulpi_read_id timeout
3d13818a9995 xhci: Prevent infinite loop in transaction errors recovery for streams
2f90fcedc5d6 xhci: move and rename xhci_cleanup_halted_endpoint()
cad965cedbc4 xhci: store TD status in the td struct instead of passing it along
9b63a80c45e9 xhci: move xhci_td_cleanup so it can be called by more functions
44c635c60f78 xhci: Add xhci_reset_halted_ep() helper function
10287d18f524 xhci: adjust parameters passed to cleanup_halted_endpoint()
aaaa7cc4aba1 xhci: get isochronous ring directly from endpoint structure
a81ace065694 xhci: Avoid parsing transfer events several times
ba20d6056b6b clk: imx: imx8mp: add shared clk gate for usb suspend clk
2b331d2137cc dt-bindings: clocks: imx8mp: Add ID for usb suspend clock
cb769960ef48 clk: imx8mp: add clkout1/2 support
85eaaa17c0a9 clk: imx8mp: Add DISP2 pixel clock
6b21077146c5 iommu/amd: Fix ill-formed ivrs_ioapic, ivrs_hpet and ivrs_acpihid options
5badda810f69 iommu/amd: Add PCI segment support for ivrs_[ioapic/hpet/acpihid] commands
ab9bb65b8519 bus: mhi: host: Fix race between channel preparation and M0 event
6c9e2c11c33c ipv6: raw: Deduct extension header length in rawv6_push_pending_frames
112df4cd2b09 ixgbe: fix pci device refcount leak
f401062d8dbd platform/x86: sony-laptop: Don't turn off 0x153 keyboard backlight during probe
785607e5e6fb drm/msm/dp: do not complete dp_aux_cmd_fifo_tx() if irq is not for aux transfer
8c71777b6a17 drm/msm/adreno: Make adreno quirks not overwrite each other
afb6063aa89f cifs: Fix uninitialized memory read for smb311 posix symlink create
51dbedee2ff3 s390/percpu: add READ_ONCE() to arch_this_cpu_to_op_simple()
bddb35526784 s390/cpum_sf: add READ_ONCE() semantics to compare and swap loops
2adc64f3e669 ASoC: qcom: lpass-cpu: Fix fallback SD line index handling
5ee3083307ef s390/kexec: fix ipl report address for kdump
d1725dbf2310 perf auxtrace: Fix address filter duplicate symbol selection
eaabceae1b70 docs: Fix the docs build with Sphinx 6.0
38c4a17c6b32 efi: tpm: Avoid READ_ONCE() for accessing the event log
c47883105cff KVM: arm64: Fix S1PTW handling on RO memslots
443b390f2cc9 ALSA: hda/realtek: Enable mute/micmute LEDs on HP Spectre x360 13-aw0xxx
550efeff989b netfilter: nft_payload: incorrect arithmetics when fetching VLAN header bits
19ff2d645f7a Linux 5.10.163
de4a20e14823 ALSA: hda - Enable headset mic on another Dell laptop with ALC3254
0ad275c139a3 ALSA: hda/hdmi: Add a HP device 0x8715 to force connect list
df02234e6b87 ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF
f8ed0a93b5d5 net/ulp: prevent ULP without clone op from entering the LISTEN status
9f7bc28a6b8a net: sched: disallow noqueue for qdisc classes
6eb02c596ec0 mptcp: use proper req destructor for IPv6
f4c7afa951ea mptcp: dedicated request sock for subflow in v6
31472f94c68f mptcp: remove MPTCP 'ifdef' in TCP SYN cookies
5aa15a8400cc mptcp: mark ops structures as ro_after_init
f5ef26276bb0 serial: fixup backport of "serial: Deassert Transmit Enable on probe in driver-specific way"
2ecf0819e441 fsl_lpuart: Don't enable interrupts too early
23ad034760dd ext4: don't set up encryption key during jbd2 transaction
d9ff5ad203b6 ext4: disable fast-commit of encrypted dir operations
5b700b9c0402 parisc: Align parisc MADV_XXX constants with all other architectures
07b3672c4090 io_uring: Fix unsigned 'res' comparison with zero in io_fixup_rw_res()
b57d7b1dcda1 efi: random: combine bootloader provided RNG seed with RNG protocol output
da20f56a3532 mbcache: Avoid nesting of cache->c_list_lock under bit locks
be01f35efa87 hfs/hfsplus: avoid WARN_ON() for sanity check, use proper error handling
1f881d9201f6 hfs/hfsplus: use WARN_ON for sanity check
434909edcae3 selftests: set the BUILD variable to absolute path
a41d63f20471 ext4: don't allow journal inode to have encrypt flag
af90f8b36d78 drm/i915/gvt: fix vgpu debugfs clean in remove
bb7c7b2c89d2 drm/i915/gvt: fix gvt debugfs destroy
bc847857fbd8 riscv: uaccess: fix type of 0 variable on error in get_user()
f64e56fb285a fbdev: matroxfb: G200eW: Increase max memory from 1 MB to 16 MB
d0c46b55d6d9 nfsd: fix handling of readdir in v4root vs. mount upcall timeout
67e39c4f4cb3 x86/bugs: Flush IBP in ib_prctl_set()
f13301a69aba nvme: fix multipath crash caused by flush request when blktrace is enabled
3f257a98e54c ASoC: Intel: bytcr_rt5640: Add quirk for the Advantech MICA-071 tablet
6df376e24569 udf: Fix extension of the last extent in the file
84b2cc7b36b7 caif: fix memory leak in cfctrl_linkup_request()
e5a05837445e drm/i915: unpin on error in intel_vgpu_shadow_mm_pin()
232ef345e5d7 usb: rndis_host: Secure rndis_query check against int overflow
2a9ee7c24b32 drivers/net/bonding/bond_3ad: return when there's no aggregator
bc6a0993bf8f perf tools: Fix resources leak in perf_data__open_dir()
ee756980e491 netfilter: ipset: Rework long task execution when adding/deleting entries
ba5d27909745 netfilter: ipset: fix hash:net,port,net hang with /0 subnet
b2c917e510e5 net: sched: cbq: dont intepret cls results when asked to drop
5f65f48516bf net: sched: atm: dont intepret cls results when asked to drop
f4a2ad100200 gpio: sifive: Fix refcount leak in sifive_gpio_probe
7ec369e215bf ceph: switch to vfs_inode_has_locks() to fix file lock bug
407710427dd5 filelock: new helper: vfs_inode_has_locks
9f0ff5de3e81 drm/meson: Reduce the FIFO lines held when AFBC is not used
ae2639cd2c8c RDMA/mlx5: Fix validation of max_rd_atomic caps for DC
106d0d33c9d1 net: phy: xgmiitorgmii: Fix refcount leak in xgmiitorgmii_probe
398e14bb735d net: amd-xgbe: add missed tasklet_kill
e3d90ca90652 net/mlx5e: Fix hw mtu initializing at XDP SQ allocation
6d655a9d8251 net/mlx5e: IPoIB, Don't allow CQE compression to be turned on by default
670b20617346 net/mlx5: Avoid recovery in probe flows
66b92b80c95e net/mlx5: Add forgotten cleanup calls into mlx5_init_once() error path
b6c74d237648 vhost: fix range used in translate_desc()
264fb6dcbfde vringh: fix range used in iotlb_translate()
eabb3ceb04cd vhost/vsock: Fix error handling in vhost_vsock_init()
e0f5c962c066 nfc: Fix potential resource leaks
513787ff9a33 qlcnic: prevent ->dcb use-after-free on qlcnic_dcb_enable() failure
b314f6c35121 net: sched: fix memory leak in tcindex_set_parms
4226ce95a934 net: hns3: add interrupts re-initialization while doing VF FLR
998ebbdc3bb1 nfsd: shut down the NFSv4 state objects before the filecache
69d896b60957 veth: Fix race with AF_XDP exposing old or uninitialized descriptors
5f41212dc2ec vmxnet3: correctly report csum_level for encapsulated packet
0b70f6ea4d4f drm/panfrost: Fix GEM handle creation ref-counting
e68e088d0d6a bpf: pull before calling skb_postpull_rcsum()
cb0d627bc711 SUNRPC: ensure the matching upcall is in-flight upon downcall
1be16a0c2f10 ext4: fix deadlock due to mbcache entry corruption
0da99012d3f7 mbcache: automatically delete entries from cache on freeing
1a56cd972ce1 ext4: fix race when reusing xattr blocks
4cc218e217bf ext4: unindent codeblock in ext4_xattr_block_set()
0e6fbc566fcc ext4: remove EA inode entry from mbcache on inode eviction
27c08673978e mbcache: add functions to delete entry if unused
fb59d12ae7f9 mbcache: don't reclaim used entries
4c363e2961cd ext4: use kmemdup() to replace kmalloc + memcpy
b8b7922374b0 ext4: fix leaking uninitialized memory in fast-commit journal
a5584ba9b3b6 ext4: fix various seppling typos
adfefe804b1f ext4: simplify ext4 error translation
95eaa8a95358 ext4: move functions in super.c
769469f8f188 fs: ext4: initialize fsdata in pagecache_write()
b33e42d65efe ext4: use memcpy_to_page() in pagecache_write()
60d4383c1bda mm/highmem: Lift memcpy_[to|from]_page to core
f86d3338c87c ext4: correct inconsistent error msg in nojournal mode
99017eb3deee ext4: goto right label 'failed_mount3a'
56d87959c654 riscv: stacktrace: Fixup ftrace_graph_ret_addr retp argument
ecb8e8b2e55f riscv/stacktrace: Fix stack output without ra on the stack top
b5c75efd0a6c ravb: Fix "failed to switch device to config mode" message during unbind
5451efb2ca30 staging: media: tegra-video: fix device_node use after free
f899baf6cb0f x86/kprobes: Fix optprobe optimization check with CONFIG_RETHUNK
5d112deb2a02 x86/kprobes: Convert to insn_decode()
a1766efc5bbf perf probe: Fix to get the DW_AT_decl_file and DW_AT_call_file as unsinged data
b5d0f7c24088 perf probe: Use dwarf_attr_integrate as generic DWARF attr accessor
c0a3d2158437 media: s5p-mfc: Fix in register read and write for H264
8ff64edf9d16 media: s5p-mfc: Clear workbit to handle error condition
dcd1a4ade590 media: s5p-mfc: Fix to handle reference queue during finishing
97e7896000ce x86/MCE/AMD: Clear DFR errors found in THR handler
ec75bc43681b x86/mce: Get rid of msr_ops
58de7a95f0e6 btrfs: replace strncpy() with strscpy()
7a04f8500924 perf/x86/intel/uncore: Clear attr_update properly
53d24a9592eb perf/x86/intel/uncore: Generalize I/O stacks to PMON mapping procedure
9620f8a5c72f ARM: renumber bits related to _TIF_WORK_MASK
630270978483 drm/amdgpu: make display pinning more flexible (v2)
dfc01905b870 drm/amdgpu: handle polaris10/11 overlap asics (v2)
30e95fdc9609 ext4: allocate extended attribute value in vmalloc area
8d3e87d43c62 ext4: avoid unaccounted block allocation when expanding inode
15d0cf84df07 ext4: initialize quota before expanding inode in setproject ioctl
9882601ee689 ext4: fix inode leak in ext4_xattr_inode_create() on an error path
407f47728c6c ext4: avoid BUG_ON when creating xattrs
00092b218d2b ext4: fix error code return to user-space in ext4_get_branch()
f06c980287f1 ext4: fix corruption when online resizing a 1K bigalloc fs
9404839e0c9d ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inline
84a2f2ed49d6 ext4: init quota for 'old.inode' in 'ext4_rename'
71e99ec1315f ext4: fix bug_on in __es_tree_search caused by bad boot loader inode
9020f56a3cad ext4: check and assert if marking an no_delete evicting inode dirty
86c2a2ec4bd3 ext4: fix reserved cluster accounting in __es_remove_extent()
98004f926d27 ext4: fix bug_on in __es_tree_search caused by bad quota inode
20af66617eef ext4: add helper to check quota inums
c0a738875c2e ext4: add EXT4_IGET_BAD flag to prevent unexpected bad inode
f9cd6980800b ext4: fix undefined behavior in bit shift for ext4_check_flag_values
7223d5e75f26 ext4: fix use-after-free in ext4_orphan_cleanup
d6d18d6e2d06 ext4: add inode table check in __ext4_get_inode_loc to aovid possible infinite loop
bdc698ce91f2 ext4: silence the warning when evicting inode with dioread_nolock
68af1a4842b4 drm/ingenic: Fix missing platform_driver_unregister() call in ingenic_drm_init()
bf83a303f2b5 drm/i915/dsi: fix VBT send packet port selection for dual link DSI
439cbbc15195 drm/vmwgfx: Validate the box size for the snooped cursor
0a0662d597de drm/connector: send hotplug uevent on connector cleanup
21a773ec8994 device_cgroup: Roll back to original exceptions after copy failure
3505c187b861 parisc: led: Fix potential null-ptr-deref in start_task()
2c7c487cd850 remoteproc: core: Do pm_relax when in RPROC_OFFLINE state
e291dea722de iommu/amd: Fix ivrs_acpihid cmdline parsing code
28e71fd8d5d9 driver core: Fix bus_type.match() error handling in __driver_attach()
772dbbfc2084 crypto: n2 - add missing hash statesize
7c44205748ed PCI/sysfs: Fix double free in error path
99ef6cc79158 PCI: Fix pci_device_is_present() for VFs by checking PF
f29d127b372e ipmi: fix use after free in _ipmi_destroy_user()
bfe1e039a0fd ima: Fix a potential NULL pointer access in ima_restore_measurement_list
62307558e71e mtd: spi-nor: Check for zero erase size in spi_nor_find_best_erase_type()
4e17819cb302 ipmi: fix long wait in unload when IPMI disconnect
24bc27ea4e71 ASoC: jz4740-i2s: Handle independent FIFO flush bits
652f1d66a8be wifi: wilc1000: sdio: fix module autoloading
d9f6614a732b efi: Add iMac Pro 2017 to uefi skip cert quirk
ffcf71676d3b md/bitmap: Fix bitmap chunk size overflow issues
e94443252b46 rtc: ds1347: fix value written to century register
6155aed4768c cifs: fix missing display of three mount options
8c82733e2408 cifs: fix confusing debug message
3df07728abde media: dvb-core: Fix UAF due to refcount races at releasing
7dd5a68cdbbb media: dvb-core: Fix double free in dvb_register_device()
1032520b2109 ARM: 9256/1: NWFPE: avoid compiler-generated __aeabi_uldivmod
1306614412b8 staging: media: tegra-video: fix chan->mipi value on error
52c0622e53ea tracing: Fix infinite loop in tracing_read_pipe on overflowed print_trace_line
b838b1b9ca70 tracing/hist: Fix wrong return value in parse_action_params()
ff3dd2c1befe x86/kprobes: Fix kprobes instruction boudary check with CONFIG_RETHUNK
362495bf451f ftrace/x86: Add back ftrace_expected for ftrace bug reports
b677629caebb x86/microcode/intel: Do not retry microcode reloading on the APs
43dd254853aa KVM: nVMX: Inject #GP, not #UD, if "generic" VMXON CR0/CR4 check fails
e61eacf99364 perf/core: Call LSM hook after copying perf_event_attr
0cb31bd88361 tracing/hist: Fix out-of-bound write on 'action_data.var_ref_idx'
18a489a3fda7 dm cache: set needs_check flag after aborting metadata
2b17026685a2 dm cache: Fix UAF in destroy()
342cfd8426df dm clone: Fix UAF in clone_dtr()
a506b5c92757 dm integrity: Fix UAF in dm_integrity_dtr()
34fe9c2251f1 dm thin: Fix UAF in run_timer_softirq()
c84d1ca2285b dm thin: resume even if in FAIL mode
94f01ecc2aa0 dm thin: Use last transaction's pmd->root when commit failed
7e3757806973 dm thin: Fix ABBA deadlock between shrink_slab and dm_pool_abort_metadata
b45e77b79215 dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort
d9fa243ab26c ALSA: hda/realtek: Apply dual codec fixup for Dell Latitude laptops
2437b0622342 ALSA: patch_realtek: Fix Dell Inspiron Plus 16
e379b88a8f8c cpufreq: Init completion before kobject_init_and_add()
cea018aaf721 PM/devfreq: governor: Add a private governor_data for governor
d1d73c303458 selftests: Use optional USERCFLAGS and USERLDFLAGS
12576d2ebf65 arm64: dts: qcom: sdm850-lenovo-yoga-c630: correct I2C12 pins drive strength
8546f11c42bd ARM: ux500: do not directly dereference __iomem
0061ab5153fb btrfs: fix resolving backrefs for inline extent followed by prealloc
c0aa6e6ab08d mmc: sdhci-sprd: Disable CLK_AUTO when the clock is less than 400K
e918762f8a08 arm64: dts: qcom: sdm845-db845c: correct SPI2 pins drive strength
c023597baecb jbd2: use the correct print format
8c444b3061f0 ktest.pl minconfig: Unset configs instead of just removing them
5148dfceab55 kest.pl: Fix grub2 menu handling for rebooting
780297af3c85 soc: qcom: Select REMAP_MMIO for LLCC driver
d5db9aaf1b47 media: stv0288: use explicitly signed char
25dbd87379f8 net/af_packet: make sure to pull mac header
c2137d565ceb net/af_packet: add VLAN support for AF_PACKET SOCK_RAW GSO
7c15d7ecce00 rcu: Prevent lockdep-RCU splats on lock acquisition/release
4c57f612f433 torture: Exclude "NOHZ tick-stop error" from fatal errors
289f512d08c4 wifi: rtlwifi: 8192de: correct checking of IQK reload
0f6d6974b08e wifi: rtlwifi: remove always-true condition pointed out by GCC 12
40b844796b6b net/mlx5e: Fix nullptr in mlx5e_tc_add_fdb_flow()
8b20aab8cfd0 ASoC/SoundWire: dai: expand 'stream' concept beyond SoundWire
185c141946e0 ASoC: Intel/SOF: use set_stream() instead of set_tdm_slots() for HDAudio
7b3631a2e17d kcsan: Instrument memcpy/memset/memmove with newer Clang
2cd6026e2573 SUNRPC: Don't leak netobj memory when gss_read_proxy_verf() fails
3b6c822238da tpm: tpm_tis: Add the missed acpi_put_table() to fix memory leak
0bd9b4be721c tpm: tpm_crb: Add the missed acpi_put_table() to fix memory leak
8ddc48068ac8 tpm: acpi: Call acpi_put_table() to fix memory leak
b51d5fed9f53 mmc: vub300: fix warning - do not call blocking ops when !TASK_RUNNING
252a72088280 f2fs: should put a page when checking the summary info
882734bbc587 mm, compaction: fix fast_isolate_around() to stay within boundaries
ae7793027766 md: fix a crash in mempool_free
b591b2919d01 pnode: terminate at peers of source
66f359ad66d4 ALSA: line6: fix stack overflow in line6_midi_transmit
5e79f77ea42f ALSA: line6: correct midi status byte when receiving data from podxt
56abf8046bc1 ovl: Use ovl mounter's fsuid and fsgid in ovl_link()
c3e8bbcbaa87 binfmt: Fix error return code in load_elf_fdpic_binary()
12407462d3fc hfsplus: fix bug causing custom uid and gid being unable to be assigned with mount
44cf50587e82 pstore/zone: Use GFP_ATOMIC to allocate zone buffer
0d992c044cfb HID: plantronics: Additional PIDs for double volume key presses quirk
eaf0b782269f HID: multitouch: fix Asus ExpertBook P2 P2451FA trackpoint
6f7e2fcab733 powerpc/rtas: avoid scheduling in rtas_os_term()
f2167f10fcca powerpc/rtas: avoid device tree lookups in rtas_os_term()
0af0e115ff59 objtool: Fix SEGFAULT
57ae492f620c nvmet: don't defer passthrough commands with trivial effects to the workqueue
4b3282a9779c nvme: fix the NVME_CMD_EFFECTS_CSE_MASK definition
ab711f3eda7a ata: ahci: Fix PCS quirk application for suspend
cc512539c44f nvme-pci: fix page size checks
dfb6d54893d5 nvme-pci: fix mempool alloc size
f5d8738fbe33 nvme-pci: fix doorbell buffer value endianness
fe6ea044c4f0 cifs: fix oops during encryption
f9089b95548f usb: dwc3: qcom: Fix memory leak in dwc3_qcom_interconnect_init
ce2462bcf3ff pwm: tegra: Fix 32 bit build
a8be7c2787b9 media: dvbdev: fix refcnt bug
153319671a08 media: dvbdev: fix build warning due to comments
740c537f52c1 ovl: fix use inode directly in rcu-walk mode
f24474d12e68 gcov: add support for checksum field
36be7afca103 regulator: core: fix deadlock on regulator enable
e12f4c321247 iio: adc128s052: add proper .data members in adc128_of_match table
9f604702b765 iio: adc: ad_sigma_delta: do not use internal iio_dev lock
582f5fc2c586 reiserfs: Add missing calls to reiserfs_security_free()
08371068fff8 HID: mcp2221: don't connect hidraw
7a203471b980 HID: wacom: Ensure bootloader PID is usable in hidraw mode
723ffde78af5 usb: dwc3: core: defer probe on ulpi_read_id timeout
d17c82aad67a usb: dwc3: Fix race between dwc3_set_mode and __dwc3_set_mode
2b725b6fbbe6 ALSA: hda/hdmi: Add HP Device 0x8711 to force connect list
c863b673503e ALSA: hda/realtek: Add quirk for Lenovo TianYi510Pro-14IOB
d3767082ebfa ALSA: usb-audio: add the quirk for KT0206 device
7691fa41024e ima: Simplify ima_lsm_copy_rule
1d8dcc3dadf9 pstore: Make sure CONFIG_PSTORE_PMSG selects CONFIG_RT_MUTEXES
07b0ce902e28 afs: Fix lost servers_outstanding count
1080729b9a56 perf debug: Set debug_peo_args and redirect_to_stderr variable to correct values in perf_quiet_option()
1c7b03d00c07 pstore: Switch pmsg_lock to an rt_mutex to avoid priority inversion
c3607ed7edfb LoadPin: Ignore the "contents" argument of the LSM hooks
4138e1b7751c ASoC: rt5670: Remove unbalanced pm_runtime_put()
fd49dc17c3d7 ASoC: rockchip: spdif: Add missing clk_disable_unprepare() in rk_spdif_runtime_resume()
c0ae46693b85 ASoC: wm8994: Fix potential deadlock
e4a8573b0460 ASoC: rockchip: pdm: Add missing clk_disable_unprepare() in rockchip_pdm_runtime_resume()
06c9d468c068 ASoC: audio-graph-card: fix refcount leak of cpu_ep in __graph_for_each_link()
812a18e48efb ASoC: mediatek: mt8173-rt5650-rt5514: fix refcount leak in mt8173_rt5650_rt5514_dev_probe()
c2eb1a3877f5 ASoC: Intel: Skylake: Fix driver hang during shutdown
72c0e552bc86 ALSA: hda: add snd_hdac_stop_streams() helper
d3a8925d6c1d ALSA/ASoC: hda: move/rename snd_hdac_ext_stop_streams to hdac_stream.c
2727dbfe8d06 hwmon: (jc42) Fix missing unlock on error in jc42_write()
a076490b0211 orangefs: Fix kmemleak in orangefs_{kernel,client}_debug_init()
b8affa0c6405 orangefs: Fix kmemleak in orangefs_prepare_debugfs_help_string()
6e3c4d3fa5d4 drm/sti: Fix return type of sti_{dvo,hda,hdmi}_connector_mode_valid()
f3d3f3564e8b drm/fsl-dcu: Fix return type of fsl_dcu_drm_connector_mode_valid()
dcd28191be9b hugetlbfs: fix null-ptr-deref in hugetlbfs_parse_param()
efd025f32fce clk: st: Fix memory leak in st_of_quadfs_setup()
1c6447d0fc68 media: si470x: Fix use-after-free in si470x_int_in_callback()
a63a1ae13469 mmc: renesas_sdhi: better reset from HS400 mode
58e21146c0f9 mmc: f-sdh30: Add quirks for broken timeout clock capability
4b737246ff50 regulator: core: fix use_count leakage when handling boot-on
17c2eb9ce8c1 libbpf: Avoid enum forward-declarations in public API in C++ mode
e8022da1fa2f blk-mq: fix possible memleak when register 'hctx' failed
7d7ab25ead96 media: dvb-usb: fix memory leak in dvb_usb_adapter_init()
2abd73433872 media: dvbdev: adopts refcnt to avoid UAF
b42580c8d8aa media: dvb-frontends: fix leak of memory fw
dd1e1bf916da ethtool: avoiding integer overflow in ethtool_phys_id()
329a76635548 bpf: Prevent decl_tag from being referenced in func_proto arg
148dcbd3af03 ppp: associate skb with a device at tx
755eb0879224 mrp: introduce active flags to prevent UAF when applicant uninit
037db10e3f93 net: add atomic_long_t to net_device_stats fields
e2d60023aff4 drm/amd/display: fix array index out of bound error in bios parser
10d713532ffc md/raid1: stop mdx_raid1 thread when raid1 array run failed
100caacfa0ed drivers/md/md-bitmap: check the return value of md_bitmap_get_counter()
7d86851c304a drm/sti: Use drm_mode_copy()
dd31d7304018 drm/rockchip: Use drm_mode_copy()
4f238212c7c0 drm/msm: Use drm_mode_copy()
ebc3c77785dc s390/lcs: Fix return type of lcs_start_xmit()
3ac0217ca918 s390/netiucv: Fix return type of netiucv_tx()
eeb75f80bceb s390/ctcm: Fix return type of ctc{mp,}m_tx()
9606bbc271ac drm/amdgpu: Fix type of second parameter in odn_edit_dpm_table() callback
a42a23bdae61 drm/amdgpu: Fix type of second parameter in trans_msg() callback
3cb18dea1119 igb: Do not free q_vector unless new one was allocated
87792567d9ed wifi: brcmfmac: Fix potential shift-out-of-bounds in brcmf_fw_alloc_request()
e7aa8a4709d4 hamradio: baycom_epp: Fix return type of baycom_send_packet()
5b0b6553bf4a net: ethernet: ti: Fix return type of netcp_ndo_start_xmit()
6d935a02658b bpf: make sure skb->len != 0 when redirecting to a tunneling device
ebc2fb6afc98 qed (gcc13): use u16 for fid to be big enough
648cdb8bf376 drm/amd/display: prevent memory leak
c69bc8e34df4 ipmi: fix memleak when unload ipmi driver
be4cd23cd36b ASoC: codecs: rt298: Add quirk for KBL-R RVP platform
8af52492717e wifi: ar5523: Fix use-after-free on ar5523_cmd() timed out
1824ccabee54 wifi: ath9k: verify the expected usb_endpoints are present
2e8bb402b060 brcmfmac: return error when getting invalid max_flowrings from dongle
6cd4865bb4be drm/etnaviv: add missing quirks for GC300
4fd3a11804c8 hfs: fix OOB Read in __hfs_brec_find
6edd0cdee578 acct: fix potential integer overflow in encode_comp_t()
ec93b5430ec0 nilfs2: fix shift-out-of-bounds due to too large exponent of block size
d464b035c061 nilfs2: fix shift-out-of-bounds/overflow in nilfs_sb2_bad_offset()
b0b83d3f3ffa ACPICA: Fix error code path in acpi_ds_call_control_method()
911999b19373 fs: jfs: fix shift-out-of-bounds in dbDiscardAG
40dba68d4182 udf: Avoid double brelse() in udf_rename()
3e997e4ce8ae fs: jfs: fix shift-out-of-bounds in dbAllocAG
dcbc51d31d0a binfmt_misc: fix shift-out-of-bounds in check_special_flags
22c1d8f24cdb x86/hyperv: Remove unregister syscore call from Hyper-V cleanup
9b267051c82a video: hyperv_fb: Avoid taking busy spinlock on panic path
0461a8c278b8 arm64: make is_ttbrX_addr() noinstr-safe
5a52380b8193 rcu: Fix __this_cpu_read() lockdep warning in rcu_force_quiescent_state()
906249381167 net: stream: purge sk_error_queue in sk_stream_kill_queues()
7c3a20bfd23b myri10ge: Fix an error handling path in myri10ge_probe()
3c973736909f rxrpc: Fix missing unlock in rxrpc_do_sendmsg()
5c544c7c6afa net_sched: reject TCF_EM_SIMPLE case for complex ematch module
a39b4de0804f mailbox: zynq-ipi: fix error handling while device_register() fails
821be5a5ab09 skbuff: Account for tail adjustment during pull operations
6736b61ecf23 openvswitch: Fix flow lookup to use unmasked key
ea14220031b3 selftests: devlink: fix the fd redirect in dummy_reporter_test
57ce1a36c060 rtc: mxc_v2: Add missing clk_disable_unprepare()
1e2a27dab1e5 igc: Set Qbv start_time and end_time to end_time if not being configured in GCL
edb995b5ec32 igc: Lift TAPRIO schedule restriction
b48d3db89161 igc: recalculate Qbv end_time by considering cycle time
3f2a944c23e8 igc: Add checking for basetime less than zero
a0e2295c2aed igc: Use strict cycles for Qbv scheduling
413fe82420aa igc: Enhance Qbv scheduling by using first flag bit
a8f9698a05b5 net: add a helper to avoid issues with HW TX timestamping and SO_TXTIME
ae5d96bae3cc net: igc: use skb_csum_is_sctp instead of protocol check
4794d07fe635 net: add inline function skb_csum_is_sctp
67349025f00d net: switch to storing KCOV handle directly in sk_buff
3d5f83a62e82 r6040: Fix kmemleak in probe and remove
aea9e64dec2c nfc: pn533: Clear nfc_target before being used
6939f84e5369 mISDN: hfcmulti: don't call dev_kfree_skb/kfree_skb() under spin_lock_irqsave()
b58c8719666d mISDN: hfcpci: don't call dev_kfree_skb/kfree_skb() under spin_lock_irqsave()
30e0a066b611 mISDN: hfcsusb: don't call dev_kfree_skb/kfree_skb() under spin_lock_irqsave()
2a930b75bf93 net: macsec: fix net device access prior to holding a lock
c1207219a4bf nfsd: under NFSv4.1, fix double svc_xprt_put on rpc_create failure
452e85cc3edf NFSD: Remove spurious cb_setup_err tracepoint
09c007e23923 rtc: pcf85063: fix pcf85063_clkout_control
e9453c13ae9c rtc: pic32: Move devm_rtc_allocate_device earlier in pic32_rtc_probe()
34836c592345 rtc: st-lpc: Add missing clk_disable_unprepare in st_rtc_probe()
8e65e707640b netfilter: flowtable: really fix NAT IPv6 offload
1f5571cb1d7b powerpc/pseries/eeh: use correct API for error log size
9dc96fee2648 powerpc/eeh: Drop redundant spinlock initialization
12654b7d8deb remoteproc: qcom_q6v5_pas: Fix missing of_node_put() in adsp_alloc_memory_region()
be5816b27bff remoteproc: qcom_q6v5_pas: detach power domains on remove
582dd58a186c remoteproc: qcom_q6v5_pas: disable wakeup on probe fail or remove
e4539eb5c0c3 remoteproc: sysmon: fix memory leak in qcom_add_sysmon_subdev()
6a65f4644b65 pwm: sifive: Call pwm_sifive_update_clock() while mutex is held
57f215a23167 iommu/sun50i: Remove IOMMU_DOMAIN_IDENTITY
dc02d8e59d36 selftests/powerpc: Fix resource leaks
464506de9bb3 powerpc/hv-gpci: Fix hv_gpci event list
0abfe735be54 powerpc/83xx/mpc832x_rdb: call platform_device_put() in error case in of_fsl_spi_probe()
da1a33795dfd powerpc/perf: callchain validate kernel stack pointer bounds
8d2ff5b3e28d kbuild: refactor single builds of *.ko
e3bdda22b49e kbuild: unify modules(_install) for in-tree and external modules
e2155129599f kbuild: remove unneeded mkdir for external modules_install
195cb98861dc powerpc/xive: add missing iounmap() in error path in xive_spapr_populate_irq_data()
f0bd6504e580 powerpc/xmon: Fix -Wswitch-unreachable warning in bpt_cmds
76957b6aed99 powerpc/xmon: Enable breakpoints on 8xx
81c8bbf5b2b5 cxl: Fix refcount leak in cxl_calc_capp_routing
40b4be399e0d powerpc/52xx: Fix a resource leak in an error handling path
7fded04fbbb8 macintosh/macio-adb: check the return value of ioremap()
2ac0a7059b7b macintosh: fix possible memory leak in macio_add_one_device()
0d240ac0e4c3 iommu/fsl_pamu: Fix resource leak in fsl_pamu_probe()
03f51c729975 iommu/amd: Fix pci device refcount leak in ppr_notifier()
3929576f10ea rtc: pcf85063: Fix reading alarm
aaed333e2237 rtc: snvs: Allow a time difference on clock register read
f0c36ea4248a rtc: cmos: Disable ACPI RTC event on removal
ca8cb20c2254 rtc: cmos: Rename ACPI-related functions
9f9923baa291 rtc: cmos: Eliminate forward declarations of some functions
462db582e8eb rtc: cmos: Call rtc_wake_setup() from cmos_do_probe()
14ad1353c515 rtc: cmos: Call cmos_wake_setup() from cmos_do_probe()
45b96601a6ec rtc: cmos: fix build on non-ACPI platforms
f2ece2c722be rtc: cmos: Fix wake alarm breakage
0bcfccb48696 rtc: cmos: Fix event handler registration ordering issue
5814d77e2f72 rtc: rtc-cmos: Do not check ACPI_FADT_LOW_POWER_S0
490b233677de dmaengine: idxd: Fix crc_val field for completion record
a42e95547522 pwm: tegra: Improve required rate calculation
ddd2bb08bd99 include/uapi/linux/swab: Fix potentially missing __always_inline
c2a98433421e phy: usb: s2 WoL wakeup_count not incremented for USB->Eth devices
ca31ad0932af iommu/sun50i: Fix flush size
147af0c1e7fd iommu/sun50i: Fix R/W permission check
3a63c4ff57bf iommu/sun50i: Consider all fault sources for reset
160b92ab4a25 iommu/sun50i: Fix reset release
aeef93416c09 RDMA/siw: Fix pointer cast warning
5beadb55f4e3 power: supply: fix null pointer dereferencing in power_supply_get_battery_info
72283ecfdc84 HSI: omap_ssi_core: Fix error handling in ssi_init()
73ca3b19d902 perf symbol: correction while adjusting symbol
c8e77bd7499f perf trace: Handle failure when trace point folder is missed
bd29da58046a perf trace: Use macro RAW_SYSCALL_ARGS_NUM to replace number
6364577ae225 perf trace: Return error if a system call doesn't exist
1d6d90994a8d power: supply: fix residue sysfs file in error handle route of __power_supply_register()
ae2eb995abb9 HSI: omap_ssi_core: fix possible memory leak in ssi_probe()
6ba4b00f8837 HSI: omap_ssi_core: fix unbalanced pm_runtime_disable()
ee13e2aec330 fbdev: uvesafb: Fixes an error handling path in uvesafb_probe()
164857bc0223 fbdev: vermilion: decrease reference count in error path
71bca42bc44f fbdev: via: Fix error in via_core_init()
3922415e4c3f fbdev: pm2fb: fix missing pci_disable_device()
f279a7af799d fbdev: ssd1307fb: Drop optional dependency
c56c1449ccc3 thermal/drivers/imx8mm_thermal: Validate temperature range
86fa7bb4e2d5 samples: vfio-mdev: Fix missing pci_disable_device() in mdpy_fb_probe()
962f869b3678 tracing/hist: Fix issue of losting command info in error_log
b7bf15aa1973 usb: storage: Add check for kcalloc
9ac541a0898e i2c: ismt: Fix an out-of-bounds bug in ismt_access()
61df25c41b8e i2c: mux: reg: check return value after calling platform_get_resource()
6d79546622ba gpiolib: cdev: fix NULL-pointer dereferences
aeee7ad0897f gpiolib: Get rid of redundant 'else'
37d3de40c1ff vme: Fix error not catched in fake_init()
b9fa01fb3140 staging: rtl8192e: Fix potential use-after-free in rtllib_rx_Monitor()
daa8045a9913 staging: rtl8192u: Fix use after free in ieee80211_rx()
46b3885c8cb4 i2c: pxa-pci: fix missing pci_disable_device() on error in ce4100_i2c_probe
c46db6088bcc chardev: fix error handling in cdev_device_add()
7b289b791a59 mcb: mcb-parse: fix error handing in chameleon_parse_gdd()
0d1c2c8db289 drivers: mcb: fix resource leak in mcb_probe()
e88b89a096af usb: gadget: f_hid: fix refcount leak on error path
1b6a53e447ec usb: gadget: f_hid: fix f_hidg lifetime vs cdev
52302c30b218 usb: gadget: f_hid: optional SETUP/SET_REPORT mode
c3767f81056b usb: roles: fix of node refcount leak in usb_role_switch_is_parent()
07905a92497c counter: stm32-lptimer-cnt: fix the check on arr and cmp registers update
bb5e9402b24e iio: adis: add '__adis_enable_irq()' implementation
3feb8fd8bf93 iio:imu:adis: Move exports into IIO_ADISLIB namespace
83e321a2ec4d iio: adis: stylistic changes
d1b73eebc70d iio: adis: handle devices that cannot unmask the drdy pin
8eb2a679c603 iio:imu:adis: Use IRQF_NO_AUTOEN instead of irq request then disable
50aaa6b1742c genirq: Add IRQF_NO_AUTOEN for request_irq/nmi()
6b22e715bb5b iio: temperature: ltc2983: make bulk write buffer DMA-safe
0f63c0ddc2ea cxl: fix possible null-ptr-deref in cxl_pci_init_afu|adapter()
170e8c2d2b61 cxl: fix possible null-ptr-deref in cxl_guest_init_afu|adapter()
d34742245e43 firmware: raspberrypi: fix possible memory leak in rpi_firmware_probe()
0f67ed565f20 misc: sgi-gru: fix use-after-free error in gru_set_context_option, gru_fault and gru_handle_user_call_os
57c857353d50 misc: tifm: fix possible memory leak in tifm_7xx1_switch_media()
a40e1b0a922a ocxl: fix pci device refcount leak when calling get_function_0()
7525741cb302 misc: ocxl: fix possible name leak in ocxl_file_register_afu()
0b5a89e8bce1 test_firmware: fix memory leak in test_firmware_init()
d7c4331c073a serial: sunsab: Fix error handling in sunsab_init()
a26b13d158ae serial: altera_uart: fix locking in polling mode
8ff88d007f1b tty: serial: altera_uart_{r,t}x_chars() need only uart_port
af320d1a3cef tty: serial: clean up stop-tx part in altera_uart_tx_chars()
07f4ca68b0f6 serial: pch: Fix PCI device refcount leak in pch_request_dma()
46d08b0e0be5 serial: pl011: Do not clear RX FIFO & RX interrupt in unthrottle.
d5b16eb076f4 serial: amba-pl011: avoid SBSA UART accessing DMACR register
fab27438abe2 usb: typec: tipd: Fix spurious fwnode_handle_put in error path
d3b6c28a71f1 usb: typec: tcpci: fix of node refcount leak in tcpci_register_port()
1ca02df871ad usb: typec: Check for ops->exit instead of ops->enter in altmode_exit
5d2b286eb034 staging: vme_user: Fix possible UAF in tsi148_dma_list_add
775a6f8bed87 usb: fotg210-udc: Fix ages old endianness issues
2fcb7c7d5219 uio: uio_dmem_genirq: Fix deadlock between irq config and handling
9bf7a0b2b15c uio: uio_dmem_genirq: Fix missing unlock in irq configuration
27b612bd09bd vfio: platform: Do not pass return buffer to ACPI _RST method
18a720064695 class: fix possible memory leak in __class_register()
7e74868a38b4 serial: tegra: Read DMA status before terminating
fce9890e1be4 drivers: dio: fix possible memory leak in dio_init()
d21714134505 IB/IPoIB: Fix queue count inconsistency for PKEY child interfaces
aa96aff394a5 hwrng: geode - Fix PCI device refcount leak
5998e5c30e83 hwrng: amd - Fix PCI device refcount leak
38da26c8552e crypto: img-hash - Fix variable dereferenced before check 'hdev->req'
15ca14894018 RDMA/hns: Fix page size cap from firmware
83b2c33b53b2 RDMA/hns: Fix PBL page MTR find
73ab1c956a32 orangefs: Fix sysfs not cleanup when dev init failed
0c53bb661f0a RDMA/srp: Fix error return code in srp_parse_options()
7cbf2fc276f7 RDMA/hfi1: Fix error return code in parse_platform_config()
61c5b47c5b28 riscv/mm: add arch hook arch_clear_hugepage_flags
09814c669d18 crypto: omap-sham - Use pm_runtime_resume_and_get() in omap_sham_probe()
75c7b5d6b534 crypto: amlogic - Remove kcalloc without check
357f3e175630 RDMA/nldev: Fix failure to send large messages
25a8dabaabf6 f2fs: avoid victim selection from previous victim section
d1b85d288345 RDMA/nldev: Add checks for nla_nest_start() in fill_stat_counter_qps()
ad27f74e901f scsi: snic: Fix possible UAF in snic_tgt_create()
22e8c7a56bb1 scsi: fcoe: Fix transport not deattached when fcoe_if_init() fails
f4ba143b04a1 scsi: ipr: Fix WARNING in ipr_init()
b520a3279681 scsi: scsi_debug: Fix possible name leak in sdebug_add_host_helper()
9d0ad1e2bae7 scsi: fcoe: Fix possible name leak when device_register() fails
2b142f6046ce scsi: scsi_debug: Fix a warning in resp_report_zones()
eaa71cdae88a scsi: scsi_debug: Fix a warning in resp_verify()
ac5cfe8bbbf9 scsi: hpsa: Fix possible memory leak in hpsa_add_sas_device()
f671a3f2869d scsi: hpsa: Fix error handling in hpsa_add_sas_host()
ce1a69cc8500 scsi: mpt3sas: Fix possible resource leaks in mpt3sas_transport_port_add()
7ccfc2bb5879 padata: Fix list iterator in padata_do_serial()
8e0681dd4eee padata: Always leave BHs disabled when running ->parallel()
4a99e6a1049c crypto: tcrypt - Fix multibuffer skcipher speed test mem leak
c808edbf580b scsi: hpsa: Fix possible memory leak in hpsa_init_one()
6bb5a62bfd62 RDMA/rxe: Fix NULL-ptr-deref in rxe_qp_do_cleanup() when socket create failed
164fa80330a8 RDMA/hns: fix memory leak in hns_roce_alloc_mr()
3d47544ba0c7 crypto: ccree - Make cc_debugfs_global_fini() available for module init function
34bab85c2e1f RDMA/hfi: Decrease PCI device reference count in error path
d8f2a0bc52a8 PCI: Check for alloc failure in pci_request_irq()
8b5f1af3352a RDMA/hns: Fix ext_sge num error when post send
cc5e9153586a RDMA/hns: Repacing 'dseg_len' by macros in fill_ext_sge_inl_data()
ed97ade655ea crypto: hisilicon/qm - add missing pci_dev_put() in q_num_set()
2dfe1d221e1a crypto: cryptd - Use request context instead of stack for sub-request
1ab9e15b1441 crypto: ccree - Remove debugfs when platform_driver_register failed
33260f4c3ed3 scsi: scsi_debug: Fix a warning in resp_write_scat()
917bf4c0a76d RDMA/siw: Set defined status for work completion with undefined status
237a8936d621 RDMA/nldev: Return "-EAGAIN" if the cm_id isn't from expected port
75af03fdf35a RDMA/siw: Fix immediate work request flush to completion queue
ef8e236832fb f2fs: fix normal discard process
9a32aa87a25d apparmor: Fix memleak in alloc_ns()
417ef568a725 crypto: rockchip - rework by using crypto_engine
6cd8bbb089be crypto: rockchip - delete unneeded variable initialization
de041a2e7091 crypto: rockchip - remove non-aligned handling
0971bc99d124 crypto: rockchip - better handle cipher key
b0b9635f09e0 crypto: rockchip - add fallback for ahash
fbd5f112dc9d crypto: rockchip - add fallback for cipher
86f1e7f46ba9 crypto: rockchip - do not store mode globally
a13c0ff862af crypto: rockchip - do not do custom power management
f1acf7e69355 f2fs: Fix the race condition of resize flag between resizefs
c42d8120bf47 PCI: pci-epf-test: Register notifier if only core_init_notifier is enabled
16db9aaa4151 RDMA/core: Fix order of nldev_exit call
9784b01eb46c PCI: dwc: Fix n_fts[] array overrun
6962f682d0c3 apparmor: Use pointer to struct aa_label for lbs_cred
f4c917a4b030 scsi: core: Fix a race between scsi_done() and scsi_timeout()
3bebfa5f9345 crypto: nitrox - avoid double free on error path in nitrox_sriov_init()
ee3cffc38efe crypto: sun8i-ss - use dma_addr instead u32
bf4d7c66a18a apparmor: Fix abi check to include v8 abi
78629ca972ac apparmor: fix lockdep warning when removing a namespace
935d86b29093 apparmor: fix a memleak in multi_transaction_new()
f694e627c603 stmmac: fix potential division by 0
815b961c71af Bluetooth: RFCOMM: don't call kfree_skb() under spin_lock_irqsave()
4002180e0761 Bluetooth: hci_core: don't call kfree_skb() under spin_lock_irqsave()
82256faaeb3a Bluetooth: hci_bcsp: don't call kfree_skb() under spin_lock_irqsave()
33af776a8d98 Bluetooth: hci_h5: don't call kfree_skb() under spin_lock_irqsave()
5991402fe091 Bluetooth: hci_ll: don't call kfree_skb() under spin_lock_irqsave()
0169acb41bc8 Bluetooth: hci_qca: don't call kfree_skb() under spin_lock_irqsave()
f7dc27702b59 Bluetooth: btusb: don't call kfree_skb() under spin_lock_irqsave()
214346a51724 sctp: sysctl: make extra pointers netns aware
13286ad1c7c4 ntb_netdev: Use dev_kfree_skb_any() in interrupt context
4df544f592ad net: lan9303: Fix read error execution path
39b48a92edaf can: tcan4x5x: Remove invalid write in clear_interrupts
334c9fb89232 net: amd-xgbe: Check only the minimum speed for active/passive cables
03ea9ba5fd23 net: amd-xgbe: Fix logic around active and passive cables
8eb5f8ae5132 net: amd: lance: don't call dev_kfree_skb() under spin_lock_irqsave()
ee3b1364af26 hamradio: don't call dev_kfree_skb() under spin_lock_irqsave()
b242358a27a7 net: ethernet: dnet: don't call dev_kfree_skb() under spin_lock_irqsave()
decede59ea06 net: emaclite: don't call dev_kfree_skb() under spin_lock_irqsave()
c43def060cae net: apple: bmac: don't call dev_kfree_skb() under spin_lock_irqsave()
0e23250149f4 net: apple: mace: don't call dev_kfree_skb() under spin_lock_irqsave()
91f09a776ae3 net/tunnel: wait until all sk_user_data reader finish before releasing the sock
51e2d1b84aca net: farsync: Fix kmemleak when rmmods farsync
0b3f452d0cf7 ethernet: s2io: don't call dev_kfree_skb() under spin_lock_irqsave()
2b4af99b4486 of: overlay: fix null pointer dereferencing in find_dup_cset_node_entry() and find_dup_cset_prop()
14b349a15c29 drivers: net: qlcnic: Fix potential memory leak in qlcnic_sriov_init()
787d1bae7f11 net: stmmac: selftests: fix potential memleak in stmmac_test_arpoffload()
8ed99944572b net: defxx: Fix missing err handling in dfx_init()
e2227eee7ae1 net: vmw_vsock: vmci: Check memcpy_from_msg()
3e8fd1d0fab4 clk: socfpga: Fix memory leak in socfpga_gate_init()
4b672ee71c1c clk: socfpga: use clk_hw_register for a5/c5
ae8190f19f96 clk: socfpga: clk-pll: Remove unused variable 'rc'
782d0444eac9 blktrace: Fix output non-blktrace event when blk_classic option enabled
2484f1596480 wifi: brcmfmac: Fix error return code in brcmf_sdio_download_firmware()
f89c0fbb8bdb wifi: rtl8xxxu: Fix the channel width reporting
d43003724879 wifi: rtl8xxxu: Add __packed to struct rtl8723bu_c2h
7f3b4fa48222 spi: spi-gpio: Don't set MOSI as an input if not 3WIRE mode
da13355bb996 clk: samsung: Fix memory leak in _samsung_clk_register_pll()
d9b37ea8869e media: coda: Add check for kmalloc
35ddd00b3658 media: coda: Add check for dcoda_iram_alloc
6fdb8661b964 media: c8sectpfe: Add of_node_put() when breaking out of loop
0b1e96d3fd6a mmc: mmci: fix return value check of mmc_add_host()
1922def5cb13 mmc: wbsd: fix return value check of mmc_add_host()
63400da6cd37 mmc: via-sdmmc: fix return value check of mmc_add_host()
64b2c441171f mmc: meson-gx: fix return value check of mmc_add_host()
fb3d596267a9 mmc: omap_hsmmc: fix return value check of mmc_add_host()
00ac0f5f9592 mmc: atmel-mci: fix return value check of mmc_add_host()
9bedf64dda84 mmc: wmt-sdmmc: fix return value check of mmc_add_host()
3049a3b927a4 mmc: vub300: fix return value check of mmc_add_host()
aabbedcb6c9a mmc: toshsd: fix return value check of mmc_add_host()
7fa922c7a3dd mmc: rtsx_usb_sdmmc: fix return value check of mmc_add_host()
b896a9b7a0c3 mmc: pxamci: fix return value check of mmc_add_host()
3904eb97bb78 mmc: mxcmmc: fix return value check of mmc_add_host()
7c3b301ca8b0 mmc: moxart: fix return value check of mmc_add_host()
4a6e5d022280 mmc: alcor: fix return value check of mmc_add_host()
81ea3d964f2b NFSv4.x: Fail client initialisation if state manager thread can't run
3fbc3c78fa32 SUNRPC: Fix missing release socket in rpc_sockname()
be7d90fc3a8f xprtrdma: Fix regbuf data not freed in rpcrdma_req_create()
064912935921 ALSA: mts64: fix possible null-ptr-defer in snd_mts64_interrupt
7df1fbe49bd2 media: saa7164: fix missing pci_disable_device()
46a9b31369d7 ALSA: pcm: Set missing stop_operating flag at undoing trigger start
be719496ae6a bpf, sockmap: fix race in sock_map_free()
8c3ef38a0d58 hwmon: (jc42) Restore the min/max/critical temperatures on resume
e7720ef53b23 hwmon: (jc42) Convert register access and caching to regmap/regcache
6a03c31d08f9 regulator: core: fix resource leak in regulator_register()
74ac7c9ee2d4 configfs: fix possible memory leak in configfs_create_dir()
0cf92d235692 hsr: Synchronize sequence number updates.
c671f2d10d83 hsr: Synchronize sending frames to have always incremented outgoing seq nr.
28921ec555d5 hsr: Disable netpoll.
8cee8543f002 net: hsr: generate supervision frame without HSR/PRP tag
38d13a2a9e52 hsr: Add a rcu-read lock to hsr_forward_skb().
ee4425e81d9b clk: qcom: clk-krait: fix wrong div2 functions
6f25402d8a00 regulator: core: fix module refcount leak in set_supply()
f532db69ab13 wifi: mt76: fix coverity overrun-call in mt76_get_txpower()
4ecb7a6e61b1 wifi: cfg80211: Fix not unregister reg_pdev when load_builtin_regdb_keys() fails
b2c0b94f4837 wifi: mac80211: fix memory leak in ieee80211_if_add()
b0163248dbaf spi: spidev: mask SPI_CS_HIGH in SPI_IOC_RD_MODE
ab19f402a12d bonding: uninitialized variable in bond_miimon_inspect()
c58df40e3e67 bpf, sockmap: Fix data loss caused by using apply_bytes on ingress redirect
28e4a763cd4a bpf, sockmap: Fix repeated calls to sock_put() when msg has more_data
429a2a4258d5 netfilter: conntrack: set icmpv6 redirects as RELATED
cd0e9ee50cb5 ASoC: pcm512x: Fix PM disable depth imbalance in pcm512x_probe
7c1ddf7c664b drm/amdgpu: Fix PCI device refcount leak in amdgpu_atrm_get_bios()
3991d98a8a07 drm/radeon: Fix PCI device refcount leak in radeon_atrm_get_bios()
a012cdd4fd62 drm/amd/pm/smu11: BACO is supported when it's in BACO state
57491967ad8f ASoC: mediatek: mt8173: Enable IRQ when pdata is ready
52c9ad56c19d ASoC: mediatek: mt8173: Fix debugfs registration for components
ae966649f665 wifi: iwlwifi: mvm: fix double free on tx path.
ae66695aa1eb ALSA: asihpi: fix missing pci_disable_device()
5458bc0f9df6 NFS: Fix an Oops in nfs_d_automount()
bc60485b9347 NFSv4: Fix a deadlock between nfs4_open_recover_helper() and delegreturn
d16d7870fd8f NFSv4.2: Fix initialisation of struct nfs4_label
15feece7afcf NFSv4.2: Fix a memory stomp in decode_attr_security_label
58a1023eb5f7 NFSv4.2: Clear FATTR4_WORD2_SECURITY_LABEL when done decoding
193691ff5b76 ASoC: mediatek: mtk-btcvsd: Add checks for write and read of mtk_btcvsd_snd
6013c3de9557 ASoC: dt-bindings: wcd9335: fix reset line polarity in example
cf2cbca71472 drm/tegra: Add missing clk_disable_unprepare() in tegra_dc_probe()
54ab1276001b media: s5p-mfc: Add variant data for MFC v7 hardware for Exynos 3250 SoC
559891d430e3 media: dvb-usb: az6027: fix null-ptr-deref in az6027_i2c_xfer()
e34cf6caccf5 media: dvb-core: Fix ignored return value in dvb_register_frontend()
05be5d56f7ad pinctrl: pinconf-generic: add missing of_node_put()
9916497a1239 clk: imx: replace osc_hdmi with dummy
dabf7b675c16 media: imon: fix a race condition in send_packet()
14d85b600bb1 media: vimc: Fix wrong function called when vimc_init() fails
4518d7cc38b7 ASoC: qcom: Add checks for devm_kcalloc
b73fac67f355 drbd: fix an invalid memory access caused by incorrect use of list iterator
1d0c2b762dad mtd: maps: pxa2xx-flash: fix memory leak in probe
7d1e0d237c4c bonding: fix link recovery in mode 2 when updelay is nonzero
3725a8f26bdb drm/amdgpu: fix pci device refcount leak
f4d70c139d31 clk: rockchip: Fix memory leak in rockchip_clk_register_pll()
a065be02433e regulator: core: use kfree_const() to free space conditionally
d7198b63cbee ALSA: seq: fix undefined behavior in bit shift for SNDRV_SEQ_FILTER_USE_EVENT
88550b444647 ALSA: pcm: fix undefined behavior in bit shift for SNDRV_PCM_RATE_KNOT
ad2d0a3dc224 HID: hid-sensor-custom: set fixed size for custom attributes
0d6ae25da5cb bpf: Move skb->len == 0 checks into __bpf_redirect
9920e87a84ec inet: add READ_ONCE(sk->sk_bound_dev_if) in inet_csk_bind_conflict()
49aa080951aa media: videobuf-dma-contig: use dma_mmap_coherent
847006001953 media: platform: exynos4-is: Fix error handling in fimc_md_init()
49060c0da57a media: solo6x10: fix possible memory leak in solo_sysfs_init()
0369af6fe33d media: vidtv: Fix use-after-free in vidtv_bridge_dvb_init()
3afd738e7712 Input: elants_i2c - properly handle the reset GPIO when power is off
0919982a1744 mtd: lpddr2_nvm: Fix possible null-ptr-deref
effbf636162b wifi: ath10k: Fix return value in ath10k_pci_init()
adf03c309968 ima: Fix misuse of dereference of pointer in template_desc_init_fields()
3bd737289c26 integrity: Fix memory leakage in keyring allocation error path
102df01caf5e drm/fourcc: Fix vsub/hsub for Q410 and Q401
6f6a99fb620d drm/fourcc: Add packed 10bit YUV 4:2:0 format
85273b4a7076 amdgpu/pm: prevent array underflow in vega20_odn_edit_dpm_table()
f48c474efe05 regulator: core: fix unbalanced of node refcount in regulator_dev_lookup()
21a1409e8cf7 ASoC: pxa: fix null-pointer dereference in filter()
698bbaf0b4ed drm/mediatek: Modify dpi power on/off sequence.
b4b30f56ec51 drm/radeon: Add the missed acpi_put_table() to fix memory leak
cea79ae89b6b rxrpc: Fix ack.bufferSize to be 0 when generating an ack
00fce49d142d net, proc: Provide PROC_FS=n fallback for proc_create_net_single_write()
3d5cab726e3b media: camss: Clean up received buffers on failed start of streaming
61c96d99d42c wifi: rsi: Fix handling of 802.3 EAPOL frames sent via control port
624438195c32 Input: joystick - fix Kconfig warning for JOYSTICK_ADC
330bc5533e8a mtd: Fix device name leak when register device failed in add_mtd_device()
1a79539f4e8b clk: qcom: gcc-sm8250: Use retention mode for USB GDSCs
e1989d808b86 bpf: propagate precision across all frames, not just the last one
cdd73a5ed084 bpf: Check the other end of slot_type for STACK_SPILL
42b2b7382aab bpf: propagate precision in ALU/ALU64 operations
7fc38327fd64 media: platform: exynos4-is: fix return value check in fimc_md_probe()
f9d19f3a044c media: vivid: fix compose size exceed boundary
72e8d9c731a7 bpf: Fix slot type check in check_stack_write_var_off
d959ff7fa9e5 drm/msm/hdmi: drop unused GPIO support
b12f354fe61f drm/msm/hdmi: switch to drm_bridge_connector
c4b035b1f036 ima: Handle -ESTALE returned by ima_filter_rule_match()
d5b227f0d28d ima: Fix fall-through warnings for Clang
576828e59a0e drm/panel/panel-sitronix-st7701: Remove panel on DSI attach failure
f1aa976857a3 spi: Update reference to struct spi_controller
dd958c7f3e77 clk: renesas: r9a06g032: Repair grave increment error
110bf15825ed drm/rockchip: lvds: fix PM usage counter unbalance in poweron
1874f9143fba can: kvaser_usb: Compare requested bittiming parameters with actual parameters in do_set_{,data}_bittiming
669bdf121fa4 can: kvaser_usb: Add struct kvaser_usb_busparams
a50ad6772f6f can: kvaser_usb_leaf: Fix bogus restart events
cd56718e7cb6 can: kvaser_usb_leaf: Fix wrong CAN state after stopping
f83742285f77 can: kvaser_usb_leaf: Fix improved state not being reported
fbd155fe14c8 can: kvaser_usb_leaf: Set Warning state even without bus errors
96af45b1b46e can: kvaser_usb: kvaser_usb_leaf: Handle CMD_ERROR_EVENT
caea629409dc can: kvaser_usb: kvaser_usb_leaf: Rename {leaf,usbcan}_cmd_error_event to {leaf,usbcan}_cmd_can_error_event
eafcf1b5997e can: kvaser_usb: kvaser_usb_leaf: Get capabilities from device
cd50258e9c28 can: kvaser_usb: do not increase tx statistics when sending error message frames
580c79fd57f3 media: exynos4-is: don't rely on the v4l2_async_subdev internals
c93cac58a7e5 media: exynos4-is: Use v4l2_async_notifier_add_fwnode_remote_subdev
4882492ad3f0 venus: pm_helpers: Fix error check in vcodec_domains_get()
86d531c1d794 media: i2c: ad5820: Fix error path
83f7e3c98871 media: coda: jpeg: Add check for kmalloc
7e0ba56c7e5f pata_ipx4xx_cf: Fix unsigned comparison with less than zero
85b297d7986c libbpf: Fix null-pointer dereference in find_prog_by_sec_insn()
c61650b869e0 libbpf: Fix use-after-free in btf_dump_name_dups
26ce3f0c8f61 drm/bridge: adv7533: remove dynamic lane switching from adv7533 bridge
9b6851c18263 wifi: rtl8xxxu: Fix reading the vendor of combo chips
98d9172822dc wifi: ath9k: hif_usb: Fix use-after-free in ath9k_hif_usb_reg_in_cb()
c3fb3e9a2c0c wifi: ath9k: hif_usb: fix memory leak of urbs in ath9k_hif_usb_dealloc_tx_urbs()
53915ecc43c5 rapidio: devices: fix missing put_device in mport_cdev_open
cff9fefdfbf5 hfs: Fix OOB Write in hfs_asc2mac
93cdd1263691 relay: fix type mismatch when allocating memory in relay_create_buf()
bbaa9ca06329 eventfd: change int to __u64 in eventfd_signal() ifndef CONFIG_EVENTFD
5ee850645e42 rapidio: fix possible UAF when kfifo_alloc() fails
ad4842634d68 fs: sysv: Fix sysv_nblocks() returns wrong value
6f8ef1de8c65 MIPS: OCTEON: warn only once if deprecated link status is being used
7b88747d6d98 MIPS: BCM63xx: Add check for NULL for clk in clk_enable
d4c38ee665a2 platform/x86: intel_scu_ipc: fix possible name leak in __intel_scu_ipc_register()
17cd8c46cbec platform/x86: mxm-wmi: fix memleak in mxm_wmi_call_mx[ds|mx]()
f983afc4326c PM: runtime: Do not call __rpm_callback() from rpm_idle()
2cbbd78e08bc PM: runtime: Improve path in rpm_idle() when no callback
46026bb057c3 xen/privcmd: Fix a possible warning in privcmd_ioctl_mmap_resource()
70e7f308d7a8 x86/xen: Fix memory leak in xen_init_lock_cpu()
fc134c355b52 x86/xen: Fix memory leak in xen_smp_intr_init{_pv}()
95dbcb7e1c34 uprobes/x86: Allow to probe a NOP instruction with 0x66 prefix
02617006b5a4 ACPICA: Fix use-after-free in acpi_ut_copy_ipackage_to_ipackage()
7bc9c5ad522b clocksource/drivers/timer-ti-dm: Fix missing clk_disable_unprepare in dmtimer_systimer_init_clock()
270700e7df96 cpu/hotplug: Make target_store() a nop when target == state
fc89b8853aec futex: Resend potentially swallowed owner death notification
4750cac4df68 futex: Move to kernel/futex/
d8e7a44f488c clocksource/drivers/sh_cmt: Access registers according to spec
0853787db28e clocksource/drivers/sh_cmt: Make sure channel clock supply is enabled
97d9eb45ffa6 rapidio: rio: fix possible name leak in rio_register_mport()
88fa351b20ca rapidio: fix possible name leaks when rio_add_device() fails
2b7e59ed2e77 ocfs2: fix memory leak in ocfs2_mount_volume()
45dabd8fe8a8 ocfs2: rewrite error handling of ocfs2_fill_super
e403024c832b ocfs2: ocfs2_mount_volume does cleanup job before return error
81d26aa9036a debugfs: fix error when writing negative value to atomic_t debugfs file
f649e18c9c10 docs: fault-injection: fix non-working usage of negative values
869a37ad6f78 lib/notifier-error-inject: fix error when writing -errno to debugfs file
c39aa503f471 libfs: add DEFINE_SIMPLE_ATTRIBUTE_SIGNED for signed value
0080461624e9 cpufreq: amd_freq_sensitivity: Add missing pci_dev_put()
9346517ed2c2 genirq/irqdesc: Don't try to remove non-existing sysfs files
d97e58f72875 nfsd: don't call nfsd_file_put from client states seqfile display
2db53c705916 EDAC/i10nm: fix refcount leak in pci_get_dev_wrapper()
f870d5863e8e irqchip: gic-pm: Use pm_runtime_resume_and_get() in gic_probe()
5c0cacdd3549 platform/chrome: cros_usbpd_notify: Fix error handling in cros_usbpd_notify_init()
0afcb759f6f6 perf/x86/intel/uncore: Fix reference count leak in __uncore_imc_init_box()
d2afced51108 perf/x86/intel/uncore: Fix reference count leak in snr_uncore_mmio_map()
c0539d5d474e perf/x86/intel/uncore: Fix reference count leak in hswep_has_limit_sbox()
dac87e295cdd PNP: fix name memory leak in pnp_alloc_dev()
e1049bf0ca5b selftests/efivarfs: Add checking of the test return value
911773f08ce6 MIPS: vpe-cmp: fix possible memory leak while module exiting
48d42f4464d7 MIPS: vpe-mt: fix possible memory leak while module exiting
f5f2682d3a34 ocfs2: fix memory leak in ocfs2_stack_glue_init()
c9a9aa02f0fa lib/fonts: fix undefined behavior in bit shift for get_default_font
9f6ea28f295f proc: fixup uptime selftest
d5bf025c5b71 timerqueue: Use rb_entry_safe() in timerqueue_getnext()
2f2ae35c0012 platform/x86: huawei-wmi: fix return value calculation
a1014fbc83e7 lib/debugobjects: fix stat count and optimize debug_objects_mem_init
60a7a0aa9dd8 perf: Fix possible memleak in pmu_dev_alloc()
294ed8bfc937 selftests/ftrace: event_triggers: wait longer for test_event_enable
3ef12a4a8ef5 cpufreq: qcom-hw: Fix memory leak in qcom_cpufreq_hw_read_lut()
aa5f2912bb2e fs: don't audit the capability check in simple_xattr_list()
9e760e0cf28f PM: hibernate: Fix mistake in kerneldoc comment
ef875e1c07dd alpha: fix syscall entry in !AUDUT_SYSCALL case
1498d2723e74 cpuidle: dt: Return the correct numbers of parsed idle states
2ff401441711 sched/uclamp: Fix relationship between uclamp and migration margin
ca9ef12bf765 sched/fair: Cleanup task_util and capacity type
6389c163c92b tpm/tpm_crb: Fix error message in __crb_relinquish_locality()
5b217f4e79c0 tpm/tpm_ftpm_tee: Fix error handling in ftpm_mod_init()
295f59cd2cde pstore: Avoid kcore oops by vmap()ing with VM_IOREMAP
480bc6a165d6 ARM: mmp: fix timer_read delay
d1b3164d0e11 pstore/ram: Fix error return code in ramoops_probe()
4dad729f7c24 arm64: dts: armada-3720-turris-mox: Add missing interrupt for RTC
872865db3b95 ARM: dts: turris-omnia: Add switch port 6 node
c1322d5f6969 ARM: dts: turris-omnia: Add ethernet aliases
d050513e6f59 ARM: dts: armada-39x: Fix assigned-addresses for every PCIe Root Port
bac1a77b85e0 ARM: dts: armada-38x: Fix assigned-addresses for every PCIe Root Port
ea907f303205 ARM: dts: armada-375: Fix assigned-addresses for every PCIe Root Port
ea8e313bb9ba ARM: dts: armada-xp: Fix assigned-addresses for every PCIe Root Port
697b92a648f2 ARM: dts: armada-370: Fix assigned-addresses for every PCIe Root Port
73ab831afdc8 ARM: dts: dove: Fix assigned-addresses for every PCIe Root Port
c2cb1683d121 arm64: dts: mediatek: mt6797: Fix 26M oscillator unit name
126135283611 arm64: dts: mediatek: pumpkin-common: Fix devicetree warnings
853d57e9612e arm64: dts: mt2712-evb: Fix usb vbus regulators unit names
436ac713a4a3 arm64: dts: mt2712-evb: Fix vproc fixed regulators unit names
148e77355797 arm64: dts: mt2712e: Fix unit address for pinctrl node
a938c2a77492 arm64: dts: mt2712e: Fix unit_address_vs_reg warning for oscillators
a455b0c509c9 arm64: dts: ti: k3-j721e-main: Drop dma-coherent in crypto node
42d97a024ef6 arm64: dts: ti: k3-am65-main: Drop dma-coherent in crypto node
359286f886fe perf/smmuv3: Fix hotplug callback leak in arm_smmu_pmu_init()
9afac95b87fa perf: arm_dsu: Fix hotplug callback leak in dsu_pmu_init()
5e88aec62e7f soc: ti: smartreflex: Fix PM disable depth imbalance in omap_sr_probe
6a9a31c57887 soc: ti: knav_qmss_queue: Fix PM disable depth imbalance in knav_queue_probe
e325b4ee414b soc: ti: knav_qmss_queue: Use pm_runtime_resume_and_get instead of pm_runtime_get_sync
0542d56e6333 arm: dts: spear600: Fix clcd interrupt
a8d4fb0bf10b soc: qcom: apr: Add check for idr_alloc and of_property_read_string_index
6213df4f5fc2 soc: qcom: apr: make code more reuseable
45d180a9f64b soc: qcom: llcc: make irq truly optional
8fb204a4b5ac drivers: soc: ti: knav_qmss_queue: Mark knav_acc_firmwares as static
6a2faf6fcefd ARM: dts: stm32: Fix AV96 WLAN regulator gpio property
6d1b6dc38fe0 ARM: dts: stm32: Drop stm32mp15xc.dtsi from Avenger96
933499bed78d objtool, kcsan: Add volatile read/write instrumentation to whitelist
275a67e909f7 arm64: dts: qcom: msm8916: Drop MSS fallback compatible
82baee2263b7 arm64: dts: qcom: sdm845-cheza: fix AP suspend pin bias
82569f7e4044 arm64: dts: qcom: sdm630: fix UART1 pin bias
4cef81dec2f1 ARM: dts: qcom: apq8064: fix coresight compatible
5465b9a813fb arm64: dts: qcom: msm8996: fix GPU OPP table
6cad948c9f4a arm64: dts: qcom: ipq6018-cp01-c1: use BLSPI1 pins
60184b1437db usb: musb: remove extra check in musb_gadget_vbus_draw
(From OE-Core rev: 54b1771499f1b53d8e48b6ab85555902ac64fcf7)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating to the latest korg -stable release that comprises
the following commits:
0fe4548663f7 Linux 5.10.162
189556b05e17 io_uring: pass in EPOLL_URING_WAKE for eventfd signaling and wakeups
4ef66581d7fd eventfd: provide a eventfd_signal_mask() helper
2f093775022b eventpoll: add EPOLL_URING_WAKE poll wakeup flag
b76c5373f084 Revert "proc: don't allow async path resolution of /proc/self components"
87cb08dc6b4f Revert "proc: don't allow async path resolution of /proc/thread-self components"
a3025359ffa7 net: remove cmsg restriction from io_uring based send/recvmsg calls
6ef2b4728a00 task_work: unconditionally run task_work from get_signal()
c91ab04781f9 signal: kill JOBCTL_TASK_WORK
788d0824269b io_uring: import 5.15-stable io_uring
ed3005032993 task_work: add helper for more targeted task_work canceling
831cb78a2a5e kernel: don't call do_exit() for PF_IO_WORKER threads
9ded44b69c71 kernel: stop masking signals in create_io_thread()
f0a5f0dc0131 x86/process: setup io_threads more like normal user space threads
dd26e2cec74f arch: ensure parisc/powerpc handle PF_IO_WORKER in copy_thread()
320c8057eceb arch: setup PF_IO_WORKER threads like PF_KTHREAD
000de389ad7b entry/kvm: Exit to user mode when TIF_NOTIFY_SIGNAL is set
0f735cf52bd0 kernel: allow fork with TIF_NOTIFY_SIGNAL pending
4b4d2c79921a coredump: Limit what can interrupt coredumps
90a2c3821bbf kernel: remove checking for TIF_NOTIFY_SIGNAL
61bdeb142e8f task_work: remove legacy TWA_SIGNAL path
6e2bce21acb4 alpha: fix TIF_NOTIFY_SIGNAL handling
db911277a2b3 ARC: unbork 5.11 bootup: fix snafu in _TIF_NOTIFY_SIGNAL handling
a1240cc413eb ia64: don't call handle_signal() unless there's actually a signal queued
e1402ba4df20 sparc: add support for TIF_NOTIFY_SIGNAL
78a53ff02656 riscv: add support for TIF_NOTIFY_SIGNAL
57e833a0a03d nds32: add support for TIF_NOTIFY_SIGNAL
751fedb9ba5d ia64: add support for TIF_NOTIFY_SIGNAL
48e9e35d33d6 h8300: add support for TIF_NOTIFY_SIGNAL
c82617d9decc c6x: add support for TIF_NOTIFY_SIGNAL
30b78a17ac8f alpha: add support for TIF_NOTIFY_SIGNAL
bf0b619593cd xtensa: add support for TIF_NOTIFY_SIGNAL
1bee9dbbcabb arm: add support for TIF_NOTIFY_SIGNAL
02d383a59cbf microblaze: add support for TIF_NOTIFY_SIGNAL
19f3e328b4c6 hexagon: add support for TIF_NOTIFY_SIGNAL
c2037d61dec2 csky: add support for TIF_NOTIFY_SIGNAL
12284aec880f openrisc: add support for TIF_NOTIFY_SIGNAL
3fde31e96262 sh: add support for TIF_NOTIFY_SIGNAL
dc808ffd9778 um: add support for TIF_NOTIFY_SIGNAL
0aef2ec06394 s390: add support for TIF_NOTIFY_SIGNAL
8ca2e5709922 mips: add support for TIF_NOTIFY_SIGNAL
abab3d4444b5 powerpc: add support for TIF_NOTIFY_SIGNAL
45b365bc6c1b parisc: add support for TIF_NOTIFY_SIGNAL
cf3c64867319 nios32: add support for TIF_NOTIFY_SIGNAL
fe137f46d41f m68k: add support for TIF_NOTIFY_SIGNAL
79a9991e87fe arm64: add support for TIF_NOTIFY_SIGNAL
2dbb0354517b arc: add support for TIF_NOTIFY_SIGNAL
4b1dcf8ec9b2 x86: Wire up TIF_NOTIFY_SIGNAL
eb42e7b30431 task_work: Use TIF_NOTIFY_SIGNAL if available
3c295bd2ddae entry: Add support for TIF_NOTIFY_SIGNAL
d2136fc145be fs: provide locked helper variant of close_fd_get_file()
57b20530363d file: Rename __close_fd_get_file close_fd_get_file
214f80e25176 fs: make do_renameat2() take struct filename
52cfde6bbf64 signal: Add task_sigpending() helper
ad0b0137953a net: add accept helper not installing fd
069ac28d9243 net: provide __sys_shutdown_sock() that takes a socket
0b8cd5d814cb tools headers UAPI: Sync openat2.h with the kernel sources
5683caa7350f fs: expose LOOKUP_CACHED through openat2() RESOLVE_CACHED
0cf0ce8fb5b1 Make sure nd->path.mnt and nd->path.dentry are always valid pointers
146fe79fff13 fix handling of nd->depth on LOOKUP_CACHED failures in try_to_unlazy*
c1fe7bd3e1aa fs: add support for LOOKUP_CACHED
36ec31201a3d saner calling conventions for unlazy_child()
e86db87191d8 iov_iter: add helper to save iov_iter state
1500fed00878 kernel: provide create_io_thread() helper
1a9148dfd8e0 Linux 5.10.161
eec1c3ade48b net: loopback: use NET_NAME_PREDICTABLE for name_assign_type
f3fe6817156a Bluetooth: L2CAP: Fix u8 overflow
7c3a523c9b19 HID: uclogic: Add HID_QUIRK_HIDINPUT_FORCE quirk
1d5db0c322ae HID: ite: Enable QUIRK_TOUCHPAD_ON_OFF_REPORT on Acer Aspire Switch V 10
263a1782a618 HID: ite: Enable QUIRK_TOUCHPAD_ON_OFF_REPORT on Acer Aspire Switch 10E
a20b5eec0742 HID: ite: Add support for Acer S1002 keyboard-dock
f2479c3daaab igb: Initialize mailbox message for VF reset
9ff7aff40ef5 xhci: Apply XHCI_RESET_TO_DEFAULT quirk to ADL-N
c8bf31a00f4f USB: serial: f81534: fix division by zero on line-speed change
5b75a0041674 USB: serial: f81232: fix division by zero on line-speed change
9895ce5ea283 USB: serial: cp210x: add Kamstrup RF sniffer PIDs
398215f78338 USB: serial: option: add Quectel EM05-G modem
c79538f32df1 usb: gadget: uvc: Prevent buffer overflow in setup handler
8b2f86f82c0e udf: Fix extending file within last block
db873b770d8a udf: Do not bother looking for prealloc extents if i_lenExtents matches i_size
1a075f4a5494 udf: Fix preallocation discarding at indirect extent boundary
1f7f7365aee8 udf: Discard preallocation before extending file with a hole
(From OE-Core rev: d462705cd1053f841e5d06586384f7440f9ceb47)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
NVD DB store version and update in the same value, separated by '_'.
The proposed patch check if the version from NVD DB contains a "_",
ie 9.2.0_p1 is convert to 9.2.0p1 before version comparison.
[YOCTO #14127]
Reviewed-by: Yoann CONGAL <yoann.congal@smile.fr>
(From OE-Core rev: f331c80df6c447d3073ebe3f00102c78ced242f3)
Signed-off-by: Geoffrey GIRY <geoffrey.giry@smile.fr>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 7d00f6ec578084a0a0e5caf36241d53036d996c4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Backport appropriate patches to fix CVE-2022-2879 and CVE-2022-41720.
Modified the original fix for CVE-2022-2879 to remove a testdata tarball
and any references to it since git binary diffs are not supported in
quilt.
(From OE-Core rev: a896cebe1ce2363b501723475154350acf0e0783)
Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The "git clone /path/to/git/objects_symlink" couldn't work after the following
change:
6f054f9fb3
But repo command manages the git repo as symlinks, so check whether the objects
is an symlink to fix the problem:
* Nothing is changed if git/objects is not a symlink
* Use "git clone file://" when git/objects is a symlink
(Bitbake rev: 2802adb572eb73a3eb2725a74a9bbdaafc543fa7)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a0d8108eba8d542707740d00c66c1c5f5b963f18)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Fix:
scripts/pybootchartgui/pybootchartgui/parsing.py:134: SyntaxWarning: "is" with a literal. Did you mean "=="?
if pid is 0:
(From OE-Core rev: 2429ae83400af67b1cff2adb406ec84b3147ed5e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c9a6511ae618035b8efad01646e37ba28ce1e3f8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* avoid copying whole exec_prefix over base_prefix as there
were only zoneinfo files anyway
(From OE-Core rev: cf96296296a71d0d164f4e528991f0946efe9b29)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 37846f8735683ed0fab5ef5c12d77c6041348801)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
ptestresult_get_log() looked for a key called 'ptestresuls.sections',
which should be 'ptestresult.sections'
(From OE-Core rev: 213ed03f5a15be639a97dca6f5bbf810f7ac2eb5)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7c8c9f7283e54bf8b1521fbaad7dceb66a8fcdbb)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
hwclock command fails on read-only-rootfs:
AssertionError: 1 != 0 : Failed to reset RTC time, output: hwclock: cannot open /etc/adjtime: Read-only file system
(From OE-Core rev: b89abb0f4cc28c45a62c524a3e2f96795235e214)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 017bf8c160f6ab67d9f8e8d9e30b15bf84f73807)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Make sure to expand all MKUBIFS_ARGS_<label> and UBINIZE_ARGS_<label> vars
in 'do_image_multiubi' task to use them to init the local 'mkubifs_args'
and 'ubinize_args' vars.
See [YOCTO #15065]
(From OE-Core rev: 0fce158e59918172b9e42558fc63342384edf657)
Signed-off-by: Romuald JEANNE <romuald.jeanne@st.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 09d05215cf61981c7bc828cc0ff64c2fd5edc43c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Some packages like lirc places its unit files into $systemd_user_unitdir
and also uses them in SYSTEMD_SERVICE list in recipe. This fails in
do_package
ERROR: Didn't find service unit 'lircmd.service', specified in SYSTEMD_SERVICE:lirc.
here lircmd.service is installed in /usr/lib/systemd/system/lircmd.service
(From OE-Core rev: 7582421fc3a711e5ed23add75ed49207e699c422)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 12808a4159835b67d8d53d32bc9135811701a779)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
If it exists, there is no need to delete it, and if it does not,
devtool prints an ugly traceback.
(From OE-Core rev: 4ad488d2453525b7196e6d2406ac526412e3c560)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit af82e59e8f08369aabd5fa6eb43022982d4e59a7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Error: Transaction test error:
file /usr/share/man/man8/dhcpcd.8 conflicts between attempted installs of dhcpcd-doc-9.4.1-r0.cortexa57 and lib32-dhcpcd-doc-9.4.1-r0.armv7ahf_neon
The differences between the two files are as follows:
@@ -821,7 +821,7 @@
If you always use the same options, put them here.
.It Pa /usr/libexec/dhcpcd-run-hooks
Bourne shell script that is run to configure or de-configure an interface.
-.It Pa /usr/lib64/dhcpcd/dev
+.It Pa /usr/lib/dhcpcd/dev
Linux
.Pa /dev
management modules.
(From OE-Core rev: 800ea13091216a59e21718fa0fada45b45bdca2c)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 65ca2c4b7349a4f7dcfcc580d926a99c673deb60)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The script generated by the sdk_ext_postinst function was not quoting
the user existing PATH when updating it causing the export command to
fail.
Add necessary double quotes around $PATH.
(From OE-Core rev: d2800e00bb4a1d169e0a91b758d3fb2ec5e35f74)
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 00e96bf250eaaded839caf465dbc0af5b604aed7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The environment-setup script generated by the recipe was not quoting the
user existing PATH when updating it causing the export command to fail.
Add necessary double quotes around $PATH.
(From OE-Core rev: 64dd672193b43b1364acc73918a54abaa93645e4)
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 42177ff2d45ee70ad00917bb6fbabca49dae4f59)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The environment-setup script generated by the recipe was not quoting the
user existing PATH when updating it causing the export command to fail.
Add necessary double quotes around $PATH.
(From OE-Core rev: c9bf05d819fc27cb2943d138e2376b69140727b4)
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 2d4c032bf3187aaa953a0c33a999074e695f54bb)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
cups includes a web server. Users can surf to port 631 (default) of a
machine running cups to (potentially, based on configuration, default off)
view jobs, add printers, and perform other forms of administration.
The location of the various resources that are used by the built-in web server
(e.g. index.html) are installed under ${datadir}/doc/cups. By default these
artifacts would be included in the ${PN}-doc package. The comments in this
recipe, however, would suggest an attempt was made to have them added to
${PN}; albeit unsuccessfully.
These resources add roughly 1.8M to an image.
Since cups does include a configuration option to disable the web interface
(--enable-webif), add a PACKAGECONFIG (default off) to allow the user to
decide whether or not they would like the web interface configured and its
pieces added to the image. Enabling this PACKAGECONFIG both enables the
web interface to be configured and built into cups, and also adds (by way
of a recommendation) the web interface package to the image. Considering
that the previous intention was not working, defaulting this option to off
preserves the existing behaviour. Previously in order to have the web
interface data included in an image, a user would have needed to explicitly
add the ${PN}-doc package to their image.
(From OE-Core rev: 18194378508beda1ca1fee84e10351b5bf0d86a5)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 2c9bd267ec532cd86a4a1be1d4e499e2aae89aba)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The cups' PACKAGECONFIG is populated based on DISTRO_FEATURES, but a user
is free to enable or disable PACKAGECONFIGs at will. In theory it is
possible that pam is enabled globally in DISTRO_FEATURES but disabled in
cups' PACKAGECONFIG. Checking the PACKAGECONFIG to determine whether or not
pam is enabled would be a safer check rather than relying on DISTRO_FEATURES.
(From OE-Core rev: 7b23927a72a1f8b91802f5b2ca10f2cea239bd47)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit a053dd177ddc99ced11e68914079be0ffe261262)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The cups documentation is clear that the correct way to install into an
alternate root directory is to use the BUILDROOT variable. From INSTALL.md:
Use the `BUILDROOT` variable to install to an alternate root directory:
make BUILDROOT=/some/other/root/directory install
DESTDIR works, but we should use the mechanism the project specifically
created for this purpose.
(From OE-Core rev: a42066657c002679adcb471f329f09c8996e1b64)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit f8fc70674e0ea5df46969a06da62f8ed135cae4e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Running recipetool.RecipetoolTests.test_recipetool_handle_license_vars
followed by wic.Wic2.test_biosplusefi_plugin_qemu would show a failure of:
File "/media/build/poky/meta/lib/oeqa/utils/commands.py", line 351, in runqemu
qemu = oeqa.targetcontrol.QemuTarget(recipedata, targetlogger, image_fstype)
File "/media/build/poky/meta/lib/oeqa/targetcontrol.py", line 116, in __init__
use_kvm = oe.types.qemu_use_kvm(d.getVar('QEMU_USE_KVM'), d.getVar('TARGET_ARCH'))
File "/media/build/poky/meta/lib/oe/types.py", line 182, in qemu_use_kvm
if kvm and boolean(kvm):
File "/media/build/poky/meta/lib/oe/types.py", line 128, in boolean
raise ValueError("Invalid boolean value '%s'" % value)
ValueError: Invalid boolean value '/media/build/poky/meta/files/common-licenses'
which made no sense until you realise the recipetool test is corrupting
the tinfoil class. Work on a copy instead to avoid this.
(From OE-Core rev: af73a79f6d4e18e8cc81da19882b7125b92d2523)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7fe76fe17f67c1bbd108d02836692fed20d24771)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
RHEL compatible kernels do not support vgem so we disable virgl headless
testing.
(From OE-Core rev: 0f317a0533f20580e77a0d6d0b636c05b3230b1e)
Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 78bc1ba2361249ec845d1b9e28d429a37dd83910)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
glibc has it's dependencies handled more manually due to it's place
in the toolchain bootstrap. It depends upon the compiler and indirectly
through that to binutils. This did mean that if binutils changes and the
compiler does not, sstate and hash equivalence could mean that glibc
wouldn't rebuild.
Add a direct dependency on binutils that if it changes, it forces glibc
to rebuild, as it should.
(From OE-Core rev: de967efc52b858fd51b857d8de731692287430d7)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c4a7b3decff636292f5e76e95406a22b6fe4a994)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The previous fix wasn't enough to address all the possible ways the
manifests might be ordered. Rework the previous fix so it is tied
to the multilib cross-canadian code which is causing the problem.
RECIPE_SYSROOT_MANIFEST_SUBDIR is not documented as I'd hope nobody
ever needs to use this outside the core multilib code.
(From OE-Core rev: 0aa703c06bf101114836ac701bbb524302c0753a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit beab42e00713880cd95a04729c892f8662fbcbed)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
"""
require conf/multilib.conf
MACHINE = "qemuarm64"
MULTILIBS = "multilib:lib32"
DEFAULTTUNE:virtclass-multilib-lib32 = "armv7athf-neon"
bitbake gcc-cross-canadian-arm
"""
and then inspecting the lib32* manifest files under recipe-sysroot-native shows
them referencing lib32-recipe-sysroot instead of recipe-sysroot as used by
gcc-cross-canadian recipes.
To fix this separate out the manifest by multilib. It is caching mechanism to
optimise disk usage so this doesn't break anything, just separated out some files.
(From OE-Core rev: 29f7390add28d3a6fb6854bc750d1db3d969f027)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 891d3faa3ed3d1cc231da58e5fa1325f05d5ade5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Clause II.3 of the Vim license states that any distribution of Vim that
has been extended or modified must _at least_ indicate in the :version
output that this is the case.
Handily, Vim has a --with-modified-by argument to add a line in that
text, so use MAINTAINER. This is the distribution maintainer contact,
by default it is OE-Core Developers
<openembedded-core@lists.openembedded.org>.
(From OE-Core rev: ec594fe190f0f41f8c0388904d72015fce0cfa55)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit acc007e23445aa53182e13902dd9509c39dd5645)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This incorporates fixes for CVE-2023-1127, CVE-2023-1170, CVE-2023-1175.
Also remove runtime/doc/uganda.txt from the license checksum: the Vim
license is also in the top-level LICENSE file so this is redundant.
(From OE-Core rev: 2d9a183467def574bf3c4a2e2f9bc59965797f6e)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 71111e6b62d37c5e6853d7940dec2993df127a35)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
It fails to import anything from git/remote.py:
File "/path_to/python3-git-native/3.1.27-r0/GitPython-3.1.27/git/remote.py", line 700
url = Git.polish_url(url)
^
IndentationError: unexpected indent
(From OE-Core rev: 48633d8920210e55e0b9ee3004f0502f9f0eec48)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Error: Transaction test error:
file /usr/bin/vala-gen-introspect-0.56 conflicts between attempted installs of lib32-vala-0.56.3-r0.armv7ahf_neon and vala-0.56.3-r0.aarch64
file /usr/bin/vapigen-wrapper conflicts between attempted installs
of lib32-vala-0.56.3-r0.armv7ahf_neon and vala-0.56.3-r0.aarch64
The differences of vala-gen-introspect-0.56 are as follows:
@@ -2,7 +2,7 @@
prefix=/usr
exec_prefix=/usr
-libdir=/usr/lib64
+libdir=/usr/lib
pkglibdir=${libdir}/vala-0.56
if [ $# -ne 2 ]
The wrapper isn't used on target so we can simply delete it.
(From OE-Core rev: 8b41b5d2e423636942e34723ad940f6f143640c9)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3cf894b8a9c4fa14fcc7c7445e85e9ae3192b398)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
pkgconfig is being required to find dependencies for building kernel
native tools, move "inherit pkgconfig" to kernel.bbclass so BSP kernel
recipes can also benefit from it.
(From OE-Core rev: e09c50e01d0f5cf45b9622ab0ed33df12bdeb7ee)
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 8a84bd98e3fbc16c782f83064801e469d086911e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The meson wrapper setup command detection is broken in the case of an
implicit setup command with an option with a space-separated argument,
but the test was not detecting it since the case was not covered.
Add the option `--warnlevel 1` to the meson command line to cover this
case.
(From OE-Core rev: 3fbcaaa01304bbc645ddf01ef91805811e3c7f54)
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 54e9ee8a0c6c9fc89cbb743f0e4fc18607d503cf)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
From an SDK, running a meson setup build without an explicit setup
command can result in a native build when a cross build is expected.
The problem is in meson-wrapper where it tries to detect whether a
setup command is being used. The logic looks through all arguments for
a command, and the first argument it finds that doesn't start with a -
is treated as the command. This doesn't work for an implicit setup
command if any option with a space-separated argument exists. In this
case, the argument is incorrectly selected as the command, causing the
setup command options for the cross build to be excluded from the
command line, and thus a native build.
Improve the logic by just looking at the first argument. If it is
a known comand, then record it. Otherwise just assume it is the
implicit setup command.
Note that this fix does not address the possibility of a new meson
command. Two new echo statements are included to help the user in case
of trouble:
```
~/git/weston-imx$ meson --warnlevel 3 --prefix=/usr -Ddoc=false -Dbackend-drm-screencast-vaapi=false -Dcolor-management-lcms=false -Dpipewire=false -Dbackend-x11=false -Dxwayland=true -Dsimple-clients=all -Dbackend-wayland=false -Dbackend-default=drm -Dbackend-rdp=false -Dtest-junit-xml=false -Dlauncher-libseat=false -Dimage-jpeg=false -Dimage-webp=false -Drenderer-g2d=true build
meson-wrapper: Implicit setup command assumed
meson-wrapper: Running meson with setup options: " --cross-file=/opt/fsl-imx-internal-xwayland/6.1-langdale/sysroots/x86_64-pokysdk-linux/usr/share/meson/aarch64-poky-linux-meson.cross --native-file=/opt/fsl-imx-internal-xwayland/6.1-langdale/sysroots/x86_64-pokysdk-linux/usr/share/meson/meson.native "
The Meson build system
Version: 0.63.3
```
(From OE-Core rev: 1f30dedee80669475557d9de5f130b7a23eaa7ec)
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 9338bd66a3c9ab5cb781f2ee588306c5b31a3cb5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Vim uses pkgconfig to find dependencies but it wasn't present, so it
silently doesn't enable features like GTK+ UI.
[ YOCTO #15044 ]
(From OE-Core rev: 01eeabdd6f01c47fa637cee81e4ae3c61c2a9bb9)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 70900616298f5e70732a34e7406e585e323479ed)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>From NEWS for v250:
* Device nodes for the Software Guard eXtension enclaves (sgx_vepc) are
now also owned by the system group "sgx".
>From NEWS for v248:
* Intel SGX enclave device nodes (which expose a security feature of
newer Intel CPUs) will now be owned by a new system group "sgx".
Fixes following journal error entry during startup:
/lib/udev/rules.d/50-udev-default.rules:43 Unknown group 'sgx', ignoring
This is seen already on kirkstone.
(From OE-Core rev: 3fd47697df858d4093d9cb4c6a378fc07aa4d064)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bab455cd9b1b82e778f8523a767eb281edf6689e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We keep seeing this failure on the autobuilder but the output amounts
to "False is not True". Improve the debug message on the chance it may
make the issue clearer.
(From OE-Core rev: 9afb0e2f781720715fc6fd8595d6996465589892)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d03f4cf19c2cc96e9d942252a451521dfec42ebc)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Add direct dependency of below native python3 modules
to fix the compile issue
python3-semantic-version-native
python3-setuptools-native
python3-setuptools-scm-native
python3-toml-native
python3-typing-extensions-native
python3-wheel-native
This issue is not seen in the upstream yocto but in the project,
where the python modules are not built by any other dependency.
They have to be explicitly pulled.
This fixes below error:
File "<path to file>/python3-setuptools-rust-native/1.1.2-r0/recipe-sysroot-native/usr/lib/python3.10/site-packages/setuptools/config.py", line 422, in _parse_attr
module = importlib.import_module(module_name)
File "<path to file>/python3-setuptools-rust-native/1.1.2-r0/recipe-sysroot-native/usr/lib/python3.10/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
File "<frozen importlib._bootstrap>", line 1006, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 883, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "<path to file>/python3-setuptools-rust-native/1.1.2-r0/setuptools-rust-1.1.2/setuptools_rust/__init__.py", line 1, in <module>
from .build import build_rust
File "<path to file>/python3-setuptools-rust-native/1.1.2-r0/setuptools-rust-1.1.2/setuptools_rust/build.py", line 23, in <module>
from typing_extensions import Literal
ModuleNotFoundError: No module named 'typing_extensions'
(From OE-Core rev: 0ae1ed426e97d9d53fb31a9751de5a3f1898b16b)
Signed-off-by: Poonam Jadhav <Poonam.Jadhav@kpit.com>
Signed-off-by: Poonam Jadhav <ppjadhav456@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Currently binutils in buildtools is searching for /etc/etc/ld.so.conf
which makes no sense. ld_sysconfdir already contains /etc so we need to
drop the /etc from the fixed string.
(From OE-Core rev: 47528fa2aa590b3e04e4cc2b66704143419a92d1)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ccd28c418ab8390118d738fbe914395b5c2a1f75)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Added
=========
- ISO 3166-1: Add missing common names for Laos, Iran, and Syria.
Fixes#32
Changed
===========
- Translation updates for ISO 3166-1
- Kazakh from Debian BTS. Closes: #1025423
- Catalan from Debian BTS. Closes: #1026972
- Translation updates for ISO 3166-2
- Translation updates for ISO 3166-3
- Translation updates for ISO 639-2
- Translation updates for ISO 639-3
- Translation updates for ISO 639-5
- Translation updates for ISO 4217
- Translation updates for ISO 15924
Fixed
==========
- ISO 3166-3: Fix withdrawal dates of AN, CS and YU. Fixes#28
(From OE-Core rev: e2c6593b1e2bd004c233e6b9fd27170365e00c95)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit f2c8b9c9a97ba5ec9c5da94da84ebe216650d6cc)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Integrating the following commit(s) to linux-yocto/5.15:
4d335265c101 'Linux 5.15.94-rt59'
c3b4464f5d2b 'Linux 5.15.93-rt58'
c67bd325f576 'Linux 5.15.92-rt57'
48e551ae0f55 'Linux 5.15.86-rt56'
977a63a270ad 'Linux 5.15.85-rt55'
adaa1d9e19a5 'Linux 5.15.79-rt54'
ff3c61c5ead1 'Linux 5.15.76-rt53'
e17260e8d340 'Linux 5.15.73-rt52'
c83f436b7981 'Linux 5.15.71-rt51'
e01c9e3ba82d 'Linux 5.15.70-rt50'
debedeb4264e mm/memcg: Only perform the debug checks on !PREEMPT_RT
1ef2cd0b8676 mm/memcg: Add a comment regarding the release `obj'.
f8d153e08d42 mm/memcg: Add missing counter index which are not update in interrupt.
11624404f67a mm/memcg: Disable migration instead of preemption in drain_all_stock().
0a1f4de6ed4f mm/memcg: Protect memcg_stock with a local_lock_t
3f15202f27da mm/memcg: Opencode the inner part of obj_cgroup_uncharge_pages() in drain_obj_stock()
40dbbd2f9773 mm/memcg: Protect per-CPU counter by disabling preemption on PREEMPT_RT where needed.
6269831106f5 mm/memcg: Disable threshold event handlers on PREEMPT_RT
8da0e71b7b7d mm/memcg: Revert ("mm/memcg: optimize user context object stock access")
(From OE-Core rev: 7819b6b18dd7f77e8990644e42fb637095feb973)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit f318c27fdc4ac276743bd37c466e3fc7296bcfd5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating to the latest korg -stable release that comprises
the following commits:
d383d0f28eca Linux 5.15.96
49ce63694cae bpf: add missing header file include
80569627ce46 Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child qdiscs"
0c168d7f36d5 lib/Kconfig.debug: Allow BTF + DWARF5 with pahole 1.21+
6ba3de5a8a02 lib/Kconfig.debug: Use CONFIG_PAHOLE_VERSION
0f59e08070ba scripts/pahole-flags.sh: Use pahole-version.sh
3597fd5f9217 kbuild: Add CONFIG_PAHOLE_VERSION
c98077f7598a ext4: Fix function prototype mismatch for ext4_feat_ktype
43cb0369c84a audit: update the mailing list in MAINTAINERS
b5ef61edb1e5 wifi: mwifiex: Add missing compatible string for SD8787
a24eb3f99063 nbd: fix possible overflow on 'first_minor' in nbd_dev_add()
d518ca02542f binder: Gracefully handle BINDER_TYPE_FDA objects with num_fds=0
367d0456c792 binder: Address corner cases in deferred copy and fixup
b345b2200288 binder: fix pointer cast warning
c194fc351fec binder: defer copies of pre-patched txn data
d107b4352284 binder: read pre-translated fds from sender buffer
41d8b591d70a uaccess: Add speculation barrier to copy_from_user()
0d3d5099a50b drm/i915/gvt: fix double free bug in split_2MB_gtt_entry
d835f9c4ede2 powerpc/64s/radix: Fix RWX mapping with relocated kernel
87b3e4f845a2 powerpc/64s/radix: Fix crash with unaligned relocated kernel
0b0e9b5adc8e powerpc/vmlinux.lds: Add an explicit symbol for the SRWX boundary
b6fff8fa4f5b powerpc/vmlinux.lds: Ensure STRICT_ALIGN_SIZE is at least page aligned
e7f5e3b60c30 powerpc: use generic version of arch_is_kernel_initmem_freed()
fc58616b198b powerpc: dts: t208x: Disable 10G on MAC1 and MAC2
62302ac5777a can: kvaser_usb: hydra: help gcc-13 to figure out cmd_len
6b539a7dbb49 KVM: VMX: Execute IBPB on emulated VM-exit when guest has IBRS
78c1d35ed66c KVM: SVM: Skip WRMSR fastpath on VM-Exit if next RIP isn't valid
676248836577 KVM: x86: Fail emulation during EMULTYPE_SKIP on any exception
5456f0d53b4a random: always mix cycle counter in add_latent_entropy()
d2edb20b003e clk: mxl: syscon_node_to_regmap() returns error pointers
04d31929df12 powerpc: dts: t208x: Mark MAC1 and MAC2 as 10G
8ae31d36516b clk: mxl: Fix a clk entry by adding relevant flags
a0583edea4fd clk: mxl: Add option to override gate clks
ef1219115128 clk: mxl: Remove redundant spinlocks
e5580a805472 clk: mxl: Switch from direct readl/writel based IO to regmap based IO
20ea32ad9c99 drm/edid: Fix minimum bpc supported with DSC1.2 for HDMI sink
28985cd17ac7 wifi: rtl8xxxu: gen2: Turn on the rate control
d04d19cf0ead drm/etnaviv: don't truncate physical page address
60b502b3ffea Linux 5.15.95
3f94c70333f6 platform/x86/amd: pmc: add CONFIG_SERIO dependency
1c202909c8b0 net: sched: sch: Fix off by one in htb_activate_prios()
180a1632b6c7 ASoC: SOF: Intel: hda-dai: fix possible stream_tag leak
68c2db8ef56d alarmtimer: Prevent starvation by small intervals and SIG_IGN
35351e3060d6 kvm: initialize all of the kvm_debugregs structure before sending it to userspace
1cbb51d83f56 net/sched: tcindex: search key must be 16 bits
cd9569062d8e i40e: Add checking for null for nlmsg_find_attr()
290e7084926c net/sched: act_ctinfo: use percpu stats
22d0cb47047a flow_offload: fill flags to action structure
d53360d443be drm/i915/gen11: Wa_1408615072/Wa_1407596294 should be on GT list
8174915c7bf3 drm/i915/gen11: Moving WAs to icl_gt_workarounds_init()
43dd56f7bfcb mm/filemap: fix page end in filemap_get_read_batch
a158782b56b0 nilfs2: fix underflow in second superblock position calculations
13bc7dd5b365 ipv6: Fix tcp socket connection with DSCP.
f3326fa5e480 ipv6: Fix datagram socket connection with DSCP.
9c35c81fd6f0 ixgbe: add double of VLAN header when computing the max MTU
59a74da8da75 net: mpls: fix stale pointer if allocation fails during device rename
bf8b820ea0ca net: stmmac: Restrict warning on disabling DMA store and fwd mode
269520bee744 bnxt_en: Fix mqprio and XDP ring checking logic
0428aabbcc15 net: stmmac: fix order of dwmac5 FlexPPS parametrization sequence
1563e998a938 net: openvswitch: fix possible memory leak in ovs_meter_cmd_set()
338f826d3afe net/usb: kalmia: Don't pass act_len in usb_bulk_msg error path
59e30d2bd309 dccp/tcp: Avoid negative sk_forward_alloc by ipv6_pinfo.pktoptions.
becf55394f6a net/sched: tcindex: update imperfect hash filters respecting rcu
3d5f95be49c5 sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list
fa56f164455e net: ethernet: ti: am65-cpsw: Add RX DMA Channel Teardown Quirk
2603a5ca6223 net: bgmac: fix BCM5358 support by setting correct flags
a5e4f2b284dc i40e: add double of VLAN header when computing the max MTU
1f23ca5dba6c ixgbe: allow to increase MTU to 3K with XDP enabled
65d07ae69bd3 revert "squashfs: harden sanity check in squashfs_read_xattr_id_table"
50267cf35ba0 net: Fix unwanted sign extension in netdev_stats_to_stats64()
3775c95ffbc6 Revert "mm: Always release pages to the buddy allocator in memblock_free_late()."
57081f83849c selftest/lkdtm: Skip stack-entropy test if lkdtm is not available
9197daee9eb6 of: reserved_mem: Have kmemleak ignore dynamically allocated reserved mem
8b29a1866f64 hugetlb: check for undefined shift on 32 bit architectures
cca2b3feb701 sched/psi: Fix use-after-free in ep_remove_wait_queue()
c5f2151afb2a ALSA: hda/realtek - fixed wrong gpio assigned
1a3f8c85cd2a ALSA: hda/conexant: add a new hda codec SN6180
ecad2fafd424 mmc: mmc_spi: fix error handling in mmc_spi_probe()
1e06cf04239e mmc: sdio: fix possible resource leaks in some error paths
732e3b293ca3 mmc: jz4740: Work around bug on JZ4760(B)
fdaf88531cfd tcp: Fix listen() regression in 5.15.88.
9a1d92cbeac3 netfilter: nft_tproxy: restrict to prerouting hook
3fc9dc0340e0 platform/x86/amd: pmc: Disable IRQ1 wakeup for RN/CZN
c2cb2c71da50 platform/x86: amd-pmc: Correct usage of SMU version
2dcf115681d4 platform/x86: amd-pmc: Fix compilation when CONFIG_DEBUGFS is disabled
32e3a6c4a756 platform/x86: amd-pmc: Export Idlemask values based on the APU
1723efa4c375 drm/amd/display: Fail atomic_check early on normalize_zpos error
178993157e8c aio: fix mremap after fork null-deref
3cfc5e84ac6f mptcp: do not wait for bare sockets' timeout
e0e93c8599c5 xfs: don't leak btree cursor when insrec fails after a split
294c022a070a xfs: purge dquots after inode walk fails during quotacheck
96f0651a264b xfs: assert in xfs_btree_del_cursor should take into account error
88ccad17784a xfs: don't assert fail on perag references on teardown
ddf1e0fd43b2 xfs: avoid unnecessary runtime sibling pointer endian conversions
5f0e21a4a885 xfs: validate v5 feature fields
ea0ce7c13610 xfs: set XFS_FEAT_NLINK correctly
0cc9f9cc8d91 xfs: detect self referencing btree sibling pointers
4e96f5ace9ac xfs: fix potential log item leak
8abef857eb91 xfs: zero inode fork buffer at allocation
63b8e4cc31fd nvmem: core: fix return value
eac1ad2f5e21 nvmem: core: fix registration vs use race
8f9c4b2a3b13 nvmem: core: fix cleanup after dev_set_name()
14eea6449473 nvmem: core: add error handling for dev_set_name
36a5ae5cf90a platform/x86: touchscreen_dmi: Add Chuwi Vi8 (CWI501) DMI match
f1cb549bcd0b drm/amd/display: Properly handle additional cases where DCN is not supported
5ca46a04a5c3 nvme-fc: fix a missing queue put in nvmet_fc_ls_create_association
9ed522143f95 s390/decompressor: specify __decompress() buf len to avoid overflow
99875ea9b5b4 net: sched: sch: Bounds check priority
5027084bc097 drm/nouveau/devinit/tu102-: wait for GFW_BOOT_PROGRESS == COMPLETED
4fdc19e4fa23 net: stmmac: do not stop RX_CLK in Rx LPI state for qcs404 SoC
6769cd8a7488 net/rose: Fix to not accept on connected socket
2ddb9fa56665 tools/virtio: fix the vringh test for virtio ring changes
a35c241065ee ASoC: cs42l56: fix DT probe
f312367f5246 bpf, sockmap: Don't let sock_map_{close,destroy,unhash} call itself
e909f5f2aa55 ALSA: hda: Do not unset preset when cleaning up codec
5541d35f5d03 selftests/bpf: Verify copy_register_state() preserves parent/live fields
7814e28c4183 ASoC: Intel: sof_cs42l42: always set dpcm_capture for amplifiers
d15ab7320892 ASoC: Intel: sof_rt5682: always set dpcm_capture for amplifiers
06f2a84d626a ACPI / x86: Add support for LPS0 callback handler
14a2de5c16f3 riscv: kprobe: Fixup misaligned load text
b5d5f1ad057e kprobes: treewide: Cleanup the error messages for kprobes
2a6853c0ea03 mptcp: fix locking for in-kernel listener creation
(From OE-Core rev: 5f969d8a3b8d169a71b7a74da2eaf6f2e730c5d5)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 020944ef921ae2b6923b139bad5f7a79217dace1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating to the latest korg -stable release that comprises
the following commits:
e2c1a934fd8e Linux 5.15.94
17170acdc7c8 Documentation/hw-vuln: Add documentation for Cross-Thread Return Predictions
5122e0e44363 KVM: x86: Mitigate the cross-thread return address predictions bug
8f12dcab90e8 x86/speculation: Identify processors vulnerable to SMT RSB predictions
e63c434de8b6 drm/i915: Fix VBT DSI DVO port handling
fc88c6838183 drm/i915: Initialize the obj flags for shmem objects
2e557c8ca2c5 drm/amdgpu/fence: Fix oops due to non-matching drm_sched init/fini
3af734f3eac6 Fix page corruption caused by racy check in __free_pages
c94ce5ea68dc arm64: dts: meson-axg: Make mmc host controller interrupts level-sensitive
b796c02df37e arm64: dts: meson-g12-common: Make mmc host controller interrupts level-sensitive
5d9b771f53c1 arm64: dts: meson-gx: Make mmc host controller interrupts level-sensitive
ac39dce11912 rtmutex: Ensure that the top waiter is always woken up
86f7e4239336 powerpc/64s/interrupt: Fix interrupt exit race with security mitigation switch
2907cf3f2ec7 riscv: Fixup race condition on PG_dcache_clean in flush_icache_pte
beb1cefa3ccd ceph: flush cap releases when the session is flushed
86733ab23933 clk: ingenic: jz4760: Update M/N/OD calculation algorithm
239e927eb2ea usb: typec: altmodes/displayport: Fix probe pin assign check
48aecce116e4 usb: core: add quirk for Alcor Link AK9563 smartcard reader
a8178bb1c776 btrfs: free device in btrfs_close_devices for a single device filesystem
8d13f2c3e2ba mptcp: be careful on subflow status propagation on errors
25141fb41191 net: USB: Fix wrong-direction WARNING in plusb.c
d1fba1e096ff cifs: Fix use-after-free in rdata->read_into_pages()
1b83e7e174d8 pinctrl: intel: Restore the pins that used to be in Direct IRQ mode
f5f025b703e2 spi: dw: Fix wrong FIFO level setting for long xfers
71668706fbe7 pinctrl: single: fix potential NULL dereference
a2a1065739e9 pinctrl: aspeed: Fix confusing types in return value
99450163bcf6 pinctrl: mediatek: Fix the drive register definition of some Pins
9f0d2c268488 ASoC: topology: Return -ENOMEM on memory allocation failure
1a52ef89e369 riscv: stacktrace: Fix missing the first frame
5fb815433450 ALSA: pci: lx6464es: fix a debug loop
105ea562f6cf selftests: forwarding: lib: quote the sysctl values
528e3f3a4b53 rds: rds_rm_zerocopy_callback() use list_first_entry()
48d6d8f2f609 igc: Add ndo_tx_timeout support
62ff7dd961ab net/mlx5: Serialize module cleanup with reload and remove
95d2394f84f1 net/mlx5: fw_tracer, Zero consumer index when reloading the tracer
ab7f3f6a9d9b net/mlx5: fw_tracer, Clear load bit when freeing string DBs buffers
193528646ed2 net/mlx5e: IPoIB, Show unknown speed instead of error
7c6e8eb617c1 net/mlx5: Bridge, fix ageing of peer FDB entries
49ece61a078f net/mlx5e: Update rx ring hw mtu upon each rx-fcs flag change
31172267bab0 net/mlx5e: Introduce the mlx5e_flush_rq function
e4e4e93d31b3 net/mlx5e: Move repeating clear_bit in mlx5e_rx_reporter_err_rq_cqe_recover
3f18b9ed8c83 net: mscc: ocelot: fix VCAP filters not matching on MAC with "protocol 802.1Q"
6acb5d853b41 net: dsa: mt7530: don't change PVC_EG_TAG when CPU port becomes VLAN-aware
ca834a017851 ice: Do not use WQ_MEM_RECLAIM flag for workqueue
70d48c7992ca uapi: add missing ip/ipv6 header dependencies for linux/stddef.h
3cec44036f48 ionic: clean interrupt before enabling queue to avoid credit race
fad12afe877a net: phy: meson-gxl: use MMD access dummy stubs for GXL, internal PHY
d23385a200e6 bonding: fix error checking in bond_debug_reregister()
11006d9d083f net: phylink: move phy_device_free() to correctly release phy device
fb022d7b1c79 xfrm: fix bug with DSCP copy to v6 from v4 tunnel
6fe1ad42afa8 RDMA/usnic: use iommu_map_atomic() under spin_lock()
8f5fe1cd8e6a RDMA/irdma: Fix potential NULL-ptr-dereference
1b4ef90cbcfa IB/IPoIB: Fix legacy IPoIB due to wrong number of queues
5dc688fae6b7 xfrm/compat: prevent potential spectre v1 gadget in xfrm_xlate32_attr()
9bae58d58b6b IB/hfi1: Restore allocated resources on failed copyout
558b1fa01cdc xfrm: compat: change expression for switch in xfrm_xlate64
238b38e89fff can: j1939: do not wait 250 ms if the same addr was already claimed
d859184b60d4 of/address: Return an error when no valid dma-ranges are found
70f37b3118de tracing: Fix poll() and select() do not work on per_cpu trace_pipe and trace_pipe_raw
df017495039a ALSA: hda/realtek: Enable mute/micmute LEDs on HP Elitebook, 645 G9
ca9d54220345 ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro 360
706b6d86a6f8 ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control()
731fc29de6a2 ALSA: hda/realtek: Add Positivo N14KP6-TG
b93805980714 btrfs: zlib: zero-initialize zlib workspace
e65faa7e39a2 btrfs: limit device extents to the device size
2e4dd07fda7a migrate: hugetlb: check for hugetlb shared PMD in node migration
072e7412e857 mm/migration: return errno when isolate_huge_page failed
85d7786c66b6 Linux 5.15.93
6e2fac197de2 bpf: Skip invalid kfunc call in backtrack_insn
46c9088cabd4 gfs2: Always check inode size of inline inodes
8eb2e58a92e0 gfs2: Cosmetic gfs2_dinode_{in,out} cleanup
e4991910f150 wifi: brcmfmac: Check the count value of channel spec to prevent out-of-bounds reads
97ccfffcc061 f2fs: fix to do sanity check on i_extra_isize in is_alive()
64fa364ad324 fbdev: smscufx: fix error handling code in ufx_usb_probe
a77141a06367 ovl: Use "buf" flexible array for memcpy() destination
1692fedd0f66 fs/ntfs3: Validate attribute data and valid sizes
a5b9cb72769b powerpc/imc-pmu: Revert nest_init_lock to being a mutex
3691f43a0959 iio:adc:twl6030: Enable measurement of VAC
8c84f50390b2 bpf: Do not reject when the stack read size is different from the tracked scalar size
14b6198abbd5 bpf: Fix incorrect state pruning for <8B spill/fill
575a9f6fefd9 phy: qcom-qmp-combo: fix runtime suspend
e58df87394be phy: qcom-qmp-combo: fix broken power on
368ea32e0ad0 phy: qcom-qmp-usb: fix memleak on probe deferral
2f27d3811a41 phy: qcom-qmp-combo: fix memleak on probe deferral
0cb10ddab7df phy: qcom-qmp-combo: disable runtime PM on unbind
0ef5ffe11682 serial: 8250_dma: Fix DMA Rx rearm race
e30328f599b9 serial: 8250_dma: Fix DMA Rx completion race
a5a171f61a04 nvmem: core: fix cell removal on error
6d9fa3ff6548 nvmem: core: remove nvmem_config wp_gpio
adf80e072c95 nvmem: core: initialise nvmem->id early
e3ebc3e23bd9 drm/i915: Fix potential bit_17 double-free
997bed0f3cde Squashfs: fix handling and sanity checking of xattr_ids count
7a0cfaf9d457 highmem: round down the address passed to kunmap_flush_on_unmap()
5dbe1ebd5647 mm/swapfile: add cond_resched() in get_swap_pages()
daf82418045f fpga: stratix10-soc: Fix return value check in s10_ops_write_init()
afd32b683154 x86/debug: Fix stack recursion caused by wrongly ordered DR7 accesses
066ecbf1a53e kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup()
481bf49f58bb usb: gadget: f_uac2: Fix incorrect increment of bNumEndpoints
fdf40e582442 mm: hugetlb: proc: check for hugetlb shared PMD in /proc/PID/smaps
6c300351c55d riscv: disable generation of unwind tables
a5c275add96b parisc: Wire up PTRACE_GETREGS/PTRACE_SETREGS for compat case
a964decd1307 parisc: Fix return code of pdc_iodc_print()
488eaf0625d9 nvmem: qcom-spmi-sdam: fix module autoloading
8569beb66fe6 iio: imu: fxos8700: fix MAGN sensor scale and unit
8aa5cdcfaf6a iio: imu: fxos8700: remove definition FXOS8700_CTRL_ODR_MIN
4112ba1ad5ca iio: imu: fxos8700: fix failed initialization ODR mode assignment
abf7b2ba51f5 iio: imu: fxos8700: fix incorrect ODR mode readback
412757741c22 iio: imu: fxos8700: fix swapped ACCEL and MAGN channels readback
34909532b12e iio: imu: fxos8700: fix map label of channel type to MAGN sensor
8346eb4987e5 iio: imu: fxos8700: fix IMU data bits returned to user space
7567cdf3ce21 iio: imu: fxos8700: fix incomplete ACCEL and MAGN channels readback
6969852220af iio: imu: fxos8700: fix ACCEL measurement range selection
cdacfb220556 iio:adc:twl6030: Enable measurements of VUSB, VBAT and others
9988063dcefd iio: adc: berlin2-adc: Add missing of_node_put() in error path
c691a5c0fd03 iio: hid: fix the retval in gyro_3d_capture_sample
ef80a34699cd iio: hid: fix the retval in accel_3d_capture_sample
c4eae85c73be efi: Accept version 2 of memory attributes table
710db8206351 ALSA: hda/realtek: Add Acer Predator PH315-54
3fbddf86d924 watchdog: diag288_wdt: fix __diag288() inline assembly
700dd5bc72d3 watchdog: diag288_wdt: do not use stack buffers for hardware data
21bc51e29e66 net: qrtr: free memory on error path in radix_tree_insert()
dccbd062d716 fbcon: Check font dimension limits
5d7500d99164 Input: i8042 - add Clevo PCX0DX to i8042 quirk table
fc9e27f3ba08 vc_screen: move load of struct vc_data pointer in vcs_read() to avoid UAF
9ba1188a719a usb: gadget: f_fs: Fix unbalanced spinlock in __ffs_ep0_queue_wait
fe86480e903f usb: dwc3: qcom: enable vbus override when in OTG dr-mode
a412fe7baf40 iio: adc: stm32-dfsdm: fill module aliases
994465939830 drm/amd/display: Fix timing not changning when freesync video is enabled
a3967128bc65 net/x25: Fix to not accept on connected socket
396ea318e7fa platform/x86: gigabyte-wmi: add support for B450M DS3H WIFI-CF
1577524633c7 platform/x86: dell-wmi: Add a keymap for KEY_MUTE in type 0x0010 table
540cea9f9b6d i2c: rk3x: fix a bunch of kernel-doc warnings
0aaabdb900c7 scsi: iscsi_tcp: Fix UAF during login when accessing the shost ipaddress
17b738590b97 scsi: iscsi_tcp: Fix UAF during logout when accessing the shost ipaddress
8cd0499f9c33 perf/x86/intel: Add Emerald Rapids
709351537096 scsi: target: core: Fix warning on RT kernels
b7960f54362b i2c: mxs: suppress probe-deferral error message
b9b87fc34b7f i2c: designware-pci: Add new PCI IDs for AMD NAVI GPU
d8fc0b5fb3e8 efi: fix potential NULL deref in efi_mem_reserve_persistent
f423c2efd51d net: openvswitch: fix flow memory leak in ovs_flow_cmd_new
798502864789 virtio-net: Keep stop() to follow mirror sequence of open()
5d884f9e80ff selftests: net: udpgso_bench_tx: Cater for pending datagrams zerocopy benchmarking
63aa63af3a1e selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs
d41a3f9cc242 selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided
5af98283e554 selftests: net: udpgso_bench_rx: Fix 'used uninitialized' compiler warning
89e0701e03c5 ata: libata: Fix sata_down_spd_limit() when no link speed is reported
9ab896775f98 can: j1939: fix errant WARN_ON_ONCE in j1939_session_deactivate
02d77d98e020 igc: return an error if the mac type is unknown in igc_ptp_systim_to_hwtstamp()
04a735582095 riscv: kprobe: Fixup kernel panic when probing an illegal position
206c367b6a2e ip/ip6_gre: Fix non-point-to-point tunnel not generating IPv6 link local address
90178bc0f28f ip/ip6_gre: Fix changing addr gen mode not generating IPv6 link local address
dfe2f0ea3851 net: phy: meson-gxl: Add generic dummy stubs for MMD register access
b7398efe24a9 squashfs: harden sanity check in squashfs_read_xattr_id_table
89a69216f170 netfilter: br_netfilter: disable sabotage_in hook after first suppression
cdb444e73fdc drm/i915/adlp: Fix typo for reference clock
960f20d8582e drm/i915/guc: Fix locking when searching for a hung request
c27e0eac568a netrom: Fix use-after-free caused by accept on already connected socket
511c922c5bf6 block, bfq: fix uaf for bfqq in bic_set_bfqq()
a62c129dcbfa block, bfq: replace 0/1 with false/true in bic apis
37a744a068c9 block/bfq-iosched.c: use "false" rather than "BLK_RW_ASYNC"
2cd1e9c013ec net: phy: dp83822: Fix null pointer access on DP83825/DP83826 devices
18c18c2110ea sfc: correctly advertise tunneled IPv6 segmentation
878b06f60a08 dpaa2-eth: execute xdp_do_flush() before napi_complete_done()
3b5774cd6b94 dpaa_eth: execute xdp_do_flush() before napi_complete_done()
5a7040a649c8 virtio-net: execute xdp_do_flush() before napi_complete_done()
94add5b27290 qede: execute xdp_do_flush() before napi_complete_done()
a273f8e3ab90 ice: Prevent set_channel from changing queues while RDMA active
b432e183c26e fix "direction" argument of iov_iter_kvec()
d8b8306e963e fix iov_iter_bvec() "direction" argument
389c7c0ef9cc READ is "data destination", not source...
7a3649bf5bef WRITE is "data source", not destination...
83cc6a7bb75c vhost/net: Clear the pending messages when the backend is removed
7c7d344bc386 scsi: Revert "scsi: core: map PQ=1, PDT=other values to SCSI_SCAN_TARGET_PRESENT"
4b199dc09416 drm/vc4: hdmi: make CEC adapter name unique
dc1f8ab25a17 arm64: dts: imx8mm: Fix pad control for UART1_DTE_RX
c681d7a4ed3d bpf, sockmap: Check for any of tcp_bpf_prots when cloning a listener
34ad5d8885f5 bpf: Fix to preserve reg parent/live fields when copying range info
7b86f9ab5692 bpf: Support <8-byte scalar spill and refill
1b9256c96220 ALSA: hda/via: Avoid potential array out-of-bound in add_secret_dac_path()
b7abeb691637 bpf: Fix a possible task gone issue with bpf_send_signal[_thread]() helpers
cfcc2390dbc5 ASoC: Intel: bytcr_wm5102: Drop reference count of ACPI device after use
b4b204565a45 ASoC: Intel: bytcr_rt5640: Drop reference count of ACPI device after use
1f1e7635c54d ASoC: Intel: bytcr_rt5651: Drop reference count of ACPI device after use
41d323c352ac ASoC: Intel: bytcht_es8316: Drop reference count of ACPI device after use
6a9990e1d92b ASoC: Intel: bytcht_es8316: move comment to the right place
ffcdf354555b ASoC: Intel: boards: fix spelling in comments
bd0b17ab1b76 bus: sunxi-rsb: Fix error handling in sunxi_rsb_init()
5f4543c9382a firewire: fix memory leak for payload of request subaction to IEC 61883-1 FCP region
e515b9902f5f Linux 5.15.92
c7caf669b89d net: mctp: purge receive queues on sk destruction
046de74f9af9 net: fix NULL pointer in skb_segment_list
7ab3376703ce selftests: Provide local define of __cpuid_count()
e92e311ced6f selftests/vm: remove ARRAY_SIZE define from individual tests
c9e52db90031 tools: fix ARRAY_SIZE defines in tools and selftests hdrs
c1aa0dd52db4 Bluetooth: fix null ptr deref on hci_sync_conn_complete_evt
02e61196c578 ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel systems
79dd676b445f extcon: usbc-tusb320: fix kernel-doc warning
c2bd60ef20de ext4: fix bad checksum after online resize
4cd1e18bc04a cifs: fix return of uninitialized rc in dfs_cache_update_tgthint()
43acd767bd90 dmaengine: imx-sdma: Fix a possible memory leak in sdma_transfer_init
a54c5ad007ea HID: playstation: sanity check DualSense calibration data.
6d7686cc11b7 blk-cgroup: fix missing pd_online_fn() while activating policy
2144859229c1 erofs/zmap.c: Fix incorrect offset calculation
0dfef5031335 bpf: Skip task with pid=1 in send_signal_common()
e8bb772f745e firmware: arm_scmi: Clear stale xfer->hdr.status
80cb9f1a76aa arm64: dts: imx8mq-thor96: fix no-mmc property for SDHCI
162fad24d2e1 arm64: dts: freescale: Fix pca954x i2c-mux node names
82ad105e1a55 ARM: dts: vf610: Fix pca9548 i2c-mux node names
5aee5f33e03a ARM: dts: imx: Fix pca9547 i2c-mux node name
(From OE-Core rev: a8a3d9d246d06c5448078332c3a7a2d6d192a724)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit f5deb914ba17c131c4880da8d9a1184c2d2a3ef6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This recently got an updated CPE which matches this recipe, but the issue
is related to an entirely different shadow project so ignore it.
(From OE-Core rev: d0b1f61eb1fadf44b2e4fba13b6a94140cf029db)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 2331e98abb09cbcd56625d65c4e5d258dc29dd04)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Remove branching that depends on secret data.
since the `ok` variable isn't used any more, we can remove all code
used to calculate it
(From OE-Core rev: 05b1222815bec400d573f7b06c0ad6b7b2d78a80)
Signed-off-by: Vivek Kumbhar <vkumbhar@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This code appears to be dangerous, it swallows exceptions, turning them into
"handled" versions which then show no errors to the user. This is a pretty
poor user experience and I can't see why this code should be swallowing
such things. Drop the worst bits of code.
(Bitbake rev: a29ffcc12df24737e702e198aeb8f6892884932b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Martin Jansa reported that if you put a syntax error into an imported
module such as qa.py in OE, no error is shown.
Part of the issue appears to be that the catch_parse_error() decorator only
catches certain exceptions and SyntaxError isn't one of them. As far as I can
tell we should remove all the special cases and use the more advanced code
in all cases, not just expansion errors.
I confirmed this now prints a proper error message for a qa.py syntax error.
(Bitbake rev: e66012bfda60ffe1658473e25879aa67909ae65f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Calling SystemExit doesn't work well with server/client usage since the string
isn't printed to the right place. Use bb.fatal() instead which prints the right
log output and raises and handled exception which then shows correctly on the
UI.
(Bitbake rev: b9ae7164d9e744e8eb9aaff79218f57233a449b7)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Some variables may be set as:
X = 1
as well the more usual
X = "1"
so add support to to_boolean to handle this case.
(Bitbake rev: e7df13a61911b7431802af2b4d7472b2aaf346fa)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
qemu doesn't always behave well and can hang too.
kill it with force if it was still alive. Move clean up
commands into cleanup() function.
(From OE-Core rev: 929e7679c1d9b21ac5130a9cbc83c415fb9f63f5)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 079c2935d2f585ce49e1c7daab2155fcf0094c48)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
When qemu machine hangs, the ssh commands done by tests
are not timing out. do_testimage() task has last logs like this:
DEBUG: time: 1673531086.3155053, endtime: 1673531686.315502
The test process is stuck for hours, or for ever if the
executing command or test case did not set a timeout correctly.
The default 300 second timeout is not working when target hangs.
Note that timeout is really a "inactive timeout" since data returned
by the process will reset the timeout.
Make the process stdout non-blocking so read() will always return
right away using os.set_blocking() available in python 3.5 and later.
Then change from python codec reader to plain read() and make
the ssh subprocess stdout non-blocking. Even with select()
making sure the file had input to be read, the codec reader was
trying to find more stuff and blocking for ever when process hangs.
While at it, add a small timeout to read data in larger chunks if
possible. This avoids reading data one or few characters at a time
and makes the debug logs more readable.
close() the stdout file in all cases after read loop is complete.
Then make sure to wait or kill the ssh subprocess in all cases.
Just reading the output stream and receiving EOF there does not mean
that the process exited, and wait() needs a timeout if the process
is hanging. In the end kill the process and return the return value
and captured output utf-8 encoded, just like before these changes.
This fixes ssh run() related deadlocks when a qemu target hangs
completely.
(From OE-Core rev: 04f080802b4a28709a105e4f0ead56a7a2da42b4)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 9c63970fce3a3d6029745252a6ec2bf9b9da862d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
If a task is aborted the buildstats file isn't complete, so calculate
when the build finished and use that as a end time.
(From OE-Core rev: ffce2744f5833d1c30db7f50443503b3c1a1d119)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 23ebaec476dc46aebe5997f025661137f3e341bd)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Martin Jansa spotted patchreview.py reports Malformed Upstream-Status in a
patch in this recipe. The patch is not being applied since there is no ptest
override.
The test in question was also disabled due to an issue with new versions of
openssh.
Add a workaround for the broken test, enable it, drop the broken patch.
(From OE-Core rev: 2c05ee17d58774fc628b8a5b55a14551590fadaa)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e9f2cc084638ce9cb5339df611e473c30f0e40b1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Backporting a patching from the 2.13.x stable branch of lttng
to fix the build against kernel 6.2+.
(From OE-Core rev: d04dcd155fb8ce420c66b53ae61360680513ccf8)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3aed7dfe5ff6f52497dcffa58bc2f06cf709ea18)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Symbolic links to the files are included during the output hash
calculation but symlinks to the directories are missed.
So if the new symlink to a directory was the only change made,
then the output hash won't change,
and the Hash Equivalence server may change unihash.
In the next run bitbake may use an older package from sstate-cache.
To fix this followlinks=True flag could be set for os.walk
but it can lead to infinite recursion if link points
to a parent directory of itself.
Also, all files from a directory to which symlink points
would be included in depsig file.
Therefore another solution was applied, I added code that will loop
through directories and process those that are symlinks.
(From OE-Core rev: 477a4e816494e256b309fd7e84b2c3796708e6e8)
Signed-off-by: Mateusz Marciniec <mateuszmar2@gmail.com>
Signed-off-by: Tomasz Dziendzielski <tomasz.dziendzielski@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ee729163f31f26b1462a47e1e53f7a0f9de9b464)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The original patch was actually allowing .debug modules
though which was in-correct. This change blocks the
parsing of .debug modules (which is correct). As noted in
[YOCTO #15022] this should address the empty modules.dep
when using the BusyBox depmod.
(From OE-Core rev: 49bddef864768bbf339513414b42a820f861bdb7)
Signed-off-by: Saul Wold <saul.wold@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 339c3c3abe8d405cfe7b3f34db9b3547bcaaf878)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This allows to specify partition with fstype=none in the wks file
to have partition created but without following mkfs. The none fstype
is in the list already but the usage is not documented.
Example;
part /data --ondisk mmcblk0 --fstype=none --align 4096 --fixed-size 512
will create a partition, filesystem may be created manualy on the host
or target and data will be preserved if the device is reflashed using
same wks. Works with bmaptool and probably does not work with dd.
Use case is persistent filesystem/data between reflashing of the image.
(From OE-Core rev: 9af61442c8bc2e0b447706734cb90b3f4bcb2d6b)
Signed-off-by: Pavel Zhukov <pavel@zhukoff.net>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 351cb64da37aa43113e5192605d04436652aa3b8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
openldap is added as a dependency so the build will not fail,
as otherwise ldap headers are not found during configure phase
Note: due to upstream bug (now fixed) building LDAP/LDAPS support
with minimal configurations can sometimes not work, see details at:
https://github.com/curl/curl/pull/10445
(From OE-Core rev: e6a001c22ec1b0d5487027148dda099847474272)
Signed-off-by: Federico Pellegrin <fede@evolware.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a999f62f5692687a5557f7a50c7c768c50f3d7d3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Newest linux-firmware release got firmware for Adreno A200. Add these
two files to the ${PN}-qcom-adreno-a2xx package. As these files are
licensed under a separate BSD-3-Clause license, add separate license
package too.
(From OE-Core rev: 97e0687455c91acbe57dbaf3cbfaed5d962e4ee6)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 56e1b2b06ef7f22d4ac5899046f650ae8ec0d547)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
It is not enough to depend on the ${PN}-qcom-license package. Set
LICENSE variable for all the qcom packages to point to the proper
license.
(From OE-Core rev: bc41970a9a1f1e9227b24679aae935326cd4bf94)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9dc41e18dc138a7cce920f8e4c85eb3130c0d553)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Denial of service fixes:
• Fix an incorrect assertion that could be used to crash dbus-daemon or
other users of DBusServer prior to authentication, if libdbus was compiled
with assertions enabled.
We recommend that production builds of dbus, for example in OS distributions,
should be compiled with checks but without assertions.
(dbus#421, Ralf Habacker; thanks to Evgeny Vereshchagin)
Other fixes:
• When connected to a dbus-broker, stop dbus-monitor from incorrectly
replying to Peer method calls that were sent to the dbus-broker with
a NULL destination (dbus#301, Kai A. Hiller)
• Fix out-of-bounds varargs read in the dbus-daemon's config-parser.
This is not attacker-triggerable and appears to be harmless in practice,
but is technically undefined behaviour and is detected as such by
AddressSanitizer. (dbus!357, Evgeny Vereshchagin)
• Avoid a data race in multi-threaded use of DBusCounter
(dbus#426, Ralf Habacker)
• Fix a crash with some glibc versions when non-auditable SELinux events
are logged (dbus!386, Jeremi Piotrowski)
• If dbus_message_demarshal() runs out of memory while validating a message,
report it as NoMemory rather than InvalidArgs (dbus#420, Simon McVittie)
• Use C11 _Alignof if available, for better standards-compliance
(dbus!389, Khem Raj)
• Stop including an outdated copy of pkg.m4 in the git tree
(dbus!365, Simon McVittie)
• Documentation:
· Consistently use Gitlab bug reporting URL (dbus!372, Marco Trevisan)
• Tests fixes:
· Fix the test-apparmor-activation test after dbus#416
(dbus!380, Dave Jones)
Internal changes:
• Fix CI builds with recent git versions (dbus#447, Simon McVittie)
(From OE-Core rev: be5d5919242d6d26bdb1e70b83aab88949ffe0eb)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 31245df3061c1a913bffe5e11ad6ac7fa9c83915)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 83e9bd1507fd5f79c680dde30b0f66df84cde6b0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Changelog:
==========
1. The SIMD dispatchers in libjpeg-turbo 2.1.4 and prior stored the list of
supported SIMD instruction sets in a global variable, which caused an innocuous
race condition whereby the variable could have been initialized multiple times
if 'jpeg_start_*compress()' was called simultaneously in multiple threads.
libjpeg-turbo 2.1.5 included an undocumented attempt to fix this race condition
by making the SIMD support variable thread-local. However, that caused another
issue whereby, if 'jpeg_start_*compress()' was called in one thread and
'jpeg_read_*()' or 'jpeg_write_*()' was called in a second thread, the SIMD
support variable was never initialized in the second thread. On x86 systems,
this led the second thread to incorrectly assume that AVX2 instructions were
always available, and when it attempted to use those instructions on older x86
CPUs that do not support them, an illegal instruction error occurred. The SIMD
dispatchers now ensure that the SIMD support variable is initialized before
dispatching based on its value.
(From OE-Core rev: 195aae4fcb14c818629b04fc371910125a4b3277)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 009a1b0390d791d614b8d4a1407e7479c261f60d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit d57de2a7169de369105ed9bce19a43dad68f350a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This is needed when the SDK or eSDK is installed in a /build top level
directory as it conflicts with the build directory within the existing
/usr/src/debug/build (which is really a link). Rename it and then do the
copy, this is not an issue with master currently due to some other
changes that occurred in master.
Fixes: [YOCTO #15026]
(From OE-Core rev: 80839835ec9fcb63069289225a3c1af257ffdef7)
Signed-off-by: Saul Wold <saul.wold@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
from bb.main import bitbake_main, BitBakeConfigParameters, BBMainException
if sys.getfilesystemencoding() != "utf-8":
sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\nPython can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\nPython can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
import bb
bb.utils.check_system_locale()
# Users shouldn't be running this code directly
if len(sys.argv) != 10 or not sys.argv[1].startswith("decafbad"):
sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\nPython can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
bb.utils.check_system_locale()
# Users shouldn't be running this code directly
if len(sys.argv) != 2 or not sys.argv[1].startswith("decafbad"):
for packages in Poky and OE-Core, tracking the evolution of the number of
unpatched CVEs and the status of patches. Such information is available for
the current development version and for each supported release.
Security is a process, not a product, and thus at any time, a number of security
issues may be impacting Poky and OE-Core. It is up to the maintainers, users,
contributors and anyone interested in the issues to investigate and possibly fix them by
updating software components to newer versions or by applying patches to address them.
It is recommended to work with Poky and OE-Core upstream maintainers and submit
patches to fix them, see ":doc:`../contributor-guide/submit-changes`" for details.
Vulnerability check at build time
=================================
To enable a check for CVE security vulnerabilities using
:ref:`ref-classes-cve-check` in the specific image or target you are building,
add the following setting to your configuration::
INHERIT += "cve-check"
The CVE database contains some old incomplete entries which have been
deemed not to impact Poky or OE-Core. These CVE entries can be excluded from the
check using build configuration::
include conf/distro/include/cve-extra-exclusions.inc
With this CVE check enabled, BitBake build will try to map each compiled software component
recipe name and version information to the CVE database and generate recipe and
image specific reports. These reports will contain:
- metadata about the software component like names and versions
- metadata about the CVE issue such as description and NVD link
- for each software component, a list of CVEs which are possibly impacting this version
- status of each CVE: ``Patched``, ``Unpatched`` or ``Ignored``
The status ``Patched`` means that a patch file to address the security issue has been
applied. ``Unpatched`` status means that no patches to address the issue have been
applied and that the issue needs to be investigated. ``Ignored`` means that after
analysis, it has been deemed to ignore the issue as it for example affects
the software component on a different operating system platform.
After a build with CVE check enabled, reports for each compiled source recipe will be
found in ``build/tmp/deploy/cve``.
For example the CVE check report for the ``flex-native`` recipe looks like::
$ cat poky/build/tmp/deploy/cve/flex-native
LAYER: meta
PACKAGE NAME: flex-native
PACKAGE VERSION: 2.6.4
CVE: CVE-2016-6354
CVE STATUS: Patched
CVE SUMMARY: Heap-based buffer overflow in the yy_get_next_buffer function in Flex before 2.6.1 might allow context-dependent attackers to cause a denial of service or possibly execute arbitrary code via vectors involving num_to_read.
CVSS v2 BASE SCORE: 7.5
CVSS v3 BASE SCORE: 9.8
VECTOR: NETWORK
MORE INFORMATION: https://nvd.nist.gov/vuln/detail/CVE-2016-6354
LAYER: meta
PACKAGE NAME: flex-native
PACKAGE VERSION: 2.6.4
CVE: CVE-2019-6293
CVE STATUS: Ignored
CVE SUMMARY: An issue was discovered in the function mark_beginning_as_normal in nfa.c in flex 2.6.4. There is a stack exhaustion problem caused by the mark_beginning_as_normal function making recursive calls to itself in certain scenarios involving lots of '*' characters. Remote attackers could leverage this vulnerability to cause a denial-of-service.
CVSS v2 BASE SCORE: 4.3
CVSS v3 BASE SCORE: 5.5
VECTOR: NETWORK
MORE INFORMATION: https://nvd.nist.gov/vuln/detail/CVE-2019-6293
For images, a summary of all recipes included in the image and their CVEs is also
generated in textual and JSON formats. These ``.cve`` and ``.json`` reports can be found
in the ``tmp/deploy/images`` directory for each compiled image.
At build time CVE check will also throw warnings about ``Unpatched`` CVEs::
WARNING: flex-2.6.4-r0 do_cve_check: Found unpatched CVE (CVE-2019-6293), for more information check /poky/build/tmp/work/core2-64-poky-linux/flex/2.6.4-r0/temp/cve.log
WARNING: libarchive-3.5.1-r0 do_cve_check: Found unpatched CVE (CVE-2021-36976), for more information check /poky/build/tmp/work/core2-64-poky-linux/libarchive/3.5.1-r0/temp/cve.log
It is also possible to check the CVE status of individual packages as follows::
bitbake -c cve_check flex libarchive
Fixing CVE product name and version mappings
============================================
By default, :ref:`ref-classes-cve-check` uses the recipe name :term:`BPN` as CVE
product name when querying the CVE database. If this mapping contains false positives, e.g.
some reported CVEs are not for the software component in question, or false negatives like
some CVEs are not found to impact the recipe when they should, then the problems can be
in the recipe name to CVE product mapping. These mapping issues can be fixed by setting
the :term:`CVE_PRODUCT` variable inside the recipe. This defines the name of the software component in the
``gcc`` version 6.0 is now required at minimum on the build host. For older
host distributions where this is not available, you can use the
``buildtools-extended-tarball`` (easily installable using
:term:`buildtools-extended`tarball (easily installable using
``scripts/install-buildtools``).
@@ -23,7 +23,7 @@ Removed recipes
The following recipes have been removed:
-``bjam-native``: replaced by ``boost-build-native``
-``avahi-ui``: folded into the main ``avahi`` recipe - the GTK UI can be disabled using :term:`PACKAGECONFIG` for ``avahi``.
-``avahi-ui``: folded into the main ``avahi`` recipe --- the GTK UI can be disabled using :term:`PACKAGECONFIG` for ``avahi``.
-``build-compare``: no longer needed with the removal of the ``packagefeed-stability`` class
-``dhcp``: obsolete, functionally replaced by ``dhcpcd`` and ``kea``
-``libmodulemd-v1``: replaced by ``libmodulemd``
@@ -37,7 +37,7 @@ Removed classes
The following classes (.bbclass files) have been removed:
-``spdx``: obsolete - the Yocto Project is a strong supporter of SPDX, but this class was old code using a dated approach and had the potential to be misleading. The ``meta-sdpxscanner`` layer is a much more modern and active approach to handling this and is recommended as a replacement.
-``spdx``: obsolete --- the Yocto Project is a strong supporter of SPDX, but this class was old code using a dated approach and had the potential to be misleading. The ``meta-sdpxscanner`` layer is a much more modern and active approach to handling this and is recommended as a replacement.
-``packagefeed-stability``: this class had become obsolete with the advent of hash equivalence and reproducible builds.
@@ -46,7 +46,7 @@ pseudo path filtering and mismatch behaviour
--------------------------------------------
pseudo now operates on a filtered subset of files. This is a significant change
to the way pseudo operates within OpenEmbedded - by default, pseudo monitors and
to the way pseudo operates within OpenEmbedded --- by default, pseudo monitors and
logs (adds to its database) any file created or modified whilst in a ``fakeroot``
environment. However, there are large numbers of files that we simply don't care
about the permissions of whilst in that ``fakeroot`` context, for example ${:term:`S`}, ${:term:`B`}, ${:term:`T`},
@@ -68,7 +68,7 @@ structure above that subdirectory. For these types of cases in your own recipes,
extend :term:`PSEUDO_IGNORE_PATHS` to cover additional paths that pseudo should not
be monitoring.
In addition, pseudo's behaviour on mismatches has now been changed - rather
In addition, pseudo's behaviour on mismatches has now been changed --- rather
than doing what turns out to be a rather dangerous "fixup" if it sees a file
with a different path but the same inode as another file it has previously seen,
pseudo will throw an ``abort()`` and direct you to a :yocto_wiki:`wiki page </Pseudo_Abort>`
@@ -137,10 +137,10 @@ DHCP server/client replaced
The ``dhcp`` software package has become unmaintained and thus has been
functionally replaced by ``dhcpcd`` (client) and ``kea`` (server). You will
need to replace references to the recipe/package names as appropriate - most
need to replace references to the recipe/package names as appropriate --- most
commonly, at the package level ``dhcp-client`` should be replaced by
``dhcpcd`` and ``dhcp-server`` should be replaced by ``kea``. If you have any
custom configuration files for these they will need to be adapted - refer to
custom configuration files for these they will need to be adapted --- refer to
the upstream documentation for ``dhcpcd`` and ``kea`` for further details.
@@ -181,7 +181,7 @@ In addition, the following new checks were added and default to triggering an er
-:ref:`missing-update-alternatives <qa-check-missing-update-alternatives>`: Check if the recipe sets the :term:`ALTERNATIVE` variable for any of its packages, and does not inherit the :ref:`update-alternatives <ref-classes-update-alternatives>` class.
- A trailing slash or duplicated slashes in the value of :term:`S` or :term:`B` will now trigger a warning so that they can be removed and path comparisons can be more reliable - remove any instances of these in your recipes if the warning is displayed.
- A trailing slash or duplicated slashes in the value of :term:`S` or :term:`B` will now trigger a warning so that they can be removed and path comparisons can be more reliable --- remove any instances of these in your recipes if the warning is displayed.
.._migration-3.2-src-uri-file-globbing:
@@ -209,7 +209,7 @@ deploy class now cleans ``DEPLOYDIR`` before ``do_deploy``
``do_deploy`` as implemented in the :ref:`deploy <ref-classes-deploy>` class now cleans up ${:term:`DEPLOYDIR`} before running, just as ``do_install`` cleans up ${:term:`D`} before running. This reduces the risk of :term:`DEPLOYDIR` being accidentally contaminated by files from previous runs, possibly even with different config, in case of incremental builds.
Most recipes and classes that inherit the :ref:`deploy <ref-classes-deploy>` class or interact with ``do_deploy`` are unlikely to be affected by this unless they add ``prefuncs`` to ``do_deploy``*which also* put files into ``${DEPLOYDIR}`` - these should be refactored to use ``do_deploy_prepend`` instead.
Most recipes and classes that inherit the :ref:`deploy <ref-classes-deploy>` class or interact with ``do_deploy`` are unlikely to be affected by this unless they add ``prefuncs`` to ``do_deploy``*which also* put files into ``${DEPLOYDIR}`` --- these should be refactored to use ``do_deploy_prepend`` instead.
.._migration-3.2-nativesdk-sdk-provides-dummy:
@@ -303,7 +303,7 @@ now need to be changed to ``inherit image-artifact-names``.
Miscellaneous changes
---------------------
- Support for the long-deprecated ``PACKAGE_GROUP`` variable has now been removed - replace any remaining instances with :term:`FEATURE_PACKAGES`.
- Support for the long-deprecated ``PACKAGE_GROUP`` variable has now been removed --- replace any remaining instances with :term:`FEATURE_PACKAGES`.
- The ``FILESPATHPKG`` variable, having been previously deprecated, has now been removed. Replace any remaining references with appropriate use of :term:`FILESEXTRAPATHS`.
- Erroneous use of ``inherit +=`` (instead of ``INHERIT +=``) in a configuration file now triggers an error instead of silently being ignored.
- ptest support has been removed from the ``kbd`` recipe, as upstream has moved to autotest which is difficult to work with in a cross-compilation environment.
Some files were not shown because too many files have changed in this diff
Show More
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.