I realised only the first logging message was being displayed in a given
parsing process. The reason turned out to be the UI handler failing
with a "pop from empty list". The default handler was then lost and
no further messages were processed.
Fix this by catching the exception correctly in the connection writer code.
(Bitbake rev: b8fd6f5d9959d27176ea016c249cf6d35ac8ba03)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d3e64f64525187f1409531a0bd99df576e627f7f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
There are two issues inside importlib. Firstly, the modules are accessed in
on disk order. This means behaviour seen on one system might not reproduce
on another and is a real headache.
Secondly, empty directories left behind by previous modules might be looked
at. This has caused a long string of different issues for us.
As a result, patch this to a behaviour which works for us. Upstream discussion
can follow later, this is breaking builds for too many people to leave unpatched.
[YOCTO #14816]
(From OE-Core rev: cdb6879b49d4f6dc2bea8ff064a5b1e62db34781)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e5944a38db513e033c3a3e9313267055f7254be7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
In the native sysroot we should never have paths to the python3-native
build directory. These may or may not exist at the time some dependency
is building and nothing should rely upon them.
I suspect nothing is relying on this at the moment but clean up
just to be sure.
The various config copies are adjusted to be modified consistently as some
copies were and some were not. The Makefile has the "bad" ${B} paths
replaced with a dummy placeholder too.
(From OE-Core rev: 2f93d30fee0698e3cf13be17f1691e85d2122b0e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ae9e6249ded8fc063d6333231c391cfa2d594567)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The setuptools version is now used by default when setuptools is installed,
but it is incompatible with some of python's own tests.
(From OE-Core rev: 8e34686911269e461dc646068f7a4d7c0e5da53f)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c0c1ee33781733d712cd983be460001cd7938014)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
In some cases it is useful to be able to test the snapshot of
linux-firmware (e.g. to test if the updated firmware works on the
particular hardware). Allow building the linux-firmware snapshots.
To switch to the most recent branch, add the following lines to the
local.conf file:
PREFERRED_VERSION_linux-firmware = "1:20220509+git%"
SRCREV:class-devupstream = "${AUTOREV}"
WHENCE_CHKSUM:class-devupstream:pn-linux-firmware = "4288aad55d189fa225d492526b8406d5"
(From OE-Core rev: 96cd37cff9caaf3e92cbf63660e9b6bc73fa9744)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b023570ae1d239de14b50a0e827582d0e84ddf81)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ignored CVEs aren't patched, but do not apply in our configuration
for some reason. Up till now they were only partially supported
and reported as "Patched".
This patch adds separate reporting of Ignored CVEs. The variable
CVE_CHECK_REPORT_PATCHED now manages reporting of both patched
and ignored CVEs.
(From OE-Core rev: d76957e4257a3bf934bdb94d65aa43267b8d9766)
Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c773102d4828fc4ddd1024f6115d577e23f1afe4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
There are cached reproducibility issues on the autobuilder due to the PRServ
sstate checksum issues, flush the bad data out the system by bumping the
versions.
(From OE-Core rev: b2d10487f80deb04a0893325a1ae79c8629a7655)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b12e6cfe3bb34e426c8bb74183d041948cb2ed89)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Fixes fuzz warning with insane class ihnerited introduced in 4c3f51142b
Kirkstone specific, master has been updated to 251.2 and FTBFS with musl [Yocto 14838]
(From OE-Core rev: 7cdaac4a5a30e8705fb725fd0d69629f268e7da3)
Signed-off-by: Pavel Zhukov <pavel.zhukov@huawei.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
When using multiconfig with the same TMP folder we can have
races because the shared recipes like gcc-source run twice.
ARCHIVER_OUTDIR = ${ARCHIVER_TOPDIR}/${TARGET_SYS}/${PF}/
which includes TARGET_SYS and between the two different MACHINE values,
this changes from 'arm-poky-linux-gnueabi' to 'aarch64-poky-linux'.
This leads to the task running twice, once for each multiconfig.
To solve this we need to store the shared output in a common place
for all machines and in this way the stamps will be the same for each
machine so the gcc-source will on run once regardless of the machine used.
(From OE-Core rev: 6fa49ffcf2d77aaae5c348b6eb1f0117aa93eeaf)
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 5abe497aad39a6ce8d72556fcdda1938a0f8c1bc)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Some tasks may reference ${B} for gcc-source which in general would not exist.
It has dependencies on HOST_SYS and TARGET_SYS which are not appropriate for a
shared recipe like gcc-source. This causes problems for the archiver and
multiconfigs in particlar.
Set B to something else to avoid these task hash issues.
Acked-by: Jose Quaresma <jose.quaresma@foundries.io>
(From OE-Core rev: 7211a6fb51ef0e7f5c919f98a33eaf8094b9c814)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit beb2a76c591e985c6fc7ed473abd1bee27f955a2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Building busybox with CONFIG_LSATTR=y and installing that in the same
filesystem as e2fsprogs breaks:
ERROR: ... 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.
Fix that by also alternatifying lsattr just as chattr already is.
(From OE-Core rev: 8876f33f08e07480c93803c19b517b2bed4dfe4c)
Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 96703961eeb3460e9da26503d7942cc965d1e573)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
When multilib enabled and add layers/meta-openembedded/meta-oe in
conf/bblayers.conf, it reports below error when run oe-selftest.
$ oe-selftest -r oescripts
[snip]
[20:36:33-0700] 2022-05-16 03:36:33,494 - oe-selftest - INFO - RESULTS - oescripts.OEListPackageconfigTests.test_packageconfig_flags_option_flags: FAILED (585.37s)
[snip]
It is because the output of "list-packageconfig-flags.py -f" as below:
$ ../scripts/contrib/list-packageconfig-flags.py -f
[snip]
qt lib32-pinentry lib32-wxwidgets nativesdk-pinentry pinentry pinentry-native wxwidgets wxwidgets-native
secret lib32-pinentry nativesdk-pinentry pinentry pinentry-native
[snip]
But the check logic as below:
class OEListPackageconfigTests(OEScriptTests):
#oe-core.scripts.List_all_the_PACKAGECONFIG's_flags
def check_endlines(self, results, expected_endlines):
for line in results.output.splitlines():
for el in expected_endlines:
if line.split() == el.split():
expected_endlines.remove(el)
break
def test_packageconfig_flags_option_flags(self):
results = runCmd('%s/contrib/list-packageconfig-flags.py -f' % self.scripts_dir)
expected_endlines = []
expected_endlines.append("PACKAGECONFIG FLAG RECIPE NAMES")
expected_endlines.append("qt nativesdk-pinentry pinentry pinentry-native")
expected_endlines.append("secret nativesdk-pinentry pinentry pinentry-native")
self.check_endlines(results, expected_endlines)
And the test will fail as line.split() doesn't equal el.split() as
line.split() is ['lib32-pinentry', 'lib32-wxwidgets', 'nativesdk-pinentry',
'pinentry', 'pinentry-native', 'wxwidgets', 'wxwidgets-native'] and
el.split() is ['nativesdk-pinentry', 'pinentry', 'pinentry-native'].
So change the compare logic to fix the gap.
(From OE-Core rev: 8c74bca4d652af93c7e36a2a8847d8010b8cc009)
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 239f22847bcae0cb31769adb0a42b5440173a7c5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
It fails to compile xxhash when '-Og' is set in CFLAGS via such as set
DEBUG_BUILD = '1' in local.conf. Check and disable inline when '-Og'
exists.
(From OE-Core rev: d8e454b370089e4a33c8373742178ef4d540e848)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3464c67cd34acbb1a6705369e34dee8af7e348ac)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Current patch removes the uint8_t* cast in src/basic/recurse-dir.c:57
to fix musl build, but it changes the value here as pointer arithmetic
is type-depended in C. This patch corrects the behavior by adding an
extra cast to struct dirent*.
Also changes the patch's Upstream-Status to Inappropriate as it's musl-
specific.
(From OE-Core rev: 741030ce3251d0f6084b6c58904760316ac84487)
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e9e43d7f7488c4da8598759c4882cceeda9d2095)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* add missing space to fix:
/bin/sh: 1: [: Illegal number: 119)
shown in the log.do_compile (isn't fatal for the build)
(From OE-Core rev: 92a5fb9138ee0a2a1b9926217647a23d1c1d73b4)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8f785f35c8a9cdc0107fbaa76b20df5199159ee0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The following kernel commit has been back ported to v5.10.119 and v5.15.44.
commit 14c174633f349cb41ea90c2c0aaddac157012f74
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date: Thu Feb 10 16:40:44 2022 +0100
random: remove unused tracepoints
These explicit tracepoints aren't really used and show sign of aging.
It's work to keep these up to date, and before I attempted to keep them
up to date, they weren't up to date, which indicates that they're not
really used. These days there are better ways of introspecting anyway.
Which causes the following build failure
lttng-modules-2.13.3/src/probes/lttng-probe-random.c:18:10: fatal error: trace/events/random.h: No such file or directory
| 18 | #include <trace/events/random.h>
| | ^~~~~~~~~~~~~~~~~~~~~~~
| compilation terminated.
(From OE-Core rev: 48aad396d902b36ece414b0adb9cce4aebb093d7)
Signed-off-by: He Zhe <zhe.he@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c8effd12cae7c7024f8e6c8f6ef70ed602d380ed)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
lttng-modules fails to build against 5.18-rc7, the details of the fix
are as follows:
The commit [fix: sched/tracing: Don't re-read p->state when emitting
sched_switch event (v5.18)] was correct, but the kernel changed their
mind with the following commit:
commit 9c2136be0878c88c53dea26943ce40bb03ad8d8d
Author: Delyan Kratunov <delyank@fb.com>
Date: Wed May 11 18:28:36 2022 +0000
sched/tracing: Append prev_state to tp args instead
Commit fa2c3254d7cf (sched/tracing: Don't re-read p->state when emitting
sched_switch event, 2022-01-20) added a new prev_state argument to the
sched_switch tracepoint, before the prev task_struct pointer.
This reordering of arguments broke BPF programs that use the raw
tracepoint (e.g. tp_btf programs). The type of the second argument has
changed and existing programs that assume a task_struct* argument
(e.g. for bpf_task_storage access) will now fail to verify.
If we instead append the new argument to the end, all existing programs
would continue to work and can conditionally extract the prev_state
argument on supported kernel versions.
Fixes: fa2c3254d7cf (sched/tracing: Don't re-read p->state when emitting sched_switch event, 2022-01-20)
Signed-off-by: Delyan Kratunov <delyank@fb.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Link: https://lkml.kernel.org/r/c8a6930dfdd58a4a5755fc01732675472979732b.camel@fb.com
By reordering the parameters (again) we can get back up and building.
Upstream-Status: Backport
(From OE-Core rev: 6c689e1b6f5501b0db8b24552fe4eae033fee289)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fb69e5cfb043a15354beb2d613772aa0233d12ae)
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:
56c31ac1d8aa Linux 5.10.119
7c57f2134988 ALSA: ctxfi: Add SB046x PCI ID
514f58734001 random: check for signals after page of pool writes
18c261e9485a random: wire up fops->splice_{read,write}_iter()
cf8f8d37586f random: convert to using fops->write_iter()
affa1ae52219 random: convert to using fops->read_iter()
4bb374a1183b random: unify batched entropy implementations
552ae8e4841b random: move randomize_page() into mm where it belongs
5f2a040b2fb4 random: move initialization functions out of hot pages
02102b63bd96 random: make consistent use of buf and len
33783ca3556e random: use proper return types on get_random_{int,long}_wait()
1fdd7eef2100 random: remove extern from functions in header
811afd06e0f3 random: use static branch for crng_ready()
04d61b96bd8a random: credit architectural init the exact amount
5123cc61e27d random: handle latent entropy and command line from random_init()
9320e087f2b6 random: use proper jiffies comparison macro
31ac294037be random: remove ratelimiting for in-kernel unseeded randomness
b50f2830b3df random: move initialization out of reseeding hot path
4c4110c052e8 random: avoid initializing twice in credit race
cef9010b78c4 random: use symbolic constants for crng_init states
30e9f362661c siphash: use one source of truth for siphash permutations
772edeb8c76a random: help compiler out with fast_mix() by using simpler arguments
18413472339b random: do not use input pool from hard IRQs
999b0c9e8a97 random: order timer entropy functions below interrupt functions
ce3c4ff38186 random: do not pretend to handle premature next security model
24d327568578 random: use first 128 bits of input as fast init
273aebb50be6 random: do not use batches when !crng_ready()
f4c98fe1d100 random: insist on random_get_entropy() existing in order to simplify
ffcfdd5de9d0 xtensa: use fallback for random_get_entropy() instead of zero
e1ea0e26d3e4 sparc: use fallback for random_get_entropy() instead of zero
a5092be129cf um: use fallback for random_get_entropy() instead of zero
25d4fdf1f0f8 x86/tsc: Use fallback for random_get_entropy() instead of zero
0b93f40cbe97 nios2: use fallback for random_get_entropy() instead of zero
fdca77508152 arm: use fallback for random_get_entropy() instead of zero
d5531246afcf mips: use fallback for random_get_entropy() instead of just c0 random
714def449776 riscv: use fallback for random_get_entropy() instead of zero
84397906a603 m68k: use fallback for random_get_entropy() instead of zero
7690be1adf8a timekeeping: Add raw clock fallback for random_get_entropy()
07b5d0b3e2cc powerpc: define get_cycles macro for arch-override
30ee01bcdc2c alpha: define get_cycles macro for arch-override
c55a863c304e parisc: define get_cycles macro for arch-override
641d1fbd9667 s390: define get_cycles macro for arch-override
c895438b172c ia64: define get_cycles macro for arch-override
7d9eab78bed9 init: call time_init() before rand_initialize()
ec25e386d381 random: fix sysctl documentation nits
9dff512945f1 random: document crng_fast_key_erasure() destination possibility
a1b5c849d855 random: make random_get_entropy() return an unsigned long
72a9ec8d7514 random: allow partial reads if later user copies fail
1805d20dfb67 random: check for signals every PAGE_SIZE chunk of /dev/[u]random
9641d9b4303f random: check for signal_pending() outside of need_resched() check
26ee8fa4dfda random: do not allow user to keep crng key around on stack
bb515a5beff2 random: do not split fast init input in add_hwgenerator_randomness()
be0d4e3e96ad random: mix build-time latent entropy into pool at init
bb563d06c5bc random: re-add removed comment about get_random_{u32,u64} reseeding
f3bc5eca83d3 random: treat bootloader trust toggle the same way as cpu trust toggle
7cb6782146b8 random: skip fast_init if hwrng provides large chunk of entropy
083ab33951e4 random: check for signal and try earlier when generating entropy
20da9c6079df random: reseed more often immediately after booting
9891211dfe03 random: make consistent usage of crng_ready()
95a1c94a1bd7 random: use SipHash as interrupt entropy accumulator
849e7b744cf2 random: replace custom notifier chain with standard one
66307429b5df random: don't let 644 read-only sysctls be written to
4c74ca006afe random: give sysctl_random_min_urandom_seed a more sensible value
0964a76fd58b random: do crng pre-init loading in worker rather than irq
192d4c6cb3e2 random: unify cycles_t and jiffies usage and types
47f0e89b71e2 random: cleanup UUID handling
9b0e0e27140d random: only wake up writers after zap if threshold was passed
c47f215ab36d random: round-robin registers as ulong, not u32
5064550d422d random: clear fast pool, crng, and batches in cpuhp bring up
6e1cb84cc6a0 random: pull add_hwgenerator_randomness() declaration into random.h
32252548b50f random: check for crng_init == 0 in add_device_randomness()
684e9fe92d44 random: unify early init crng load accounting
f656bd0011fd random: do not take pool spinlock at boot
5d73e69a5dd4 random: defer fast pool mixing to worker
7873321cd88f random: rewrite header introductory comment
6d1671b6d253 random: group sysctl functions
21ae543e3afb random: group userspace read/write functions
f04580811d26 random: group entropy collection functions
e9ff357860ab random: group entropy extraction functions
d7e5b1925a67 random: group crng functions
6b1ffb3b5a08 random: group initialization wait functions
6c9cee15555d random: remove whitespace and reorder includes
7b0f36f7c252 random: remove useless header comment
b3901816545e random: introduce drain_entropy() helper to declutter crng_reseed()
0971c1c2fdc6 random: deobfuscate irq u32/u64 contributions
ae1b8f19542f random: add proper SPDX header
9342656c013d random: remove unused tracepoints
17ad693cd214 random: remove ifdef'd out interrupt bench
28683a188537 random: tie batched entropy generation to base_crng generation
adc32acf23db random: fix locking for crng_init in crng_reseed()
bb63851c2557 random: zero buffer after reading entropy from userspace
63c1aae40ac1 random: remove outdated INT_MAX >> 6 check in urandom_read()
07280d2c3f33 random: make more consistent use of integer types
655a69cb41e0 random: use hash function for crng_slow_load()
95026060d809 random: use simpler fast key erasure flow on per-cpu keys
732872aa2c41 random: absorb fast pool into input pool after fast load
7a5b9ca583f9 random: do not xor RDRAND when writing into /dev/random
16a6e4ae71e2 random: ensure early RDSEED goes through mixer on init
c521bf08ee69 random: inline leaves of rand_initialize()
70377ee0740c random: get rid of secondary crngs
c36e71b5a52e random: use RDSEED instead of RDRAND in entropy extraction
1d1582e5fe52 random: fix locking in crng_fast_load()
0762b7d1f1ad random: remove batched entropy locking
8d07e2a22687 random: remove use_input_pool parameter from crng_reseed()
b07fcd9e53fa random: make credit_entropy_bits() always safe
32d1d7ce3aad random: always wake up entropy writers after extraction
985292206167 random: use linear min-entropy accumulation crediting
bb9c45cfb97e random: simplify entropy debiting
de0727c0c448 random: use computational hash for entropy extraction
e0cc561e4758 random: only call crng_finalize_init() for primary_crng
480fd91dcdc7 random: access primary_pool directly rather than through pointer
0b9e36e895bb random: continually use hwgenerator randomness
6d2d29f051be random: simplify arithmetic function flow in account()
a0653a9ec15e random: selectively clang-format where it makes sense
bccc8d92310d random: access input_pool_data directly rather than through pointer
a9db850c219f random: cleanup fractional entropy shift constants
edd294052e77 random: prepend remaining pool constants with POOL_
f87f50b843e4 random: de-duplicate INPUT_POOL constants
09ae6b851979 random: remove unused OUTPUT_POOL constants
8cc5260c19da random: rather than entropy_store abstraction, use global
5897e06ac15a random: remove unused extract_entropy() reserved argument
ae093ca1256e random: remove incomplete last_data logic
7abbc9809fa0 random: cleanup integer types
c9e108e36dc8 random: cleanup poolinfo abstraction
8a3b78f9177c random: fix typo in comments
0ad5d6384d25 random: don't reset crng_init_cnt on urandom_read()
17420c77f04c random: avoid superfluous call to RDRAND in CRNG extraction
c245231aecd3 random: early initialization of ChaCha constants
efaddd56bc54 random: use IS_ENABLED(CONFIG_NUMA) instead of ifdefs
644320410266 random: harmonize "crng init done" messages
ca57d51126e4 random: mix bootloader randomness into pool
542d8ebedb4d random: do not re-init if crng_reseed completes before primary init
2bfdf588a811 random: do not sign extend bytes for rotation when mixing
685200b076ff random: use BLAKE2s instead of SHA1 in extraction
33c30bfe4fb4 random: remove unused irq_flags argument from add_interrupt_randomness()
b57a88874088 random: document add_hwgenerator_randomness() with other input functions
ae33c501e059 lib/crypto: blake2s: avoid indirect calls to compression function for Clang CFI
07918ddba3ab lib/crypto: sha1: re-roll loops to reduce code size
5fb6a3ba3af6 lib/crypto: blake2s: move hmac construction into wireguard
62531d446a98 lib/crypto: blake2s: include as built-in
aec0878b1d13 crypto: blake2s - include <linux/bug.h> instead of <asm/bug.h>
030d3443aa61 crypto: blake2s - adjust include guard naming
fea91e907076 crypto: blake2s - add comment for blake2s_state fields
d45ae768b71b crypto: blake2s - optimize blake2s initialization
6c362b7c7764 crypto: blake2s - share the "shash" API boilerplate code
72e5b68f33a1 crypto: blake2s - move update and final logic to internal/blake2s.h
e467a55bd006 crypto: blake2s - remove unneeded includes
198a19d7ee95 crypto: x86/blake2s - define shash_alg structs using macros
89f9ee998e36 crypto: blake2s - define shash_alg structs using macros
0f8fcf5b6ed7 crypto: lib/blake2s - Move selftest prototype into header file
c3a4645d803e MAINTAINERS: add git tree for random.c
c4882c6e1ec9 MAINTAINERS: co-maintain random.c
acb198c4d11f random: remove dead code left over from blocking pool
6227458fef95 random: avoid arch_get_random_seed_long() when collecting IRQ randomness
257fbea15ab1 ACPI: sysfs: Fix BERT error region memory mapping
14fa2769ea6c ACPI: sysfs: Make sparse happy about address space in use
0debc69f003b media: vim2m: initialize the media device earlier
ed0e71cc3f1e media: vim2m: Register video device after setting up internals
a5c68f457fbf secure_seq: use the 64 bits of the siphash for port offset calculation
33f1b4a27abc tcp: change source port randomizarion at connect() time
9b4aa0d80b18 KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID
74c6e5d58435 KVM: x86: Properly handle APF vs disabled LAPIC situation
c06e5f751a08 staging: rtl8723bs: prevent ->Ssid overflow in rtw_wx_set_scan()
a8f4d63142f9 lockdown: also lock down previous kgdb use
(From OE-Core rev: a4b49bdba4fa69f365e18ca6d45d7b414b697a1f)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e03685b0263e127777baa3440c15db0de9fff523)
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:
4e67be407725 Linux 5.15.44
50196b5d73dc ALSA: ctxfi: Add SB046x PCI ID
ea5b87349d5a random: check for signals after page of pool writes
3e167570a951 random: wire up fops->splice_{read,write}_iter()
0789c69644c8 random: convert to using fops->write_iter()
7f8cea12a494 random: convert to using fops->read_iter()
6244da28c6b3 random: unify batched entropy implementations
64cb7f01ddd2 random: move randomize_page() into mm where it belongs
55a368c3e850 random: move initialization functions out of hot pages
542a60612d2a random: make consistent use of buf and len
29ed26a33436 random: use proper return types on get_random_{int,long}_wait()
55729575eaa9 random: remove extern from functions in header
c6ae9d65bcdb random: use static branch for crng_ready()
4e5e6754a4b6 random: credit architectural init the exact amount
11cce5040c29 random: handle latent entropy and command line from random_init()
ac0172992c94 random: use proper jiffies comparison macro
8df752b82ec5 random: remove ratelimiting for in-kernel unseeded randomness
272b79432f66 random: move initialization out of reseeding hot path
c4e600154ac0 random: avoid initializing twice in credit race
23a1b984f4b8 random: use symbolic constants for crng_init states
f4cb809a90df siphash: use one source of truth for siphash permutations
82caef84092e random: help compiler out with fast_mix() by using simpler arguments
4649394c4749 random: do not use input pool from hard IRQs
df4e319ea60f random: order timer entropy functions below interrupt functions
baf06217704b random: do not pretend to handle premature next security model
0d24003b5fde random: use first 128 bits of input as fast init
0d79a47b4ae0 random: do not use batches when !crng_ready()
1ab530cf40dc random: insist on random_get_entropy() existing in order to simplify
e6bd242523e8 xtensa: use fallback for random_get_entropy() instead of zero
b4582cb35167 sparc: use fallback for random_get_entropy() instead of zero
d876dca6edf3 um: use fallback for random_get_entropy() instead of zero
e017497815f3 x86/tsc: Use fallback for random_get_entropy() instead of zero
38fbfa404da6 nios2: use fallback for random_get_entropy() instead of zero
197d25e068c0 arm: use fallback for random_get_entropy() instead of zero
9e6db825e87a mips: use fallback for random_get_entropy() instead of just c0 random
2ab416043a94 riscv: use fallback for random_get_entropy() instead of zero
a1428cd7e194 m68k: use fallback for random_get_entropy() instead of zero
82f182812f17 timekeeping: Add raw clock fallback for random_get_entropy()
bc94ccb2904e powerpc: define get_cycles macro for arch-override
8ca78fbdeba0 alpha: define get_cycles macro for arch-override
9bf990cff673 parisc: define get_cycles macro for arch-override
e05efd31b9db s390: define get_cycles macro for arch-override
9f174326e35c ia64: define get_cycles macro for arch-override
807ed9c29586 init: call time_init() before rand_initialize()
2814a9e632db random: fix sysctl documentation nits
4179671f496b random: document crng_fast_key_erasure() destination possibility
8b373c113a4c random: make random_get_entropy() return an unsigned long
b8078810e44d random: allow partial reads if later user copies fail
ccaaff57ed50 random: check for signals every PAGE_SIZE chunk of /dev/[u]random
02c2e2ca3610 random: check for signal_pending() outside of need_resched() check
e7e196e1ae26 random: do not allow user to keep crng key around on stack
be7561767ce8 random: do not split fast init input in add_hwgenerator_randomness()
636b057e2a1a random: mix build-time latent entropy into pool at init
3967a200367c random: re-add removed comment about get_random_{u32,u64} reseeding
25727cbbe9b4 random: treat bootloader trust toggle the same way as cpu trust toggle
a704248b4590 random: skip fast_init if hwrng provides large chunk of entropy
3689ac035180 random: check for signal and try earlier when generating entropy
94c8249efa76 random: reseed more often immediately after booting
99290c6898b2 random: make consistent usage of crng_ready()
0c66c876393b random: use SipHash as interrupt entropy accumulator
6da877d2d46b random: replace custom notifier chain with standard one
39c9e5566ac5 random: don't let 644 read-only sysctls be written to
e4e1600a674f random: give sysctl_random_min_urandom_seed a more sensible value
2c60d7f38d64 random: do crng pre-init loading in worker rather than irq
1523ec5324e9 random: unify cycles_t and jiffies usage and types
fdb1e54472c3 random: cleanup UUID handling
c169e7a09cd4 random: only wake up writers after zap if threshold was passed
e400ba11a241 random: round-robin registers as ulong, not u32
144c1e7ecf00 random: clear fast pool, crng, and batches in cpuhp bring up
80c1f7f8f3cd random: pull add_hwgenerator_randomness() declaration into random.h
98d6def672fd random: check for crng_init == 0 in add_device_randomness()
9df4a56fad32 random: unify early init crng load accounting
d386b087056a random: do not take pool spinlock at boot
3c48a2da32ef random: defer fast pool mixing to worker
9489e36e2150 random: rewrite header introductory comment
9385681af846 random: group sysctl functions
96340f035df6 random: group userspace read/write functions
74b704245f31 random: group entropy collection functions
43e87e6f3317 random: group entropy extraction functions
019e057db9b1 random: group crng functions
81e62ff1f650 random: group initialization wait functions
d3a2510216b4 random: remove whitespace and reorder includes
30c52e99db0d random: remove useless header comment
95f85a01584e random: introduce drain_entropy() helper to declutter crng_reseed()
c807eca035c3 random: deobfuscate irq u32/u64 contributions
f641f9495d6f random: add proper SPDX header
ce951e9672df random: remove unused tracepoints
4509941f75ac random: remove ifdef'd out interrupt bench
ad5d17d0faf9 random: tie batched entropy generation to base_crng generation
86ab60616ec6 random: fix locking for crng_init in crng_reseed()
d2d1ad9430b1 random: zero buffer after reading entropy from userspace
eda555356b39 random: remove outdated INT_MAX >> 6 check in urandom_read()
5dd066ade820 random: make more consistent use of integer types
ba789caa17a0 random: use hash function for crng_slow_load()
b27bd09d0544 random: use simpler fast key erasure flow on per-cpu keys
1aab83f96663 random: absorb fast pool into input pool after fast load
4a18db164cbb random: do not xor RDRAND when writing into /dev/random
b51caadb18a7 random: ensure early RDSEED goes through mixer on init
fd6eb2800589 random: inline leaves of rand_initialize()
5e4fab6fefb1 random: get rid of secondary crngs
ded4cc806d0d random: use RDSEED instead of RDRAND in entropy extraction
704c76e08804 random: fix locking in crng_fast_load()
67fdda9af773 random: remove batched entropy locking
ad86aa8ec90f random: remove use_input_pool parameter from crng_reseed()
1bc9db59b24c random: make credit_entropy_bits() always safe
3730490111ca random: always wake up entropy writers after extraction
cb65ac300816 random: use linear min-entropy accumulation crediting
a6beb8155b9c random: simplify entropy debiting
a5e2c8a4574a random: use computational hash for entropy extraction
add92df1cb37 random: only call crng_finalize_init() for primary_crng
07e015230415 random: access primary_pool directly rather than through pointer
b53c9666e714 random: continually use hwgenerator randomness
c1dc53d781fd random: simplify arithmetic function flow in account()
2f0e83e8326b random: selectively clang-format where it makes sense
db7a0a9171ed random: access input_pool_data directly rather than through pointer
c25c7e29be27 random: cleanup fractional entropy shift constants
68512942c0d7 random: prepend remaining pool constants with POOL_
2772ba4d5223 random: de-duplicate INPUT_POOL constants
da80b44cf9cf random: remove unused OUTPUT_POOL constants
f9efa1a98831 random: rather than entropy_store abstraction, use global
b6d849d0e2f8 random: remove unused extract_entropy() reserved argument
578fbb760064 random: remove incomplete last_data logic
8aa9ddc4db29 random: cleanup integer types
4330c485f92c random: cleanup poolinfo abstraction
250bda5d0505 random: fix typo in comments
15a1a3baf14f random: don't reset crng_init_cnt on urandom_read()
d47579fb283a random: avoid superfluous call to RDRAND in CRNG extraction
0c3910447110 random: early initialization of ChaCha constants
5822fad8d3dc random: use IS_ENABLED(CONFIG_NUMA) instead of ifdefs
69bb5f0917f9 random: harmonize "crng init done" messages
c4c9081184e9 random: mix bootloader randomness into pool
1b1258b91757 random: do not re-init if crng_reseed completes before primary init
08040365d0b7 random: do not sign extend bytes for rotation when mixing
2e827d53343a random: use BLAKE2s instead of SHA1 in extraction
c5a7694fa802 random: remove unused irq_flags argument from add_interrupt_randomness()
40af1df8034a random: document add_hwgenerator_randomness() with other input functions
45626449eb25 lib/crypto: blake2s: avoid indirect calls to compression function for Clang CFI
b0cdd9ec8445 lib/crypto: sha1: re-roll loops to reduce code size
cba2195416d4 lib/crypto: blake2s: move hmac construction into wireguard
caba66ec322e lib/crypto: blake2s: include as built-in
830ecbae41a7 MAINTAINERS: add git tree for random.c
12d7163380a2 MAINTAINERS: co-maintain random.c
0da5349e2254 ACPI: sysfs: Fix BERT error region memory mapping
bf5a3c51e9f7 ice: fix crash at allocation failure
acd12d165281 KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID
f82ccfa4835b HID: amd_sfh: Add support for sensor discovery
(From OE-Core rev: 87f0b01ea3a920eb881f9ef58e8d6a4f0606231b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 20bd31326564cfb29e1442e8bbe2f9765aad5992)
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/.:
ad633e22764 features/xen: Move x86 configs to separate file
(From OE-Core rev: 6b82997af3b2dae330c804e5bb3da973cf8fdb28)
Signed-off-by: Kamil Dziezyk <kamil.dziezyk@arm.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a13622703747eb1d7bc4085693d468c2772441b5)
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/.:
52919926480 bsp/mti-malta32: enable MDIO for mti-malta32
963ab127810 bsp/qemuarm64: enable MDIO for qemuarm64
77d5d5e86c0 cfg/net: introduce mdio fragment
(From OE-Core rev: 10bb8f03097cb8a5f5c80a472dd6fccb66c47721)
Signed-off-by: Potin Lai <potin.lai.pt@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 161888872b8c02c77733c7b74d11db3ec59c93e5)
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:
c204ee3350eb Linux 5.10.118
56642f6af2ab module: check for exit sections in layout_sections() instead of module_init_section()
633be494c3ca include/uapi/linux/xfrm.h: Fix XFRM_MSG_MAPPING ABI breakage
61a4cc41e5c1 afs: Fix afs_getattr() to refetch file status if callback break occurred
606011cb6a69 i2c: mt7621: fix missing clk_disable_unprepare() on error in mtk_i2c_probe()
030de84d453a module: treat exit sections the same as init sections when !CONFIG_MODULE_UNLOAD
355141fdbfef dt-bindings: pinctrl: aspeed-g6: remove FWQSPID group
d30fdf7d1343 Input: ili210x - fix reset timing
a698bf1f728c arm64: Enable repeat tlbi workaround on KRYO4XX gold CPUs
696292b9b5f6 net: atlantic: verify hw_head_ lies within TX buffer ring
cd66ab20a8f8 net: atlantic: add check for MAX_SKB_FRAGS
9bee8b4275ec net: atlantic: reduce scope of is_rsc_complete
9b84e83a92cd net: atlantic: fix "frag[0] not initialized"
0ae23a1d472a net: stmmac: fix missing pci_disable_device() on error in stmmac_pci_probe()
d4c6e5cebcf5 ethernet: tulip: fix missing pci_disable_device() on error in tulip_init_one()
3a6dee284fa0 nl80211: fix locking in nl80211_set_tx_bitrate_mask()
efe580c436f9 selftests: add ping test with ping_group_range tuned
1cfbf6d3a7f6 nl80211: validate S1G channel width
a0f5ff20496b mac80211: fix rx reordering with non explicit / psmp ack policy
e21d734fd05c scsi: qla2xxx: Fix missed DMA unmap for aborted commands
c5af34174733 perf bench numa: Address compiler error on s390
210ea7da5c1f gpio: mvebu/pwm: Refuse requests with inverted polarity
30d4721feced gpio: gpio-vf610: do not touch other bits when set the target bit
ea8a9cb4a779 riscv: dts: sifive: fu540-c000: align dma node name with dtschema
dfd1f0cb628b net: bridge: Clear offload_fwd_mark when passing frame up bridge interface.
579061f39143 igb: skip phy status check where unavailable
a89888648e0c ARM: 9197/1: spectre-bhb: fix loop8 sequence for Thumb2
1756b45d8d83 ARM: 9196/1: spectre-bhb: enable for Cortex-A15
7b676abe328a net: af_key: add check for pfkey_broadcast in function pfkey_process
697f3219ee2f net/mlx5e: Properly block LRO when XDP is enabled
b503d0228c92 NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc
42d4287cc1e4 net/qla3xxx: Fix a test in ql_reset_work()
d35bf8d766b1 clk: at91: generated: consider range when calculating best rate
9e0e75a5e753 ice: fix possible under reporting of ethtool Tx and Rx statistics
6e2caee5cddc net: vmxnet3: fix possible NULL pointer dereference in vmxnet3_rq_cleanup()
a54d86cf4184 net: vmxnet3: fix possible use-after-free bugs in vmxnet3_rq_alloc_rx_buf()
201e5b5c2799 net: systemport: Fix an error handling path in bcm_sysport_probe()
9bfe898e2b76 net/sched: act_pedit: sanitize shift argument before usage
47f04f95edb1 xfrm: fix "disable_policy" flag use when arriving from different devices
0d2e9d8000ef xfrm: rework default policy structure
57c1bbe7098b xfrm: fix dflt policy check when there is no policy configured
9856c3a129dd xfrm: notify default policy on update
20fd28df4049 xfrm: make user policy API complete
ab610ee1d1a1 net: xfrm: fix shift-out-of-bounce
5b7f84b1f9f4 xfrm: Add possibility to set the default to block if we have no policy
243e72e20446 net: evaluate net.ipvX.conf.all.disable_policy and disable_xfrm
1bc27eb71b55 net: macb: Increment rx bd head after allocating skb and buffer
998e305bd160 net: ipa: record proper RX transaction count
0599d5a8b4e1 ARM: dts: aspeed-g6: fix SPI1/SPI2 quad pin group
0a2847d44812 pinctrl: pinctrl-aspeed-g6: remove FWQSPID group in pinctrl
d8ca684c3d3b ARM: dts: aspeed-g6: remove FWQSPID group in pinctrl dtsi
3fc28460998a dma-buf: fix use of DMA_BUF_SET_NAME_{A,B} in userspace
e5289affbacc drm/dp/mst: fix a possible memory leak in fetch_monitor_name()
8ceca1a0693a libceph: fix potential use-after-free on linger ping and resends
233a3cc60e7a crypto: qcom-rng - fix infinite loop on requests not multiple of WORD_SZ
6013ef5f51e0 arm64: mte: Ensure the cleared tags are visible before setting the PTE
a817f78ed69b arm64: paravirt: Use RCU read locks to guard stolen_time
b49bc8d615ee KVM: x86/mmu: Update number of zapped pages even if page list is stable
146128ba265d PCI/PM: Avoid putting Elo i2 PCIe Ports in D3cold
ec0d801d1a44 Fix double fget() in vhost_net_set_backend()
b42e5e3a84dd selinux: fix bad cleanup on error in hashtab_duplicate()
3ee8e109c3c3 perf: Fix sys_perf_event_open() race against self
18fb7d533c79 ALSA: hda/realtek: Add quirk for TongFang devices with pop noise
3eaf770163b7 ALSA: wavefront: Proper check of get_user() error
a34d018b6eab ALSA: usb-audio: Restore Rane SL-1 quirk
f3f2247ac31c Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE""
e2cfa7b0935c Revert "swiotlb: fix info leak with DMA_FROM_DEVICE"
fe5ac3da50a9 nilfs2: fix lockdep warnings during disk space reclamation
d626fcdabea2 nilfs2: fix lockdep warnings in page operations for btree nodes
aca18bacdb71 ARM: 9191/1: arm/stacktrace, kasan: Silence KASAN warnings in unwind_frame()
0acaf9cacd4f platform/chrome: cros_ec_debugfs: detach log reader wq from devm
5a19f3c2d3b6 drbd: remove usage of list iterator variable after loop
9b7f3211064d MIPS: lantiq: check the return value of kzalloc()
05c073b1ad25 fs: fix an infinite loop in iomap_fiemap
00d8b06a4ed4 rtc: mc146818-lib: Fix the AltCentury for AMD platforms
87fd0dd43e9c nvme-multipath: fix hang when disk goes live over reconnect
3663d6023aa2 tools/virtio: compile with -pthread
5a4cbcb3df45 vhost_vdpa: don't setup irq offloading when irq_num < 0
f0931ee125ff s390/pci: improve zpci_dev reference counting
7d3f69cbdec8 ALSA: hda/realtek: Enable headset mic on Lenovo P360
a59450656bcd crypto: x86/chacha20 - Avoid spurious jumps to other functions
39acee8aea3d crypto: stm32 - fix reference leak in stm32_crc_remove
703c80ff4330 rtc: sun6i: Fix time overflow handling
bab037ebbe7d gfs2: Disable page faults during lockless buffered reads
e803f12ea27f nvme-pci: add quirks for Samsung X5 SSDs
5565fc538ded Input: stmfts - fix reference leak in stmfts_input_open
d5e88c2d76ef Input: add bounds checking to input_set_capability()
ea6a86886caa um: Cleanup syscall_handler_t definition/cast, fix warning
c39b91fcd5e3 rtc: pcf2127: fix bug when reading alarm registers
2b4e5a2d7da0 rtc: fix use-after-free on device removal
67136fff5b9a igc: Update I226_K device ID
d0229838b63c igc: Remove phy->type checking
170110adbecc igc: Remove _I_PHY_ID checking
55c820c1b2b6 Revert "drm/i915/opregion: check port number bounds for SWSCI display power state"
911b36267855 floppy: use a statically allocated error counter
3c48558be571 io_uring: always grab file table for deferred statx
a1a2c957da58 usb: gadget: fix race when gadget driver register via ioctl
7686a5c2a8d3 Linux 5.10.117
937c6b0e3e94 SUNRPC: Fix fall-through warnings for Clang
29f077d07051 io_uring: always use original task when preparing req identity
1444e0568bc2 usb: gadget: uvc: allow for application to cleanly shutdown
42505e362285 usb: gadget: uvc: rename function to be more consistent
002e7223dc1b ping: fix address binding wrt vrf
d9a1e82bf656 arm[64]/memremap: don't abuse pfn_valid() to ensure presence of linear map
49750c5e9acb net: phy: Fix race condition on link status change
e68b60ae29de SUNRPC: Ensure we flush any closed sockets before xs_xprt_free()
dbe6974a39ac SUNRPC: Don't call connect() more than once on a TCP socket
47541ed4d47b SUNRPC: Prevent immediate close+reconnect
2ab569edd883 SUNRPC: Clean up scheduling of autoclose
85844ea29f82 drm/vmwgfx: Initialize drm_mode_fb_cmd2
7e849dbe604d cgroup/cpuset: Remove cpus_allowed/mems_allowed setup in cpuset_init_smp()
6aa239d82e35 net: atlantic: always deep reset on pm op, fixing up my null deref regression
6158df4fa5c2 i40e: i40e_main: fix a missing check on list iterator
819796024cce drm/nouveau/tegra: Stop using iommu_present()
e06605af8bdc ceph: fix setting of xattrs on async created inodes
86db01f37347 serial: 8250_mtk: Fix register address for XON/XOFF character
84ad84e495ae serial: 8250_mtk: Fix UART_EFR register address
f8d8440f1357 slimbus: qcom: Fix IRQ check in qcom_slim_probe
d7b7c5532a83 USB: serial: option: add Fibocom MA510 modem
2ba0034e3649 USB: serial: option: add Fibocom L610 modem
319b312edb8e USB: serial: qcserial: add support for Sierra Wireless EM7590
994395f356ea USB: serial: pl2303: add device id for HP LM930 Display
8276a3dbe21d usb: typec: tcpci_mt6360: Update for BMC PHY setting
54979aa49e0f usb: typec: tcpci: Don't skip cleanup in .remove() on error
7335a6b11d13 usb: cdc-wdm: fix reading stuck on device close
6d47eceaf311 tty: n_gsm: fix mux activation issues in gsm_config()
69139a45b89b tty/serial: digicolor: fix possible null-ptr-deref in digicolor_uart_probe()
5a7358111636 firmware_loader: use kernel credentials when reading firmware
d254309aab27 tcp: resalt the secret every 10 seconds
3abbfac1ab24 net: sfp: Add tx-fault workaround for Huawei MA5671A SFP ONT
48f1dd67a83f net: emaclite: Don't advertise 1000BASE-T and do auto negotiation
5c09dbdfd4fc s390: disable -Warray-bounds
03ebc6fd5c9d ASoC: ops: Validate input values in snd_soc_put_volsw_range()
31606a73baa3 ASoC: max98090: Generate notifications on changes for custom control
ce154bd3bc43 ASoC: max98090: Reject invalid values in custom control put()
5ecaaaeb2c76 hwmon: (f71882fg) Fix negative temperature
88091c0275b2 gfs2: Fix filesystem block deallocation for short writes
fccf4bf3f25d tls: Fix context leak on tls_device_down
161c4edeca45 net: sfc: ef10: fix memory leak in efx_ef10_mtd_probe()
d5e1b41bf7e0 net/smc: non blocking recvmsg() return -EAGAIN when no data and signal_pending
e417a8fceaa9 net: dsa: bcm_sf2: Fix Wake-on-LAN with mac_link_down()
9012209f4357 net: bcmgenet: Check for Wake-on-LAN interrupt probe deferral
abe35bf3be51 net/sched: act_pedit: really ensure the skb is writable
b816ed53f318 s390/lcs: fix variable dereferenced before check
4d3c6d741816 s390/ctcm: fix potential memory leak
5497f87edcda s390/ctcm: fix variable dereferenced before check
cc71c9f17caf selftests: vm: Makefile: rename TARGETS to VMTARGETS
ce12e5ff8de8 hwmon: (ltq-cputemp) restrict it to SOC_XWAY
ceb3db723fda dim: initialize all struct fields
8b1b8fc819f7 ionic: fix missing pci_release_regions() on error in ionic_probe()
2cb8689f45f2 nfs: fix broken handling of the softreval mount option
49c10784b955 mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection
79432d223728 net: sfc: fix memory leak due to ptp channel
bdb8d4aed1cf sfc: Use swap() instead of open coding it
33c93f6e5598 netlink: do not reset transport header in netlink_recvmsg()
9e40f2c51392 drm/nouveau: Fix a potential theorical leak in nouveau_get_backlight_name()
54f26fc07e6d ipv4: drop dst in multicast routing path
c07a84492ffe net: mscc: ocelot: avoid corrupting hardware counters when moving VCAP filters
abb237c544f1 net: mscc: ocelot: restrict tc-trap actions to VCAP IS2 lookup 0
f9674c52a158 net: mscc: ocelot: fix VCAP IS2 filters matching on both lookups
c1184d2888a3 net: mscc: ocelot: fix last VCAP IS1/IS2 filter persisting in hardware when deleted
e2cdde89d253 net: Fix features skip in for_each_netdev_feature()
c420d6604706 mac80211: Reset MBSSID parameters upon connection
9cbf2a7d5d17 hwmon: (tmp401) Add OF device ID table
85eba08be2f7 iwlwifi: iwl-dbg: Use del_timer_sync() before freeing
a6a73781b460 batman-adv: Don't skb_split skbuffs with frag_list
07a4d3649aef Linux 5.10.116
d1ac096f8869 mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and __mcopy_atomic()
c6cbf5431a62 mm: hugetlb: fix missing cache flush in copy_huge_page_from_user()
308ff6a6e768 mm: fix missing cache flush for all tail pages of compound page
185fa5984d7a Bluetooth: Fix the creation of hdev->name
9ff4a6b80642 arm: remove CONFIG_ARCH_HAS_HOLES_MEMORYMODEL
dfb55dcf9d39 nfp: bpf: silence bitwise vs. logical OR warning
f89f76f4b0e7 drm/amd/display/dc/gpio/gpio_service: Pass around correct dce_{version, environment} types
efd1429fa99b block: drbd: drbd_nl: Make conversion to 'enum drbd_ret_code' explicit
a71658c7db0b regulator: consumer: Add missing stubs to regulator/consumer.h
7648f42d1a62 MIPS: Use address-of operator on section symbols
e61686bb77c4 Linux 5.10.115
8528806abed5 mmc: rtsx: add 74 Clocks in power on flow
e1ab92302b44 PCI: aardvark: Fix reading MSI interrupt number
49143c9ed232 PCI: aardvark: Clear all MSIs at setup
7676a5b99f3d dm: interlock pending dm_io and dm_wait_for_bios_completion
a439819f4797 block-map: add __GFP_ZERO flag for alloc_page in function bio_copy_kern
a22d66eb518f rcu: Apply callbacks processing time limit only on softirq
40fb3812d997 rcu: Fix callbacks processing time limit retaining cond_resched()
43dbc3edada6 KVM: LAPIC: Enable timer posted-interrupt only when mwait/hlt is advertised
9c8474fa3477 KVM: x86/mmu: avoid NULL-pointer dereference on page freeing bugs
a474ee5ececc KVM: x86: Do not change ICR on write to APIC_SELF_IPI
64e3e16dbc26 x86/kvm: Preserve BSP MSR_KVM_POLL_CONTROL across suspend/resume
5f884e0c2ea6 net/mlx5: Fix slab-out-of-bounds while reading resource dump menu
599fc32e7421 kvm: x86/cpuid: Only provide CPUID leaf 0xA if host has architectural PMU
0a960a367216 net: igmp: respect RCU rules in ip_mc_source() and ip_mc_msfilter()
4fd45ef7042a btrfs: always log symlinks in full mode
687167eef99e smsc911x: allow using IRQ0
b280877eab49 selftests: ocelot: tc_flower_chains: specify conform-exceed action for policer
a9fd5d6cd594 bnxt_en: Fix unnecessary dropping of RX packets
72e4fc1a4e63 bnxt_en: Fix possible bnxt_open() failure caused by wrong RFS flag
9ac9f07f0fbb selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is operational
475237e807a2 hinic: fix bug of wq out of bound access
1b9f1f455de2 net: emaclite: Add error handling for of_address_to_resource()
8459485db70c net: cpsw: add missing of_node_put() in cpsw_probe_dt()
4eee9809505c net: stmmac: dwmac-sun8i: add missing of_node_put() in sun8i_dwmac_register_mdio_mux()
2347e9c92270 net: dsa: mt7530: add missing of_node_put() in mt7530_setup()
1092656cc4ca net: ethernet: mediatek: add missing of_node_put() in mtk_sgmii_init()
408fb2680e73 NFSv4: Don't invalidate inode attributes on delegation return
c1b480e6bed8 RDMA/siw: Fix a condition race issue in MPA request processing
5bf2a45e3343 selftests/seccomp: Don't call read() on TTY from background pgrp
3ea0b44c01ee net/mlx5: Avoid double clear or set of sync reset requested
24553315910c net/mlx5e: Fix the calling of update_buffer_lossy() API
e07c13fbdded net/mlx5e: CT: Fix queued up restore put() executing after relevant ft release
d8338a7a0957 net/mlx5e: Don't match double-vlan packets if cvlan is not set
c7f87ad11584 net/mlx5e: Fix trust state reset in reload
87f0d9a518b7 ASoC: dmaengine: Restore NULL prepare_slave_config() callback
ad87f8498ea2 hwmon: (adt7470) Fix warning on module removal
997b8605e8f3 gpio: pca953x: fix irq_stat not updated when irq is disabled (irq_mask not set)
879b075a9a36 NFC: netlink: fix sleep in atomic bug when firmware download timeout
1961c5a688ed nfc: nfcmrvl: main: reorder destructive operations in nfcmrvl_nci_unregister_dev to avoid bugs
8a9e7c64f4a0 nfc: replace improper check device_is_registered() in netlink related functions
11adc9ab3eb3 can: grcan: only use the NAPI poll budget for RX
4df5e498e0ff can: grcan: grcan_probe(): fix broken system id check for errata workaround needs
dd973c0185c5 can: grcan: use ofdev->dev when allocating DMA memory
45bdcb5ca426 can: isotp: remove re-binding of bound socket
13959b911700 can: grcan: grcan_close(): fix deadlock
6c7c0e131ec1 s390/dasd: Fix read inconsistency for ESE DASD devices
6e02c0413a93 s390/dasd: Fix read for ESE with blksize < 4k
ecc839682770 s390/dasd: prevent double format of tracks for ESE devices
30e008ab3fe7 s390/dasd: fix data corruption for ESE devices
d53d47fadd17 ASoC: meson: Fix event generation for AUI CODEC mux
93a1f0755edc ASoC: meson: Fix event generation for G12A tohdmi mux
e8b08e2f171b ASoC: meson: Fix event generation for AUI ACODEC mux
954d55170f43 ASoC: wm8958: Fix change notifications for DSP controls
f45359824a48 ASoC: da7219: Fix change notifications for tone generator frequency
e6e61aab4967 genirq: Synchronize interrupt thread startup
dcf1150f2e69 net: stmmac: disable Split Header (SPH) for Intel platforms
68f35987d43c firewire: core: extend card->lock in fw_core_handle_bus_reset
629b4003a71a firewire: remove check of list iterator against head past the loop body
e757ff4bbc89 firewire: fix potential uaf in outbound_phy_packet_callback()
70d25d4fba24 Revert "SUNRPC: attempt AF_LOCAL connect on setup"
466721d7671a drm/amd/display: Avoid reading audio pattern past AUDIO_CHANNELS_COUNT
2e6f3d665a29 iommu/vt-d: Calculate mask for non-aligned flushes
fbb7c61e7601 KVM: x86/svm: Account for family 17h event renumberings in amd_pmc_perf_hw_id
b085afe22607 gpiolib: of: fix bounds check for 'gpio-reserved-ranges'
2b7cb072d07c mmc: core: Set HS clock speed before sending HS CMD13
66651d719948 mmc: sdhci-msm: Reset GCC_SDCC_BCR register for SDHC
2906c73632d7 ALSA: fireworks: fix wrong return count shorter than expected by 4 bytes
03ab174805a3 ALSA: hda/realtek: Add quirk for Yoga Duet 7 13ITL6 speakers
a196f277c547 parisc: Merge model and model name into one line in /proc/cpuinfo
326f02f172d0 MIPS: Fix CP0 counter erratum detection for R4k CPUs
(From OE-Core rev: 88ce6da03c436fef8cced4857d690210293fc793)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ef232218c488c54ffe0270552be03424e04c4526)
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:
0e5bb338bf47 Linux 5.15.43
d12cd0bf5d26 mptcp: Do TCP fallback on early DSS checksum failure
c5871dddc145 Linux 5.15.42
94bf8bfb009f afs: Fix afs_getattr() to refetch file status if callback break occurred
e7647ddf0ac5 i2c: mt7621: fix missing clk_disable_unprepare() on error in mtk_i2c_probe()
69c5d307dce1 lockdown: also lock down previous kgdb use
649178c0493e mt76: mt7921e: fix possible probe failure after reboot
a2797b550755 dt-bindings: pinctrl: aspeed-g6: remove FWQSPID group
331c57431f7a Input: ili210x - fix reset timing
149a25b82ca9 arm64: Enable repeat tlbi workaround on KRYO4XX gold CPUs
47840af397be net: atlantic: verify hw_head_ lies within TX buffer ring
948ddbdc5663 net: atlantic: add check for MAX_SKB_FRAGS
2d1b336ffb77 net: atlantic: reduce scope of is_rsc_complete
d955f45d1a56 net: atlantic: fix "frag[0] not initialized"
fd721da2df7a net: stmmac: fix missing pci_disable_device() on error in stmmac_pci_probe()
b076fa169465 ethernet: tulip: fix missing pci_disable_device() on error in tulip_init_one()
dc5c5b74075f nl80211: fix locking in nl80211_set_tx_bitrate_mask()
7140149849d2 net: fix wrong network header length
4f631f9f9d08 fbdev: Prevent possible use-after-free in fb_release()
92dc6278dec9 Revert "fbdev: Make fb_release() return -ENODEV if fbdev was unregistered"
9e87c228be71 selftests: add ping test with ping_group_range tuned
020fb19eae9c nl80211: validate S1G channel width
4bcc2ab96fce mac80211: fix rx reordering with non explicit / psmp ack policy
e2c54b945864 scsi: qla2xxx: Fix missed DMA unmap for aborted commands
d711a211844a scsi: scsi_dh_alua: Properly handle the ALUA transitioning state
0b56244bda16 perf bench numa: Address compiler error on s390
dff5463bc750 perf regs x86: Fix arch__intr_reg_mask() for the hybrid platform
d883b2e9afb1 gpio: mvebu/pwm: Refuse requests with inverted polarity
e7c6ac3cc2b9 gpio: gpio-vf610: do not touch other bits when set the target bit
86eac8d76101 perf build: Fix check for btf__load_from_kernel_by_id() in libbpf
e80793223252 scsi: ufs: core: Fix referencing invalid rsp field
d0116a3f25e2 riscv: dts: sifive: fu540-c000: align dma node name with dtschema
11ad6bab26c8 net: bridge: Clear offload_fwd_mark when passing frame up bridge interface.
88b937673b35 netfilter: flowtable: move dst_check to packet path
c1e170b11276 netfilter: flowtable: pass flowtable to nf_flow_table_iterate()
b8835ba8c029 netfilter: flowtable: fix TCP flow teardown
e723f67cf0c7 igb: skip phy status check where unavailable
bf6800a39494 mptcp: fix checksum byte order
f67eeb03fea6 mptcp: reuse __mptcp_make_csum in validate_data_csum
6e66d31618a9 mptcp: change the parameter of __mptcp_make_csum
37bb8ea1542b ARM: 9197/1: spectre-bhb: fix loop8 sequence for Thumb2
b88e30dcdf64 ARM: 9196/1: spectre-bhb: enable for Cortex-A15
ad54e63b832d net: af_key: add check for pfkey_broadcast in function pfkey_process
404877831816 net/mlx5e: Properly block LRO when XDP is enabled
9cec84ed7ca7 net/mlx5: DR, Fix missing flow_source when creating multi-destination FW table
2372405955f9 NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc
1b0c87de277e net/qla3xxx: Fix a test in ql_reset_work()
212ca7bb55d3 clk: at91: generated: consider range when calculating best rate
2b037a3bedf8 ice: Fix interrupt moderation settings getting cleared
a2fd0fb3baaf ice: move ice_container_type onto ice_ring_container
737fbf0c3263 ice: fix possible under reporting of ethtool Tx and Rx statistics
12fd5b112117 ice: fix crash when writing timestamp on RX rings
e35387a91318 net: vmxnet3: fix possible NULL pointer dereference in vmxnet3_rq_cleanup()
4ad09fdef55b net: vmxnet3: fix possible use-after-free bugs in vmxnet3_rq_alloc_rx_buf()
2c560e90086f net: systemport: Fix an error handling path in bcm_sysport_probe()
eb0ebbd4b0d4 Revert "PCI: aardvark: Rewrite IRQ code to chained IRQ handler"
b329889974ae netfilter: nft_flow_offload: fix offload with pppoe + vlan
f96b2e067212 net: fix dev_fill_forward_path with pppoe + bridge
7613dcaceee2 netfilter: nft_flow_offload: skip dst neigh lookup for ppp devices
5f4197a020c0 netfilter: flowtable: fix excessive hw offload attempts after failure
c22ee3a0674c net/sched: act_pedit: sanitize shift argument before usage
952c24649638 xfrm: fix "disable_policy" flag use when arriving from different devices
36d8cca5b46f xfrm: rework default policy structure
ad7491e92b71 net: macb: Increment rx bd head after allocating skb and buffer
999ee216c65e net: ipa: record proper RX transaction count
636184fd1bd4 ALSA: hda - fix unused Realtek function when PM is not enabled
84b6e3d58955 pinctrl: mediatek: mt8365: fix IES control pins
53bac31c8d8a ARM: dts: aspeed: Add video engine to g6
ed978be2afb5 ARM: dts: aspeed: Add secure boot controller node
794f7da40d65 ARM: dts: aspeed: Add ADC for AST2600 and enable for Rainier and Everest
75e9562bb4bf ARM: dts: aspeed-g6: fix SPI1/SPI2 quad pin group
f234feed77d2 pinctrl: pinctrl-aspeed-g6: remove FWQSPID group in pinctrl
b29774c208a3 ARM: dts: aspeed-g6: remove FWQSPID group in pinctrl dtsi
250f71a57559 dma-buf: ensure unique directory name for dmabuf stats
6a4c06e265ea dma-buf: fix use of DMA_BUF_SET_NAME_{A,B} in userspace
deec86168170 drm/dp/mst: fix a possible memory leak in fetch_monitor_name()
aaf0f01d074d drm/i915/dmc: Add MMIO range restrictions
9d3ec4e5bf03 drm/amd: Don't reset dGPUs if the system is going to s2idle
24501d51c6b4 libceph: fix potential use-after-free on linger ping and resends
8a06f25f5941 crypto: qcom-rng - fix infinite loop on requests not multiple of WORD_SZ
c42f9a5a3aae arm64: mte: Ensure the cleared tags are visible before setting the PTE
e9ea44dc030d arm64: paravirt: Use RCU read locks to guard stolen_time
a3c0ba7870b9 KVM: x86/mmu: Update number of zapped pages even if page list is stable
9f8f09d92ab6 Revert "can: m_can: pci: use custom bit timings for Elkhart Lake"
f5012bad435d PCI/PM: Avoid putting Elo i2 PCIe Ports in D3cold
42d8a6dc45fc Fix double fget() in vhost_net_set_backend()
0f71433eb705 selinux: fix bad cleanup on error in hashtab_duplicate()
e085354dde25 perf: Fix sys_perf_event_open() race against self
f380aba42199 ALSA: hda/realtek: Add quirk for TongFang devices with pop noise
48550a90e408 ALSA: wavefront: Proper check of get_user() error
74f64e7d18bb ALSA: usb-audio: Restore Rane SL-1 quirk
e156805ae285 nilfs2: fix lockdep warnings during disk space reclamation
d05cc5395e36 nilfs2: fix lockdep warnings in page operations for btree nodes
2a8b2f6a91d1 ARM: 9191/1: arm/stacktrace, kasan: Silence KASAN warnings in unwind_frame()
6d32c58b267a platform/chrome: cros_ec_debugfs: detach log reader wq from devm
1848108927ce drbd: remove usage of list iterator variable after loop
98e0a2e96a78 MIPS: lantiq: check the return value of kzalloc()
9a865748658b fs: fix an infinite loop in iomap_fiemap
258a7a7fb568 rtc: mc146818-lib: Fix the AltCentury for AMD platforms
9690e989d263 nvme-multipath: fix hang when disk goes live over reconnect
d44ff3b100b9 nvmet: use a private workqueue instead of the system workqueue
b6f7efb9221b tools/virtio: compile with -pthread
87c54a0b6475 vhost_vdpa: don't setup irq offloading when irq_num < 0
4e32c4c7016e s390/pci: improve zpci_dev reference counting
2d5f611add95 s390/traps: improve panic message for translation-specification exception
3e3f28529a52 ALSA: hda/realtek: Enable headset mic on Lenovo P360
4e640d4a9d14 crypto: x86/chacha20 - Avoid spurious jumps to other functions
625ff6f49789 crypto: stm32 - fix reference leak in stm32_crc_remove
0a482fc4290b rtc: sun6i: Fix time overflow handling
8b2ea9a3a159 gfs2: Disable page faults during lockless buffered reads
3fbccc4082c1 nvme-pci: add quirks for Samsung X5 SSDs
a6ae0d0b7b6b Input: stmfts - fix reference leak in stmfts_input_open
021138310983 Input: add bounds checking to input_set_capability()
3ec283635457 um: Cleanup syscall_handler_t definition/cast, fix warning
fe9f2f3a68fc rtc: pcf2127: fix bug when reading alarm registers
25ddeb6be3d9 rtc: fix use-after-free on device removal
11e6a90ffd62 Revert "drm/i915/opregion: check port number bounds for SWSCI display power state"
a12252908221 mm/kfence: reset PG_slab and memcg_data before freeing __kfence_pool
486bcceeed04 Watchdog: sp5100_tco: Enable Family 17h+ CPUs
b4c0f1600df4 Watchdog: sp5100_tco: Add initialization using EFCH MMIO
3bb1b58c53b0 Watchdog: sp5100_tco: Refactor MMIO base address initialization
8ed3e7523df3 Watchdog: sp5100_tco: Move timer initialization into function
5996d3601e77 i2c: piix4: Enable EFCH MMIO for Family 17h+
d46b4ff3bb0b i2c: piix4: Add EFCH MMIO support for SMBus port select
c4194b266bf7 i2c: piix4: Add EFCH MMIO support to SMBus base address detect
4b965566ca26 i2c: piix4: Add EFCH MMIO support to region request and release
08bc26f28bcb i2c: piix4: Move SMBus port selection into function
9a8119ddc3c5 i2c: piix4: Move SMBus controller base address detect into function
bdf9bed734c3 i2c: piix4: Move port I/O region request/release code into functions
5166f933da0e i2c: piix4: Replace hardcoded memory map size with a #define
879e811a41f8 kernel/resource: Introduce request_mem_region_muxed()
fc2bee93e31b floppy: use a statically allocated error counter
5655455a06b8 io_uring: arm poll for non-nowait files
d9bae32c6a32 usb: gadget: fix race when gadget driver register via ioctl
9f43e3ac7e66 Linux 5.15.41
4962e5a2f301 usb: gadget: uvc: allow for application to cleanly shutdown
9c76663f73f1 usb: gadget: uvc: rename function to be more consistent
6a060190f247 ping: fix address binding wrt vrf
54f6834b283d SUNRPC: Ensure we flush any closed sockets before xs_xprt_free()
cc57b2e4a737 mm/hwpoison: use pr_err() instead of dump_page() in get_any_page()
789891632901 dma-buf: call dma_buf_stats_setup after dmabuf is in valid list
0fad10b263a3 Revert "drm/amd/pm: keep the BACO feature enabled for suspend"
86ea55e80ddc drm/vmwgfx: Initialize drm_mode_fb_cmd2
e05949240b4d SUNRPC: Ensure that the gssproxy client can start in a connected state
962686f619ae net: phy: micrel: Pass .probe for KS8737
bfec9d6a909f net: phy: micrel: Do not use kszphy_suspend/resume for KSZ8061
3539241b5936 arm[64]/memremap: don't abuse pfn_valid() to ensure presence of linear map
8e1716993ba0 cgroup/cpuset: Remove cpus_allowed/mems_allowed setup in cpuset_init_smp()
80b6fb3d181d writeback: Avoid skipping inode writeback
1bd91049e378 net: phy: Fix race condition on link status change
890a5c6d1981 net: atlantic: always deep reset on pm op, fixing up my null deref regression
8d2cc06d653a i40e: i40e_main: fix a missing check on list iterator
73ad9e6023a4 drm/nouveau/tegra: Stop using iommu_present()
7d8b5d344a41 drm/vmwgfx: Disable command buffers on svga3 without gbobjects
f8f836100fff mm/huge_memory: do not overkill when splitting huge_zero_page
0e89d770dca5 Revert "mm/memory-failure.c: skip huge_zero_page in memory_failure()"
8c09cb115e9f ceph: fix setting of xattrs on async created inodes
73e12d4d33bc serial: 8250_mtk: Fix register address for XON/XOFF character
d01eb92f8b42 serial: 8250_mtk: Fix UART_EFR register address
7ef67d38b294 fsl_lpuart: Don't enable interrupts too early
7207e12d244b slimbus: qcom: Fix IRQ check in qcom_slim_probe
113ac16e51bc USB: serial: option: add Fibocom MA510 modem
f2ab0c604b1a USB: serial: option: add Fibocom L610 modem
84cd0f9b2608 USB: serial: qcserial: add support for Sierra Wireless EM7590
34669b1c7398 USB: serial: pl2303: add device id for HP LM930 Display
cb59b3092ab7 usb: typec: tcpci_mt6360: Update for BMC PHY setting
f5c774bdc1d6 usb: typec: tcpci: Don't skip cleanup in .remove() on error
92764e5bedf2 usb: cdc-wdm: fix reading stuck on device close
643760ff0fcf tty: n_gsm: fix mux activation issues in gsm_config()
e68de92d2f39 tty: n_gsm: fix buffer over-read in gsm_dlci_data()
99fbf2653836 tty/serial: digicolor: fix possible null-ptr-deref in digicolor_uart_probe()
04d5b08e6697 x86/mm: Fix marking of unused sub-pmd ranges
5399686de11e usb: xhci-mtk: fix fs isoc's transfer error
0912e07d4f3c KVM: PPC: Book3S PR: Enable MSR_DR for switch_mmu_context()
12ff11142100 firmware_loader: use kernel credentials when reading firmware
4e6a74c8b444 interconnect: Restore sync state by ignoring ipa-virt in provider count
f26c6f9404e1 tcp: drop the hash_32() part from the index calculation
952a238d779e tcp: increase source port perturb table to 2^16
4a3eefa399e6 tcp: dynamically allocate the perturb table used by source ports
b763fce193b4 tcp: add small random increments to the source port
f41f6336bfc4 tcp: resalt the secret every 10 seconds
ff01554d8755 tcp: use different parts of the port_offset for index and offset
1a8ee547da2b secure_seq: use the 64 bits of the siphash for port offset calculation
99858114a3b2 net: sfp: Add tx-fault workaround for Huawei MA5671A SFP ONT
39740a06ca7a net: emaclite: Don't advertise 1000BASE-T and do auto negotiation
4bf5bc44ea9e ASoC: SOF: Fix NULL pointer exception in sof_pci_probe callback
46125e40a917 s390: disable -Warray-bounds
e9cd31881e5c ASoC: ops: Validate input values in snd_soc_put_volsw_range()
7758a40d8608 ASoC: max98090: Generate notifications on changes for custom control
081188d82e5b ASoC: max98090: Reject invalid values in custom control put()
e1d387eead8b iommu: arm-smmu: disable large page mappings for Nvidia arm-smmu
2f6b75c03c7f RDMA/irdma: Fix deadlock in irdma_cleanup_cm_core()
f21579e443f6 hwmon: (f71882fg) Fix negative temperature
41d5ad959670 gfs2: Fix filesystem block deallocation for short writes
cf2589a6679c drm/vmwgfx: Fix fencing on SVGAv3
70098cc9569f tls: Fix context leak on tls_device_down
280a93745c92 net: sfc: ef10: fix memory leak in efx_ef10_mtd_probe()
8d75d66ff177 net/smc: non blocking recvmsg() return -EAGAIN when no data and signal_pending
e3e02d681d12 net: dsa: bcm_sf2: Fix Wake-on-LAN with mac_link_down()
18f03c3343d2 drm/vc4: hdmi: Fix build error for implicit function declaration
6e4c10cbbb3e net: bcmgenet: Check for Wake-on-LAN interrupt probe deferral
598483f1fe08 net: ethernet: mediatek: ppe: fix wrong size passed to memset()
b773640d5bb9 net/sched: act_pedit: really ensure the skb is writable
3a518561a3c3 s390/lcs: fix variable dereferenced before check
2bd57101c3ec s390/ctcm: fix potential memory leak
21bb0246af42 s390/ctcm: fix variable dereferenced before check
79e87cfc82e6 virtio: fix virtio transitional ids
4147d2e1a0ac arm64: vdso: fix makefile dependency on vdso.so
00782d1dddea selftests: vm: Makefile: rename TARGETS to VMTARGETS
62cbb09899f7 procfs: prevent unprivileged processes accessing fdinfo dir
844c31a4534e hwmon: (ltq-cputemp) restrict it to SOC_XWAY
5f71bc9a6b14 dim: initialize all struct fields
53a55a3124a8 ionic: fix missing pci_release_regions() on error in ionic_probe()
1a2e139e68bb nfs: fix broken handling of the softreval mount option
8bf4039e3e19 mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection
7b2fa7ad6bf2 net: sfc: fix memory leak due to ptp channel
fc4615a8e9f5 sfc: Use swap() instead of open coding it
ef090cd44dd9 fbdev: efifb: Fix a use-after-free due early fb_info cleanup
42125c81ca25 net: chelsio: cxgb4: Avoid potential negative array offset
fa189827f00c netlink: do not reset transport header in netlink_recvmsg()
57d6374f5c1c drm/nouveau: Fix a potential theorical leak in nouveau_get_backlight_name()
337530058e17 ipv4: drop dst in multicast routing path
04b199e47050 ice: fix PTP stale Tx timestamps cleanup
4a5c4713ff1e ice: Fix race during aux device (un)plugging
50bf9411372e platform/surface: aggregator: Fix initialization order when compiling as builtin module
f94aa46efaa0 fbdev: vesafb: Cleanup fb_info in .fb_destroy rather than .remove
cd3c8abbdc4e fbdev: efifb: Cleanup fb_info in .fb_destroy rather than .remove
02eef429bf4a fbdev: simplefb: Cleanup fb_info in .fb_destroy rather than .remove
4ebbf76dcbe5 net: mscc: ocelot: avoid corrupting hardware counters when moving VCAP filters
e4a3386221d2 net: mscc: ocelot: restrict tc-trap actions to VCAP IS2 lookup 0
ceffde8c6e1d net: mscc: ocelot: fix VCAP IS2 filters matching on both lookups
d242b66a3140 net: mscc: ocelot: fix last VCAP IS1/IS2 filter persisting in hardware when deleted
cc22bb201d77 net: Fix features skip in for_each_netdev_feature()
afc080e42f8a mac80211: Reset MBSSID parameters upon connection
e346e603625a hwmon: (tmp401) Add OF device ID table
e29b71fc793e iwlwifi: iwl-dbg: Use del_timer_sync() before freeing
8f37aad74f46 batman-adv: Don't skb_split skbuffs with frag_list
ae766496dbd4 Linux 5.15.40
5f0023211221 mm: fix invalid page pointer returned with FOLL_PIN gups
954c78ed8c84 mm/mlock: fix potential imbalanced rlimit ucounts adjustment
acf3e6843a85 mm/hwpoison: fix error page recovered but reported "not recovered"
13d75c31a8ad mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and __mcopy_atomic()
72dd0487237d mm: shmem: fix missing cache flush in shmem_mfill_atomic_pte()
e36b476a829c mm: hugetlb: fix missing cache flush in copy_huge_page_from_user()
97a9f80290aa mm: fix missing cache flush for all tail pages of compound page
9e951f2d85c9 udf: Avoid using stale lengthOfImpUse
3d9c1d39237e rfkill: uapi: fix RFKILL_IOCTL_MAX_SIZE ioctl request definition
b063e8cbec3c Bluetooth: Fix the creation of hdev->name
01986c7dbf9d objtool: Fix SLS validation for kcov tail-call replacement
41b6878eedf8 crypto: x86/poly1305 - Fixup SLS
f277e36addad kvm/emulate: Fix SETcc emulation function offsets with SLS
80c8ac8eca77 tools arch: Update arch/x86/lib/mem{cpy,set}_64.S copies used in 'perf bench mem memcpy'
370d33da35e3 x86: Add straight-line-speculation mitigation
d11f96d0c0c3 kbuild: move objtool_args back to scripts/Makefile.build
f835241fdb0f x86/alternative: Relax text_poke_bp() constraint
ee4724cc045f objtool: Add straight-line-speculation validation
a467f694a46d x86: Prepare inline-asm for straight-line-speculation
14b476e07fab x86: Prepare asm files for straight-line-speculation
89837223d00d x86/lib/atomic64_386_32: Rename things
c9e18547cc55 Linux 5.15.39
4b4f9f172af4 PCI: aardvark: Update comment about link going down after link-up
0dde2c7e6afb PCI: aardvark: Drop __maybe_unused from advk_pcie_disable_phy()
c29d876c202c PCI: aardvark: Don't mask irq when mapping
f0a2ee95dfeb PCI: aardvark: Remove irq_mask_ack() callback for INTx interrupts
03da50b8e42e PCI: aardvark: Use separate INTA interrupt for emulated root bridge
038c1516178c PCI: aardvark: Fix support for PME requester on emulated bridge
cf7ef0e3029e PCI: aardvark: Add support for PME interrupts
4da95b9fdad3 PCI: aardvark: Optimize writing PCI_EXP_RTCTL_PMEIE and PCI_EXP_RTSTA_PME on emulated bridge
2aa9f36c3931 PCI: aardvark: Add support for ERR interrupt on emulated bridge
d8efde346003 PCI: aardvark: Enable MSI-X support
0993795b2f7a PCI: aardvark: Fix setting MSI address
6e80e16149b9 PCI: aardvark: Add support for masking MSI interrupts
d4bd61f99d13 PCI: aardvark: Refactor unmasking summary MSI interrupt
b904c90a4624 PCI: aardvark: Use dev_fwnode() instead of of_node_to_fwnode(dev->of_node)
0a5d0a9808ef PCI: aardvark: Make msi_domain_info structure a static driver structure
d951cbef2e46 PCI: aardvark: Make MSI irq_chip structures static driver structures
9e475a95c59b PCI: aardvark: Check return value of generic_handle_domain_irq() when processing INTx IRQ
95bd4e10877c PCI: aardvark: Rewrite IRQ code to chained IRQ handler
c1e237cd6463 PCI: aardvark: Replace custom PCIE_CORE_INT_* macros with PCI_INTERRUPT_*
ac76c36aa417 PCI: aardvark: Disable common PHY when unbinding driver
a346d08ca45e PCI: aardvark: Disable link training when unbinding driver
246a36b66377 PCI: aardvark: Assert PERST# when unbinding driver
af27f54e6224 PCI: aardvark: Fix memory leak in driver unbind
55e38c42051d PCI: aardvark: Mask all interrupts when unbinding driver
5c9fc7a028da PCI: aardvark: Disable bus mastering when unbinding driver
6ee10ccca811 PCI: aardvark: Comment actions in driver remove method
2855fb2b6340 PCI: aardvark: Clear all MSIs at setup
5ea7bcb084ae PCI: aardvark: Add support for DEVCAP2, DEVCTL2, LNKCAP2 and LNKCTL2 registers on emulated bridge
739c052b9b26 PCI: pci-bridge-emul: Add definitions for missing capabilities registers
b3ca84e3c66a PCI: pci-bridge-emul: Add description for class_revision field
0060c7bd9e33 rcu: Apply callbacks processing time limit only on softirq
2c5029d652f3 rcu: Fix callbacks processing time limit retaining cond_resched()
38b9770741ae Revert "parisc: Mark sched_clock unstable only if clocks are not syncronized"
e3c465defa0f mmc: rtsx: add 74 Clocks in power on flow
0b4e16093e08 selftest/vm: verify remap destination address in mremap_test
e8b9989597da selftest/vm: verify mmap addr in mremap_test
680e982ae89b KVM: LAPIC: Enable timer posted-interrupt only when mwait/hlt is advertised
8e10a00b1876 KVM: x86/mmu: avoid NULL-pointer dereference on page freeing bugs
6b68f26a6556 KVM: x86: Do not change ICR on write to APIC_SELF_IPI
ddba1a4aadd4 x86/kvm: Preserve BSP MSR_KVM_POLL_CONTROL across suspend/resume
067f2fbe4ac9 KVM: selftests: Silence compiler warning in the kvm_page_table_test
119a65a465f5 kvm: selftests: do not use bitfields larger than 32-bits for PTEs
aa9993f8f984 iommu/dart: Add missing module owner to ops structure
7f95fdff56e9 net/mlx5e: Lag, Don't skip fib events on current dst
7fc51e7e7b6b net/mlx5e: Lag, Fix fib_info pointer assignment
197bd9738a97 net/mlx5e: Lag, Fix use-after-free in fib event handler
bc8e74239fb8 net/mlx5: Fix slab-out-of-bounds while reading resource dump menu
161568b7494a fbdev: Make fb_release() return -ENODEV if fbdev was unregistered
11f5f236dbd6 kvm: x86/cpuid: Only provide CPUID leaf 0xA if host has architectural PMU
3e56e9a7f2cc gpio: mvebu: drop pwm base assignment
94ca25aed123 drm/amdgpu: Ensure HDA function is suspended before ASIC reset
060102fbd92d drm/amdgpu: don't set s3 and s0ix at the same time
22b80bff1726 drm/amdgpu: explicitly check for s0ix when evicting resources
90253ae21c6b drm/amdgpu: unify BO evicting method in amdgpu_ttm
3d0e7373b291 btrfs: always log symlinks in full mode
e42a8545487e btrfs: force v2 space cache usage for subpage mount
1222440c4a1a smsc911x: allow using IRQ0
e447338d51b0 selftests: ocelot: tc_flower_chains: specify conform-exceed action for policer
45967729f2a5 bnxt_en: Fix unnecessary dropping of RX packets
cb0c054accc5 bnxt_en: Fix possible bnxt_open() failure caused by wrong RFS flag
814d91a84ac3 selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is operational
01b7fe62cbf5 rxrpc: Enable IPv6 checksums on transport socket
9bcb779ba80b mld: respect RCU rules in ip6_mc_source() and ip6_mc_msfilter()
299c189f4778 hinic: fix bug of wq out of bound access
74b9abc46862 btrfs: do not BUG_ON() on failure to update inode when setting xattr
b79815c35416 drm/msm/dp: remove fail safe mode related code
e325bef5f67d selftests/net: so_txtime: usage(): fix documentation of default clock
ba5ece30153c selftests/net: so_txtime: fix parsing of start time stamp on 32 bit systems
da07b2e273b3 net: emaclite: Add error handling for of_address_to_resource()
8010fdba29e4 net: igmp: respect RCU rules in ip_mc_source() and ip_mc_msfilter()
8fa3b32dfa28 net: cpsw: add missing of_node_put() in cpsw_probe_dt()
1dfbeb85a4c9 net: mdio: Fix ENOMEM return value in BCM6368 mux bus controller
1043a3c44641 net: stmmac: dwmac-sun8i: add missing of_node_put() in sun8i_dwmac_register_mdio_mux()
8c703731e7d5 net: dsa: mt7530: add missing of_node_put() in mt7530_setup()
bd7e519ff79a net: ethernet: mediatek: add missing of_node_put() in mtk_sgmii_init()
d34f9bbc1d19 NFSv4: Don't invalidate inode attributes on delegation return
a61a55823711 RDMA/irdma: Fix possible crash due to NULL netdev in notifier
22d872b7adce RDMA/irdma: Reduce iWARP QP destroy time
62e9930ff8ca RDMA/irdma: Flush iWARP QP if modified to ERR from RTR state
546c957f313a RDMA/siw: Fix a condition race issue in MPA request processing
53b33d43fc45 SUNRPC release the transport of a relocated task with an assigned transport
6352ecab8a3f selftests/seccomp: Don't call read() on TTY from background pgrp
642e0de286af net/mlx5: Fix deadlock in sync reset flow
e967439d76e0 net/mlx5: Avoid double clear or set of sync reset requested
9d6d76f5f190 net/mlx5e: Fix the calling of update_buffer_lossy() API
d9b4965d2401 net/mlx5e: CT: Fix queued up restore put() executing after relevant ft release
32d9ad28dcda net/mlx5e: Don't match double-vlan packets if cvlan is not set
ec26ba1f202a net/mlx5e: Fix trust state reset in reload
504d9b86745e iommu/dart: check return value after calling platform_get_resource()
af89d886edfc iommu/vt-d: Drop stop marker messages
48c37e5ab679 ASoC: soc-ops: fix error handling
ad06826f6130 ASoC: dmaengine: Restore NULL prepare_slave_config() callback
051a2cede6c7 hwmon: (pmbus) disable PEC if not enabled
64e5dd91d128 hwmon: (adt7470) Fix warning on module removal
e75dd874e02a gpio: pca953x: fix irq_stat not updated when irq is disabled (irq_mask not set)
8ec1096a09f1 gpio: visconti: Fix fwnode of GPIO IRQ
7bd81a05d489 NFC: netlink: fix sleep in atomic bug when firmware download timeout
b8f2b836e7d0 nfc: nfcmrvl: main: reorder destructive operations in nfcmrvl_nci_unregister_dev to avoid bugs
a2168fb3128a nfc: replace improper check device_is_registered() in netlink related functions
56a5ff94807d can: grcan: only use the NAPI poll budget for RX
ab5adbcead00 can: grcan: grcan_probe(): fix broken system id check for errata workaround needs
142305ab00e9 can: grcan: use ofdev->dev when allocating DMA memory
30a63e7ef37f can: isotp: remove re-binding of bound socket
b266f564c553 can: grcan: grcan_close(): fix deadlock
392aeeceb9b6 s390/dasd: Fix read inconsistency for ESE DASD devices
12b022a9f5c6 s390/dasd: Fix read for ESE with blksize < 4k
cdf348236343 s390/dasd: prevent double format of tracks for ESE devices
99bb425d7226 s390/dasd: fix data corruption for ESE devices
7011cc9a2188 ASoC: meson: Fix event generation for AUI CODEC mux
61c45cece50b ASoC: meson: Fix event generation for G12A tohdmi mux
c7c0ceb7141d ASoC: meson: Fix event generation for AUI ACODEC mux
66e5f6d561c7 ASoC: wm8958: Fix change notifications for DSP controls
a5581587bbee ASoC: da7219: Fix change notifications for tone generator frequency
61808e408952 genirq: Synchronize interrupt thread startup
41eebbf90dfb net: stmmac: disable Split Header (SPH) for Intel platforms
282eab6e3826 firewire: core: extend card->lock in fw_core_handle_bus_reset
95726e666093 firewire: remove check of list iterator against head past the loop body
e259ba5c08d3 firewire: fix potential uaf in outbound_phy_packet_callback()
07adb6954548 timekeeping: Mark NMI safe time accessors as notrace
09e7e3aee713 Revert "SUNRPC: attempt AF_LOCAL connect on setup"
148faea97855 RISC-V: relocate DTB if it's outside memory region
1a78d8fe6606 drm/amdgpu: do not use passthrough mode in Xen dom0
c10bab89a1be drm/amd/display: Avoid reading audio pattern past AUDIO_CHANNELS_COUNT
2c14dda7a4df iommu/arm-smmu-v3: Fix size calculation in arm_smmu_mm_invalidate_range()
d503958eea81 iommu/vt-d: Calculate mask for non-aligned flushes
91a97c86a8f0 KVM: x86/svm: Account for family 17h event renumberings in amd_pmc_perf_hw_id
2e4d4123c861 x86/fpu: Prevent FPU state corruption
d46f64fd9172 gpiolib: of: fix bounds check for 'gpio-reserved-ranges'
a06979edcc47 mmc: core: Set HS clock speed before sending HS CMD13
56bba3ad290d mmc: sunxi-mmc: Fix DMA descriptors allocated above 32 bits
3c0a0a2710c8 mmc: sdhci-msm: Reset GCC_SDCC_BCR register for SDHC
d95bad91b419 ALSA: fireworks: fix wrong return count shorter than expected by 4 bytes
9561b7ddcb78 ALSA: hda/realtek: Add quirk for Yoga Duet 7 13ITL6 speakers
a49454368934 parisc: Merge model and model name into one line in /proc/cpuinfo
f9a1dbc8b848 MIPS: Fix CP0 counter erratum detection for R4k CPUs
(From OE-Core rev: 3fb0fd6630316ad82063b72fb577f35202dd1a17)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c587bacddfc5d217638c8f97ac665d7baae60e4d)
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/.:
5371fc3b2a2 bpf: explicitly disable unpriv eBPF by default
(From OE-Core rev: 8f04684552b541d5a099ce8894e8bc67b898b68b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3da9b7882a397b204f63fac5fef04d79ba0a01f2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Changelog:
==========
Added
--------
Update ISO 639-2 codes to include Montenegrin (cnr) added in 2017.
Update ISO 4217. Fixes#24
ISO 639-3: New translation for Friulian
ISO 639-5: New translations for Esperanto, Hindi, Russian
ISO 4217: New translation for Esperanto
Changed
--------
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
Fixed
--------
ISO 3166-2: Add parent codes for GB. Fixes#36
ISO 3166-2: Fix subdivision names for Finland. Fixes#37
(From OE-Core rev: c4114d9bfbdb3be7815d15b98edd666e62056ddc)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit eb771fa7740f9749d26a4d3f74a926eb1e564ee5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This allows two level of overriding (distro level and local.conf/shell
variable). Previous settings blocked shell variables overring
if it was overriden on distro level.
(From OE-Core rev: e30ef926e440b505e93e404c056034d86364a241)
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 de6c3f9cb2c589aecbf8d9d25fa83cd18bf80891)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Now that our make version is a minmum of 4.0 we can drop this dependency.
(From OE-Core rev: e36a8a22bd47884a8ecbaf2091560f08c22346f3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7a0c52fd44332abb24e0dea608229ab7c472d94e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Make 4.1 has race issues with double colon usage in makefiles which are common
in MakeMaker generated code in perl. Add a dependency on make-native to avoid
this as it is relaitvely low overhead.
(From OE-Core rev: 6b1bc1366bf88ec3b77fe9db44813c4dfd545a7d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 692b7c518637c77804caf7b3cfc60a83afa2e4f4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We can't build glibc without make 4.0 and we don't work on older distros with
older versions of make without buildtools tarball so increase the minimum
version to 4.0.
(From OE-Core rev: 4b694ded86877cce06af65a0f542027d7408c111)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e9a449aeec72a698206323c3471c9268f949b1ae)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
With CONFIG_MODULE_COMPRESS_ZSTD enabled, kernel modules will have a
.ko.zst extension. This fixes depmod not being run.
Fixes: 1b696a45ddb ("rootfs.py: Add check for kernel modules before running depmod")
(From OE-Core rev: 6ade2bfdd9297896b9f251dd62f55e461fef1a3e)
Signed-off-by: Sean Anderson <sean.anderson@seco.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 425efac7110f0f42d70643e0a448e834d0f01a7a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ensure that begin_idx (i.e., beginline - 1) and end_idx (i.e.,
endline) are positive numbers in copy_license_files(). This makes sure
the same lines are copied as populate_lic_qa_checksum() uses when it
calculates the checksum. Before, beginline=0 would typically lead to
that no lines were copied at all.
(From OE-Core rev: 3001199ca8da38208649e8016e77880690835706)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ab3cc3651d08d226675c461da760cda0bb6c0ce0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Previously, only the first line of the LICENSE file was included,
which only covered the license name and thus would not detect a change
to the version (or anything else for that matter).
(From OE-Core rev: f9f1e7fa6b895cf810887b6c5ddb07b521371f20)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3ac45755dffc611fb46f5cd1c07f4876d3094893)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Fix PACKAGECONFIG to refer to libavtp instead of avtp as this is what
the project and everything is really called everywhere.
(From OE-Core rev: daa6eb4deeb1650b63b712f4c25010819fe5d3f7)
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8824d91fe2063195014c38c134b97946d3b429c2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Several tasks deactivate exiting on non-zero return codes via set +e because
they run subcommands that have legitimate non-zero return codes. However when
appending to those tasks, this behavior is not expected and can lead to builds
silently proceeding in case of an error. Therefore reset the default behavior
at the end of the respective tasks via set -e.
(From OE-Core rev: 45b4597db37e3ad50ff84cda39fd14a25d6d2680)
Signed-off-by: Stefan Wiehler <stefan.wiehler@nokia.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 83a6f28d2e464f00202090e998a63045adba9e4e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Fix the build failure when debug build is enabled.
Add DEBUG_BUILD = "1" in conf/local.conf.
$ bitbake perl
| In function 'dynprep',
inlined from 'S_sortsv_flags_impl' at pp_sort.c:358:20,
inlined from 'sortsv_amagic_i_ncmp' at pp_sort.c:572:5:
| pp_sort.c:1232:1: error: inlining failed in call to 'always_inline' 'S_amagic_i_ncmp': function not considered for inlining
| 1232 | S_amagic_i_ncmp(pTHX_ SV *const a, SV *const b)
(From OE-Core rev: 4eb85dbace4d6d2cccdeed96b4aee80a8fc24e37)
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 880296e68cfd92cfd4c9474972c8d8e6f21a2a40)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
To match the changes to gcc-cross, add a nativesdk-zstd dependency to ensure
our configurations match.
(From OE-Core rev: be70f51806d66daf1994a492dc446062838c0e21)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c145e00710fe557b5a3832fdc556ad53434b3615)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Sharing sstate cache binaries between two systems, one with libzstd installed
and the other without, leads to various gcc components being linked against
the system libzstd and failing to run on the system with out it installed.
Make zstd-native from our system available.
(From OE-Core rev: 0efcba381d51a9ab8519c3d50a8b48181a0e38e4)
Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2b0a6f03137f24b211c8881cebf65732e550a942)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
ptests in in openssl have started failing as one of the test certificates has
expired. Backport a fix for this from upstream, replacing the test
certificate to allow the ptests to pass again.
(From OE-Core rev: c3b7f7a9184188db5ce9ac665e6c2f3e22065fec)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f26f0b34f12bbca2beed153da402a3594d127374)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Atheros AR3011 Bluetooth devices require special ath3k-1.fw firmware
file. Package it separately from the main linux-firmware package to
allow deploying this firmware on embedded devices.
(From OE-Core rev: 324e4f598c0e59ba2376d5fd76068eedac17b0d3)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit a12a5606f4c7003d9a90c493380c656ee557dea5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This is a bug fix release in the stable 2.36 series.
Support capturing already encoded video streams, which takes advantage of encoding done in hardware by devices which support this feature.
Avoid using experimental GStreamer elements for video demuxing.
Avoid using the legacy GStreamer VA-API decoding plug-ins, which often cause rendering issues and are not much maintained. Their usage can be re-enabled setting WEBKIT_GST_ENABLE_LEGACY_VAAPI=1 in the environment.
Fix playback of YouTube streams which use dynamic ad insertion.
Fix display capture with Pipewire.
Fix the build without the X11 target when X11 headers are not present.
Fix several crashes and rendering issues.
(From OE-Core rev: 4e5437696e422631a1ae042f18412461242ef62e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 69e1c72417a4ea5594c17ead7bff2f9a0298e6c5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Overview of Changes in GTK+ 3.24.34, 05-18-2022
===============================================
* Include legacy hicolor icons
* Fix the build with gcc 12
* MacOS:
- Restore QUARTZ_RELOCATION support
* X11:
- Trap errors when getting output properties
* Wayland:
- Ignore empty preedit updates This fixes a problem with
textview scrolling
* Translation updates
Danish
Dutch
French
German
Hungarian
Italian
Kazakh
Latvian
Lithuanian
Norwegian Bokmål
Swedish
(From OE-Core rev: daf12b551c7bb43c5a3245e8d90ab7908b5fecf8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a652d392a47aa7c0652aac941fb7d550aea192ae)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
libxkbcommon 1.4.1 - 2022-05-21
==================
- Fix compose sequence overriding (common prefix) not working correctly.
Regressed in 1.2.0.
- Remove various bogus currency sign (particulary Euro and Korean Won) entries
from the keysym <-> Unicode mappings. They prevented the real
keysyms/codepoints for these from mapping correctly.
(From OE-Core rev: 9311e798437c44f64f0256dd894a8173cb8b465d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 75655c8b48b425beb42b23d8e596d3c987047792)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bugs fixed:
2640 UWP warnings about extensions and verbs with glib 2.72.1
2605 Backport !2449 and !2600 mingw test fixes to glib-2-72
2616 Backport !2615 “Meson: Fix gio-windows-2.0 override name” to glib-2-72
2629 Backport !2626, !2627 minor leak fixes to glib-2-72
2643 Backport !2642 “meson: Check rres.compiled() before calling rres.returncode()” to glib-2-72
2644 Backport !2631 “Cast to guintptr instead of subtracting by null” to glib-2-72
2662 Backport !2654 “gtask: use g_strconcat() in g_task_return() only if needed” to glib-2-72
2691 Backport !2661 “win32appinfo: change log level from warning to debug” to glib-2-72
Translation updates:
Croatian
Danish
English (United Kingdom)
French
Galician
German
Nepali
Portuguese (Brazil)
(From OE-Core rev: a471cc829ced8d15a5b008514caf7b0f6839382c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 780d40c9cc98fd5e9369be974acbbb60d7531a60)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Changelog:
=========
drop world-readable permission on state file even when ACLs are enabled (#446)
fix potential DoS from unprivileged users via the state file (CVE-2022-1348)
fix a misleading debug message with copytruncate and rotate 0 (#443)
add support for unsigned time_t (#438)
do not lock state file /dev/null (#433)
(From OE-Core rev: 190457be2ee24a99da3a6383233ccc4b76dd2b0c)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 391fdcf742c4669c1c4654f9b022b3d277aa0038)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Changelog:
==========
- Fixed certificate strings comparison for Local authorization (CVE-2022-26691)
- The cupsFileOpen function no longer opens files for append in read-write
mode (Issue #291)
- The cupsd daemon removed processing temporary queue (Issue #364)
- Fixed delay in IPP backend if GNUTLS is used and endpoint doesn't confirm
closing the connection (Issue #365)
- Fixed conditional jump based on uninitialized value in cups/ppd.c (Issue #329)
- Fixed CSS related issues in CUPS Web UI (Issue #344)
- Fixed copyright in CUPS Web UI trailer template (Issue #346)
- mDNS hostname in device uri is not resolved when installaling a permanent
- IPP Everywhere queue (Issues #340, #343)
- The lpstat command now reports when the scheduler is not running
(Issue #352)
- Updated the man pages concerning the -h option (Issue #357)
- Re-added LibreSSL/OpenSSL support (Issue #362)
- Updated the Solaris smf service file (Issue #368)
- Fixed a regression in lpoptions option support (Issue #370)
- The scheduler now regenerates the PPD cache information after changing the
"cupsd.conf" file (Issue #371)
- Updated the scheduler to set "auth-info-required" to "username,password" if a
backend reports it needs authentication info but doesn't set a method for
authentication (Issue #373)
- Updated the configure script to look for the OpenSSL library the old way if
pkg-config is not available (Issue #375)
- Fixed the prototype for the httpWriteResponse function (Issue #380)
- Brought back minimal AIX support (Issue #389)
cupsGetResponse did not always set the last error.
- Fixed a number of old references to the Apple CUPS web page.
- Restored the default/generic printer icon file for the web interface.
- Removed old stylesheet classes that are no longer used by the web
interface.
(From OE-Core rev: af7048c4b7daabc237b1b8f2982d67cb1fd88b4c)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 6f4131e73553f47709e19871c23a411275ab3857)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Make it possible to disable the database update completely by using
a negative update interval CVE_DB_UPDATE_INTERVAL.
Disabling the update is useful when running multiple parallel builds
when we want to have a control on the database version. This allows
coherent cve-check results without an database update for only
some of the builds.
(From OE-Core rev: ac6b4900bc0d8b4554f666de8d9d041653935a03)
Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b5c2269240327c2a8f93b9e55354698f52c976f3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
In the cve-check text mode output, we didn't write fragment
files if there are no CVEs (if CVE_CHECK_REPORT_PATCHED is 1),
or no unpached CVEs otherwise.
However, in a system after multiple builds,
cve_check_write_rootfs_manifest might find older files and use
them as current, what leads to incorrect reporting.
Fix it by always writing a fragment file, even if empty.
(From OE-Core rev: 79c02facd3f248122b4b7a6bd00192151e4a6406)
Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f1b7877acd0f6e3626faa57d9f89809cfcdfd0f1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Add some further info to the patch based on upstream changes. Given the last release
in 2017 and glaring issues on at least armv5, it does raise the question on whether
we should drop this. There are probably better compression tools now.
(From OE-Core rev: 27815774c983f7c2c849513efe087a6d77eaf443)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 241309c6dec364445093fa5973cc8998431cbed9)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
In oe-core, sysusers.d/sysctl.d/binfmt.d/modules-load.d are still kept
under /usr/lib instead of /lib changed in systemd v246. This patch
corrects the SD_PATH_{SYSUSERS,SYSCTL,BINFMT,MODULES_LOAD} returned
in sd_path_lookup() back to the /usr/lib ones.
Also updates the patch description and upstream status.
(From OE-Core rev: 4851c836529a47210934d865ed6bdc724ed50a2f)
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 8d913ab6db3ae4b2786a64a086d519a40dcb8c4d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Since systemd v250, commit d8f16737005e ("sort-util: avoid using
glibc's internal __compar_d_fn_t type"), __compare_fn_t type is no
longer used. This patch removes that type in the musl-specific patch.
(From OE-Core rev: 2b09a567117be0c048ac9a1c27cfae8cc1418b66)
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 89c8a3f96dfeb444213fd6c523e1495c49065ccc)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This patch has already been upstreamed in commit systemd/850f0008bff7
("test-parse-argument: Include signal.h") since v249 stable release.
(From OE-Core rev: 752f51e0a5960a0105b7c1a300406d1aa5049b5a)
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 25d8defc806ed760d371423a7ef99bd872462d1e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
These patches are no longer needed in version 250, they have been
dragged along rebasing over releases unnessarily. Lets remove them
(From OE-Core rev: 5420919e3e5c1e4b816c60a5b1ddd7da44cd6905)
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 216fe2b8e53640ae5794e9426de56cd87637dde4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The previous changes cause sstatetests.SStateTests.test_sstate_32_64_same_hash
to fail since RUST_XXX_SYS changes depending on the native architecture. This
is correct but these are accounted for in the layout of paths in TMPDIR so
they should be excluded from the task signatures for the correct behaviour.
(From OE-Core rev: 1887a69a1738cdf34d27f396943bce6a7e4f8e39)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2b9bb4c07d0ab53f58cbdd8a96896780a90be9a8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This all seems over complicated for something which is basically always
one of two values. This might even help cross-canadian work on something
which isn't x86-64.
(From OE-Core rev: cf7c1cde3a3949498d0566e1ac524f8468b91380)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bd36593ba3db758b3eacc974e48468a665967961)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
[YOCTO #14742]
The build shows below error while building for arm machines.
Exception: TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
Detailed error info :
Steps to reproduce:
1. Set MACHINE ?= "qemuarm" in local.conf & add 'TOOLCHAIN_HOST_TASK:append = " packagegroup-rust-cross-canadian-${MACHINE}"'
2. bitbake core-image-minimal -cpopulate_sdk
Complete Error:
ERROR: rust-cross-canadian-arm-1.59.0-r0 do_rust_gen_targets: Error executing a python function in exec_func_python() autogenerated:
The stack trace of python calls that resulted in this exception/failure was:
File: 'exec_func_python() autogenerated', lineno: 2, function: <module>
0001:
*** 0002:do_rust_gen_targets(d)
0003:
File: '/ala-lpggp31/skokkonda/yocto/poky/meta/recipes-devtools/rust/rust-cross-canadian-common.inc', lineno: 31, function: do_rust_gen_targets
0027:
0028:LLVM_TARGET[x86_64] = "${RUST_HOST_SYS}"
0029:python do_rust_gen_targets () {
0030: wd = d.getVar('WORKDIR') + '/targets/'
*** 0031: rust_gen_target(d, 'TARGET', wd, d.getVar('TARGET_LLVM_FEATURES') or "", d.getVar('TARGET_LLVM_CPU'), d.getVar('TARGET_ARCH'))
0032: rust_gen_target(d, 'HOST', wd, "", "generic", d.getVar('HOST_ARCH'))
0033: rust_gen_target(d, 'BUILD', wd, "", "generic", d.getVar('BUILD_ARCH'))
0034:}
0035:
File: '/ala-lpggp31/skokkonda/yocto/poky/meta/recipes-devtools/rust/rust-common.inc', lineno: 330, function: rust_gen_target
0326: # build tspec
0327: tspec = {}
0328: tspec['llvm-target'] = d.getVarFlag('LLVM_TARGET', arch_abi)
0329: tspec['data-layout'] = d.getVarFlag('DATA_LAYOUT', arch_abi)
*** 0330: tspec['max-atomic-width'] = int(d.getVarFlag('MAX_ATOMIC_WIDTH', arch_abi))
0331: tspec['target-pointer-width'] = d.getVarFlag('TARGET_POINTER_WIDTH', arch_abi)
0332: tspec['target-c-int-width'] = d.getVarFlag('TARGET_C_INT_WIDTH', arch_abi)
0333: tspec['target-endian'] = d.getVarFlag('TARGET_ENDIAN', arch_abi)
0334: tspec['arch'] = arch_to_rust_target_arch(rust_arch)
Exception: TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
Below are the local variables from rust_gen_target function for arm and
aarch64 targets. Refer below, the tspec varibles for 'arm' generated with NoneType.
(a) Locals at rust_gen_target for arm::
tspec['data-layout'] = None, Type of tspec['data-layout'] = <class 'NoneType'>
tspec['data-layout'] = None, Type of tspec['data-layout'] = <class 'NoneType'>
DEBUG: Python function do_rust_gen_targets finished
(b) Locals at rust_gen_target for aarch64::
tspec['data-layout'] = aarch64-unknown-linux-gnu, Type of tspec['data-layout'] = <class 'str'>
tspec['max-atomic-width'] = 128, Type of tspec['max-atomic-width'] = <class 'int'>
Reason for changing arm-eabi to arm: The earlier changes introduced this bug, so reverting the change 'arm-eabi' to 'arm' fixed the issue.
(From OE-Core rev: a4886f02dfb78e861fd7afe07b4a25c262bf0421)
Signed-off-by: Sundeep KOKKONDA <sundeep.kokkonda@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8ed000debb026477abd86ea3bf72adaf21d69f39)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The do_rust_gen_targets task was not rerunning when the configuration variables it
uses were changed. Add the missing variable dependencies to fix this.
[RP: Split to separate patch and add commit message]
(From OE-Core rev: 84e891d812874311b4afa20fd7d3dc4c457009f6)
Signed-off-by: Sundeep KOKKONDA <sundeep.kokkonda@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 65ce2d129154d4540cb8ec960971bcf6aa5a9480)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Building with MACHINE=qemuarm and MACHINE=qemux86-64 causes rust-native
to rebuild. The reason is all the ingredients into the RUST_*_SYS
variables are being tracked but that doesn't really make sense in this
case:
$ bitbake-diffsigs tmp/stamps/x86_64-linux/rust-native/1.60.0-r0.do_rust_gen_targets.sigdata.63* tmp/stamps/x86_64-linux/rust-native/1.60.0-r0.do_rust_gen_targets.sigdata.34*
NOTE: Starting bitbake server...
basehash changed from 860b8f11b10182dc5b2737f62cdb697477f714adb63eeb4d4b932d67cac8eec2 to 9379e8b9df9696e8056fec7d1534661f34dda073f6d816e241b09a2dff76ae2d
Variable rust_base_triple value changed:
@@ -36,4 +36,4 @@
# In some cases uname and the toolchain differ on their idea of the arch name
-TUNE_FEATURES{callconvention-hard} = Set
+TUNE_FEATURES{callconvention-hard} = Unset
Switch to using the final variable value for sstate signature purposes
which avoids this issue.
(From OE-Core rev: 424b81ae680057a8c285157ea081f167381b6c62)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 38b61aeaf877f6a34c3c0060c175119975ebd782)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Host distros have started deploying gcc12 as well e.g. archlinux
this build failure shows up which has been fixed upstream
In function ‘GetAlignmentFromFile’,
inlined from ‘main’ at GenFfs.c:816:20:
GenFfs.c:545:5: error: pointer ‘InFileHandle’ used after ‘fclose’ [-Werror=use-after-free]
545 | Error(NULL, 0, 4001, "Resource", "memory cannot be allocated of %s", InFileHandle);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
(From OE-Core rev: d28d84c5b43ffcc312808af085d949e403805aca)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7b67f19d353d88107f52cceda3c858730ac1db54)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
pfc files are used e.g. in 38-basic-pfc_coverage.sh
valgrind_test.supp is required, when valgrind is installed, otherwise
all valgrind tests fail
(From OE-Core rev: b34aaa9acbe865f61be0a598b8df2735b1bc76cd)
Signed-off-by: Joerg Vehlow <joerg.vehlow@aox.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 32ba67bc37b5ca73f7d29cb6c7de281ab8f824bd)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* this doesn't fix any issue (at least AFAIK),
just keeps the log files more deterministic to avoid unnecessary churn like in:
--- /OE/build/oe-core/tmp-glibc/work/qemux86_64-oe-linux/keymaps/1.0-r31/temp/log.do_patch.2213051 2022-05-26 11:35:44.110063749 +0200
+++ /OE/build/oe-core/tmp-glibc/work/qemux86_64-oe-linux/keymaps/1.0-r31/temp/log.do_patch.2213372 2022-05-26 11:35:54.553062630 +0200
@@ -1,7 +1,7 @@
DEBUG: Executing python function extend_recipe_sysroot
-NOTE: Direct dependencies are ['virtual:native:/OE/build/oe-core/openembedded-core/meta/recipes-devtools/patch/patch_2.7.6.bb:do_populate_sysroot', '/OE/build/oe-core/openembedded-core/meta/recipes-devtools/quilt/quilt-native_0.67.bb:do_populate_sysroot']
+NOTE: Direct dependencies are ['/OE/build/oe-core/openembedded-core/meta/recipes-devtools/quilt/quilt-native_0.67.bb:do_populate_sysroot', 'virtual:native:/OE/build/oe-core/openembedded-core/meta/recipes-devtools/patch/patch_2.7.6.bb:do_populate_sysroot']
NOTE: Installed into sysroot: []
-NOTE: Skipping as already exists in sysroot: ['patch-native', 'quilt-native', 'attr-native', 'libtool-native', 'gettext-minimal-native', 'texinfo-dummy-native']
+NOTE: Skipping as already exists in sysroot: ['quilt-native', 'patch-native', 'attr-native', 'libtool-native', 'gettext-minimal-native', 'texinfo-dummy-native']
DEBUG: Python function extend_recipe_sysroot finished
DEBUG: Executing python function do_patch
DEBUG: Executing python function patch_do_patch
(From OE-Core rev: bd72b15e9a4c9bb4f155d19c84bcf20d788bd568)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d3ebb37b97da15166d452bf51f5f7e0c312ae42e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
this fixes:
ERROR: mesa-2_22.0.2-r0 do_package: QA Issue: mesa: Files/directories were installed but not shipped in any package:
/usr/share/drirc.d/00-radv-defaults.conf
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
mesa: 1 installed and not shipped files. [installed-vs-shipped]
(From OE-Core rev: 8d5f5823b357e5bba107511f62cfd0777da2e401)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e306dd7d300727852a2794cd78f3097d5999eb58)
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:
54af9dd2b958 Linux 5.10.113
7992fdb045fb Revert "net: micrel: fix KS8851_MLL Kconfig"
8bedbc8f7f35 block/compat_ioctl: fix range check in BLKGETSIZE
fea24b07edfc staging: ion: Prevent incorrect reference counting behavour
dccee748af17 spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and controller
572761645b88 jbd2: fix a potential race while discarding reserved buffers after an abort
50aac4427360 can: isotp: stop timeout monitoring when no first frame was sent
e1e96e372721 ext4: force overhead calculation if the s_overhead_cluster makes no sense
4789149b9ea2 ext4: fix overhead calculation to account for the reserved gdt blocks
0c54b093766b ext4, doc: fix incorrect h_reserved size
22c450d39f89 ext4: limit length to bitmap_maxbytes - blocksize in punch_hole
75ac724684b7 ext4: fix use-after-free in ext4_search_dir
a46b3d849864 ext4: fix symlink file size not match to file content
f6038d43b25b ext4: fix fallocate to use file_modified to update permissions consistently
19590bbc691d perf report: Set PERF_SAMPLE_DATA_SRC bit for Arm SPE event
e012f9d1af54 powerpc/perf: Fix power9 event alternatives
0a2cef65b329 drm/vc4: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage
f8f8b3124b89 KVM: PPC: Fix TCE handling for VFIO
405d98427416 drm/panel/raspberrypi-touchscreen: Initialise the bridge in prepare
231381f52116 drm/panel/raspberrypi-touchscreen: Avoid NULL deref if not initialised
51d9cbbb0f5a perf/core: Fix perf_mmap fail when CONFIG_PERF_USE_VMALLOC enabled
88fcfd6ee6c5 sched/pelt: Fix attach_entity_load_avg() corner case
c55327bc3712 arm_pmu: Validate single/group leader events
5580b974a84b ARC: entry: fix syscall_trace_exit argument
7082650eb826 e1000e: Fix possible overflow in LTR decoding
43a2a3734aa3 ASoC: soc-dapm: fix two incorrect uses of list iterator
54e6180c8c2d gpio: Request interrupts after IRQ is initialized
0837ff17d052 openvswitch: fix OOB access in reserve_sfa_size()
19f6dcb1f0f0 xtensa: fix a7 clobbering in coprocessor context load/store
f399ab11dd6c xtensa: patch_text: Fixup last cpu should be master
ba2716da2336 net: atlantic: invert deep par in pm functions, preventing null derefs
358a3846f6a9 dma: at_xdmac: fix a missing check on list iterator
cf23a960c5c6 ata: pata_marvell: Check the 'bmdma_addr' beforing reading
9ca66d791439 mm/mmu_notifier.c: fix race in mmu_interval_notifier_remove()
ed5d4efb4df1 oom_kill.c: futex: delay the OOM reaper to allow time for proper futex cleanup
6b932920b96f mm, hugetlb: allow for "high" userspace addresses
50cbc583fa83 EDAC/synopsys: Read the error count from the correct register
7ec6e06ee405 nvme-pci: disable namespace identifiers for Qemu controllers
316bd86c2261 nvme: add a quirk to disable namespace identifiers
76101c8e0c31 stat: fix inconsistency between struct stat and struct compat_stat
bf28bba30410 scsi: qedi: Fix failed disconnect handling
a284cca3d81a net: macb: Restart tx only if queue pointer is lagging
9581e07b549b drm/msm/mdp5: check the return of kzalloc()
8d71edabb0ab dpaa_eth: Fix missing of_node_put in dpaa_get_ts_info()
b3afe5a7fd75 brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant
202748f44148 mt76: Fix undefined behavior due to shift overflowing the constant
0de9c104d04a net: atlantic: Avoid out-of-bounds indexing
5bef9fc38ffa cifs: Check the IOCB_DIRECT flag, not O_DIRECT
e129c55153c8 vxlan: fix error return code in vxlan_fdb_append
8e7ea1136475 arm64: dts: imx: Fix imx8*-var-som touchscreen property sizes
cd227ac03f2a ALSA: usb-audio: Fix undefined behavior due to shift overflowing the constant
490815f0b50e platform/x86: samsung-laptop: Fix an unsigned comparison which can never be negative
cb17b56a9b4d reset: tegra-bpmp: Restore Handle errors in BPMP response
d513ea9b7ef8 ARM: vexpress/spc: Avoid negative array index when !SMP
052e4a661f90 arm64: mm: fix p?d_leaf()
18ff7a2efa4e arm64/mm: Remove [PUD|PMD]_TABLE_BIT from [pud|pmd]_bad()
3bf8ca350170 selftests: mlxsw: vxlan_flooding: Prevent flooding of unwanted packets
520aab8b723c dmaengine: idxd: add RO check for wq max_transfer_size write
9a3c026dc3a5 dmaengine: idxd: add RO check for wq max_batch_size write
f593f49fcd17 net: stmmac: Use readl_poll_timeout_atomic() in atomic state
3d55b195747c netlink: reset network and mac headers in netlink_dump()
49516e6ed914 ipv6: make ip6_rt_gc_expire an atomic_t
078d839f11ac l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using netdev_master_upper_dev_get_rcu
0ac8f83d8f64 net/sched: cls_u32: fix possible leak in u32_init_knode()
93366275be72 ip6_gre: Fix skb_under_panic in __gre6_xmit()
200f96ebb389 ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit()
8fb76adb89f0 net/packet: fix packet_sock xmit return value checking
a499cb5f3ef9 net/smc: Fix sock leak when release after smc_shutdown()
60592f16a456 rxrpc: Restore removed timer deletion
fc7116a79a86 igc: Fix BUG: scheduling while atomic
46b0e4f998ce igc: Fix infinite loop in release_swfw_sync
c075c3ea0317 esp: limit skb_page_frag_refill use to a single page
3f7914dbeacd spi: spi-mtk-nor: initialize spi controller after resume
f714abf28f81 dmaengine: mediatek:Fix PM usage reference leak of mtk_uart_apdma_alloc_chan_resources
9bc949a181ba dmaengine: imx-sdma: Fix error checking in sdma_event_remap
12aa8021c7a7 ASoC: codecs: wcd934x: do not switch off SIDO Buck when codec is in use
b6f474cd3097 ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component
608fc58858bf ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek
d29c78d3f9c5 dm: fix mempool NULL pointer race when completing IO
cf9b19546494 ALSA: hda/realtek: Add quirk for Clevo NP70PNP
8ce3820fc9d4 ALSA: usb-audio: Clear MIDI port active flag after draining
43ce33a68e2b net/sched: cls_u32: fix netns refcount changes in u32_change()
04dd45d9776e gfs2: assign rgrp glock before compute_bitstructs
378061c9b886 perf tools: Fix segfault accessing sample_id xyarray
5e8446e3820c tracing: Dump stacktrace trigger to the corresponding instance
69848f9488bc mm: page_alloc: fix building error on -Werror=array-compare
08ad7a770efa etherdevice: Adjust ether_addr* prototypes to silence -Wstringop-overead
(From OE-Core rev: 96ed22ed1e6b9fa1cbb7e232c17d1e558cdc4260)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8be43ceaf742c4c1b59522ac75df4846cc271461)
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:
4bf7f350c163 Linux 5.15.37
f59e6886cafb selftests/bpf: Add test for reg2btf_ids out of bounds access
dcecd95a1357 mm: gup: make fault_in_safe_writeable() use fixup_user_fault()
4a0123bdb064 btrfs: fallback to blocking mode when doing async dio over multiple extents
c81c4f566660 btrfs: fix deadlock due to page faults during direct IO reads and writes
640a6be8e861 gfs2: Fix mmap + page fault deadlocks for direct I/O
f86f8d27840a iov_iter: Introduce nofault flag to disable page faults
6e213bc61446 gup: Introduce FOLL_NOFAULT flag to disable page faults
d3b744791bf0 iomap: Add done_before argument to iomap_dio_rw
ea7a57858875 iomap: Support partial direct I/O on user copy failures
a00cc46f97b9 iomap: Fix iomap_dio_rw return value for user copies
81a7fc397a62 gfs2: Fix mmap + page fault deadlocks for buffered I/O
38b58498819a gfs2: Eliminate ip->i_gh
8d363d817353 gfs2: Move the inode glock locking to gfs2_file_buffered_write
416a705304e5 gfs2: Introduce flag for glock holder auto-demotion
b25cfbc0e7de gfs2: Clean up function may_grant
b88b998579ee gfs2: Add wrapper for iomap_file_buffered_write
1d91c912e7d1 iov_iter: Introduce fault_in_iov_iter_writeable
30e66b1dfcbb iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readable
923f05a660e6 gup: Turn fault_in_pages_{readable,writeable} into fault_in_{readable,writeable}
19cbd78fb26a mm: kfence: fix objcgs vector allocation
10033fa72d41 ARM: dts: socfpga: change qspi to "intel,socfpga-qspi"
e8749d608847 spi: cadence-quadspi: fix write completion support
8c39925e98d4 bpf: Fix crash due to out of bounds access into reg2btf_ids.
379382b347db bpf/selftests: Test PTR_TO_RDONLY_MEM
2a77c58726ab bpf: Add MEM_RDONLY for helper args that are pointers to rdonly mem.
15166bb3000f bpf: Make per_cpu_ptr return rdonly PTR_TO_MEM.
b710f73704d6 bpf: Convert PTR_TO_MEM_OR_NULL to composable types.
b453361384c2 bpf: Introduce MEM_RDONLY flag
8d38cde47a7e bpf: Replace PTR_TO_XXX_OR_NULL with PTR_TO_XXX | PTR_MAYBE_NULL
3c141c82b958 bpf: Replace RET_XXX_OR_NULL with RET_XXX | PTR_MAYBE_NULL
d58a396fa6c9 bpf: Replace ARG_XXX_OR_NULL with ARG_XXX | PTR_MAYBE_NULL
a76020980b9f bpf: Introduce composable reg, ret and arg types.
e52da8e4632f floppy: disable FDRAWCMD by default
(From OE-Core rev: 90628b9bbcf4ed6f23e880248c92403b29ce20f3)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 786e668bdda1181438cbe570fa1155ad3b7f06d9)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
When running CVE checks in CI we're usually not interested in warnings on the
console for any CVEs present. Add a configuration option CVE_CHECK_SHOW_WARNINGS
to allow this to be disabled (it is left enabled by default).
(From OE-Core rev: 8fd6a9f521ea6b1e10c80fe33968943db30991ba)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1054d3366ba528f2ad52585cf951e508958c5c68)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
For OE-Core our policy is to stay as close to the kernel stable releases
as we can. This should ensure the bulk of the major kernel CVEs are fixed
and we don't dive into each individual issue as the stable maintainers are
much more able to do that.
Rather than just ignore all kernel CVEs which is what we have been doing,
list the ones we ignore on this basis here, allowing new issues to be
visible. If anyone wishes to clean up CPE entries with NIST for these, we'd
welcome than and then entries can likely be removed from here.
(From OE-Core rev: 726ce5bf1ea64d31f523ec5aff905407480c1095)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 319d465d44328b5f062d2da0526c0e8b189b4239)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Before this the rootfs manifest and the summary were identical.
We should separate the summary and rootfs manifest more clearly,
now the summary is for all CVEs and the rootfs manifest is only for
things in that image. This is even more useful if you build multiple
images.
(From OE-Core rev: 65498411d73e8008d5550c2d0a1148f990717587)
Signed-off-by: Ernst Sjöstrand <ernstp@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3b8cc6fc45f0ea5677729ee2b1819bdc7a441ab1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
As product, sdk should do cve check as well as rootfs.
(From OE-Core rev: 637d6ff44bc17565edae5466addbbe251f0cdadc)
Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit cc17753935c5f9e08aaa6c5886f059303147c07b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We have libxml2 2.9.14 and we don't link statically against libxml2 anyway
so the CVE doesn't apply to libxslt.
(From OE-Core rev: 82f4186ec0b16d4c1d9a8612fc3b6c6701fee8ea)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c6315d8a2a1429a0fb7563b1d6352ceee7bc222c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We never depended upon libjbig so this was never present. Add the
PACKAGECONFIG to make this explict.
CVE-2022-1210 is an issue in libjbig so we don't have a problem there,
mark as such.
(From OE-Core rev: 95f1c5d0bb7bc7cae2715d0c9b569fa369a64575)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 34e6a19f2430ee2fd0fec4bec1891e898a0d9766)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
These issues only affect libtiff post-4.3.0 but before 4.4.0, caused by
3079627e and fixed by b4e79bfa.
(From OE-Core rev: 4eb0b7468383a1d0314b3bfd43ea37c95de464d9)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
If, e.g., license-file-missing is added to ERROR_QA, then the build
should fail if any licenses are missing.
(From OE-Core rev: 72aa42425e456ab0210129df01d829465acadb6d)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit dd91c4bec8335cab2bbd0b33caf50d314ca72bdc)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Additional changes in version 3.38.4 (2022-05-04):
Fix a byte-code problem in the Bloom filter pull-down optimization added by release 3.38.0 in which an error in the byte code causes the byte code engine to enter an infinite loop when the pull-down optimization encounters a NULL key. Forum thread 2482b32700384a0f.
Other minor patches. See the timeline for details.
Additional changes in version 3.38.5 (2022-05-06):
Fix a blunder in the CLI of the 3.38.4 release.
(From OE-Core rev: c762a5c97b61b4d560cda33ba4a7c329df0fc9f8)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e1bd414792ae2576685b2a352a5cc93343f06985)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Mesa 22.0.3 is a bug fix release
New features:
None
Bug fixes:
freedreno: fragile location packing can break cull/clip distance
turnip: dEQP-VK.spirv_assembly.instruction.compute.float_controls.fp16.generated_args.* failures
piglit ext_image_dma_buf_import.ext_image_dma_buf_import* regression
piglit ext_image_dma_buf_import.ext_image_dma_buf_import* regression
Grid Autosport via proton/vulkan: glitches on the grass on amdgpu, fine on amdgpu-pro
[Bisected] r600: Big performance regression on some games
Huge amount of anon_inode:sync_file file descriptor created
anv regressions from commit 57445adc891 “anv: Re-enable CCS_E on TGL+”
NIR validation failed after nir_opt_if
intel: integer_mad_hi / integer_mad_sat / integer_mul_hi produce invalid results
Aperture Desk Job rendering artifacts Intel TGL
intel: integer_sub_sat produces stack corruption / OpISubBorrow compilation issue
r300/rv530: “Black rendering” of Baldur’s Gate Dark Alliance in Xbox emulator CXBX-R under wine with Gallium Nine and RADEON_DEBUG=use_tgsi
radv/aco: xfb bug
Occasional flicker corruption in Rage 2, e.g. after loading, with ACO on RX 5700 XT
RADV: Quake 2 RTX v1.6.0 Corrupted Graphics
‘../src/amd/common/ac_surface.c:1575: void ac_copy_dcc_equation(const struct radeon_info *, ADDR2_COMPUTE_DCCINFO_OUTPUT *, struct gfx9_meta_equation *): assertion “dcc->equation.gfx9.num_bits <= ARRAY_SIZE(equation->u.gfx9.bit)” failed’
(From OE-Core rev: 4bd58b513132cbc855df644faf8be3728c242ae9)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2f5831ec66c6a7e7b0f21a63cc46307aa68c5b96)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bug fix release:
Fix extra spaces in configure.ac's --enable-bindings
Fix potential segfault if there are more than 100 cgroup mount points
(From OE-Core rev: 6588c45d6c39f3cd1a6a58a53086bee8908ff7cd)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2139fd56da0d8e3769bcc0b337c446e7e4b98f90)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bug fix release:
devicemonitor: clean up signal handlers and hidden providers list
Leaks tracer: fix pthread_atfork return value check leading to bogus warning in log
Rust plugins: Not picked up by the plugin loader on macOS
Failed to use plugins of latest GStreamer version 1.20.x installed by brew on macOS
ptpclock: Allow at least 100ms delay between Sync/Follow_Up and Delay_Req/Delay_Resp messages. Fixes problems acquiring initial sync with certain devices
meson: Add -Wl,-rpath,${libdir} on macOS
registry: skip Rust dep builddirs when searching for plugins recursively
(From OE-Core rev: e779fb1773b2b6e63739e668cd892e196be224e8)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bb113caee72db30124f6cf8aa12fbaa14277fab5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bug fix release:
deinterlace: silence unused-but-set werror from imported code
qtdemux: fix leak of channel_mapping
rtpopusdepay: missing sprop-stereo should not assume mono
rtpjitterbuffer: Fix invalid memory access in rtp_jitter_buffer_pop()
rtpptdemux: fix leak of caps when ignoring a pt
rtpredenc: quieten warning about ignoring header extensions
soup: Fix pre-processor macros in souploader for libsoup-3.0
twcc: Note that twcc-stats packet loss counts reordering as loss + add some logging
video4linux2: Manual backports for RPi users
wavparse: handle URI query in any parse state, fixing audio track selection issue in GES
wavparse: Unset DISCONT buffer flag for divided into multiple buffers in push mode
(From OE-Core rev: 9472f0fe643c34a70139fd3967564a7e6cc0ded0)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3594cbc054d0f0eb3342282f8100a0285fc9d1fd)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bug fix release:
appsrc: Clarify buffer ref semantics in signals documentation
appsrc: fix annotations for bindings
typefind: Skip extension parsing for data:// URIs, fixing regression with mp4 files serialised to data uris
playbin3: various fixes
playbin3: fix missing lock when unknown stream type in pad-removed cb
decodebin3: fix collection leaks
decodebin3: Don't duplicate stream selections
discoverer: chain up to parent finalize methods in all our types to fix memory leaks
glmixerbin: slightly better pad/element creation
gltransformation: let graphene alloc its structures memory aligned
ogg: fix possible buffer overrun
rtpbasepayload: Don't write header extensions if there's no corresponding...
rtpbasepayload: always store input buffer meta before negotiation
rtpbasepayload: fix transfer annotation for push and push_list
subparse: don't try to index string with -1
riff-media: fix memory leak after usage for g_strjoin()
playbin/playbin3: Allow setting a NULL URI
playsink: Complete reconfiguration on pad release.
parsebin: Expose streams of unknown type
pbutils: Fix wmv screen description detection
subparse: don't deref a potentially NULL variable
rawvideoparse: set format from caps in gst_raw_video_parse_set_config_from_caps
videodecoder: release stream lock after handling gap events
videorate: fix assertion when pushing last and only buffer without duration
videorate: Revert "don't reset on segment update" to fix segment handling regressions
gst-play-1.0, gst-launch-1.0: Enable win32 high-resolution timer also for MinGW build
(From OE-Core rev: 19e9c0b2ac92f9ffc3bcea8ce4761c81326ea4a7)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 905766e63a6159535b9da86c4f0af62956285199)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bug fix release:
av1parse: Fix several issues about the colorimetry.
av1parse: fix up various possible logic errors
dashsink: fix missing mutex unlock in error code path when failing to get content
d3d11videosink: Fix for unhandled mouse double click events
interlace: Also handle a missing "interlace-mode" field as progressive
msdk: fix build with MSVC
mxfdemux: Fix issues at EOS
mxfdemux: Handle empty VANC packets
nvh264dec, nvh265dec: Fix broken key-unit trick and reverse playback
nvvp9sldec: Increase DPB size to cover render delay
rvsg: fix cairo include
tsdemux: Fix AC-4 detection in MPEG-TS
tsdemux: Handle "empty" PMT gracefully
va: pool: don't advertise the GST_BUFFER_POOL_OPTION_VIDEO_ALIGNMENT option any more
v4l2codecs: Fix memory leak
v4l2videodec: set frame duration according to framerate
webrtcbin: Update documentation of 'get-stats' action signal
webrtcbin: Check data channel transport for notifying 'ice-gathering-state'
webrtcbin: Avoid access of freed memory
wpe: Reintroduce persistent WebContext
Build: use CMake to find some openssl and exr deps
Fix multiple "unused-but-set variable" compiler warnings
(From OE-Core rev: 8dca7bae0b16c7db820f0d7d60592a7d1d868a8d)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 70ff1c8f54bfb47307cce4d2cb731cc775cd7e21)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bug fix only release:
video decoders: fix frame leak on negotiation error
Fix build on systems without C++ compiler
avviddec: Remove vc1/wmv3 override (fixing crash with FFmpeg 5
Segfaults on ASF/WMV files with FFMPEG 5.0+
(From OE-Core rev: b796e337ac4ce189525b5af942226c0b4ab42ca3)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 208ddca121bb213a9e79d21b448547df58b9a511)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The second 1.20 bug-fix release (1.20.2) was released on 2 May 2022.
This release only contains bugfixes and it should be safe to update from 1.20.x.
(From OE-Core rev: a16fd1683d5518096c5b0aa651fcb4b2afe0f2ff)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b4c976ea07ff276ae705110769c8e9741827615b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
go1.17.9 (released 2022-04-12) includes security fixes to the crypto/elliptic and
encoding/pem packages, as well as bug fixes to the linker and runtime.
go1.17.10 (released 2022-05-10) includes security fixes to the syscall package,
as well as bug fixes to the compiler, runtime, and the crypto/x509 and
net/http/httptest packages.
(From OE-Core rev: bcbfff47e212627b355c54ab782f38708ed12d4c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Add a test to verify that the JSON reports are generated correctly for
both single recipe builds and image builds.
More tests are needed, but this is better than nothing.
(From OE-Core rev: 61e8e3c7f0b7161ff678a0ef4992261c7a1b96b0)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit df0f35555b09c4bc75470eb45ec9c74e6587d460)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Backport from 50a51cb7e6
CVE-2022-1586: pcre2: Out-of-bounds read in compile_xclass_matchingpath in pcre2_jit_compile.c.
(From OE-Core rev: fb6c980105ffd0262517299ab366218c61cc0665)
Signed-off-by: Hitendra Prajapati <hprajapati@mvista.com>
Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
(cherry picked from commit 7519eb1cb624bb576cfe60f7470d40c566818ac3)
Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Using += unintentionally removes all other entries from DISTRO_FEATURES
if DISTRO_FEATURES was set by ?= such as by poky.conf. This reduces
sstate reusage on the autobuilder. Fix this to speed up builds.
(From OE-Core rev: d3beac233558242ab6895e9ba8536a6df9df8eb3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 124b82c32c4545bb216a8249954817f692f9795a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We've seen failures on the autobuilder in oe-selftest where things which should
be in the sysroot aren't. The exact steps to reproduce the exact failure are
elusive and probably hash equivalance dependency but this set of steps does
reproduce corruption which is probably of the same origin:
Add DISTRO_FEATURES += "systemd"
bitbake dbus
Remove DISTRO_FEATURES += "systemd"
bitbake dbus
bitbake dbus -c clean
bitbake dbus -c configure
Add DISTRO_FEATURES += "systemd"
bitbake quilt-native
bitbake dbus -c populate_sysroot
Remove DISTRO_FEATURES += "systemd"
bitbake dbus -c compile
Where dbus will now fail as the compiler was no longer in the sysroot.
This works by clearing x11 and other values out of DISTRO_FEATURES so the x11
dependencies are removed from the sysroot. The configure stamp remains valid so
when the original configuration is restored, it becomes valid again but a load
of the sysroot disappeared and build failures result.
Fix this by removing stamps when we remove things from the sysroot.
Depends on a change to bitbake build.py to add the clean_stamp API.
[YOCTO #14790]
(From OE-Core rev: 927837e29a1e79e8eeecaacc6de6b8f9e6aa6f70)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f4b1cecc82435b71135d7b65f6ea67be0e4f8c66)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The overlayfs_qa_check checks if the current root file system has a
mount configured for each overlayfs, when the overlayfs class is used.
However there are certain instances where this mount point is created at
runtime and not static in a fstab entry or systemd mount unit.
One such case would be if overlayfs-etc is used, where the device is
mounted in the preinit script and not via a mount unit or fstab entry.
However there are other possibilities for this as well, like startup
scripts that support a dynamic partition layout. For instance when
systemd-repart is used.
This adds the `OVERLAYFS_QA_SKIP` variable, which allows to define QA
skips via its flags. In principle it supports multiple QA skip flags
separated by whitespace, but only one (`mount-configured`) is
implemented here. To skip this QA check simply add `mount-configured` to
the flag of `OVERLAYFS_QA_SKIP` with the same name. For instance if a
overlayfs is configured as:
OVERLAYFS_MOUNT_POINT[data] = "/data"
Skipping this QA check can be done by setting:
OVERLAYFS_QA_SKIP[data] = "mount-configured"
Also add a testcase and fix a typo (fstat -> fstab).
(From OE-Core rev: 34b6d6b5f078c6948e53815af3c7b61de43d851c)
Signed-off-by: Claudius Heine <ch@denx.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2ce9173169a2a86392c4a85fe9be7fbbd7353b7f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Fixes Qt build with GCC 12.1.
Brings following fixes
* 3d549e5ccc0 PR29142, segv in ar with empty archive and libdeps specified
* c473aa1b9d8 M68K: avoid quadratic slowdlow in label alignment check
* 8d1187516e3 Adjust ld ctf test for 32-bit targets
* 9c67f6382ac x86: Properly handle function pointer reference
* 9a01457e02e s390: Add DT_JMPREL pointing to .rela.[i]plt with static-pie
* 82a5bb730a1 s390: Avoid dynamic TLS relocs in PIE
* d54081c642a LoongArch: Update ABI eflag in elf header.
* fb4d148004f IBM zSystems: Add support for z16 as CPU name.
* 975b5540232 libctf, ld: diagnose corrupted CTF header cth_strlen
* 99852365513 dlltool: Use the output name as basis for deterministic temp prefixes
* 210bf1d6225 Updated Serbian (for binutils/) and Russian (for gprof/) translations
* fcf60fe8482 PR28959, obdump doesn't disassemble mftb instruction
* e4a35c73196 PowerPC64 DT_RELR relative reloc addresses
* 7183434818e Work around gcc-4 warnings in elf64-ppc.c
(From OE-Core rev: cefc45625535972d20b252ed0a2f497dff7d5fe5)
Signed-off-by: Samuli Piippo <samuli.piippo@qt.io>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c007a7251e697836a29bd1aebe49d4f2433a5e6e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Minor bug fix release with a single commit:
Make error messages about repodata and rpm mismatch more user friendly
This should help users to recognize the error is not on dnf side but
instead on the server (in the repository).
(From OE-Core rev: cd16ecd4412708731968b25585d85217fa83858b)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2b41ae2900dc308e005d3f0e8a4d3912be35bc01)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Fixes build error: when using Linux 5.4 kernel:
In function read_extcsd: mmc_cmds.c:72:18: error: MMC_BLOCK_MAJOR
undeclared (first use in this function)
This SRCREV bump includes two commits:
b7e4d5a mmc-utils: Add General command CMD56 read support
0d493fb mmc-utils: Fix build error MMC_BLOCK_MAJOR undeclared
(From OE-Core rev: a0f25374ea938bcc82396357bd029abc12a6ef0c)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d98b06c9c6f480de1e5167bfe8392e39300fc02c)
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
traceback.cpython-310.pyc is non-deterministic due to 'frozenset'
being written without strict ordering. For now let's just not
install the problematic file.
(From OE-Core rev: 00b62965bd4c9eb6fd8c016f83126da2a107a5c5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4b1f0f7542abcb8606688c974695a6c8a142e7a2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The addition of summary output caused two issues: error when building
an image and the fact that JSON output was generated even when
CVE_CHECK_FORMAT_JSON.
When generating an image it caused an error like:
ERROR: core-image-minimal-1.0-r0 do_rootfs: Error executing a python function in exec_func_python() autogenerated:
The stack trace of python calls that resulted in this exception/failure was:
File: 'exec_func_python() autogenerated', lineno: 2, function: <module>
0001:
*** 0002:cve_check_write_rootfs_manifest(d)
0003:
File: '/home/alexk/poky/meta/classes/cve-check.bbclass', lineno: 213, function: cve_check_write_rootfs_manifest
0209:
0210: link_path = os.path.join(deploy_dir, "%s.json" % link_name)
0211: manifest_path = d.getVar("CVE_CHECK_MANIFEST_JSON")
0212: bb.note("Generating JSON CVE manifest")
*** 0213: generate_json_report(json_summary_name, json_summary_link_name)
0214: bb.plain("Image CVE JSON report stored in: %s" % link_path)
0215:}
0216:
0217:ROOTFS_POSTPROCESS_COMMAND:prepend = "${@'cve_check_write_rootfs_manifest; ' if d.getVar('CVE_CHECK_CREATE_MANIFEST') == '1' else ''}"
Exception: NameError: name 'json_summary_name' is not defined
The fix is to pass the d variable to the pure python function generate_json_report
to get correct values of variables and add conditions for the JSON
output where needed.
In addition clarify the message presenting the summary JSON file,
which isn't related to an image.
Uses partial fixes from Alex Kiernan, Ernst Sjöstrand (ernstp),
and Davide Gardenal.
Fixes: f2987891d315 ("cve-check: add JSON format to summary output")
(From OE-Core rev: 2fcc696e27d7f8c70ba60f5c7de8c48030a938d3)
Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9015dec93233c7d45fd0c9885ff5d4ec23ad377d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We currently have no API to be able to remove all the potential stamps of a
task. It is unusual to need to do this, particularly as you could race against
other things happening in the system but we do have a use case for this in
cleaning up sysroots in OE-Core. The alternative is to mess with CLEANMASK in
OE-Core but that is just going to add potential for errors.
We need the first part of the make_stamp() function so separate that out so
it can be called seperately.
(Bitbake rev: 494fcfcb7c4469915c67f544997104d81c417266)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4d671504a25863018ac51c21c005cef0a4d8f05c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
If SRC_URI contains python function that extends vardepvalueexclude its
value is being tracked by sstate-cache, which can lead to rebuilds if
value is set dynamically (for example gerrit replicas).
Return empty string if vardepvalueexclude is checked to fix this
behaviour.
(Bitbake rev: 943701ee8cb55307996545f0237721413edfb168)
Signed-off-by: Tomasz Dziendzielski <tomasz.dziendzielski@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f5f9a7b89a7d8321f03184e61ad6d5ed8d0f840e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The current fetcher seemed to have some issues that made it difficult when
trying to use the same. This patch fixes the following
* Make consistent use of the path that needs to be used as oscdir
* The path mentioned in os.access in download function was not same as
ud.moddir which would result into invoking of fetch command instead of
update command even if directory already existed
* Before creating oscrc, make sure oscdir exists and create it if it does
not exist
* Updated the configuration to use apiurl and added a new parameter to
control whether http or https needs to be used to connect to apiurl
(Bitbake rev: 8ac6e09447d884e658c556388d6014279c50f202)
Signed-off-by: Gunjan Gupta <viraniac@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3ec78686f3c0ea2304097b86a965f9be4b0cb879)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
strace ptests can run successfully with root user, there is no need to
run as "nobody". The ptest results are the same.
(From OE-Core rev: c20a5f83e9f0483f5458513eeaaec60436dd9d68)
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5ab213178c011152e29dfb0a80251c5e5ab79900)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
ptest testsuite/panic-tests.sh of sed need to be run as a non-root user
so that the expected "sed: couldn't open temporary file <filename>:
Permission denied" error can be generated. After disabling default
shell for "nobody", a shell needs to be specified for running ptest.
(From OE-Core rev: 175001feb3b0e5b29cba94a8cdac18b429f84645)
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c6d7216772f76af4429fdaaca518858cf014293f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Since the commit fe26b2379ecd ("image.bbclass: Depend on
virtual/kernel:do_deploy"), the image.bbclass made building images
depend on virtual/kernel. For some images, including small initramfs,
this is not the case. Allow overriding this dependency in case
developers knows what they are doing.
(From OE-Core rev: 4caf244256e150fea19cd4f2ca04c13d95d49fee)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 55875f68212657167ac6dc26f5fd93eac24b098e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Add some documentation about skipping the QA check related to missing
fstab entries or mount units for base mount points where the overlayfs
is mounted from.
Also add a short paragraph about adding a systemd unit dependency to
services in recipes, so that they are started only after the overlayfs
is mounted and ready.
No functional change.
(From OE-Core rev: 4611cbab3e9593937b64b6db48ef269de37c74db)
Signed-off-by: Claudius Heine <ch@denx.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7adc49fa6fdbdf118f74e95193e80ae7ef019e27)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Status updated but using the existing patch since it is functionally identical.
(From OE-Core rev: 9f2d85b383daeca5bbed601e4ff9ff01a8c3403f)
Signed-off-by: Aryaman Gupta <aryaman.gupta@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit aab854a94e73e5035eb82fe1aafe970aaa296a54)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This patches makes locating the file database containing the file and
folder usernames and permissions more reliable.
In addition to locating it relative to the partition directory, we also
try to locate it relative to the IMAGE_ROOTFS.
Prior to this patch, the database was not found when using
--rootfs-dir=${IMAGE_ROOTFS}/<x> in the WIC script, leading to erronous file
permissions and ownership.
(From OE-Core rev: a5406116ef647ff0cabc6b9466aa0e34e6a20750)
Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 09e18ee246da8b56f446c4db548fb9c7e895142b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The CVE product name for PyPI packages is (usually) the same as the PyPI
package name (and not our recipe name), so use that as the default.
(From OE-Core rev: 80a1de36bc86a864d52292ef9770b77480f3c67b)
Signed-off-by: Alex Kiernan <alexk@zuma.ai>
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 61f6b0ad09bf87cdc2d3f08770b7c44cad1d0e58)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The trace tools are licensed under GPL-3.0-or-later but this wasn't
listed in LIC_FILES_CHKSUM. Fix that.
Ultimately we could disable that license if the trace PACKAGECONFIG is
disabled but I'll leave that to someone else if they're keen.
(From OE-Core rev: a27a0c3bceedf06de7ff8cae4a8fe4d2f6f514b8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f763b906ea10705d519c9eebb5ef1ebe87d49d7c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
if a setup is using RPM for packaging and there are multiple
recipes that install to ${nonarch_base_libdir}/firmware by using
install -d ${nonarch_base_libdir}/firmware, it will create installation
clashes on image install, as linux-firmware in before this patch
used mkdir -p, which creates different file mode bits (depending
on the current user's settings).
In a particular example
linux-fimware created /lib/firmware with 0600
while other-firmware-package created it with 0644
making the combination not installable by rpm backend
(From OE-Core rev: e16b9768a2e3eb931d11558f448149c16afa490b)
Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 98bf3f427702687bf81ed759e7cde5d6d15e77eb)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Includes fixes for CVE-2022-1381, CVE-2022-1420.
(From OE-Core rev: d1c0db32383812531b857729c585b3305e781cd9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 77d745bd49c979de987c75fd7a3af116e99db82b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Security
[CVE-2022-29824] Integer overflow in xmlBuf and xmlBuffer
Fix potential double-free in xmlXPtrStringRangeFunction
Fix memory leak in xmlFindCharEncodingHandler
Normalize XPath strings in-place
Prevent integer-overflow in htmlSkipBlankChars() and xmlSkipBlankChars() (David Kilzer)
Fix leak of xmlElementContent (David Kilzer)
Bug fixes
Fix parsing of subtracted regex character classes
Fix recursion check in xinclude.c
Reset last error in xmlCleanupGlobals
Fix certain combinations of regex range quantifiers
Fix range quantifier on subregex
Improvements
Fix recovery from invalid HTML start tags
Build system, portability
Define LFS macros before including system headers
Initialize XPath floating-point globals
configure: check for icu DEFS (James Hilliard)
configure.ac: produce tar.xz only (GNOME policy) (David Seifert)
CMakeLists.txt: Fix LIBXML_VERSION_NUMBER
Fix build with older Python versions
Fix --without-valid build
(From OE-Core rev: 393b81058f3b970eb906a7f9daa842d8a0747700)
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c4ba21f4012e8859fc793bec7df76e56eb8058ec)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Changes in XWayland 22.1.1 include:
- Not mapping the composite overlay window by default when running in rootless
mode. This is being done since a client trying to get the COW, the X Server
will map the window and block all pointer events.
- A change to the XWayland present queue code due to some Vulkan games/apps
running in windowed mode only running at 58 FPS when in fact at 60 FPS for
matching a 60Hz refresh rate. Incorrect calculation handling led to the MSC
ticking at ~58Hz.
- Fixing use-after-free bugs.
(From OE-Core rev: 8b8f53ebf6bc265d495154fea3050fe8d7fbd256)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit aa0028e19651665f6671d7c57646cfc97c7ba763)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This is the first bug fix release in the stable 2.36 series.
What’s new in the WebKitGTK 2.36.1 release?
- Fix the build with accessibility disabled.
- Fix several crashes and rendering issues.
- Translation updates: Croatian.
(From OE-Core rev: cf336712afc3899ef45c7f2ef5f6b081223a1269)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4ed608d33fe5f38bc172e0cc6d938ffab184a47a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-04-27 - Version 3.38.3
Version 3.38.3 fixes a bug in the automatic-index and Bloom filter construction
logic that might cause SQLite to be overly aggressive in the use of ON clause
constraints, resulting in a incorret automatic-index or Bloom filter that excludes
some valid rows from output. The bug was introduced in version 3.38.0.
Other minor changes were tossed in to complete the patch.
(From OE-Core rev: c78ac7ef2d14a8b6167922a12e8c7f35c4b11bfb)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1efd89a4572bb2f39728fd53a1d4db944b06ff38)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
version 5.0.1:
- avcodec/exr: Avoid signed overflow in displayWindow
- avcodec/diracdec: avoid signed integer overflow in global mv
- avcodec/takdsp: Fix integer overflow in decorrelate_sf()
- avcodec/apedec: fix a integer overflow in long_filter_high_3800()
- avdevice/dshow: fix regression
- avfilter/vf_subtitles: pass storage size to libass
- avcodec/vp9_superframe_split_bsf: Don't read inexistent data
- avcodec/vp9_superframe_split_bsf: Discard invalid zero-sized frames
- avcodec/vp9_superframe_bsf: Check for existence of data before reading it
- avcodec/vp9_raw_reorder_bsf: Check for existence of data before reading it
- avformat/imf: fix packet pts, dts and muxing
- avformat/imf: open resources only when first needed
- avformat/imf: cosmetics
- avformat/imf_cpl: do not use filesize when reading XML file
- avformat/imfdec: Use proper logcontext
- avformat/imfdec: do not use filesize when reading XML file
- doc/utils: add missing 22.2 layout entry
- avcodec/av1: only set the private context pix_fmt field if get_pixel_format() succeeds
- avformat/aqtitledec: Skip unrepresentable durations
- avformat/cafdec: Do not store empty keys in read_info_chunk()
- avformat/mxfdec: Do not clear array in mxf_read_strong_ref_array() before writing
- avformat/mxfdec: Check for avio_read() failure in mxf_read_strong_ref_array()
- avformat/mxfdec: Check count in mxf_read_strong_ref_array()
- avformat/hls: Check target_duration
- avcodec/pixlet: Avoid signed integer overflow in scaling in filterfn()
- avformat/matroskadec: Check pre_ns
- avcodec/sonic: Use unsigned for predictor_k to avoid undefined behavior
- avcodec/libuavs3d: Check ff_set_dimensions() for failure
- avcodec/speexdec: Align some comments
- avcodec/speexdec: Use correct doxygen comments
- avcodec/mjpegbdec: Set buf_size
- avformat/matroskadec: Use rounded down duration in get_cue_desc() check
- avcodec/argo: Check packet size
- avcodec/g729_parser: Check channels
- avformat/avidec: Check height
- avformat/rmdec: Better duplicate tags check
- avformat/mov: Disallow empty sidx
- avformat/argo_cvg:: Fix order of operations in error check in argo_cvg_write_trailer()
- avformat/argo_asf: Fix order of operations in error check in argo_asf_write_trailer()
- avcodec/movtextdec: add () to CMP() macro to avoid unexpected behavior
- avformat/matroskadec: Check duration
- avformat/mov: Corner case encryption error cleanup in mov_read_senc()
- avcodec/jpeglsdec: Fix if( code style
- avcodec/jpeglsdec: Check get_ur_golomb_jpegls() for error
- avcodec/motion_est: fix indention of ff_get_best_fcode()
- avcodec/motion_est: Fix xy indexing on range violation in ff_get_best_fcode()
- avformat/hls: Use unsigned for iv computation
- avcodec/jpeglsdec: Increase range for N in ls_get_code_runterm() by using unsigned
- avformat/matroskadec: Check desc_bytes
- avformat/utils: Fix invalid NULL pointer operation in ff_parse_key_value()
- avformat/matroskadec: Fix infinite loop with bz decompression
- avformat/utils: keep chapter monotonicity on chapter updates
- avformat/mov: Check size before subtraction
- avcodec/cfhd: Avoid signed integer overflow in coeff
- avcodec/libdav1d: free the Dav1dData packet on dav1d_send_data() failure
- avcodec/h264_parser: don't alter decoder private data
- configure: link to libatomic when it's present
- fate/ffmpeg: add missing samples dependency to fate-shortest
(From OE-Core rev: ccb87ec2f13b72c1f43a2ad96cd446533da4a666)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 90f35ceb209a51dfe0cd29e1d8646fcc501b7269)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Update to latest stable branch release
Bug Fixes
- Previously, zone maintenance DNS queries retried forever if the destination
server was unreachable. These queries included outgoing NOTIFY messages,
refresh SOA queries, parental DS checks, and stub zone NS queries. For example,
if a zone had any nameservers with IPv6 addresses and a secondary server without
IPv6 connectivity, that server would keep trying to send a growing amount of
NOTIFY traffic over IPv6. This futile traffic was not logged. This excessive
retry behavior has been fixed. [GL #3242]
- A number of crashes and hangs which could be triggered in dig were identified and
addressed. [GL #3020] [GL #3128] [GL #3145] [GL #3184] [GL #3205] [GL #3244] [GL #3248]
- Invalid dnssec-policy definitions, where the defined keys did not cover both KSK
and ZSK roles for a given algorithm, were being accepted. These are now checked,
and the dnssec-policy is rejected if both roles are not present for all algorithms
in use. [GL #3142]
- Handling of TCP write timeouts has been improved to track the timeout for each TCP
write separately, leading to a faster connection teardown in case the other party
is not reading the data. [GL #3200]
(From OE-Core rev: 297215735613b1c9512780580da2f84cf013a603)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5398263c8e070110a045a5f8999712ba4be628de)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Mesa 22.0.1 is a bug fix release which fixes bugs found since the 22.0.0 release:
freedreno: crash in PUBG
MSVC: Build failure in libmesa_util when targeting x86 32-bit
A crash in radeonsi driver
freedreno: deqp cts fails
Mesa 22.0.2 is a bug fix release which fixes bugs found since the 22.0.1 release:
Vulkan::Calling vkWaitForFences Timeout
Intel (CHT) - Uplink text rendering bugged out in Mesa 22.0
gen9atom gpu hang on dEQP-VK.spirv_assembly.instruction.graphics.float16.arithmetic_1
bad memory managment on panfrost RK3399 - cannot alocate more ram - fury unleashed
Broken rendering in Ryujinx on Tigerlake
intel: integer_mad_hi / integer_mad_sat / integer_mul_hi produce invalid results
Textures colors distortion in “Black Geyser: Couriers of Darkness” with radeonsi
ShaderStorageBlocksWriteAccess not set for spir-v shaders?
radeonsi dEQP-GLES3.functional.buffer.map.write.explicit_flush.* flake crashes
radv: nir validation error with invalid array access
Intel Iris Xe Geometry Flickering/Assets Disappearing
Rendering artifacts when playing Outer Wilds [Reproducible with latest ANV driver built from main]
Vulkan wsi leaks vk_sync object on every wsi_AcquireNextImageKHR call
panfrost(RK3399/T860): Emulationstation: broken, black or missing menus with v22.0.0
Plasma/KDE settings menus disappear on daily build
Square Artifacts Dragons Dogma
r300: Anmesia the dark descent corruption
Error compiling with LLVM-git/15
(From OE-Core rev: 34f6d4763fc3bad1382551fd863f96e556b5f6cc)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f3e9444968fd47b3c8e0b2ee7b1b17f43a6bd56b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Latest stable branch update
Drop 0029-network-enable-KeepConfiguration-when-running-on-net.patch as
patch merged upstream.
Changes:
4a31fa2fb0 (tag: v250.5) hwdb: run "update-hwdb-autosuspend"
e92e2d0e3b hwdb: run "update-hwdb"
e1e4395775 hwdb: make sure "ninja update-hwdb" works on f35
1fe496fc3b hwdb: fix parser to work with newer pyparsing
32e7c65372 manager: prohibit clone3() in seccomp filters
45335a3eed nspawn: fix --ephemeral with --machine
79b86adcbd nspawn: fix locating config files with --ephemeral
c202d402d9 resolve: fix typo in dns_class_is_pseudo()
9f689fda54 sd-ipv4acd: actually drop the arp packet from one of the host interface
e3d57bc301 sd-event: make inotify event work after the process is forked
a5fc32fa34 sd-event: do not kill a child process from another child
c36ab05b4f sd-event: do not update signal fd after PID is changed
e006b56c18 sd-event: set pid to event source after all setup processes finished
d2e3b5a841 sd-event: rebreak comments
6673131917 core: fix dm-verity auto-discovery in MountImageUnit()
10ee46a2ca analyze: Fix verify exit status regression
df6253cbda hwdb: fix parsing options
9727b9ee7b core: command argument can be longer than PATH_MAX
12f05b856c network: ignore all errors in loading .network files
b5dfdf0301 analyze: fix offline check for syscal filter
8ed1490de6 analyze: fix offline check for 'native' syscall architecture
72d0c6b171 missing-syscall: define MOVE_MOUNT_T_EMPTY_PATH if missing
bba396d78c journal-remote: refuse to specify --trust option when gnutls is disabled
8d4c0d2383 calendarspec: fix possibly skips next elapse
d9ea8dab6d copy: use FLAGS_SET() in copy_xattr()
077ca08b38 journal: preserve acls when rotating user journals with NOCOW attribute set
25b3c48ec5 macro: account for negative values in DECIMAL_STR_WIDTH()
8f2f6a94d8 network: enable KeepConfiguration= when running on network filesystem
61649fbada stat-util: introduce path_is_network_fs()
3f6e62eccb network-generator: rename DHCP_TYPE_DHCP -> DHCP_TYPE_DHCP4
a7585a3a38 hwdb: Add AV production access to Elgado Stream Deck devices
18c0096ec2 Add AV production controllers to hwdb and add uaccess
2298094b2c packit: drop bfq patch
7cda67d4f4 packit: build on and use Fedora 36 spec file
056bae9f1b Packit: build SRPMs in Copr
6253eb576c journal-file: if we are going down, don't use event loop to schedule post
c901bc8680 journald: make sure SIGTERM handling doesn't get starved out
ed46ff2bd6 random-seed: hash together old seed and new seed before writing out file
6d3e2f0188 resolved: Allow test-resolved-stream to run concurrently
781b2b2e66 resolved: Read as much as possible per stream EPOLLIN event
03692af607 resolved: Avoid multiple SSL writes per DoT packet
3227f542a7 resolved: Make event flags logic robust for DoT
9c710c66c3 resolve: llmnr: fix never hit condition
d65808ef7e resolve: mention that dns_stream_update() needs to be called after dns_stream_take_read_packet()
b2f82f643a resolve: call dns_stream_take_read_packet() in on_stream_io()
fe4c208c98 resolve: make dns_stream_new() take on_packet and complete callbacks
f447648ae4 resolved: Test for DnsStream (plain TCP DNS and DoT)
88b4e8f74e resolved: Fix DoT timeout on multiple answer records
d5b871bdfe test: increase image size
c3aead5568 random-util: unify RANDOM_ALLOW_INSECURE and !RANDOM_BLOCK and simplify
(From OE-Core rev: 43e2cd211230ea32e4903f9891fda2e4b0f63cc4)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e07ba76fc78b44f338e574644a8ae3b6cddc9f08)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This minor version include fixes for several CVEs
CVE: CVE-2022-1292
CVE: CVE-2022-1343
CVE: CVE-2022-1434
CVE: CVE-2022-1473
(From OE-Core rev: 62bc43a8ca705384fb60742f2f044f4355aaabca)
Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
As a centos 8 spinoff, it lacks the same vgem kernel module.
(From OE-Core rev: 451605aa40482516c18cd1534feacb796516a785)
(From OE-Core rev: 66622dac0ed987162c740536f56973f17879198a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
45451e8015a9 Linux 5.15.36
bb906d15a99e arm64: dts: qcom: add IPA qcom,qmp property
1ea01e64632f block/compat_ioctl: fix range check in BLKGETSIZE
6a3c609feb11 spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and controller
b1b8f39c2475 jbd2: fix a potential race while discarding reserved buffers after an abort
2e25c46c6eef netfilter: nft_ct: fix use after free when attaching zone template
2b273d1fd18e ext4: force overhead calculation if the s_overhead_cluster makes no sense
52ca84a3edd1 ext4: fix overhead calculation to account for the reserved gdt blocks
6b952563934c ext4, doc: fix incorrect h_reserved size
9b90003771e5 ext4: limit length to bitmap_maxbytes - blocksize in punch_hole
e3912775b476 ext4: fix use-after-free in ext4_search_dir
8bb5676b49d3 ext4: fix symlink file size not match to file content
ba50ea456f49 ext4: fix fallocate to use file_modified to update permissions consistently
67e4860eeed8 netfilter: conntrack: avoid useless indirection during conntrack destruction
bcba40bd36d7 netfilter: conntrack: convert to refcount_t api
4bbd693d9f0a KVM: SVM: Flush when freeing encrypted pages even on SME_COHERENT CPUs
8b2da9690489 KVM: nVMX: Defer APICv updates while L2 is active until L1 is active
a41b3243a6de KVM: x86: Pend KVM_REQ_APICV_UPDATE during vCPU creation to fix a race
2b4417acd3c6 KVM: x86/pmu: Update AMD PMC sample period to fix guest NMI-watchdog
87d95ff0ca27 arm_pmu: Validate single/group leader events
4d98fbb26683 ARC: entry: fix syscall_trace_exit argument
7b69c07beb23 e1000e: Fix possible overflow in LTR decoding
73a0b4c5c0bd ASoC: soc-dapm: fix two incorrect uses of list iterator
571a67b0d8a4 gpio: Request interrupts after IRQ is initialized
e411af98013d openvswitch: fix OOB access in reserve_sfa_size()
bac4cadeb718 xtensa: fix a7 clobbering in coprocessor context load/store
91335ca9ebe7 xtensa: patch_text: Fixup last cpu should be master
49952e31e50d perf report: Set PERF_SAMPLE_DATA_SRC bit for Arm SPE event
04ecea282b42 perf script: Always allow field 'data_src' for auxtrace
a92335b4b189 powerpc/perf: Fix power10 event alternatives
7a56867c5ef3 powerpc/perf: Fix power9 event alternatives
53c4a9ff225b drm/vc4: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage
9dc46d2e3723 KVM: PPC: Fix TCE handling for VFIO
76614b111867 drm/panel/raspberrypi-touchscreen: Initialise the bridge in prepare
7981351a916e drm/panel/raspberrypi-touchscreen: Avoid NULL deref if not initialised
56637084e8a5 perf/core: Fix perf_mmap fail when CONFIG_PERF_USE_VMALLOC enabled
b1b929468229 sched/pelt: Fix attach_entity_load_avg() corner case
914473a07088 scsi: sr: Do not leak information in ioctl
f0cfae3e0d3a Input: omap4-keypad - fix pm_runtime_get_sync() error checking
232541989a1a net: atlantic: invert deep par in pm functions, preventing null derefs
6b8af9f96749 dmaengine: imx-sdma: fix init of uart scripts
1a8d1665cff1 dma: at_xdmac: fix a missing check on list iterator
d10a711d4db6 ata: pata_marvell: Check the 'bmdma_addr' beforing reading
48b2ab1a960a mm/mmu_notifier.c: fix race in mmu_interval_notifier_remove()
41ba681c6373 oom_kill.c: futex: delay the OOM reaper to allow time for proper futex cleanup
9dcb65cdf312 mm, hugetlb: allow for "high" userspace addresses
07bdd207774c memcg: sync flush only if periodic flush is delayed
9c71b29d55d4 mm/memory-failure.c: skip huge_zero_page in memory_failure()
b81291922f8b EDAC/synopsys: Read the error count from the correct register
87dd813bd2c3 nvme-pci: disable namespace identifiers for Qemu controllers
dab2f477e15a nvme-pci: disable namespace identifiers for the MAXIO MAP1002/1202
25f37ed22a9e nvme: add a quirk to disable namespace identifiers
4a9f9f1791f3 VFS: filename_create(): fix incorrect intent.
773ca67ffc96 stat: fix inconsistency between struct stat and struct compat_stat
80c713a894c3 scsi: qedi: Fix failed disconnect handling
c7f4f3016fea scsi: iscsi: Fix NOP handling during conn recovery
e4efe868aa14 scsi: iscsi: Merge suspend fields
740411ee2f94 scsi: iscsi: Release endpoint ID when its freed
123a52eb610d net: macb: Restart tx only if queue pointer is lagging
bc663ff8cae3 drm/msm/mdp5: check the return of kzalloc()
5fe864539caf dpaa_eth: Fix missing of_node_put in dpaa_get_ts_info()
48e1db2c3d42 brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant
e25b350e2521 mt76: Fix undefined behavior due to shift overflowing the constant
a7a651d5a525 net: atlantic: Avoid out-of-bounds indexing
213330bafd02 cifs: Check the IOCB_DIRECT flag, not O_DIRECT
6085e24fd972 vxlan: fix error return code in vxlan_fdb_append
32fe43df71c5 arm64: dts: imx: Fix imx8*-var-som touchscreen property sizes
f0ba965e4783 drm/msm/disp: check the return value of kzalloc()
b78d40339568 ALSA: usb-audio: Fix undefined behavior due to shift overflowing the constant
9d441c2e2ad1 platform/x86: samsung-laptop: Fix an unsigned comparison which can never be negative
4426116b2e02 reset: tegra-bpmp: Restore Handle errors in BPMP response
a6ec9d95c205 reset: renesas: Check return value of reset_control_deassert()
70fa727835f9 ARM: vexpress/spc: Avoid negative array index when !SMP
d3acd3f9f80e arm64: mm: fix p?d_leaf()
ec9cb700cbf7 selftests: mlxsw: vxlan_flooding: Prevent flooding of unwanted packets
6b9a418d3850 dmaengine: idxd: skip clearing device context when device is read-only
49047fa486b3 dmaengine: idxd: add RO check for wq max_transfer_size write
6c30e099b978 dmaengine: idxd: add RO check for wq max_batch_size write
e83acf93919b net: stmmac: Use readl_poll_timeout_atomic() in atomic state
79957134ca1d drm/i915/display/psr: Unset enable_psr2_sel_fetch if other checks in intel_psr2_config_valid() fails
f3552c37593a netlink: reset network and mac headers in netlink_dump()
93581ae1f980 net: mscc: ocelot: fix broken IP multicast flooding
6a5ca57d5acd net: dsa: hellcreek: Calculate checksums in tagger
40ebaf7365b0 can: isotp: stop timeout monitoring when no first frame was sent
652a5405396d ipv6: make ip6_rt_gc_expire an atomic_t
d23fe66eb7b0 l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using netdev_master_upper_dev_get_rcu
58bdbd121a34 net/sched: cls_u32: fix possible leak in u32_init_knode()
1b4fb109cc53 net: restore alpha order to Ethernet devices in config
d5049ef1f671 ip6_gre: Fix skb_under_panic in __gre6_xmit()
3cc2f6b71eb6 ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit()
ab26f1136757 net/packet: fix packet_sock xmit return value checking
b355ca6a915f net/smc: Fix sock leak when release after smc_shutdown()
8fe1bf23c96b rxrpc: Restore removed timer deletion
09da8cf94588 ALSA: hda/hdmi: fix warning about PCM count when used with SOF
c7c71b3e4764 igc: Fix suspending when PTM is active
da323d0d6aaa igc: Fix BUG: scheduling while atomic
b3ce7d3a1742 igc: Fix infinite loop in release_swfw_sync
8920a03a3a15 spi: cadence-quadspi: fix incorrect supports_op() return value
a583f2f3c878 esp: limit skb_page_frag_refill use to a single page
76900a136b1a spi: spi-mtk-nor: initialize spi controller after resume
84e77e72367f dmaengine: dw-edma: Fix unaligned 64bit access
d18fb19c1c8e dmaengine: mediatek:Fix PM usage reference leak of mtk_uart_apdma_alloc_chan_resources
8932d9ee4b9f dmaengine: imx-sdma: Fix error checking in sdma_event_remap
a8be4586352b dmaengine: idxd: fix device cleanup on disable
6168532a08ef ASoC: codecs: wcd934x: do not switch off SIDO Buck when codec is in use
053bd9604f05 ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component
9a4c63e7332c ASoC: rk817: Use devm_clk_get() in rk817_platform_probe
bc15442cc99f ASoC: topology: Correct error handling in soc_tplg_dapm_widget_create()
bc7d0133181e ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek
236785649ad2 ALSA: hda/realtek: Add quirk for Clevo NP70PNP
aaa22e5b526d ALSA: usb-audio: Clear MIDI port active flag after draining
ba9e9a794fd1 net/sched: cls_u32: fix netns refcount changes in u32_change()
8dfec6e0a62d scsi: ufs: core: scsi_get_lba() error fix
c2d0cdf8ad06 gfs2: assign rgrp glock before compute_bitstructs
a52e73bef254 mm, kfence: support kmem_dump_obj() for KFENCE objects
3876c574e4cc perf tools: Fix segfault accessing sample_id xyarray
77a467983bff mm: page_alloc: fix building error on -Werror=array-compare
3177d047e58a etherdevice: Adjust ether_addr* prototypes to silence -Wstringop-overead
3f7b1a87ac75 arm64/mm: drop HAVE_ARCH_PFN_VALID
c01430cf5b87 dma-mapping: remove bogus test for pfn_valid from dma_map_resource
155ae0547cb8 xfs: return errors in xfs_fs_sync_fs
935745abcf4c vfs: make sync_filesystem return errors from ->sync_fs
6eb927ee189f block: simplify the block device syncing code
7877e7a5a52e block: remove __sync_blockdev
4b7617ae04de fs: remove __sync_filesystem
81d8d30c35ed Linux 5.15.35
85f25bb9a005 ax25: Fix UAF bugs in ax25 timers
43c107021d91 ax25: Fix NULL pointer dereferences in ax25 timers
da6509fba636 ax25: fix NPD bug in ax25_disconnect
1bf8946d5826 ax25: fix UAF bug in ax25_send_control()
452ae92b9906 ax25: Fix refcount leaks caused by ax25_cb_del()
b982492ec3a1 ax25: fix UAF bugs of net_device caused by rebinding operation
bc706d89199b ax25: fix reference count leaks of ax25_dev
9af0fd5c4453 ax25: add refcount in ax25_dev to avoid UAF bugs
de6a76eea645 cpufreq: intel_pstate: ITMT support for overclocked system
74d23d422556 net: ipa: fix a build dependency
1648c7b450d8 soc: qcom: aoss: Fix missing put_device call in qmp_get
d712aea3cd81 cpu/hotplug: Remove the 'cpu' member of cpuhp_cpu_state
14785927a1d4 drm/i915: Sunset igpu legacy mmap support based on GRAPHICS_VER_FULL
4ef9951d0252 dma-direct: avoid redundant memory sync for swiotlb
111becd63e37 timers: Fix warning condition in __run_timers()
cbdd7a33c533 dt-bindings: net: snps: remove duplicate name
83a4c1080e09 i2c: pasemi: Wait for write xfers to finish
44981e4cde68 smp: Fix offline cpu check in flush_smp_call_function_queue()
2f345bb14ad4 i2c: dev: check return value when calling dev_set_name()
6b4bf97587ef dm integrity: fix memory corruption when tag_size is less than digest size
0940795c6834 ARM: davinci: da850-evm: Avoid NULL pointer dereference
68a38b07f125 tick/nohz: Use WARN_ON_ONCE() to prevent console saturation
c11ef9ded22e genirq/affinity: Consider that CPUs on nodes can be unbalanced
c61d929944c9 x86/tsx: Disable TSX development mode at boot
aaf27fcaefc1 x86/tsx: Use MSR_TSX_CTRL to clear CPUID bits
2dd7d2eddf8e drm/amdgpu: Enable gfxoff quirk on MacBook Pro
804c096d640e drm/amd/display: don't ignore alpha property on pre-multiplied mode
adee01bbf6cb ipv6: fix panic when forwarding a pkt with no in6 dev
cab64cb82fe1 nl80211: correctly check NL80211_ATTR_REG_ALPHA2 size
63038f6e96a7 ALSA: pcm: Test for "silence" field in struct "pcm_format_data"
a53062c94b8c ALSA: hda/realtek: add quirk for Lenovo Thinkpad X12 speakers
0349df521528 ALSA: hda/realtek: Add quirk for Clevo PD50PNT
3680b48533ae btrfs: mark resumed async balance as writing
252db93fd0bd btrfs: fix root ref counts in error handling in btrfs_get_root_ref
9b81c2c147e1 ath9k: Fix usage of driver-private space in tx_info
3386927f436e ath9k: Properly clear TX status area before reporting to mac80211
7a509a9f2bb7 cifs: verify that tcon is valid before dereference in cifs_kill_sb
bd17422b9b67 gcc-plugins: latent_entropy: use /dev/urandom
05d1824a7fb4 memory: renesas-rpc-if: fix platform-device leak in error path
f5e13d700a4d SUNRPC: Fix NFSD's request deferral on RDMA transports
00715427ea77 KVM: x86/mmu: Resolve nx_huge_pages when kvm.ko is loaded
70ea5e7b38c3 mm: kmemleak: take a full lowmem check in kmemleak_*_phys()
12ba1d38115a mm: fix unexpected zeroed page mapping with zram swap
bb7645c33869 mm, page_alloc: fix build_zonerefs_node()
b6d17c67885a mm/secretmem: fix panic when growing a memfd_secret
4cdf0e7a5be8 perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant
b8ed0f7531f3 io_uring: use nospec annotation for more indexes
5218d5cc0283 io_uring: zero tag on rsrc removal
efb020924a71 drivers: net: slip: fix NPD bug in sl_tx_timeout()
e455d7510db7 scsi: megaraid_sas: Target with invalid LUN ID is deleted during scan
f1933d9ee745 scsi: mvsas: Add PCI ID of RocketRaid 2640
389f37e46bdd scsi: mpt3sas: Fail reset operation if config request timed out
184b4fad0872 drbd: set QUEUE_FLAG_STABLE_WRITES
6a03581ccffa drm/amd/display: Fix allocate_mst_payload assert on resume
ac2eb310af05 drm/amd/display: Revert FEC check in validation
eab8e585840f drm/amd/display: Enable power gating before init_pipes
d8860f1f9e41 spi: cadence-quadspi: fix protocol setup for non-1-1-X operations
6d48df738272 myri10ge: fix an incorrect free for skb in myri10ge_sw_tso
b416898442f2 net: usb: aqc111: Fix out-of-bounds accesses in RX fixup
c3f86aef97cf Drivers: hv: balloon: Disable balloon and hot-add accordingly
1c9fdb9587e0 net: axienet: setup mdio unconditionally
61dd8bef80c2 tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry
ed2711c696ce arm64: alternatives: mark patch_alternative() as `noinstr`
cfd24b14eb2d regulator: wm8994: Add an off-on delay for WM8994 variant
86d1cdf56fc5 gpu: ipu-v3: Fix dev_dbg frequency output
4583205048ae ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs
6eecc4811a47 net: micrel: fix KS8851_MLL Kconfig
9e60a788a3f7 scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024
026083cb43a4 scsi: lpfc: Fix queue failures when recovering from PCI parity error
b7f3b5d70c83 scsi: target: tcmu: Fix possible page UAF
44f95a5aae99 Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer
92a3499933c1 PCI: hv: Propagate coherence from VMbus device to PCI device
1b576e81d31b Drivers: hv: vmbus: Deactivate sysctl_record_panic_msg by default in isolated guests
f2658d5966bc drm/amdkfd: Check for potential null return of kmalloc_array()
9f0fabf30b48 drm/amdgpu/vcn: improve vcn dpg stop procedure
25efb191d86b drm/amdkfd: Fix Incorrect VMIDs passed to HWS
7a3bc11a4034 drm/amd/display: Update VTEM Infopacket definition
92951699a5f1 drm/amd/display: FEC check in timing validation
b054e8183fbd drm/amd/display: fix audio format not updated after edid updated
37bc29a44538 drm/amdgpu/gmc: use PCI BARs for APUs in passthrough
5a3b56a4a1c7 drm/amdgpu: conduct a proper cleanup of PDB bo
01dcda701fef btrfs: do not warn for free space inode in cow_file_range
bb93369f93b5 btrfs: fix fallocate to use file_modified to update permissions consistently
6dded62e5aa6 drm/amd: Add USBC connector ID
3e67054c339c block: fix offset/size check in bio_trim()
279018a01b08 net: bcmgenet: Revert "Use stronger register read/writes to assure ordering"
b8c0f6d1b04c vfio/pci: Fix vf_token mechanism when device-specific VF drivers are used
5fda973f0ece dm mpath: only use ktime_get_ns() in historical selector
9901b07ba42b cifs: potential buffer overflow in handling symlinks
9ded5ae40f4f nfc: nci: add flush_workqueue to prevent uaf
331c99ee8dcb net: ftgmac100: access hardware register after clock ready
8f79ce226ad2 macvlan: Fix leaking skb in source mode with nodst option
8e86fba13479 perf tools: Fix misleading add event PMU debug message
1665758b4bfd ALSA: usb-audio: Limit max buffer and period sizes per time
6b38c5722610 ALSA: usb-audio: Increase max buffer size
7399ed8e6a8d testing/selftests/mqueue: Fix mq_perf_tests to free the allocated cpu set
9947548d9cef io_uring: verify pad field is 0 in io_get_ext_arg
7a7c9f9de961 io_uring: verify that resv2 is 0 in io_uring_rsrc_update2
22aa1597f462 io_uring: move io_uring_rsrc_update2 validation
cb981d5c7511 ALSA: mtpav: Don't call card private_free at probe error path
872e5fa0781f ALSA: ad1889: Fix the missing snd_card_free() call at probe error
96aceacda8d2 netfilter: nf_tables: nft_parse_register can return a negative value
90c153ca45da sctp: Initialize daddr on peeled off socket
50d46b5ce004 scsi: iscsi: Fix unbound endpoint error handling
578616ac3d87 scsi: iscsi: Fix conn cleanup and stop race during iscsid restart
485780af7ef1 scsi: iscsi: Fix endpoint reuse regression
cbd4f4e40944 scsi: iscsi: Fix offload conn cleanup when iscsid restarts
cc0082d45de1 scsi: iscsi: Move iscsi_ep_disconnect()
d6f6f945e850 scsi: pm80xx: Enable upper inbound, outbound queues
b02c509ceef4 scsi: pm80xx: Mask and unmask upper interrupt vectors 32-63
3a523807f014 net/smc: Fix NULL pointer dereference in smc_pnet_find_ib()
66b3107a4a06 drm/msm/dp: add fail safe mode outside of event_mutex context
815006c33391 drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init()
a6549b364be4 drm/msm: Fix range size vs end confusion
1c86b7ea63ff netfilter: nft_socket: make cgroup match work in input too
5a52384a5134 cfg80211: hold bss_lock while updating nontrans_list
d5be67ecbeff net/sched: taprio: Check if socket flags are valid
62a48383ebe2 net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link
72f9c15854b0 net: dsa: felix: suppress -EPROBE_DEFER errors
13faa76cf572 net/sched: fix initialization order when updating chain 0 head
4c979e6fcec8 mlxsw: i2c: Fix initialization error flow
152b813d8ba5 net: mdio: don't defer probe forever if PHY IRQ provider is missing
675e7d3086d0 cifs: release cached dentries only if mount is complete
d40cf3492277 gpiolib: acpi: use correct format characters
93940fc4cb81 veth: Ensure eth header is in skb's linear part
de8a332c86a7 net/sched: flower: fix parsing of ethertype following VLAN header
726ae7300fcc SUNRPC: Fix the svc_deferred_event trace class
ec2ab59b9e66 media: rockchip/rga: do proper error checking in probe
b0d8a9eb3239 firmware: arm_scmi: Fix sorting of retrieved clock rates
e2da8f9ce3ea Revert "ath11k: mesh: add support for 256 bitmap in blockack frames in 11ax"
9f029cb2c92e memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe
e7b1992b0722 firmware: arm_scmi: Remove clear channel call on the TX channel
77ffc38e577d drm/msm: Add missing put_task_struct() in debugfs path
aa4845194b9d ALSA: nm256: Don't call card private_free at probe error path
425c83e2898d ALSA: usb-audio: Cap upper limits of buffer/period bytes for implicit fb
3bbd4850d957 ALSA: via82xx: Fix the missing snd_card_free() call at probe error
56e44ff13d84 ALSA: sonicvibes: Fix the missing snd_card_free() call at probe error
73229d7cb836 ALSA: sc6000: Fix the missing snd_card_free() call at probe error
df03ce487e1b ALSA: rme96: Fix the missing snd_card_free() call at probe error
ef4c35339414 ALSA: rme9652: Fix the missing snd_card_free() call at probe error
4efa63663c36 ALSA: rme32: Fix the missing snd_card_free() call at probe error
bb94f5d98511 ALSA: riptide: Fix the missing snd_card_free() call at probe error
4ecd10217df6 ALSA: oxygen: Fix the missing snd_card_free() call at probe error
30b86477daaa ALSA: maestro3: Fix the missing snd_card_free() call at probe error
5fbb73cb1208 ALSA: lx6464es: Fix the missing snd_card_free() call at probe error
0651442d22e2 ALSA: lola: Fix the missing snd_card_free() call at probe error
0bec8b8a57de ALSA: korg1212: Fix the missing snd_card_free() call at probe error
d9ac5256de1f ALSA: intel_hdmi: Fix the missing snd_card_free() call at probe error
e87b8d0ba455 ALSA: intel8x0: Fix the missing snd_card_free() call at probe error
547c9af67b4e ALSA: ice1724: Fix the missing snd_card_free() call at probe error
141abcbf902a ALSA: hdspm: Fix the missing snd_card_free() call at probe error
f006a4bcf8bb ALSA: hdsp: Fix the missing snd_card_free() call at probe error
85515309293b ALSA: galaxy: Fix the missing snd_card_free() call at probe error
841e8f8dd21f ALSA: fm801: Fix the missing snd_card_free() call at probe error
3a738f1b3ffd ALSA: es1968: Fix the missing snd_card_free() call at probe error
d3c6ac7a051c ALSA: es1938: Fix the missing snd_card_free() call at probe error
20b35ba7aa2f ALSA: ens137x: Fix the missing snd_card_free() call at probe error
0d52c09f0c17 ALSA: emu10k1x: Fix the missing snd_card_free() call at probe error
2a2a75ebdbd4 ALSA: echoaudio: Fix the missing snd_card_free() call at probe error
648e89e9de29 ALSA: cs5535audio: Fix the missing snd_card_free() call at probe error
9decc5bfd173 ALSA: cs4281: Fix the missing snd_card_free() call at probe error
2dde47610757 ALSA: cmipci: Fix the missing snd_card_free() call at probe error
f98476228801 ALSA: ca0106: Fix the missing snd_card_free() call at probe error
e5a54e236f70 ALSA: bt87x: Fix the missing snd_card_free() call at probe error
935629ba096e ALSA: azt3328: Fix the missing snd_card_free() call at probe error
3a943321c362 ALSA: aw2: Fix the missing snd_card_free() call at probe error
811a92b866a0 ALSA: au88x0: Fix the missing snd_card_free() call at probe error
ea61c1bd582b ALSA: atiixp: Fix the missing snd_card_free() call at probe error
007a9b5554e1 ALSA: als4000: Fix the missing snd_card_free() call at probe error
291d9e5e94d0 ALSA: als300: Fix the missing snd_card_free() call at probe error
5bc156409025 ALSA: ali5451: Fix the missing snd_card_free() call at probe error
cfa98d6c41e0 ALSA: sis7019: Fix the missing error handling
1479bdea76dd ALSA: core: Add snd_card_free_on_error() helper
07cacfd9d9dc btrfs: release correct delalloc amount in direct IO write path
8ff8bdb8c92d net: ipa: request IPA register values be retained
587ced6b8cf3 dt-bindings: net: qcom,ipa: add optional qcom,qmp property
7883df73fd59 soc: qcom: aoss: Expose send for generic usecase
ec13aa4e0085 btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups()
ed0e951463ea btrfs: remove no longer used counter when reading data page
6308ab54c8ec btrfs: remove unused parameter nr_pages in add_ra_bio_pages()
ff810f85ed3f ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40
7cad1c40ef91 ACPI: processor idle: Allow playing dead in C3 state
631473adaaef ACPI: processor idle: Check for architectural support for LPI
5b13295ac584 cpuidle: PSCI: Move the `has_lpi` check to the beginning of the function
9873fe0f3857 hamradio: remove needs_free_netdev to avoid UAF
c799c18a287e hamradio: defer 6pack kfree after unregister_netdev
8e663865f528 drm/amd/display: Fix p-state allow debug index on dcn31
685a19fa6ae9 drm/amd/display: Add pstate verification and recovery for DCN31
1b86fc15ba6d Linux 5.15.34
c9ea4fb1f3f3 stacktrace: move filter_irq_stacks() to kernel/stacktrace.c
fddb88bd266f powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit
68cea1e243b8 static_call: Don't make __static_call_return0 static
429f413ed83f mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning
8fe51495efff irqchip/gic, gic-v3: Prevent GSI to SGI translations
69943af22a32 powerpc/64: Fix build failure with allyesconfig in book3s_64_entry.S
7b5d60323f90 irqchip/gic-v4: Wait for GICR_VPENDBASER.Dirty to clear before descheduling
f4f8b6d8490e x86,static_call: Fix __static_call_return0 for i386
ff6505766565 sched: Teach the forced-newidle balancer about CPU affinity limitation.
f399f38eda57 x86/bug: Prevent shadowing in __WARN_FLAGS
469eed08becd Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb()
f5e59185b033 mm: don't skip swap entry even if zap_details specified
4693fce5a5d4 selftests: cgroup: Test open-time cgroup namespace usage for migration checks
47802775bc11 selftests: cgroup: Test open-time credential usage for migration checks
e326f218de1f selftests: cgroup: Make cg_create() use 0755 for permission instead of 0644
33db9912ff7c ubsan: remove CONFIG_UBSAN_OBJECT_SIZE
f1607e13ed71 Revert "net/mlx5: Accept devlink user input after driver initialization complete"
226b4327ef5c KVM: avoid NULL pointer dereference in kvm_dirty_ring_push
104bfa23a001 dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error"
3c3a8e56553e tools build: Use $(shell ) instead of `` to get embedded libperl's ccopts
fbe722d48b8e tools build: Filter out options and warnings not supported by clang
9b2b01e36741 perf python: Fix probing for some clang command line options
03044b841406 perf build: Don't use -ffat-lto-objects in the python feature test when building with clang-13
3b14aa053181 Revert "nbd: fix possible overflow on 'first_minor' in nbd_dev_add()"
5d69622eb036 SUNRPC: Don't call connect() more than once on a TCP socket
22174e8ce8ac rtc: mc146818-lib: fix signedness bug in mc146818_get_time()
9e46f7319549 selftests/bpf: Fix u8 narrow load checks for bpf_sk_lookup remote_port
0c64645e6373 bpf: Make remote_port field in struct bpf_sk_lookup 16-bit wide
e2ff1d653069 Revert "selftests: net: Add tls config dependency for tls selftests"
7f48521172fb net/smc: send directly on setting TCP_NODELAY
20633216ded0 KVM: SVM: Allow AVIC support on system w/ physical APIC ID > 255
b536cf3eb6f9 drm/amdgpu: don't use BACO for reset in S3
3c8902bbf2ab drm/amdkfd: Create file descriptor after client is added to smi_clients list
588393cdae7f drm/nouveau/pmu: Add missing callbacks for Tegra devices
6a5d209898a6 drm/amdgpu/vcn: Fix the register setting for vcn1
155338be5d90 drm/amdgpu/smu10: fix SoC/fclk units in auto mode
0115e4f2f6bc drm/amdgpu/display: change pipe policy for DCN 2.1
28dc1503a9d3 drm/panel: ili9341: fix optional regulator handling
b911702a0105 SUNRPC: Prevent immediate close+reconnect
a551e6629247 amd/display: set backlight only if required
2388f826cdc9 fbdev: Fix unregistering of framebuffers without device
7218a789abb3 irqchip/gic-v3: Fix GICR_CTLR.RWP polling
fcf9ccf9d26a perf/core: Inherit event_caps
0309f053ce47 perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator
8a05a6952ecd ata: sata_dwc_460ex: Fix crash due to OOB write
136c21ce8e01 perf/x86/intel: Don't extend the pseudo-encoding to GP counters
983a759640bf x86/mm/tlb: Revert retpoline avoidance approach
2f67341e5bce x86/msi: Fix msi message data shadow struct
0912cf021fb5 gpio: Restrict usage of GPIO chip irq members before initialization
9ca11bd8222a RDMA/hfi1: Fix use-after-free bug for mm struct
fa7cc2df9505 arm64: patch_text: Fixup last cpu should be master
90012c6748d3 spi: core: add dma_map_dev for __spi_unmap_msg()
887366faf0c9 btrfs: prevent subvol with swapfile from being deleted
4b98799e181b btrfs: fix qgroup reserve overflow the qgroup limit
56c88810466b perf/x86/intel: Update the FRONTEND MSR mask on Sapphire Rapids
fab4b79e869a x86/speculation: Restore speculation related MSRs during S3 resume
fcf185f7e03e x86/pm: Save the MSR validity status at context setup
ba7261af2b03 io_uring: fix race between timeout flush and removal
fe223dd2f18b io_uring: implement compat handling for IORING_REGISTER_IOWQ_AFF
ae6cba337cbf io_uring: defer splice/tee file validity check until command issue
056e1e7c1713 io_uring: don't check req->file in io_fsync_prep()
198932a14aeb mm/mempolicy: fix mpol_new leak in shared_policy_replace
a04cb99c5d46 mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0)
c21d040de622 highmem: fix checks in __kmap_local_sched_{in,out}
9fb8bc6cfc58 lz4: fix LZ4_decompress_safe_partial read out of bound
75cae557bc44 mmc: core: Fixup support for writeback-cache for eMMC and SD
5d2712b78056 mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is complete
11497ecbda04 mmc: mmci: stm32: correctly check all elements of sg list
1515d2a466bf mmc: block: Check for errors after write on SPI
86b5d155fced Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning"
dc5e603c247d scsi: ufs: ufs-pci: Add support for Intel MTL
25c1353dca74 scsi: mpt3sas: Fix use after free in _scsih_expander_node_remove()
32dd8b63e633 arm64: Add part number for Arm Cortex-A78AE
159c7db3ccbb perf session: Remap buf if there is no space for event
58aece34fb7f perf tools: Fix perf's libperf_print callback
e1f2750e7531 perf: arm-spe: Fix perf report --mem-mode
47e239117bd9 iommu/omap: Fix regression in probe for NULL pointer dereference
3fd9be3ec5c8 SUNRPC: svc_tcp_sendmsg() should handle errors from xdr_alloc_bvec()
3b32dda29f99 SUNRPC: Handle low memory situations in call_status()
03ac680dacf9 SUNRPC: Handle ENOMEM in call_transmit_status()
285f5d724005 io_uring: don't touch scm_fp_list after queueing skb
50c981bd7790 io_uring: nospec index for tags on files update
685f42de443d scsi: ufs: ufshpb: Fix a NULL check on list iterator
a972c7687233 drbd: Fix five use after free bugs in get_initial_state
1816af613e56 bpf: Support dual-stack sockets in bpf_tcp_check_syncookie
88a3bdcb462a spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op()
c9bdce2359b5 qede: confirm skb is allocated before using
fb45e80b2194 net: phy: mscc-miim: reject clause 45 register accesses
8ba8e1398a66 net: sfc: fix using uninitialized xdp tx_queue
571d8e1d154c rxrpc: fix a race in rxrpc_exit_net()
837b96d81039 net: openvswitch: fix leak of nested actions
42b2e418f9a2 net: ethernet: mv643xx: Fix over zealous checking of_get_mac_address()
085d002432ac net: openvswitch: don't send internal clone attribute to the userspace.
70cf0b820e55 ice: xsk: fix VSI state check in ice_xsk_wakeup()
840cbbdc8bf1 ice: synchronize_rcu() when terminating rings
070aa68f8fab ipv6: Fix stats accounting in ip6_pkt_drop
1c0763475401 ice: Do not skip not enabled queues in ice_vc_dis_qs_msg
5d3e9f71c310 ice: Set txq_teid to ICE_INVAL_TEID on ring creation
599874bbc4ed dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe
2cb2b3fb20a2 sctp: count singleton chunks in assoc user stats
92f1947c0d26 IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition
3b5fd693621b IB/cm: Cancel mad on the DREQ event when the state is MRA_REP_RCVD
34b8ba1cb337 RDMA/mlx5: Add a missing update of cache->last_add
5b88519b78e8 RDMA/mlx5: Don't remove cache MRs when a delay is needed
d1c87d36a655 sfc: Do not free an empty page_ring
917eeb220023 bnxt_en: Prevent XDP redirect from running when stopping TX queue
154fc224e65e bnxt_en: reserve space inside receive page for skb_shared_info
6108a8918fd7 bnxt_en: Synchronize tx when xdp redirects happen on same ring
87f5d66daa5f arch/arm64: Fix topology initialization for core scheduling
cb713eb793e6 regulator: atc260x: Fix missing active_discharge_on setting
336942b1682f regulator: rtq2134: Fix missing active_discharge_on setting
2560fe298e6e drm/imx: dw_hdmi-imx: Fix bailout in error cases of probe
31e449302ed0 drm/imx: Fix memory leak in imx_pd_connector_get_modes
c1e96348dbeb drm/imx: imx-ldb: Check for null pointer after calling kmemdup
47fec6139b5e net: stmmac: Fix unset max_speed difference between DT and non-DT platforms
907c97986d6f net: ipv4: fix route with nexthop object delete warning
71d28e5073b8 mctp: Fix check for dev_hard_header() result
40229b2977f1 ice: Clear default forwarding VSI during VSI release
ba965e8605ae skbuff: fix coalescing for page_pool fragment recycling
13bcc6f8efcd vrf: fix packet sniffing for traffic originating from ip tunnels
6e2f1b033b17 net/tls: fix slab-out-of-bounds bug in decrypt_internal
ed7a824fda87 net: sfc: add missing xdp queue reinitialization
69ec350a417d vdpa: mlx5: prevent cvq work from hogging CPU
893c70f8b8f3 vdpa/mlx5: Propagate link status from device to vdpa driver
dc872b72d180 vdpa/mlx5: Rename control VQ workqueue to vdpa wq
aefd755a9605 scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one()
cd483e17eca2 scsi: core: Fix sbitmap depth in scsi_realloc_sdev_budget_map()
0610371c768c scsi: sr: Fix typo in CDROM(CLOSETRAY|EJECT) handling
6f52d4cda0bf NFSv4: fix open failure with O_ACCMODE flag
9f0c217469e8 Revert "NFSv4: Handle the special Linux file open access mode"
dcd6b1a624c0 Drivers: hv: vmbus: Fix potential crash on module unload
5ba9d78a7294 drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire()
985d87e6a365 rtc: mc146818-lib: fix RTC presence check
be6c3152d6f6 rtc: Check return value from mc146818_get_time()
8c6921075222 rtc: mc146818-lib: change return values of mc146818_get_time()
c9f50e06ca76 mm: fix race between MADV_FREE reclaim and blkdev direct IO read
93a8347f72c0 parisc: Fix patch code locking and flushing
f77f482ec31a parisc: Fix CPU affinity for Lasi, WAX and Dino chips
30dd4af48a9e selftests: net: Add tls config dependency for tls selftests
ea029e4ce760 NFS: Avoid writeback threads getting stuck in mempool_alloc()
da747de68599 NFS: nfsiod should not block forever in mempool_alloc()
e04ef859d6c6 SUNRPC: Fix socket waits for write buffer space
d925b7e78b62 jfs: prevent NULL deref in diFree
44c2d5fbe7b2 virtio_console: eliminate anonymous module_init & module_exit
053bbff873a1 serial: samsung_tty: do not unlock port->lock for uart_write_wakeup()
c393a9f4cb3b x86/Kconfig: Do not allow CONFIG_X86_X32_ABI=y with llvm-objcopy
e3c961c56ad5 x86: Annotate call_on_stack()
6bb2270223a8 NFS: swap-out must always use STABLE writes.
24d28d9b0fd5 NFS: swap IO handling is slightly different for O_DIRECT IO
a55386405094 SUNRPC: remove scheduling boost for "SWAPPER" tasks.
20700aa01bc2 SUNRPC/xprt: async tasks mustn't block waiting for memory
a19fd1d61797 SUNRPC/call_alloc: async tasks mustn't block waiting for memory
b07387c476a3 clk: Enforce that disjoints limits are invalid
15bfec9d8030 clk: ti: Preserve node in ti_dt_clocks_register()
5c0750cad733 xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32
12e49aefda2e habanalabs: fix possible memory leak in MMU DR fini
a34752aa2397 NFSv4: Protect the state recovery thread against direct reclaim
b37f482ba9f0 NFSv4.2: fix reference count leaks in _nfs42_proc_copy_notify()
24acdd5f9c91 w1: w1_therm: fixes w1_seq for ds28ea00 sensors
86efcb524ae1 staging: wfx: fix an error handling in wfx_init_common()
7295544bcf56 opp: Expose of-node's name in debugfs
ea1f29584136 cpufreq: CPPC: Fix performance/frequency conversion
26f0a9e3d04d clk: rockchip: drop CLK_SET_RATE_PARENT from dclk_vop* on rk3568
caffa76ded5a phy: amlogic: meson8b-usb2: fix shared reset control use
ab27675a0fcc phy: amlogic: meson8b-usb2: Use dev_err_probe()
35df38c4be0c phy: amlogic: phy-meson-gxl-usb2: fix shared reset controller use
42f2142a337e staging: vchiq_core: handle NULL result of find_service_by_handle
176df12b38c7 staging: vchiq_arm: Avoid NULL ptr deref in vchiq_dump_platform_instances
161863aec0e1 clk: si5341: fix reported clk_rate when output divider is 2
31e027259ce4 minix: fix bug when opening a file with O_DIRECT
4602b7a8ee0d init/main.c: return 1 from handled __setup() functions
9d849449d28f lib/Kconfig.debug: add ARCH dependency for FUNCTION_ALIGN option
2fe82d325402 ceph: fix memory leak in ceph_readdir when note_last_dentry returns error
3ae7163598c6 ceph: fix inode reference leakage in ceph_get_snapdir()
eb0e7173d9cb netlabel: fix out-of-bounds memory accesses
58d52743ae85 netfilter: conntrack: revisit gc autotuning
d404765dffdb Bluetooth: Fix use after free in hci_send_acl
f249bbf3cb9a MIPS: ingenic: correct unit node address
11ba1aa21280 xtensa: fix DTC warning unit_address_format
13946d5a68ef mt76: fix monitor mode crash with sdio driver
ac27808b82db usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm
0616792164d3 net: sfp: add 2500base-X quirk for Lantech SFP module
459e56859f7a net/mlx5e: Remove overzealous validations in netlink EEPROM query
1c4561d9b5cb net: limit altnames to 64k total
601f748029f3 net: account alternate interface name memory
d804db3dafd1 riscv: Fixed misaligned memory access. Fixed pointer comparison.
6ca71078a91e can: etas_es58x: es58x_fd_rx_event_msg(): initialize rx_event_msg before calling es58x_check_msg_len()
db9a140a8585 can: isotp: set default value for N_As to 50 micro seconds
f581df412bc4 scsi: libfc: Fix use after free in fc_exch_abts_resp()
2a71e3ecd829 powerpc/secvar: fix refcount leak in format_show()
5c80ff21c5db powerpc/64e: Tie PPC_BOOK3E_64 to PPC_FSL_BOOK3E
9b85e31309c2 MIPS: fix fortify panic when copying asm exception handlers
dc9d33b2d8d0 PCI: endpoint: Fix misused goto label
b6d4b322da46 bnxt_en: Eliminate unintended link toggle during FW reset
42b6a39f439b Bluetooth: use memset avoid memory leaks
0000de40b9f3 Bluetooth: Fix not checking for valid hdev on bt_dev_{info,warn,err,dbg}
bb78c3b11f4d tuntap: add sanity checks about msg_controllen in sendmsg
e8d8f1d091e4 macvtap: advertise link netns via netlink
5fb47ca34908 mips: ralink: fix a refcount leak in ill_acc_of_setup()
58758110912d net/smc: correct settings of RMB window update limit
dd111d335cab scsi: hisi_sas: Limit users changing debugfs BIST count value
f05a0d8de2ea scsi: hisi_sas: Free irq vectors in order for v3 HW
b8fa10d7c8fc scsi: aha152x: Fix aha152x_setup() __setup handler return value
556ec5030e57 mt76: mt7615: Fix assigning negative values to unsigned variable
c3543bac6efa powerpc/64s/hash: Make hash faults work in NMI context
df467929a040 mt76: mt7915: fix injected MPDU transmission to not use HW A-MSDU
e5ecdb01952f scsi: pm8001: Fix memory leak in pm8001_chip_fw_flash_update_req()
43c617eefab7 scsi: pm8001: Fix tag leaks on error
2290dcad6f65 scsi: pm8001: Fix task leak in pm8001_send_abort_all()
ece79aaec8fc scsi: pm8001: Fix pm8001_mpi_task_abort_resp()
5e4ac14baebb scsi: pm8001: Fix pm80xx_pci_mem_copy() interface
5e96bb81eddf vfio/pci: Stub vfio_pci_vga_rw when !CONFIG_VFIO_PCI_VGA
f325d3e1dcc8 drm/amdkfd: make CRAT table missing message informational only
da52e8b9dad6 dm: requeue IO if mapping table not yet available
02cc46f397eb dm ioctl: prevent potential spectre v1 gadget
049072749a5e ipv4: Invalidate neighbour for broadcast address upon address addition
e45d1d19a0bb drm/msm/dsi: Remove spurious IRQF_ONESHOT flag
e1b5aae5b6b0 iwlwifi: mvm: move only to an enabled channel
6f215801c302 iwlwifi: mvm: Correctly set fragmented EBS
d353d3b27af4 usb: dwc3: pci: Set the swnode from inside dwc3_pci_quirks()
c64f3707cdf9 net/mlx5e: Disable TX queues before registering the netdev
83efc05c8579 power: supply: axp288-charger: Set Vhold to 4.4V
6def4eaf0391 powerpc/set_memory: Avoid spinlock recursion in change_page_attr()
5d76a88b8536 scsi: mpi3mr: Fix memory leaks
248ead78f346 scsi: mpi3mr: Fix reporting of actual data transfer size
53643a112dd6 PCI: pciehp: Add Qualcomm quirk for Command Completed erratum
aa9c9fd0ef9d tcp: Don't acquire inet_listen_hashbucket::lock with disabled BH.
bd21b9607bd7 PCI: endpoint: Fix alignment fault error in copy tests
2aa10e2fa2ab usb: ehci: add pci device support for Aspeed platforms
99073052f45b iommu/arm-smmu-v3: fix event handling soft lockup
60eabd66d17f PCI: aardvark: Fix support for MSI interrupts
330c4e1b4ec4 scsi: smartpqi: Fix kdump issue when controller is locked up
0a922366d6d9 drm/amdgpu: Fix recursive locking warning
06ee48a4fc25 powerpc: Set crashkernel offset to mid of RMA region
9c1ace066f22 net: initialize init_net earlier
4790998fdd0d ipv6: make mc_forwarding atomic
e9da1df2c021 libbpf: Fix build issue with llvm-readelf
19d067c10b71 cfg80211: don't add non transmitted BSS to 6GHz scanned channels
55c93a89e31d mt76: dma: initialize skip_unmap in mt76_dma_rx_fill
38fbe8066450 mt76: mt7921: fix crash when startup fails.
793a37045893 power: supply: axp20x_battery: properly report current when discharging
a0f8220ce934 drm/v3d: fix missing unlock
0f8ec114029a scsi: bfa: Replace snprintf() with sysfs_emit()
1378075fa5bc scsi: mvsas: Replace snprintf() with sysfs_emit()
1c6ffdf4cc45 bpf: Make dst_port field in struct bpf_sock 16-bit wide
ff13c90d7f7a drm/bridge: Add missing pm_runtime_put_sync
35380262304f net/smc: Send directly when TCP_CORK is cleared
20d01a11efde ath11k: mhi: use mhi_sync_power_up()
fed4cef115ab ath11k: pci: fix crash on suspend if board file is not found
c4b7653af62a ath11k: fix kernel panic during unload/load ath11k modules
910ee99d47d3 powerpc: dts: t104xrdb: fix phy type for FMAN 4/5
e84b0438010d drm/amdkfd: Don't take process mutex for svm ioctls
1eb598045326 ptp: replace snprintf with sysfs_emit
052fb1c9ddfb usb: cdnsp: fix cdnsp_decode_trb function to properly handle ret value
c27576bbbe77 usb: gadget: tegra-xudc: Fix control endpoint's definitions
111a63235001 usb: gadget: tegra-xudc: Do not program SPARAM
6040c99cb1a1 drm/amd/display: Use PSR version selected during set_psr_caps
7e10369c72db drm/amd/display: Fix memory leak
3edd8646cb7c drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj
c4b64a80554e drm/amd/display: Add signal type check when verify stream backends same
be2f81024e79 ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111
b3ca02c1ee93 drm: Add orientation quirk for GPD Win Max
d5f6f44e04c3 KVM: x86/emulator: Emulate RDPID only if it is enabled in guest
a997e0f5aa55 KVM: x86/pmu: Fix and isolate TSX-specific performance event logic
e7bab9898249 KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs
5483640f8efb KVM: SVM: Fix kvm_cache_regs.h inclusions for is_guest_mode()
a82fe0ba1c52 KVM: x86/pmu: Use different raw event masks for AMD and Intel
105b50d9bb82 kfence: limit currently covered allocations when pool nearly full
44b44b64b4da kfence: move saving stack trace of allocations into __kfence_alloc()
72d2d94a981d kfence: count unexpectedly skipped allocations
5142720dbe51 nbd: fix possible overflow on 'first_minor' in nbd_dev_add()
64742cf82dec nbd: Fix hungtask when nbd_config_put
694b5a32c162 nbd: Fix incorrect error handle when first_minor is illegal in nbd_dev_add
3e526e9ae0e4 nbd: add error handling support for add_disk()
f8008f42d463 rtc: wm8350: Handle error for wm8350_register_irq
b257272f5483 um: fix and optimize xor select template for CONFIG64 and timetravel mode
2be1a7f09635 lib/logic_iomem: correct fallback config references
06f50ca83ace Linux 5.15.33
541b7456fc4d PCI: xgene: Revert "PCI: xgene: Use inbound resources for setup"
39fd0cc079c9 coredump: Use the vma snapshot in fill_files_note
cabd69640957 coredump/elf: Pass coredump_params into fill_note_info
7ba958df6449 coredump: Remove the WARN_ON in dump_vma_snapshot
f6ca862806df coredump: Snapshot the vmas in do_coredump
57c04fac8023 iommu/dma: Account for min_align_mask w/swiotlb
3e44e136560c swiotlb: Support aligned swiotlb buffers
52d23f5f0915 iommu/dma: Check CONFIG_SWIOTLB more broadly
bc05d84824c0 iommu/dma: Fold _swiotlb helpers into callers
c3841d020b82 iommu/dma: Skip extra sync during unmap w/swiotlb
8771d9673e0b KVM: x86/mmu: do compare-and-exchange of gPTE via the user address
b0e8e828acb5 mmc: rtsx: Fix build errors/warnings for unused variable
8af04b6aa02b mmc: rtsx: Let MMC core handle runtime PM
a9bbdeef768f n64cart: convert bi_disk to bi_bdev->bd_disk fix build
2a710a5c59e9 torture: Make torture.sh help message match reality
acabfc943245 openvswitch: Fixed nd target mask field in the flow dump.
3fc38521fc30 docs: sysctl/kernel: add missing bit to panic_print
166abd13eab0 um: Fix uml_mconsole stop/go
94a53804ec3a arm64: dts: ls1046a: Update i2c node dma properties
32820c358d1b arm64: dts: ls1043a: Update i2c dma properties
28a020859c00 ARM: dts: spear13xx: Update SPI dma properties
7aa9bba18f80 ARM: dts: spear1340: Update serial node properties
dd8772224c19 spi: mediatek: support tick_delay without enhance_timing
2a6e0695ddd5 media: ov6650: Fix crop rectangle affected by set format
3995d4cf529c media: ov6650: Add try support to selection API operations
8f5e6110e108 perf vendor events: Update metrics for SkyLake Server
b0e5c18317f7 ASoC: topology: Allow TLV control to be either read or write
678b6901d00b ASoC: SOF: Intel: Fix build error without SND_SOC_SOF_PCI_DEV
ba8260872dd5 ubi: fastmap: Return error code if memory allocation fails in add_aeb()
666176d0f9bb dt-bindings: pinctrl: pinctrl-microchip-sgpio: Fix example
e918b36600d6 dt-bindings: memory: mtk-smi: No need mediatek,larb-id for mt8167
b2b85196a31a dt-bindings: spi: mxic: The interrupt property is not mandatory
c19a9d307844 dt-bindings: mtd: nand-controller: Fix a comment in the examples
716a77f8460d dt-bindings: mtd: nand-controller: Fix the reg property description
8ec990990be3 mmc: rtsx: Use pm_runtime_{get,put}() to handle runtime PM
50c906a6977f bpf: Fix comment for helper bpf_current_task_under_cgroup()
398ac11f4425 bpf: Adjust BPF stack helper functions to accommodate skip > 0
21b6b8d43d87 af_unix: Support POLLPRI for OOB.
260daa256d30 mm/usercopy: return 1 from hardened_usercopy __setup() handler
c9acbcd636ab mm/memcontrol: return 1 from cgroup.memory __setup() handler
48ddbd8b4e42 ARM: 9187/1: JIVE: fix return value of __setup handler
6795b20d4b2c mm/mmap: return 1 from stack_guard_gap __setup() handler
23629b673b78 net: preserve skb_end_offset() in skb_unclone_keeptruesize()
51e458fc0ca6 net: add skb_set_end_offset() helper
14d552ab31ed tracing: Have type enum modifications copy the strings
7007c894631c Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE""
63351e2e1362 ASoC: soc-compress: Change the check for codec_dai
7ed3cce2fe68 arm64: mm: Drop 'const' from conditional arm64_dma_phys_limit definition
5ab0f5e238b9 staging: mt7621-dts: fix pinctrl-0 items to be size-1 items on ethernet
0e39097efcb5 scsi: qla2xxx: Add qla2x00_async_done() for async routines
b9cf1208af36 drm/connector: Fix typo in documentation
5b422da35c15 proc: bootconfig: Add null pointer check
f78f56488cd3 can: isotp: restore accidentally removed MSG_PEEK feature
3fc81968625a platform/chrome: cros_ec_typec: Check for EC device
8c1c3c00dceb spi: Fix Tegra QSPI example
7480cc0240eb vhost: handle error while adding split ranges to iotlb
97b5593fd1b1 ACPI: CPPC: Avoid out of bounds access when parsing _CPC data
dae252901378 riscv module: remove (NOLOAD)
0853bd6885c2 io_uring: fix memory leak of uid in files registration
5b9ac3727e4a block: Fix the maximum minor value is blk_alloc_ext_minor()
21cfddd5e0f6 ARM: iop32x: offset IRQ numbers by 1
1a3f1cf87054 ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl
619709f0c608 ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs
d509d41d89c5 pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE()
3e51c3023228 pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR()
b603cbe08b0b net: sparx5: uses, depends on BRIDGE or !BRIDGE
84817c83c0e7 watchdog: rti-wdt: Add missing pm_runtime_disable() in probe function
d02ca80ec735 pinctrl: pinconf-generic: Print arguments for bias-pull-*
4913daecd04a watch_queue: Free the page array when watch_queue is dismantled
210891d81b9c crypto: arm/aes-neonbs-cbc - Select generic cbc and aes
c78d23ea7506 mailbox: imx: fix wakeup failure from freeze mode
8cbf4ae7a283 rxrpc: Fix call timer start racing with call destruction
432297011caf rxrpc: fix some null-ptr-deref bugs in server_key.c
88570bda6e48 net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware
a0817ad3f283 net: hns3: fix the concurrency between functions reading debugfs
5c3c9bce1c99 gfs2: Make sure FITRIM minlen is rounded up to fs block size
1d8195349742 gfs2: gfs2_setattr_size error path fix
50ed32e67c5c rtc: check if __rtc_read_time was successful
9f20ce95db3d modpost: restore the warning message for missing symbol versions
7aae60df6782 XArray: Update the LRU list in xas_split()
be8ebbabac94 can: mcp251xfd: mcp251xfd_register_get_dev_id(): fix return of error value
fa9c1f14002d can: mcba_usb: properly check endpoint type
37f07ad24866 can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path
7521a97b1929 XArray: Fix xas_create_range() when multi-order entry present
9af42a4f6d81 wireguard: socket: ignore v6 endpoints when ipv6 is disabled
402991a97715 wireguard: socket: free skb in send6 when ipv6 is disabled
6a7245252fdc wireguard: queueing: use CFI-safe ptr_ring cleanup function
c98f792a1468 nvme: fix the read-only state for zoned namespaces with unsupposed features
7d18d6c71372 nvme: allow duplicate NSIDs for private namespaces
578bf41d9443 ubifs: rename_whiteout: correct old_dir size computing
4f75bab98565 ubifs: Fix to add refcount once page is set private
a7054aaf1909 ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock()
56cf8b26b18e ubifs: setflags: Make dirtied_ino_d 8 bytes aligned
489c3a2577b3 ubifs: Rectify space amount budget for mkdir/tmpfile operations
a9662bec5a4d ubifs: Fix 'ui->dirty' race between do_tmpfile() and writeback work
c67bc98d1f08 ubifs: Rename whiteout atomically
ff846f2c5d1d ubifs: Add missing iput if do_tmpfile() failed in rename whiteout
c58af8564a7b ubifs: Fix deadlock in concurrent rename whiteout and inode writeback
2ad07009c459 ubifs: rename_whiteout: Fix double free for whiteout_ui->data
3fa2d7479605 KVM: SVM: fix panic on out-of-bounds guest IRQ
63961ac1359e KVM: x86: fix sending PV IPI
43637ee17092 KVM: Prevent module exit until all VMs are freed
ba6e8c2df520 KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated
0e5dbc0540ba KVM: x86: Avoid theoretical NULL pointer dereference in kvm_irq_delivery_to_apic_fast()
569a229142e9 KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq
81e5b16de862 platform: chrome: Split trace include file
89dad346c241 scsi: qla2xxx: Use correct feature type field during RFF_ID processing
f63fde0d16a4 scsi: qla2xxx: Reduce false trigger to login
20909563bd50 scsi: qla2xxx: Fix stuck session of PRLI reject
2b612191f9d3 scsi: qla2xxx: Fix N2N inconsistent PLOGI
c9d6081a5f18 scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests
d6f691a133f0 scsi: qla2xxx: Fix hang due to session stuck
7ccd6063874d scsi: qla2xxx: Fix incorrect reporting of task management failure
c0300beb313f scsi: qla2xxx: Fix disk failure to rediscover
9c33d49ab9f3 scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair()
d1b7d23cd462 scsi: qla2xxx: Check for firmware dump already collected
812afc2b8ec0 scsi: qla2xxx: Add devids and conditionals for 28xx
d70d86f7a6ea scsi: qla2xxx: Fix T10 PI tag escape and IP guard options for 28XX adapters
2df59f3bb240 scsi: qla2xxx: edif: Fix clang warning
fbc1aa41269a scsi: qla2xxx: Fix device reconnect in loop topology
b6c95db6d2e8 scsi: qla2xxx: Fix warning for missing error code
67b1be130861 scsi: qla2xxx: Fix wrong FDMI data for 64G adapter
5ef6319f9882 scsi: qla2xxx: Fix premature hw access after PCI error
826a9d4a00d1 scsi: qla2xxx: Fix scheduling while atomic
7a3457777c4f scsi: qla2xxx: Fix warning message due to adisc being flushed
5fb0a488028e scsi: qla2xxx: Fix stuck session in gpdb
e17111dd2fda scsi: qla2xxx: Implement ref count for SRB
24e86eae3f7b scsi: qla2xxx: Refactor asynchronous command initialization
f5a0cf225f8d drm/i915: Reject unsupported TMDS rates on ICL+
beeebae6ea82 drm/i915: Fix PSF GV point mask when SAGV is not possible
102cba6d5ae2 drm/i915: Treat SAGV block time 0 as SAGV disabled
e912d697400c drm/dp: Fix off-by-one in register cache size
2d67222b2380 powerpc: Fix build errors with newer binutils
f4b0b5a0f3c1 powerpc: Add set_memory_{p/np}() and remove set_memory_attr()
a29341e48601 powerpc/lib/sstep: Fix build errors with newer binutils
d25efd904271 powerpc/lib/sstep: Fix 'sthcx' instruction
5a3d8f3192a4 powerpc/kasan: Fix early region not updated correctly
cb188e07105f KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercall
5c3d0dbe200f KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB flush hypercalls
72eae60bfe83 KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_flush_tlb()
dbec906dbef6 KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_send_ipi()
f4fd34eaa767 KVM: x86/mmu: Check for present SPTE when clearing dirty bit in TDP MMU
af47248407c0 KVM: x86/mmu: Zap _all_ roots when unmapping gfn range in TDP MMU
31a70b170e06 KVM: x86/mmu: Move "invalid" check out of kvm_tdp_mmu_get_root()
48306afcac2a KVM: x86: Reinitialize context if host userspace toggles EFER.LME
273ad0cf5684 ALSA: hda/realtek: Add alc256-samsung-headphone fixup
fe440221ca0f media: atomisp: fix bad usage at error handling logic
251a11699fe5 mmc: host: Return an error when ->enable_sdio_irq() ops is missing
7c6bd60999f3 tracing: Have TRACE_DEFINE_ENUM affect trace event types as well
ae2b93b0a6a7 ASoC: Intel: sof_sdw: fix quirks for 2022 HP Spectre x360 13"
f90db7cca4d4 media: hdpvr: initialize dev->worker at hdpvr_register_videodev
deb1f0453198 media: Revert "media: em28xx: add missing em28xx_close_extension"
96a7522c72c4 media: i2c: ov5648: Fix lockdep error
eae90015d10f video: fbdev: sm712fb: Fix crash in smtcfb_write()
a07c7b64eadf ASoC: amd: vg: fix for pm resume callback sequence
4ab0293c961b ARM: mmp: Fix failure to remove sram device
f8ef3b979bfa ARM: tegra: tamonten: Fix I2C3 pad setting
6a1c70de40b5 lib/test_lockup: fix kernel pointer check for separate address spaces
8b2a6074b981 uaccess: fix type mismatch warnings from access_ok()
cb5bd93ad218 media: cx88-mpeg: clear interrupt status register before streaming video
02f9f97d54ff media: imx-jpeg: fix a bug of accessing array out of bounds
0b620fce5eae ASoC: soc-core: skip zero num_dai component in searching dai name
80e6bbe4e193 ARM: dts: bcm2711: Add the missing L1/L2 cache information
2d5c47df8e21 video: fbdev: udlfb: replace snprintf in show functions with sysfs_emit
e7f5b1c56921 video: fbdev: omapfb: panel-tpo-td043mtea1: Use sysfs_emit() instead of snprintf()
509bc99aba95 video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf()
79045b61875d arm64: defconfig: build imx-sdma as a module
c7129c401f55 ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk
330de92eb10f ARM: ftrace: avoid redundant loads or clobbering IP
3f887cb763a0 media: atomisp: fix dummy_ptr check to avoid duplicate active_bo
8b6b38083a29 media: atomisp_gmin_platform: Add DMI quirk to not turn AXP ELDO2 regulator off on some boards
1c17870f26d9 ASoC: madera: Add dependencies on MFD
35a2aeb70fe6 ARM: dts: bcm2837: Add the missing L1/L2 cache information
93b85b6e8358 ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960
521796018815 video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit
6fe23ff94e78 video: fbdev: cirrusfb: check pixclock to avoid divide by zero
9522e11e8636 video: fbdev: w100fb: Reset global state
9ff2f7294ab0 video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow
77fbe028d5a3 media: iommu/mediatek: Add device_link between the consumer and the larb devices
4dd3e2d1bd70 media: iommu/mediatek: Return ENODEV if the device is NULL
1515d1414967 media: iommu/mediatek-v1: Free the existed fwspec if the master dev already has
eff76b180751 media: imx-jpeg: Prevent decoding NV12M jpegs into single-planar buffers
47b45e08e5ad ASoC: SOF: Intel: match sdw version on link_slaves_found
205db54b159f ASoC: sh: rz-ssi: Make the data structures available before registering the handlers
2011363c1968 media: ir_toy: free before error exiting
0b2313042634 media: atmel: atmel-isc-base: report frame sizes as full supported range
3681eb1fd45c media: staging: media: zoran: fix various V4L2 compliance errors
7e76f3ed7ab2 media: staging: media: zoran: calculate the right buffer number for zoran_reap_stat_com
ff3357bffd9f media: staging: media: zoran: move videodev alloc
24ab2d4ef52c ntfs: add sanity check on allocation size
9dd6bb11df64 Adjust cifssb maximum read size
1a55c48bba81 f2fs: compress: fix to print raw data size in error path of lz4 decompression
2eff60346e7a f2fs: use spin_lock to avoid hang
c78bada18aa1 btrfs: make search_csum_tree return 0 if we get -EFBIG
40d006dfedd6 btrfs: harden identification of a stale device
58d3aa672d13 f2fs: don't get FREEZE lock in f2fs_evict_inode in frozen fs
7260793c13e9 NFSD: Fix nfsd_breaker_owns_lease() return values
f68caedf264a f2fs: fix to do sanity check on curseg->alloc_type
a0856764dc12 ext4: don't BUG if someone dirty pages without asking ext4 first
7cca463f1030 sched/tracing: Report TASK_RTLOCK_WAIT tasks as TASK_UNINTERRUPTIBLE
6a6beb074186 ext4: fix ext4_mb_mark_bb() with flex_bg with fast_commit
572d14e6cec4 ext4: correct cluster len and clusters changed accounting in ext4_mb_mark_bb
1388c10b3257 locking/lockdep: Iterate lock_classes directly when reading lockdep files
95bc0ba6bef8 atomics: Fix atomic64_{read_acquire,set_release} fallbacks
75fe5dcb1653 spi: tegra20: Use of_device_get_match_data()
ffe0c4916795 nvme-tcp: lockdep: annotate in-kernel sockets
b3ea76bda7f7 parisc: Fix handling off probe non-access faults
c29642ba72f8 PM: core: keep irq flags in device_pm_check_callbacks()
c02f2d420a44 ACPI/APEI: Limit printable size of BERT table data
65d8a737452e Revert "Revert "block, bfq: honor already-setup queue merges""
5b8d69c8c107 lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3
33ccf4f81785 ACPICA: Avoid walking the ACPI Namespace if it is not there
080665e2c3cb bfq: fix use-after-free in bfq_dispatch_request
e0943c456b60 fs/binfmt_elf: Fix AT_PHDR for unusual ELF files
757322b5aba9 irqchip/nvic: Release nvic_base upon failure
dabfc878ef6f irqchip/qcom-pdc: Fix broken locking
05ba7d0c639f Fix incorrect type in assignment of ipv6 port for audit
860d36424d1b loop: use sysfs_emit() in the sysfs xxx show()
55d192691b4b selinux: allow FIOCLEX and FIONCLEX with policy capability
e48c260b0b2a arm64: module: remove (NOLOAD) from linker script
15bb7a467b2b selinux: use correct type for context length
8f34dea99cd7 block, bfq: don't move oom_bfqq
69d41c77aadf crypto: hisilicon/sec - not need to enable sm4 extra mode at HW V3
f84b1633004d crypto: xts - Add softdep on ecb
e11293de5cf6 block/bfq_wf2q: correct weight to ioprio
e34806c6c29d rcu: Mark writes to the rcu_segcblist structure's ->flags field
99780fcb5494 pinctrl: npcm: Fix broken references to chip->parent_device
999ee266531b gcc-plugins/stackleak: Exactly match strings instead of prefixes
ca97dfbda510 crypto: hisilicon/qm - cleanup warning in qm_vf_read_qos
4941c21090c3 regulator: rpi-panel: Handle I2C errors/timing to the Atmel
f3f93a1aaafc LSM: general protection fault in legacy_parse_param
c331c9d1d2b7 fs: fix fd table size alignment properly
611170142b42 lib/test: use after free in register_test_dev_kmod()
136736abcd35 fs: fd tables have to be multiples of BITS_PER_LONG
fd3f70b90772 net: dsa: bcm_sf2_cfp: fix an incorrect NULL check on list iterator
a738ff8143d8 NFSv4/pNFS: Fix another issue with a list iterator pointing to the head
bcbf4e5c3b5b net/sched: act_ct: fix ref leak when switching zones
72dd9e61fa31 net: prefer nf_ct_put instead of nf_conntrack_put
6b663fa23c7e octeontx2-af: initialize action variable
b375ea083fa6 net: sparx5: switchdev: fix possible NULL pointer dereference
409570a619c1 net/x25: Fix null-ptr-deref caused by x25_disconnect
c416e9bb85a6 qlcnic: dcb: default to returning -EOPNOTSUPP
e87c47df2193 net: sparx5: depends on PTP_1588_CLOCK_OPTIONAL
34a5c64951c3 net: hns3: clean residual vf config after disable sriov
c95578235888 NFS: Don't loop forever in nfs_do_recoalesce()
667760fe01e9 selftests: test_vxlan_under_vrf: Fix broken test case
2d05a007096e net: phy: broadcom: Fix brcm_fet_config_init()
2dc73ba93202 net: hns3: refine the process when PF set VF VLAN
ee7e9a9d73d9 net: hns3: format the output of the MAC address
30f0ff7176ef net: hns3: add vlan list lock to protect vlan list
02948e5782ce net: hns3: fix port base vlan add fail when concurrent with reset
5e528c0e0618 net: hns3: fix bug when PF set the duplicate MAC address for VFs
be6937a11b1c net: enetc: report software timestamping via SO_TIMESTAMPING
af884b276b08 xen: fix is_xen_pmu()
6c17fd7a6f5d clk: Initialize orphan req_rate
8b320893461c vsock/virtio: enable VQs early on probe
b64bf5464ad5 vsock/virtio: read the negotiated features before using VQs
10c6cb867ffa vsock/virtio: initialize vdev->priv before using VQs
c07a9d2a1d1d clk: qcom: gcc-msm8994: Fix gpll4 width
e16b5f077980 perf stat: Fix forked applications enablement of counters
c532caa7df8c kdb: Fix the putarea helper function
0445609a7ace NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error
4ee7a4b67770 SUNRPC don't resend a task on an offlined transport
6195af5ad801 netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options
6bbfe9a715ea jfs: fix divide error in dbNextAG
104852921ff6 driver core: dd: fix return value of __setup handler
20fab30930f3 firmware: google: Properly state IOMEM dependency
af6e1b06d0ba kgdbts: fix return value of __setup handler
1d5103d9bb7d virt: acrn: fix a memory leak in acrn_dev_ioctl()
b9c43aa0b18d virt: acrn: obtain pa from VMA with PFNMAP flag
16e323804732 serial: 8250: fix XOFF/XON sending when DMA is used
a885e17cf5f2 kgdboc: fix return value of __setup handler
e1338178f35e tty: hvc: fix return value of __setup handler
e35a555b5a9d pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe
c52703355766 pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe
84940deb8dd3 pinctrl: microchip-sgpio: lock RMW access
c6f009fe90f1 pinctrl: microchip sgpio: use reset driver
a843ba2e9c87 pinctrl: mediatek: paris: Skip custom extra pin config dump for virtual GPIOs
070d46aee151 pinctrl: mediatek: paris: Fix pingroup pin config state readback
1190c1a5828a pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get()
a8d236a32934 pinctrl: mediatek: paris: Fix PIN_CONFIG_BIAS_* readback
3ddbb9ba7579 pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init
127a5d3e732d staging: mt7621-dts: fix GB-PC2 devicetree
b24dfa54d6e8 staging: mt7621-dts: fix pinctrl properties for ethernet
97d01fabee69 staging: mt7621-dts: fix formatting
1293b7481d73 staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree
75ee75cc360a NFS: remove unneeded check in decode_devicenotify_args()
8bddc0227e78 mailbox: imx: fix crash in resume on i.mx8ulp
613e1b253f6d clk: tegra: tegra124-emc: Fix missing put_device() call in emc_ensure_emc_driver
4be3e4c05d8d clk: Fix clk_hw_get_clk() when dev is NULL
071c958f8e1b clk: clps711x: Terminate clk_div_table with sentinel element
0415dce6228c clk: hisilicon: Terminate clk_div_table with sentinel element
f4aee7714a1c clk: loongson1: Terminate clk_div_table with sentinel element
7608a654a294 clk: actions: Terminate clk_div_table with sentinel element
be8ab90a3a77 nvdimm/region: Fix default alignment for small regions
bd4771ba2cf9 remoteproc: qcom_q6v5_mss: Fix some leaks in q6v5_alloc_memory_region
9c28309d6a5e remoteproc: qcom_wcnss: Add missing of_node_put() in wcnss_alloc_memory_region
9a809b902e1d remoteproc: qcom: Fix missing of_node_put in adsp_alloc_memory_region
95deff8996fb dmaengine: hisi_dma: fix MSI allocate fail when reload hisi_dma
2a9b575627fc clk: qcom: clk-rcg2: Update the frac table for pixel clock
34dca60982e9 clk: qcom: clk-rcg2: Update logic to calculate D value for RCG
7a778371f9f2 clk: at91: sama7g5: fix parents of PDMCs' GCLK
4b8a71f206c9 clk: imx: off by one in imx_lpcg_parse_clks_from_dt()
4bd979ee9927 clk: imx7d: Remove audio_mclk_root_clk
c39a750b61f7 dma-debug: fix return value of __setup handlers
872a7b12af43 staging: r8188eu: fix endless loop in recv_func
18dc19571210 NFS: Return valid errors from nfs2/3_decode_dirent()
8a842f88d0e2 habanalabs: Add check for pci_enable_device
82546d91d588 iio: adc: Add check for devm_request_threaded_irq
3e843460fb42 serial: 8250: Fix race condition in RTS-after-send handling
ba3a3390c9b1 NFS: Use of mapping_set_error() results in spurious errors
b59173ff16fb serial: 8250_lpss: Balance reference count for PCI DMA device
3a1131f7d2a8 serial: 8250_mid: Balance reference count for PCI DMA device
675216a820ec phy: phy-brcm-usb: fixup BCM4908 support
d9a3c2949d04 phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure})
ca3d7cf53d8f clk: qcom: ipq8074: Use floor ops for SDCC1 clock
8c54f6c900d1 pinctrl: renesas: checker: Fix miscalculation of number of states
d19fb1d659ba pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel
157a22ca80c5 staging:iio:adc:ad7280a: Fix handing of device address bit reversing.
d6c4fc0d903f serial: 8250_aspeed_vuart: add PORT_ASPEED_VUART port type
011e841cd11b iio: mma8452: Fix probe failing when an i2c_device_id is used
cad1a3b1f481 dmaengine: idxd: restore traffic class defaults after wq reset
7bebc9519691 dmaengine: idxd: change bandwidth token to read buffers
e509584b079a dmaengine: idxd: check GENCAP config support for gencfg register
41e360fa73a4 clk: qcom: ipq8074: fix PCI-E clock oops
9a5f4da1ea27 soundwire: intel: fix wrong register name in intel_shim_wake
251aabcb0b09 cpufreq: qcom-cpufreq-nvmem: fix reading of PVS Valid fuse
2d7a9c09be64 misc: alcor_pci: Fix an error handling path
72c4f4200f98 fsi: Aspeed: Fix a potential double free
8adfd166fb32 pps: clients: gpio: Propagate return value from pps_gpio_probe
6f4f778f2747 pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add()
28a886a308ed fsi: scom: Remove retries in indirect scoms
9fdc543b0e2a fsi: scom: Fix error handling
b125b08dbee3 mxser: fix xmit_buf leak in activate when LSR == 0xff
7a68abde36e1 staging: r8188eu: release_firmware is not called if allocation fails
1768384f61d1 staging: r8188eu: convert DBG_88E_LEVEL call in hal/rtl8188e_hal_init.c
a9e88c2618d2 kernel/resource: fix kfree() of bootmem memory again
585dc196a08f drivers: ethernet: cpsw: fix panic when interrupt coaleceing is set via ethtool
eec20eea27a0 ice: don't allow to run ice_send_event_to_aux() in atomic ctx
9b77c8cf69a4 ice: fix 'scheduling while atomic' on aux critical err interrupt
c64223a8d188 mfd: asic3: Add missing iounmap() on error asic3_mfd_probe
21a2b4ab48a4 tipc: fix the timer expires after interval 100ms
95df5cd5a446 net: dsa: fix panic on shutdown if multi-chip tree failed to probe
894347d4d29b openvswitch: always update flow key after nat
862002402333 tcp: ensure PMTU updates are processed during fastopen
06d836801cd8 net: bcmgenet: Use stronger register read/writes to assure ordering
40092a8ac089 PCI: Avoid broken MSI on SB600 USB devices
dd1043342e45 selftests/bpf/test_lirc_mode2.sh: Exit with proper code
33d39efb61a8 powerpc/pseries: Fix use after free in remove_phb_dynamic()
226ec1997de7 i2c: mux: demux-pinctrl: do not deactivate a master that is not active
0ee072f91326 netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned()
9b2bbf36b9cf i2c: meson: Fix wrong speed use from probe
7409ff6393a6 af_netlink: Fix shift out of bounds in group mask calculation
9151982547ee ipv4: Fix route lookups when handling ICMP redirects and PMTU updates
770a97d3f34b Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt
60283d3ad395 Bluetooth: call hci_le_conn_failed with hdev lock in hci_le_conn_failed
7235485433d2 Bluetooth: hci_uart: add missing NULL check in h5_enqueue
292e8478ae0a selftests/bpf: Fix error reporting from sock_fields programs
48e785075f9e af_unix: Fix some data-races around unix_sk(sk)->oob_skb.
1bd58abf595b ibmvnic: fix race between xmit and reset
3f798111077a bareudp: use ipv6_mod_enabled to check if IPv6 enabled
b184a8fa7dd4 can: isotp: support MSG_TRUNC flag when reading from socket
05e4e7d9bbb3 can: isotp: return -EADDRNOTAVAIL when reading from unbound socket
f343dbe82314 can: isotp: sanitize CAN ID checks in isotp_bind()
9265c09b2415 mt76: mt7921: fix mt7921_queues_acq implementation
2a85c4cb3b15 netfilter: flowtable: Fix QinQ and pppoe support for inet table
7ff346ee019b drm/i915/display: Fix HPD short pulse handling for eDP
5d48ddbcafdf USB: storage: ums-realtek: fix error code in rts51x_read_mem()
bc2c4dc5b566 samples/bpf, xdpsock: Fix race when running for fix duration of time
cb6f141ae705 bpf, sockmap: Fix double uncharge the mem of sk_msg
168ff181f5b6 bpf, sockmap: Fix more uncharged while msg has more_data
de3a8d8fab07 bpf, sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full
ef9785f42979 bpf, sockmap: Fix memleak in sk_psock_queue_msg
8dd392e352d3 RDMA/mlx5: Fix memory leak in error flow for subscribe event routine
b089f7fc89f9 Revert "RDMA/core: Fix ib_qp_usecnt_dec() called when error"
d52dab6e0355 RDMA/irdma: Prevent some integer underflows
18e65ab351cf power: ab8500_chargalg: Use CLOCK_MONOTONIC
fe0e2ce5c87e mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init
d29cda15cab0 MIPS: pgalloc: fix memory leak caused by pgd_free()
d5e41310bd72 MIPS: RB532: fix return value of __setup handler
69155dc2e047 mips: cdmm: Fix refcount leak in mips_cdmm_phys_base
32939187f254 ath10k: Fix error handling in ath10k_setup_msa_resources
9d04f4a15fe0 vxcan: enable local echo for sent CAN frames
45962427aca2 powerpc: 8xx: fix a return value error in mpc8xx_pic_init
88242bd033e2 scsi: mpt3sas: Fix incorrect 4GB boundary check
ee773b7018d6 platform/x86: huawei-wmi: check the return value of device_create_file()
fdee6b347cb8 selftests/bpf: Make test_lwt_ip_encap more stable and faster
adc4a1ed139e libbpf: Unmap rings when umem deleted
0a0c75ce5e26 mfd: mc13xxx: Add check for mc13xxx_irq_request
4a852ff9b7be powerpc/64s: Don't use DSISR for SLB faults
b55697c2a274 powerpc/sysdev: fix incorrect use to determine if list is empty
804338913d27 MIPS: Sanitise Cavium switch cases in TLB handler synthesizers
be48780b4dec mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n
f23b4c9c6a5a drm/msm/a6xx: Fix missing ARRAY_SIZE() check
62f44f554d1c net: axienet: fix RX ring refill allocation failure handling
e37d269734ee PCI: Reduce warnings on possible RW1C corruption
4c3c666ecc6a RDMA/core: Fix ib_qp_usecnt_dec() called when error
c5505076073b IB/hfi1: Allow larger MTU without AIP
4124966fbd95 power: supply: wm8350-power: Add missing free in free_charger_irq
1318caf07507 power: supply: wm8350-power: Handle error for wm8350_register_irq
8659aba5cab3 i2c: xiic: Make bus names unique
383798d13aea hv_balloon: rate-limit "Unhandled message" warning
5baa1283d698 KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor()
468b136c2ca1 KVM: x86: Fix emulation in writing cr8
29322cd03678 powerpc/Makefile: Don't pass -mcpu=powerpc64 when building 32-bit
451472dc178f powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties()
6792c0b56252 libbpf: Skip forward declaration when counting duplicated type names
c06577a80485 gpu: host1x: Fix a memory leak in 'host1x_remove()'
2154f7cadd88 RDMA/irdma: Remove incorrect masking of PD
a0051c05312e RDMA/irdma: Fix Passthrough mode in VM
5e96bb45c936 RDMA/irdma: Fix netdev notifications for vlan's
ad7219cd8751 xsk: Fix race at socket teardown
c08f23081c9b bpf, arm64: Feed byte-offset into bpf line info
c301772c219d bpf, arm64: Call build_prologue() first in first JIT pass
ffe0526c2e17 drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt
849e6be7d66d scsi: hisi_sas: Change permission of parameter prot_mask
1003a85d0a30 power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false return
852c1f5f3119 drm/tegra: Fix reference leak in tegra_dsi_ganged_probe
3813591bc046 ext2: correct max file size computing
0c80fe5ea1b3 power: supply: sbs-charger: Don't cancel work that is not initialized
c2554b47644f TOMOYO: fix __setup handlers return values
bd443887ed2a drm/amd/display: Remove vupdate_int_entry definition
847f8677e367 RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR
c8db786858d8 scsi: pm8001: Fix abort all task initialization
c6c95cdd5138 scsi: pm8001: Fix NCQ NON DATA command completion handling
e4fce9af88ec scsi: pm8001: Fix NCQ NON DATA command task initialization
03865ae38771 scsi: pm8001: Fix le32 values handling in pm80xx_chip_sata_req()
b453d71af756 scsi: pm8001: Fix le32 values handling in pm80xx_chip_ssp_io_req()
d14d1f88d8c2 scsi: pm8001: Fix payload initialization in pm80xx_encrypt_update()
fc1d7c820287 scsi: pm8001: Fix le32 values handling in pm80xx_set_sas_protocol_timer_config()
e332a97c4358 scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config()
3a9bb3afd0cb scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req()
4e878e41e900 scsi: pm8001: Fix command initialization in pm80XX_send_read_log()
08f0b58e2a5f scsi: fnic: Fix a tracing statement
aed99c7648cb vfio/pci: wake-up devices around reset functions
4319f17fb826 vfio/pci: fix memory leak during D3hot to D0 transition
5f3856f3ba10 dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS
590bc324ac4e drm/msm/dpu: fix dp audio condition
9b625cee90a9 drm/msm/dpu: add DSPP blocks teardown
ea009273d0c2 drm/msm/dsi/phy: fix 7nm v4.0 settings for C-PHY mode
04ed3cd92999 drm/msm/dsi: Use "ref" fw clock instead of global name for VCO parent
47e2060f2366 drm/msm/dp: always add fail-safe mode into connector mode list
740d2330760e drm/msm/dp: stop link training after link training 2 failed
9525b8bcae8b drm/msm/dp: populate connector of struct dp_panel
2c4de9b94227 mtd: rawnand: pl353: Set the nand chip node as the flash node
a2095c3e0309 iwlwifi: mvm: Fix an error code in iwl_mvm_up()
01e36bdb95e7 iwlwifi: Fix -EIO error code that is never returned
a3bb5cda4fed iwlwifi: yoyo: remove DBGI_SRAM address reset writing
06511eed8177 iwlwifi: mvm: align locking in D3 test debugfs
ec9b77481aaf iwlwifi: mvm: don't iterate unadded vifs when handling FW SMPS req
21053d707480 iwlwifi: mvm: Don't call iwl_mvm_sta_from_mac80211() with NULL sta
2de35ae362f3 selftests: mptcp: add csum mib check for mptcp_connect
e2951eaa9398 dax: make sure inodes are flushed before destroy cache
c08208f2635c IB/cma: Allow XRC INI QPs to set their local ACK timeout
d85baefc858f libbpf: Fix memleak in libbpf_netlink_recv()
0f47edc22c2b drm/amd/display: Add affected crtcs to atomic state for dsc mst unplug
ac98fdec1114 drm/amd/pm: enable pm sysfs write for one VF mode
28093e78e0f2 bpftool: Fix the error when lookup in no-btf maps
64c06df2428b drm/bridge: anx7625: Fix overflow issue on reading EDID
d6c7f46b8f05 iommu/ipmmu-vmsa: Check for error num after setting mask
b5b285818754 HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports
ffb8e92b4cef power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init
9dea119df0fa libbpf: Use dynamically allocated buffer when receiving netlink messages
f2a19db2a941 drm/bridge: dw-hdmi: use safe format when first in bridge chain
2f0949db6e2c libbpf: Fix compilation warning due to mismatched printf format
0255e93dce7a net:enetc: allocate CBD ring data memory using DMA coherent methods
721992163e0c cxl/regs: Fix size of CXL Capability Header Register
0e348f94787f cxl/core: Fix cxl_probe_component_regs() error message
855f1c64e21e libbpf: Fix signedness bug in btf_dump_array_data()
cdb2150050c7 RDMA/rxe: Check the last packet by RXE_END_MASK
ed750e22e443 PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge
0fe94b84c43c PCI: aardvark: Fix reading MSI interrupt number
1f0add37ac5c igb: refactor XDP registration
ab8c107470d1 igc: avoid kernel warning when changing RX ring parameters
ea6b04796c87 mtd: mchp48l640: Add SPI ID table
21e78798b206 mtd: mchp23k256: Add SPI ID table
0eec5e2748f1 i2c: bcm2835: Fix the error handling in 'bcm2835_i2c_probe()'
0b01811fc193 i2c: bcm2835: Use platform_get_irq() to get the interrupt
b96a7265f763 net: asix: add proper error handling of usb read errors
b997cfdc3f98 livepatch: Fix build failure on 32 bits processors
34bed8dae12a scripts/dtc: Call pkg-config POSIXly correct
0aec294f2d2f mac80211: limit bandwidth in HE capabilities
a41efae062bf mac80211: Remove a couple of obsolete TODO
5ad6b337e4ac net: dsa: mv88e6xxx: Enable port policy support on 6097
b2dea2a696d0 ptp: unregister virtual clocks when unregistering physical clock.
a53c147ac496 mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update
fd1fcad5c053 mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update
443cb1bc8a96 mt76: mt7615: fix a leftover race in runtime-pm
421cb64c91dd mt76: mt7921: fix a leftover race in runtime-pm
0f3d76144b9c mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv
60d815fd4338 mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta mode
203a1e1230cf mt76: connac: fix sta_rec_wtbl tag len
94fd8a2a47c8 powerpc/perf: Don't use perf_hw_context for trace IMC PMU
0dc750479a5f KVM: PPC: Book3S HV: Check return value of kvmppc_radix_init
10686b028059 powerpc: dts: t1040rdb: fix ports names for Seville Ethernet switch
9acf7c2f3145 ray_cs: Check ioremap return value
3a4bcc4cb612 power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe
cb42b6cfc5b0 ixgbe: respect metadata on XSK Rx to skb
8c072b8e3226 ixgbe: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb
6dc18226976c ixgbe: pass bi->xdp to ixgbe_construct_skb_zc() directly
28e561f3660d igc: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb
0e2f6a7f59f1 i40e: respect metadata on XSK Rx to skb
968c76e96afd i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb
7ad4f7729f0e selftests/net: timestamping: Fix bind_phc check
5bedd66a59e5 KVM: PPC: Fix vmx/vsx mixup in mmio emulation
72c179f650f6 RDMA/core: Set MR type in ib_reg_user_mr
0b700f7d0649 ath9k_htc: fix uninit value bugs
c41832e7dadd selftests/bpf/test_xdp_redirect_multi: use temp netns for testing
a5c1c0920cf6 selftests/bpf: Normalize XDP section names in selftests
f00346b30a7c net: phy: at803x: move page selection fix to config_init
b175bc586410 drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function
bdc7429708a0 drm/amd/display: Fix a NULL pointer dereference in amdgpu_dm_connector_add_common_modes()
408ab78ca138 drm/nouveau/acr: Fix undefined behavior in nvkm_acr_hsfw_load_bl()
2e05de23052d ionic: Don't send reset commands if FW isn't running
4f69a923a388 ionic: start watchdog after all is setup
76624b5a61c7 ionic: fix type complaint in ionic_dev_cmd_clean()
da491fc54e4e drm/edid: Split deep color modes between RGB and YUV444
19da408ab41c drm/edid: Don't clear formats if using deep color
8480efe815e5 mtd: rawnand: gpmi: fix controller timings setting
5b1f32593955 mtd: onenand: Check for error irq
041e5b8a62e6 Bluetooth: hci_serdev: call init_rwsem() before p->open()
9d42e744685c Bluetooth: btintel: Fix WBS setting for Intel legacy ROM products
0b96610a7b74 selftests: bpf: Fix bind on used port
0728ccb66468 drm/selftests/test-drm_dp_mst_helper: Fix memory leak in sideband_msg_req_encode_decode
51b82141fffa bpf: Fix UAF due to race between btf_try_get_module and load_module
811b667cefbe udmabuf: validate ubuf->pagecount
e5f642c55f4c bpftool: Only set obj->skeleton on complete success
b385ebe91ae9 libbpf: Fix possible NULL pointer dereference when destroying skeleton
34d0a99fa09a drm/panfrost: Check for error num after setting mask
2ff993b3daa4 drm/v3d/v3d_drv: Check for error num after setting mask
982d824a9b27 ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern
66b805b63527 drm: bridge: adv7511: Fix ADV7535 HPD enablement
c43b4106cfc5 drm/bridge: nwl-dsi: Fix PM disable depth imbalance in nwl_dsi_probe
4db8e14ce478 drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe
f20a990784ee drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev
461656a5e9be drm/meson: Fix error handling when afbcd.ops->init fails
1c5439a71612 drm/meson: split out encoder from meson_dw_hdmi
ffcfa1669316 drm/meson: Make use of the helper function devm_platform_ioremap_resourcexxx()
d2a0678dff46 drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops
d81d72b912dc ARM: configs: multi_v5_defconfig: re-enable DRM_PANEL and FB_xxx
c4d2a100f104 ARM: configs: multi_v5_defconfig: re-enable CONFIG_V4L_PLATFORM_DRIVERS
c2e5f5d23718 ASoC: amd: Fix reference to PCM buffer address
2f44eca78cc6 ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data
e2aeafc6509c ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe
f589063b585a ASoC: atmel: Fix error handling in sam9x5_wm8731_driver_probe
f2b0fc2a46a6 mmc: davinci_mmc: Handle error for clk_enable
9668c6bca12a ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in msm8916_wcd_digital_probe
42735eae94ee ASoC: SOF: Intel: enable DMI L1 for playback streams
b23b524b8bbd ASoC: imx-es8328: Fix error return code in imx_es8328_probe()
06e6f4ba2534 ASoC: fsl_spdif: Disable TX clock when stop
44acdaf7acb6 ASoC: mxs: Fix error handling in mxs_sgtl5000_probe
1ecf9dcf2868 ASoC: dmaengine: do not use a NULL prepare_slave_config() callback
39c2894dfc08 ASoC: rk817: Fix missing clk_disable_unprepare() in rk817_platform_probe
87e04a89c31e ASoC: mediatek: mt8192-mt6359: Fix error handling in mt8192_mt6359_dev_probe
56e0f1696a96 ASoC: mediatek: use of_device_get_match_data()
5441ab46dd43 ASoC: SOF: Add missing of_node_put() in imx8m_probe
6724217bfbfd ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in rockchip_i2s_probe
f32ac9bf5e3f ASoC: atmel: Fix error handling in snd_proto_probe
1e77cab218e4 ivtv: fix incorrect device_caps for ivtvfb
a8523efdc946 media: saa7134: fix incorrect use to determine if list is empty
a41fc6d02d82 video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of
c19312809931 ASoC: fsi: Add check for clk_enable
0bdb861b7d1b ASoC: wm8350: Handle error for wm8350_register_irq
a0bc36b247dc ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe
9dd2fd7a1f84 media: vidtv: Check for null return of vzalloc
a09e9882800f media: stk1160: If start stream fails, return buffers with VB2_BUF_STATE_QUEUED
ea2258664ffc m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined
178b32112be1 arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly
eab74c416120 ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction
2883fb9838fc memory: emif: check the pointer temp in get_device_details()
50d934cea574 memory: emif: Add check for setup_interrupts
fc237b8d624f ASoC: soc-compress: prevent the potentially use of null pointer
d70d4a3ff5f2 ASoC: dwc-i2s: Handle errors for clk_enable
58b64ee38637 ASoC: atmel_ssc_dai: Handle errors for clk_enable
152d62d80960 ASoC: mxs-saif: Handle errors for clk_enable
f64c5b235b47 printk: fix return value of printk.devkmsg __setup handler
0fbd610e68c2 arm64: dts: broadcom: Fix sata nodename
de64846df9fe arm64: dts: ns2: Fix spi-cpol and spi-cpha property
b98940965daf ALSA: spi: Add check for clk_enable()
89676d9e8c84 ASoC: ti: davinci-i2s: Add check for clk_enable()
0a96bff46a5e mmc: sdhci_am654: Fix the driver data of AM64 SoC
7c31acd9ca79 soc: mediatek: pm-domains: Add wakeup capacity support in power domain
9db742370304 ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp()
3fa8114be4a2 uaccess: fix nios2 and microblaze get_user_8()
469277ff5ac8 vsprintf: Fix %pK with kptr_restrict == 0
8611161ea715 lib: uninline simple_strntoull() as well
34dd193d2329 selftests/lkdtm: Add UBSAN config
f58159509b62 media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated
b1b91b31627d media: v4l2-core: Initialize h264 scaling matrix
7399b9b62277 ASoC: codecs: wcd934x: fix return value of wcd934x_rx_hph_mode_put
c42e96af49ef ASoC: codecs: wcd934x: fix kcontrol max values
363490abe0be ASoC: codecs: wcd938x: fix kcontrol max values
adafea71b49e ASoC: codecs: wc938x: fix accessing array out of bounds for enum type
966408e37d84 ASoC: codecs: va-macro: fix accessing array out of bounds for enum type
eb15c6ea692f ASoC: codecs: rx-macro: fix accessing array out of bounds for enum type
9208ecc703b5 ASoC: codecs: rx-macro: fix accessing compander for aux
56dcb5480687 media: cedrus: h264: Fix neighbour info buffer size
dd6454742581 media: cedrus: H265: Fix neighbour info buffer size
895364fa97e6 media: usb: go7007: s2250-board: fix leak in probe()
332d45fe51d7 media: em28xx: initialize refcount before kref_get
aa613ac27029 media: ti-vpe: cal: Fix a NULL pointer dereference in cal_ctx_v4l2_init_formats()
12cb301cc5cb media: video/hdmi: handle short reads of hdmi info frame.
0d05a58ea3b9 media: mexon-ge2d: fixup frames size in registers
498ab2d70a9d ARM: dts: imx: Add missing LVDS decoder on M53Menlo
2305e3460b42 vsprintf: Fix potential unaligned access
b4c8675a710a ARM: dts: sun8i: v3s: Move the csi1 block to follow address order
49db8d166d7b soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe
42dab81e9309 firmware: ti_sci: Fix compilation failure when CONFIG_TI_SCI_PROTOCOL is not defined
19e4c3b037ff arm64: dts: qcom: sm8350: Correct TCS configuration for apps rsc
8026415d7f54 arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc
17790ef9ad1f arm64: dts: broadcom: bcm4908: use proper TWD binding
cc3a67e4147e arm64: dts: qcom: sm8250: fix PCIe bindings to follow schema
4514dc92a353 arm64: dts: qcom: sdm845: fix microphone bias properties and values
15565049d729 soc: qcom: aoss: remove spurious IRQF_ONESHOT flags
1874365f3c17 soc: qcom: ocmem: Fix missing put_device() call in of_get_ocmem
724376c30af5 soc: qcom: rpmpd: Check for null return of devm_kcalloc
d761d62022bb ARM: dts: qcom: ipq4019: fix sleep clock
b14f6a7d3608 firmware: qcom: scm: Remove reassignment to desc following initializer
6c4cc4d36966 ARM: dts: Fix OpenBMC flash layout label addresses
c3364cbc3762 video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name()
f3ef254c840d video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe()
c420b540db4b video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe()
24cfeb466146 video: fbdev: controlfb: Fix COMPILE_TEST build
02684dd83332 video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to avoid black screen
96eb48f017cd media: aspeed: Correct value for h-total-pixels
4a3051977327 media: ov5648: Don't pack controls struct
26b1865f1fd4 media: v4l: Avoid unaligned access warnings when printing 4cc modifiers
ef35afc268c5 media: ov6650: Fix set format try processing path
4ea548312052 media: hantro: Fix overfill bottom register field name
b0b890dd8df3 media: meson: vdec: potential dereference of null pointer
c3590ec1161d media: coda: Fix missing put_device() call in coda_get_vdoa_data
f0344f0aee4d ASoC: simple-card-utils: Set sysclk on all components
bb0a0e23dd00 ASoC: xilinx: xlnx_formatter_pcm: Handle sysclk setting
1179081ba5fa ASoC: codecs: Check for error pointer after calling devm_regmap_init_mmio
e48b189799d3 ASoC: sh: rz-ssi: Drop calling rz_ssi_pio_recv() recursively
f7d07ad8bc03 media: atmel: atmel-sama7g5-isc: fix ispck leftover
25b925f94a36 media: bttv: fix WARNING regression on tunerless devices
e1854a6c3a68 media: imx: imx8mq-mipi_csi2: fix system resume
72d79cd3c3ad media: imx: imx8mq-mipi-csi2: remove wrong irq config write operation
0022dc8cafa5 media: mtk-vcodec: potential dereference of null pointer
48d00e24822e media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls
1fbc023f8173 media: staging: media: imx: imx7-mipi-csis: Make subdev name unique
74cbe85fa044 media: camss: vfe-170: fix "VFE halt timeout" error
9af4e473668a media: camss: csid-170: set the right HALT_CMD when disabled
a3b104487f74 media: camss: csid-170: don't enable unused irqs
20d5934825b9 media: camss: csid-170: fix non-10bit formats
0ac903a7bde9 media: staging: media: zoran: fix usage of vb2_dma_contig_set_max_seg_size
b84343a9d676 pinctrl: samsung: Remove EINT handler for Exynos850 ALIVE and CMGP gpios
9a24d035c5eb kunit: make kunit_test_timeout compatible with comment
9ca7b59e7877 drivers/base/memory: add memory block to memory group after registration succeeded
5bed6c2c1ffe selftests, x86: fix how check_cc.sh is being invoked
0f42a02e4773 f2fs: fix compressed file start atomic write may cause data corruption
1a97987f76b4 btrfs: fix unexpected error path when reflinking an inline extent
2911ad0249c5 f2fs: fix to avoid potential deadlock
1e0e63ad6243 sched/rt: Plug rt_mutex_setprio() vs push_rt_task() race
b7aec0843e28 sched/cpuacct: Fix charge percpu cpuusage
cc91880f0417 nfsd: more robust allocation failure handling in nfsd_file_cache_init
d1eaaf6caded f2fs: fix missing free nid in f2fs_handle_failed_inode
ec5884cbbfd3 sched/fair: Improve consistency of allowed NUMA balance calculations
df5e0a0b3a4e perf/x86/intel/pt: Fix address filter config for 32-bit kernel
929d8a87f709 perf/core: Fix address filter parser for multiple filters
3bb11f3f6872 rseq: Remove broken uapi field layout on 32-bit little endian
d2c741290f7e sched/uclamp: Fix iowait boost escaping uclamp restriction
6c7276622393 sched/core: Export pelt_thermal_tp
8bc68c44d97f sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa
d8c8dd97bb8c f2fs: fix to enable ATGC correctly via gc_idle sysfs interface
f69aecb49968 watch_queue: Actually free the watch
695c47cea02b watch_queue: Fix NULL dereference in error cleanup
109dda451021 io_uring: terminate manual loop iterator loop correctly for non-vecs
1323976e9448 io_uring: don't check unrelated req->open.how in accept request
657edec8987a clocksource: acpi_pm: fix return value of __setup handler
9b181ad309c6 hwmon: (pmbus) Add Vin unit off handling
41887c82e76f hwrng: nomadik - Change clk_disable to clk_disable_unprepare
335bf1fc74f7 crypto: ccree - Fix use after free in cc_cipher_exit()
20550eb187e8 crypto: ccp - ccp_dmaengine_unregister release dma channels
166b2478152c ACPI: APEI: fix return value of __setup handlers
bfa4a733aeaa KEYS: trusted: Avoid calling null function trusted_key_exit
b0efbe7e88c7 KEYS: trusted: Fix trusted key backends when building as module
d362998e8df9 arm64: prevent instrumentation of bp hardening callbacks
df04ef63347f clocksource/drivers/timer-of: Check return value of of_iomap in timer_of_base_init()
abc6b2a12a3e clocksource/drivers/timer-microchip-pit64b: Use notrace
a81de4315ecf clocksource/drivers/exynos_mct: Handle DTS with higher number of interrupts
e34ba9ff04ee clocksource/drivers/exynos_mct: Refactor resources allocation
97e3aaace46e clocksource/drivers/timer-ti-dm: Fix regression from errata i940 fix
58c9d407ce82 crypto: vmx - add missing dependencies
f9474039df09 crypto: gemini - call finalize with bh disabled
6ce48276d736 crypto: amlogic - call finalize with bh disabled
67bc6890b981 crypto: sun8i-ce - call finalize with bh disabled
05e13c5e4f8e crypto: sun8i-ss - call finalize with bh disabled
2684f459f919 hwrng: atmel - disable trng on failure path
f8a1392c099b spi: spi-zynqmp-gqspi: Handle error for dma_set_mask
7e45fc93dde2 PM: suspend: fix return value of __setup handler
d0cd9da501f6 PM: hibernate: fix __setup handler error handling
efaa0e969261 block: don't delete queue kobject before its children
b9070c866aa3 nvme: fix the check for duplicate unique identifiers
2340a15d3914 nvme: cleanup __nvme_check_ids
a015dd1b8a54 hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING
3a70165fc788 hwmon: (pmbus) Add mutex to regulator ops
f2757af27bf3 spi: pxa2xx-pci: Balance reference count for PCI DMA device
40dba7c26e89 crypto: hisilicon/sec - fix the aead software fallback for engine
c71e4d45dcc4 crypto: ccree - don't attempt 0 len DMA mappings
0c366ade8606 EVM: fix the evm= __setup handler return value
3a10df731516 audit: log AUDIT_TIME_* records only from rules
8e8724b87afe crypto: rockchip - ECB does not need IV
4d6e00474872 selftests/sgx: Treat CC as one argument
d9172393f0f6 selftests/x86: Add validity check and allow field splitting
e129fb065106 blk-cgroup: set blkg iostat after percpu stat aggregation
c17eb1586c94 arm64/mm: avoid fixmap race condition when create pud mapping
8550c9b846c5 stack: Constrain and fix stack offset randomization with Clang builds
8effc4dc79a5 spi: tegra210-quad: Fix missin IRQ check in tegra_qspi_probe
906315cb82d6 spi: tegra114: Add missing IRQ check in tegra_spi_probe
e6374086f249 crypto: octeontx2 - remove CONFIG_DM_CRYPT check
9ada174f47b3 thermal: int340x: Check for NULL after calling kmemdup()
486d4c18f207 selinux: Fix selinux_sb_mnt_opts_compat()
c111b3c1a257 crypto: mxs-dcp - Fix scatterlist processing
af3c34eb9410 crypto: authenc - Fix sleep in atomic context in decrypt_tail
8f10a38c9212 crypto: sun8i-ss - really disable hash on A80
046f1499aef8 hwrng: cavium - HW_RANDOM_CAVIUM should depend on ARCH_THUNDER
7919dfd84b35 hwrng: cavium - Check health status while reading random data
0e67b3e1f93a crypto: ccp - Ensure psp_ret is always init'd in __sev_platform_init_locked()
01d508417055 selinux: check return value of sel_make_avc_files
aeeb944e7f91 selinux: access superblock_security_struct in LSM blob way
ae2ff8d991b6 regulator: qcom_smd: fix for_each_child.cocci warnings
9bbe88d1023f PCI: xgene: Revert "PCI: xgene: Fix IB window setup"
920facf23305 PCI: pciehp: Clear cmd_busy bit in polling mode
86ca87591870 PCI: imx6: Allow to probe when dw_pcie_wait_for_link() fails
312d3d4f49e1 drm/i915/gem: add missing boundary check in vm_access
d8b8bd1d03ee drm/i915/opregion: check port number bounds for SWSCI display power state
2b08e0189b02 brcmfmac: pcie: Fix crashes due to early IRQs
a7ea6de3bdd5 brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio
b6957a10747c brcmfmac: pcie: Declare missing firmware files in pcie.c
a88337a06966 brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path
6e2dfa829026 brcmfmac: firmware: Allocate space for default boardrev in nvram
51f0af904fb6 drm/fb-helper: Mark screen buffers in system memory with FBINFO_VIRTFB
713f1fefb6c6 drm/nouveau/backlight: Just set all backlight types as RAW
80de94c4ab4e drm/nouveau/backlight: Fix LVDS backlight detection on some laptops
7585d0f56f29 drm/syncobj: flatten dma_fence_chains on transfer
85814e6461b8 xtensa: fix xtensa_wsr always writing 0
821907e8f516 xtensa: fix stop_machine_cpuslocked call in patch_text
e28bace5e7dc xtensa: define update_mmu_tlb function
00c6bb4cea62 btrfs: verify the tranisd of the to-be-written dirty extent buffer
f85ee0c845fd btrfs: extend locking to all space_info members accesses
68a8120e1647 btrfs: zoned: mark relocation as writing
2bd666b0fd28 media: davinci: vpif: fix unbalanced runtime PM enable
12159871e1b4 media: davinci: vpif: fix unbalanced runtime PM get
992af22dab9c media: venus: venc: Fix h264 8x8 transform control
d5fcfc4af806 media: venus: hfi_cmds: List HDR10 property as unsupported for v1 and v3
0a45148635f8 media: gpio-ir-tx: fix transmit with long spaces on Orange Pi PC
3e3c8d88e0ca DEC: Limit PMAX memory probing to R3k systems
2039163c30f8 PM: domains: Fix sleep-in-atomic bug caused by genpd_debug_remove()
74e2d61e4faa bcache: fixup multiple threads crash
2221a0f6c90c crypto: rsa-pkcs1pad - fix buffer overread in pkcs1pad_verify_complete()
dc7cacd209c8 crypto: rsa-pkcs1pad - restore signature length check
5013dbd89101 crypto: rsa-pkcs1pad - correctly get hash from source scatterlist
9c8d8f87c213 crypto: rsa-pkcs1pad - only allow with rsa
1290eb4412aa exec: Force single empty string when argv is empty
d342786a0e94 lib/raid6/test: fix multiple definition linking error
137c66d5f915 thermal: int340x: Increase bitmap size
bc5f440e1c5c pstore: Don't use semaphores in always-atomic-context code
10a15d91bcba carl9170: fix missing bit-wise or operator for tx_params
1d89cb2c72d6 mgag200 fix memmapsl configuration in GCTL6 register
bd0cc79722df ARM: dts: exynos: add missing HDMI supplies on SMDK5420
661016b895e6 ARM: dts: exynos: add missing HDMI supplies on SMDK5250
d4577ac55725 ARM: dts: exynos: fix UART3 pins configuration in Exynos5250
cc7c9d207fce ARM: dts: at91: sama5d2: Fix PMERRLOC resource size
64b3bc9050d8 ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes
cdcaec46a6b2 rfkill: make new event layout opt-in
677a5f6c81b5 video: fbdev: atari: Atari 2 bpp (STe) palette bugfix
46cdbff26c88 video: fbdev: sm712fb: Fix crash in smtcfb_read()
c894ac44786c fbdev: Hot-unplug firmware fb devices on forced removal
6e72980d588e drm/edid: check basic audio support on CEA extension block
2e76c69c85f9 block: don't merge across cgroup boundaries if blkcg is enabled
6a11b52b498d block: limit request dispatch loop duration
f1dd8c1186be mailbox: tegra-hsp: Flush whole channel
3d4b396a616d landlock: Use square brackets around "landlock-ruleset"
20fbf100f84b samples/landlock: Fix path_list memory leak
3eb18f8a1d02 drivers: hamradio: 6pack: fix UAF bug caused by mod_timer()
3c65b7309d2e ext4: make mb_optimize_scan performance mount option work with extents
597393cde841 ext4: fix fs corruption when tring to remove a non-empty directory with IO error
73fa1798233c ext4: fix ext4_fc_stats trace point
6cdb84dd0c8d coredump: Also dump first pages of non-executable ELF libraries
8a7f9d9c3f6a ACPI: properties: Consistently return -ENOENT if there are no more references
2e2eb55823df Revert "ACPI: Pass the same capabilities to the _OSC regardless of the query flag"
b6094744e261 ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM
5e3bd996d2c8 arm64: dts: ti: k3-am64: Fix gic-v3 compatible regs
96181539a521 arm64: dts: ti: k3-j7200: Fix gic-v3 compatible regs
e931b8494a51 arm64: dts: ti: k3-j721e: Fix gic-v3 compatible regs
146ad3e0177d arm64: dts: ti: k3-am65: Fix gic-v3 compatible regs
393a8a0f971e arm64: dts: qcom: sm8250: Fix MSI IRQ for PCIe1 and PCIe2
a01e1eaf5407 arm64: Do not defer reserve_crashkernel() for platforms with no DMA memory zones
556e8e0a27c8 arm64: signal: nofpsimd: Do not allocate fp/simd context when not available
e04a1de51cf6 PCI: fu740: Force 2.5GT/s for initial device probe
ec5ebfd1ce35 powerpc/kvm: Fix kvm_use_magic_page
024c2a0db53a drbd: fix potential silent data corruption
39483fd3b2d2 tracing: Have trace event string test handle zero length strings
12ea1f73690b dm integrity: set journal entry unused when shrinking device
737d5e25e28d dm: fix double accounting of flush with data
dc77afd7491e dm: interlock pending dm_io and dm_wait_for_bios_completion
0987f00a76a1 dm: fix use-after-free in dm_cleanup_zoned_dev()
d3444138ff0d dm stats: fix too short end duration_ns when using precise_timestamps
7d3bd683e084 mm/kmemleak: reset tag when compare object pointer
7d04d6d5c114 mm,hwpoison: unmap poisoned page before invalidation
d4835551fd9f Revert "mm: madvise: skip unmapped vma holes passed to process_madvise"
a07a4b75cccb mm: madvise: return correct bytes advised with process_madvise
27d96f11b0a2 mm: madvise: skip unmapped vma holes passed to process_madvise
476df5994878 drm/simpledrm: Add "panel orientation" property on non-upright mounted LCD panels
7c5312fdb1dc ocfs2: fix crash when mount with quota enabled
cd2722e411e8 rtc: pl031: fix rtc features null pointer dereference
8e167fdd4f62 rtc: mc146818-lib: fix locking in mc146818_set_time
0cc320929ac6 ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020
7777744e92a0 ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock
f9f37a956de1 ALSA: hda: Avoid unsol event during RPM suspending
cf4cd2a5d0ae ALSA: cs4236: fix an incorrect NULL check on list iterator
39a4bf7d1a23 cifs: fix NULL ptr dereference in smb2_ioctl_query_info()
f143f8334fb9 cifs: prevent bad output lengths in smb2_ioctl_query_info()
665cf5507470 Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads"
305a5303d1da riscv: Increase stack size under KASAN
ee29fe27818e riscv: Fix fill_callchain return value
3c4a1c81900c riscv: dts: canaan: Fix SPI3 bus width
876a9bdfd9af qed: validate and restrict untrusted VFs vlan promisc mode
4d8323922ea9 qed: display VF trust config
59a4bc52f111 scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands
cbf4e2f4f700 scsi: scsi_transport_fc: Fix FPIN Link Integrity statistics counters
64b0fe4808bd scsi: ufs: Fix runtime PM messages never-ending cycle
6ade94e6afc6 scsi: core: sd: Add silence_suspend flag to suppress some PM messages
5e217aa2c825 mempolicy: mbind_range() set_policy() after vma_merge()
3bae72c2db69 mm: invalidate hwpoison page cache page in fault path
a74bb0eeabcd mm/pages_alloc.c: don't create ZONE_MOVABLE beyond the end of a node
ab657a29c3e9 mm: fs: fix lru_cache_disabled race in bh_lru
52ba0ab4f0a6 jffs2: fix memory leak in jffs2_scan_medium
4392e8aeebc5 jffs2: fix memory leak in jffs2_do_mount_fs
7a75740206af jffs2: fix use-after-free in jffs2_clear_xattr_subsystem
f2ce5238904f can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error path
f43e64076ff1 can: m_can: m_can_tx_handler(): fix use after free of skb
459b19f42fd5 can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path
31d7d7f35045 mtd: rawnand: protect access to rawnand devices while in suspend
7d94d25c7972 spi: mxic: Fix the transmit path
48254561bd04 net: bnxt_ptp: fix compilation error
89d369454267 pinctrl: samsung: drop pin banks references on error paths
1db1639d955b pinctrl: ingenic: Fix regmap on X series SoCs
025a7ccfb7a5 mm/mlock: fix two bugs in user_shm_lock()
34afac3c75fa remoteproc: Fix count check in rproc_coredump_write()
b065f398c860 f2fs: fix to do sanity check on .cp_pack_total_block_count
f9156db0987f f2fs: quota: fix loop condition at f2fs_quota_sync()
e98ae961b334 f2fs: fix to unlock page correctly in error path of is_alive()
303cd6173dce NFSD: prevent integer overflow on 32 bit systems
614a61e15920 NFSD: prevent underflow in nfssvc_decode_writeargs()
253a9533941e NFS: NFSv2/v3 clients should never be setting NFS_CAP_XATTR
518a7d6be1ed SUNRPC: avoid race between mod_timer() and del_timer_sync()
19c82681db26 HID: intel-ish-hid: Use dma_alloc_coherent for firmware update
b3e38f939ab4 firmware: sysfb: fix platform-device leak in error path
0dff5664b867 firmware: stratix10-svc: add missing callback parameter on RSU
72403d1c04bb Documentation: update stable tree link
8259235ab46e Documentation: add link to stable release candidate tree
a1e55db51a88 KEYS: asymmetric: properly validate hash_algo and encoding
255921f63a9e KEYS: asymmetric: enforce that sig algo matches key algo
fe8df4489240 KEYS: fix length validation in keyctl_pkey_params_get_2()
512bde642087 cifs: we do not need a spinlock around the tree access during umount
2fafbc198613 cifs: fix handlecache and multiuser
b6d75218ff65 ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE
42606add50f9 clk: uniphier: Fix fixed-rate initialization
5aa6d84a0b07 clk: rockchip: re-add rational best approximation algorithm to the fractional divider
ab67122003b1 greybus: svc: fix an error handling bug in gb_svc_hello()
9e97f6641c87 iio: inkern: make a best effort on offset calculation
b378d3f585e3 iio: inkern: apply consumer scale when no channel scale is available
e38582362101 iio: inkern: apply consumer scale on IIO_VAL_INT cases
1cb35faea3c3 iio: afe: rescale: use s64 for temporary scale calculations
c61e2fc87f24 coresight: syscfg: Fix memleak on registration failure in cscfg_create_device
ba81399402b7 coresight: Fix TRCCONFIGR.QE sysfs interface
f1d936537155 docs: sphinx/requirements: Limit jinja2<3.1
c1013a5ba4c9 bus: mhi: Fix MHI DMA structure endianness
fe66a11af28c bus: mhi: pci_generic: Add mru_default for Quectel EM1xx series
84bb0ac6c86f mei: avoid iterator usage outside of list_for_each_entry
6d2ec095176c mei: me: add Alder Lake N device id.
7c2422748463 mei: me: disable driver on the ign firmware
f6121a746fae xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx()
7c2a317703c6 xhci: make xhci_handshake timeout for xhci_reset() adjustable
4f2ab7e93b37 xhci: fix runtime PM imbalance in USB2 resume
75bbc2b9748b xhci: fix garbage USBSTS being logged in some cases
f5dc00496f76 USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c
c94138ae4000 usb: typec: tipd: Forward plug orientation to typec subsystem
662893b4f6bd tpm: fix reference counting for struct tpm_chip
5a0735b0bcf9 virtio-blk: Use blk_validate_block_size() to validate block size
8a4521456b54 iommu/iova: Improve 32-bit free space estimate
fe953e0f77e5 drm/amdgpu: only check for _PR3 on dGPUs
0884abb259f1 drm/amdgpu: move PX checking into amdgpu_device_ip_early_init
03f836fcb655 locking/lockdep: Avoid potential access of invalid memory in lock_class
9f93d46a63d5 selftests: vm: fix clang build error multiple output files
2ea395dc1327 net: dsa: microchip: add spi_device_id tables
d06ee4572fd9 af_key: add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register
f868ffd1ead3 Input: zinitix - do not report shadow fingers
8745973cdfc6 spi: Fix erroneous sgs value with min_t()
20f46b12162c Revert "gpio: Revert regression in sysfs-gpio (gpiolib.c)"
13b570f365b8 net:mcf8390: Use platform_get_irq() to get the interrupt
526a46a5f479 spi: Fix invalid sgs value
a28571fcc422 gpio: Revert regression in sysfs-gpio (gpiolib.c)
cd3121310e33 ethernet: sun: Free the coherent when failing in probing
afffb79a2dd5 tools/virtio: fix virtio_test execution
f8f8e96048ad vdpa/mlx5: should verify CTRL_VQ feature exists for MQ
32aef620e650 virtio_console: break out of buf poll on remove
3d39860bea5e ARM: mstar: Select HAVE_ARM_ARCH_TIMER
189bdde30b55 xfrm: fix tunnel model fragmentation behavior
3a2914bc3e62 HID: Add support for open wheel and no attachment to T300
a3248ecf0724 HID: logitech-dj: add new lightspeed receiver id
d5aad7d63b1b hv: utils: add PTP_1588_CLOCK to Kconfig to fix build
dd84d71bcbcb mm: kfence: fix missing objcg housekeeping for SLAB
3d7df3f83f67 USB: serial: simple: add Nokia phone driver
33325a62249e USB: serial: pl2303: fix GS type detection
1dd64317e785 dt-bindings: usb: hcd: correct usb-device path
2241e42f6c71 USB: serial: pl2303: add IBM device IDs
890f78e54b74 Revert "swiotlb: rework "fix info leak with DMA_FROM_DEVICE""
e29be6724adb Linux 5.15.32
60981bb5ce18 llc: only change llc->dev when bind() succeeds
22ac37c53065 nds32: fix access_ok() checks in get/put_user
110dea31d48f m68k: fix access_ok for coldfire
cdb96445297b wcn36xx: Differentiate wcn3660 from wcn3620
476ddd23f818 tpm: use try_get_ops() in tpm-space.c
12e407a8ef17 mac80211: fix potential double free on mesh join
e65d28d4e9bf uaccess: fix integer overflow on access_ok()
058d62a03e7d rcu: Don't deboost before reporting expedited quiescent state
b094fece3810 drm/virtio: Ensure that objs is not NULL in virtio_gpu_array_put_free()
5023652cc6e4 Revert "ath: add support for special 0x0 regulatory domain"
4b6a48f87d03 Bluetooth: btusb: Add one more Bluetooth part for the Realtek RTL8852AE
cb807cb52a8e crypto: qat - disable registration of algorithms
57a2b3f8bf1c ACPI: video: Force backlight native for Clevo NL5xRU and NL5xNU
a01ac2411489 ACPI: battery: Add device HID and quirk for Microsoft Surface Go 3
8942aac69016 ACPI / x86: Work around broken XSDT on Advantech DAC-BJ01 board
1bd57dea4561 netfilter: nf_tables: validate registers coming from userspace.
fafb904156fb netfilter: nf_tables: initialize registers in nft_do_chain()
3e27eafac659 drivers: net: xgene: Fix regression in CRC stripping
c2052ad0c74f ALSA: pci: fix reading of swapped values from pcmreg in AC97 codec
9abaacd6491e ALSA: cmipci: Restore aux vol on suspend/resume
099a1cc21b16 ALSA: usb-audio: Add mute TLV for playback volumes on RODE NT-USB
f4827c62b649 ALSA: pcm: Add stream lock during PCM reset ioctl operations
51fce708ab89 ALSA: pcm: Fix races among concurrent prealloc proc writes
cb6a39c5ebd0 ALSA: pcm: Fix races among concurrent prepare and hw_params/hw_free calls
47711ff10c7e ALSA: pcm: Fix races among concurrent read/write and buffer changes
33061d0fba51 ALSA: pcm: Fix races among concurrent hw_params and hw_free calls
3b1bacd00ac3 ALSA: hda/realtek: Add quirk for ASUS GA402
0e7cdc8059a0 ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671
8e6ea2176222 ALSA: hda/realtek: Add quirk for Clevo NP50PNJ
85060f4868db ALSA: hda/realtek: Add quirk for Clevo NP70PNJ
10cdffd4854a ALSA: usb-audio: add mapping for new Corsair Virtuoso SE
7a40cbf3579a ALSA: oss: Fix PCM OSS buffer allocation overflow
5e431799c35b ASoC: sti: Fix deadlock via snd_pcm_stop_xrun() call
e90729961083 llc: fix netdevice reference leaks in llc_ui_bind()
5b2ca3b8213a Bluetooth: btusb: Add another Realtek 8761BU
42b9f6d19faa tpm: Fix error handling in async work
2317fd3b126c net: ipv6: fix skb_over_panic in __ip6_append_data
a34c47b1ab07 nfc: st21nfca: Fix potential buffer overflows in EVT_TRANSACTION
96e48ac9a685 Linux 5.15.31
4c5d94990fa2 btrfs: skip reserved bytes warning on unmount after log cleanup failure
23775775b9a6 perf symbols: Fix symbol size calculation condition
e762f57ff255 Input: aiptek - properly check endpoint type
0cd2dd4bcf4a scsi: mpt3sas: Page fault in reply q processing
c69aef9db878 usb: usbtmc: Fix bug in pipe direction for control transfers
2015c23610cd usb: gadget: Fix use-after-free bug by not setting udc->dev.driver
56b38e3ca406 usb: gadget: rndis: prevent integer overflow in rndis_set_response()
222f5e2d7f20 arm64: fix clang warning about TRAMP_VALIAS
80974bb73027 iavf: Fix hang during reboot/shutdown
800a17adb531 net: mscc: ocelot: fix backwards compatibility with single-chain tc-flower offload
2d7cff7e1fee net: bcmgenet: skip invalid partial checksums
6840fdeab423 bnx2x: fix built-in kernel driver load failure
f07e0b020f7a net: phy: mscc: Add MODULE_FIRMWARE macros
e396fda10ddf net: dsa: Add missing of_node_put() in dsa_port_parse_of
11dab4a800a4 drm: Don't make DRM_PANEL_BRIDGE dependent on DRM_KMS_HELPERS
a1adf00e1728 net: handle ARPHRD_PIMREG in dev_is_mac_header_xmit()
8ee52c302191 drm/panel: simple: Fix Innolux G070Y2-L01 BPP settings
43dcd410809e drm/imx: parallel-display: Remove bus flags check in imx_pd_bridge_atomic_check()
ab0ab1761831 hv_netvsc: Add check for kvmalloc_array
735f918cc2c8 iavf: Fix double free in iavf_reset_task
b2bc45327e8c atm: eni: Add check for dma_map_single
a055f5f2841f net/packet: fix slab-out-of-bounds access in packet_recvmsg()
a296f3ae8009 net: phy: marvell: Fix invalid comparison in the resume and suspend functions
b9820bf09f59 esp6: fix check on ipv6_skip_exthdr's return value
093f11b49609 vsock: each transport cycles only on its own sockets
1dcc1b888223 alx: acquire mutex for alx_reinit in alx_change_mtu
4b49ba22a253 efi: fix return value of __setup handlers
16ac5dca1e13 drm/mgag200: Fix PLL setup for g200wb and g200ew
d4ad8736ac98 block: release rq qos structures for queue without disk
6829aa17ca55 mm: swap: get rid of livelock in swapin readahead
b786b64dcb31 ocfs2: fix crash when initialize filecheck kobj fails
ab9337c7cb6f crypto: qcom-rng - ensure buffer for generate is completely filled
0464ab17184b Linux 5.15.30
a9bbacc53d1f ice: Fix race condition during interface enslave
df3817ab226f x86/module: Fix the paravirt vs alternative order
ff2e93a03f8d kselftest/vm: fix tests build with old libc
d99db3b935b7 bnx2: Fix an error message
ff7dfcd47a7e sfc: extend the locking on mcdi->seqno
ff17119dceef tcp: make tcp_read_sock() more robust
f5a425f5d5fc nl80211: Update bss channel on channel switch for P2P_CLIENT
3534c5c005ef drm/vrr: Set VRR capable prop only if it is attached to connector
46c02c5051aa iwlwifi: don't advertise TWT support
4051516d4b79 atm: firestream: check the return value of ioremap() in fs_init()
76e0b8e12c64 can: rcar_canfd: rcar_canfd_channel_probe(): register the CAN device when fully ready
3679ccc09d88 Bluetooth: hci_core: Fix leaking sent_cmd skb
c2924e9143c2 ARM: 9178/1: fix unmet dependency on BITREVERSE for HAVE_ARCH_BITREVERSE
be538b764a46 MIPS: smp: fill in sibling and core maps earlier
c98afa0db3a3 mac80211: refuse aggregations sessions before authorized
84ecddbc9888 ARM: dts: rockchip: fix a typo on rk3288 crypto-controller
8ad1b44f2d2e ARM: dts: rockchip: reorder rk322x hmdi clocks
4744e1df7268 arm64: dts: agilex: use the compatible "intel,socfpga-agilex-hsotg"
f5743453365b arm64: dts: rockchip: reorder rk3399 hdmi clocks
f9a510bb024d arm64: dts: rockchip: align pl330 node name with dtschema
e90da30175cb arm64: dts: rockchip: fix rk3399-puma eMMC HS400 signal integrity
0f06f953aac5 xfrm: Fix xfrm migrate issues when address family changes
e6d7e51e1092 xfrm: Check if_id in xfrm_migrate
8918ae97417a arm64: dts: rockchip: fix rk3399-puma-haikou USB OTG mode
e901c9212457 Revert "xfrm: state and policy should fail if XFRMA_IF_ID 0"
b9a0208cb3e3 Linux 5.15.29
f83c85ee73df vhost: allow batching hint without size
caf18e4da9bf Revert "net: dsa: mv88e6xxx: flush switchdev FDB workqueue before removing VLAN"
69b80587f650 block: drop unused includes in <linux/genhd.h>
cd072bf2dcbd riscv: dts: k210: fix broken IRQs on hart1
074c88751dc1 drm/i915: Workaround broken BIOS DBUF configuration on TGL/RKL
a1ce40f8aeb1 btrfs: make send work with concurrent block group relocation
342783ba9c3c drm/panel: Select DRM_DP_HELPER for DRM_PANEL_EDP
1fbafa9a5b42 x86/traps: Mark do_int3() NOKPROBE_SYMBOL
ce91f0f023ad x86/sgx: Free backing memory after faulting the enclave page
e946556d3665 x86/boot: Add setup_indirect support in early_memremap_is_setup_data()
19503d381aab x86/boot: Fix memremap of setup_indirect structures
ffb8fd39c84c watch_queue: Make comment about setting ->defunct more accurate
eb38c2e9fc74 watch_queue: Fix lack of barrier/sync/lock between post and read
82ff8a2243f7 watch_queue: Free the alloc bitmap when the watch_queue is torn down
d453d0e5a15d watch_queue: Fix the alloc bitmap size to reflect notes allocated
b022b6a0586f watch_queue: Fix to always request a pow-of-2 pipe ring size
ccd03c30f103 watch_queue: Fix to release page in ->release()
8275b6699c6d watch_queue, pipe: Free watchqueue state after clearing pipe ring
1b09f28f70a5 watch_queue: Fix filter limit check
52445030f135 ARM: fix Thumb2 regression with Spectre BHB
4a8e7f9dae4a net/mlx5: Fix offloading with ESWITCH_IPV4_TTL_MODIFY_ENABLE
cbb726e6c652 virtio: acknowledge all features before access
22823b1a0dc9 virtio: unexport virtio_finalize_features
a633bc013333 KVM: x86/mmu: kvm_faultin_pfn has to return false if pfh is returned
2c1f97af38be swiotlb: rework "fix info leak with DMA_FROM_DEVICE"
0349c79c5508 arm64: kasan: fix include error in MTE functions
61d32defc00f arm64: Ensure execute-only permissions are not allowed without EPAN
72ea28d88d30 arm64: dts: marvell: armada-37xx: Remap IO space to bus address 0x0
42aaf726c9e9 tracing/osnoise: Force quiescent states while tracing
eae073d854c5 riscv: Fix auipc+jalr relocation range checks
b515552d41ee mmc: meson: Fix usage of meson_mmc_post_req()
9b3cdf5e8ad9 riscv: alternative only works on !XIP_KERNEL
b5e792187f50 net: macb: Fix lost RX packet wakeup race in NAPI receive
1fb9dd378749 staging: gdm724x: fix use after free in gdm_lte_rx()
441bc1e3d7e0 staging: rtl8723bs: Fix access-point mode deadlock
ca62747b38f5 fuse: fix pipe buffer lifetime for direct_io
d60d34b4d6d1 fuse: fix fileattr op failure
64147ce85e2f ARM: Spectre-BHB: provide empty stub for non-config
5c237251421d selftests/memfd: clean up mapping in mfd_fail_write
e22807ee679f selftest/vm: fix map_fixed_noreplace test failure
9d95b7e239a1 tracing/osnoise: Make osnoise_main to sleep for microseconds
4d2889691570 tracing: Ensure trace buffer is at least 4096 bytes large
041616a22c40 ipv6: prevent a possible race condition with lifetimes
2708ceb4e5cc Revert "xen-netback: Check for hotplug-status existence before watching"
fe39ab30dcc2 Revert "xen-netback: remove 'hotplug-status' once it has served its purpose"
fcd1d79aa943 drm/amdgpu: bypass tiling flag check in virtual display case (v2)
5cf4dd01efe0 gpio: Return EPROBE_DEFER if gc->to_irq is NULL
94b568a9d2a5 PCI: Mark all AMD Navi10 and Navi14 GPU ATS as broken
bb9795b6da22 hwmon: (pmbus) Clear pmbus fault/warning bits after read
8d5e69d8fbf3 net-sysfs: add check for netdevice being present to speed_show
1280c8ae9745 x86/kvm: Don't use pv tlb/ipi/sched_yield if on 1 vCPU
ee22082c3e2f drm/vc4: hdmi: Unregister codec device on unbind
5bef4e5089d3 spi: rockchip: terminate dma transmission when slave abort
1f04bbd2935c spi: rockchip: Fix error in getting num-cs property
bcd4279b989f kvm: x86: Disable KVM_HC_CLOCK_PAIRING if tsc is in always catchup mode
e160ee96d03f KVM: Fix lockdep false negative during host resume
302ce2946160 pinctrl: tigerlake: Revert "Add Alder Lake-M ACPI ID"
839ddf786772 usb: dwc3: pci: add support for the Intel Raptor Lake-S
7403f4118ab9 swiotlb: fix info leak with DMA_FROM_DEVICE
b0028e1cc1fa selftests/bpf: Add test for bpf_timer overwriting crash
732c7172b79c net: phy: meson-gxl: improve link-up behavior
6c0d2f348be2 net: bcmgenet: Don't claim WOL when its not available
1502f15b9f29 sctp: fix kernel-infoleak for SCTP sockets
9ca50a73c98c net: phy: DP83822: clear MISR2 register to disable interrupts
f49f646f9ec2 gianfar: ethtool: Fix refcount leak in gfar_get_ts_info
c7f6accc6795 gpio: ts4900: Do not set DAT and OE together
c614aad2ee9e selftests: pmtu.sh: Kill nettest processes launched in subshell.
d4dfc94c4052 selftests: pmtu.sh: Kill tcpdump processes launched by subshell.
0e721b8f2ee5 NFC: port100: fix use-after-free in port100_send_complete
a2355333cf18 net/mlx5e: Lag, Only handle events from highest priority multipath entry
7c519f769f55 net/mlx5: Fix a race on command flush flow
b3d4a7dcb9ca net/mlx5: Fix size field in bufferx_reg struct
46ad629e58ce ax25: Fix NULL pointer dereference in ax25_kill_by_device
b7c2fd1d1263 net: marvell: prestera: Add missing of_node_put() in prestera_switch_set_base_mac_addr
6e294d389023 net: ethernet: lpc_eth: Handle error for clk_enable
c746fa0f54c9 net: ethernet: ti: cpts: Handle error for clk_enable
5548c81e97ab tipc: fix incorrect order of state message data sanity check
5e7c402892e1 ethernet: Fix error handling in xemaclite_of_probe
06a97a7afa05 ice: Fix curr_link_speed advertised speed
fd0ca20f1846 ice: Don't use GFP_KERNEL in atomic context
15d1271d89b8 ice: Fix error with handling of bonding MTU
9bda6a09e7ef ice: stop disabling VFs due to PF error responses
49839cb40d6c i40e: stop disabling VFs due to PF error responses
35f11aba74e2 iavf: Fix handling of vlan strip virtual channel messages
0716607ad241 ARM: dts: aspeed: Fix AST2600 quad spi group
9c0686caa822 net: dsa: mt7530: fix incorrect test in mt753x_phylink_validate()
f9ec15fc3c48 drm/sun4i: mixer: Fix P010 and P210 format numbers
c5883d38a470 gpiolib: acpi: Convert ACPI value of debounce to microseconds
c014efbd1c28 smsc95xx: Ignore -ENODEV errors when device is unplugged
3acc8788febf qed: return status of qed_iov_get_link
e5d078d21fa0 esp: Fix BEET mode inter address family tunneling on GSO
4aaabbffc3b0 esp: Fix possible buffer overflow in ESP transformation
4dfa7d3508bf net: qlogic: check the return value of dma_alloc_coherent() in qed_vf_hw_prepare()
92d97017c67c isdn: hfcpci: check the return value of dma_set_mask() in setup_hw()
4b1743bc715a vdpa: fix use-after-free on vp_vdpa_remove
8848b0fa9bf1 virtio-blk: Don't use MAX_DISCARD_SEGMENTS if max_discard_seg is zero
f8d88e86e90e vhost: fix hung thread due to erroneous iotlb entries
7777b1f795af mISDN: Fix memory leak in dsp_pipeline_build()
20145e05e497 net: phy: meson-gxl: fix interrupt handling in forced mode
90a2f4fc5b23 vduse: Fix returning wrong type in vduse_domain_alloc_iova()
e7e118416465 vdpa/mlx5: add validation for VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET command
f96dc3adb9a9 tipc: fix kernel panic when enabling bearer
0a99594d2058 arm64: dts: armada-3720-turris-mox: Add missing ethernet0 alias
e52ecbca254b HID: vivaldi: fix sysfs attributes leak
ea45b38caf2b clk: qcom: dispcc: Update the transition delay for MDSS GDSC
ba24eb3cc95c clk: qcom: gdsc: Add support to update GDSC transition delay
b6c624d07bf2 ARM: boot: dts: bcm2711: Fix HVS register range
3ffbe85cda7f HID: hid-thrustmaster: fix OOB read in thrustmaster_interrupts
a5334502f91f HID: elo: Revert USB reference counting
af4fcf85c88d arm64: dts: qcom: sm8350: Correct UFS symbol clocks
8fa52df84c58 arm64: dts: qcom: sm8350: Describe GCC dependency clocks
aa79753319d8 Linux 5.15.28
39d332de8edb Revert "ACPI: PM: s2idle: Cancel wakeup before dispatching EC GPE"
dea18aef2021 xen/netfront: react properly to failing gnttab_end_foreign_access_ref()
27dc69aa5568 xen/gnttab: fix gnttab_end_foreign_access() without page specified
5bff1721c8f9 xen/pvcalls: use alloc/free_pages_exact()
a019d26830e8 xen/9p: use alloc/free_pages_exact()
90c5f198b923 xen: remove gnttab_query_foreign_access()
f06e3edaeac1 xen/gntalloc: don't use gnttab_query_foreign_access()
f1c85942314d xen/scsifront: don't use gnttab_query_foreign_access() for mapped status
5d5fa1d53a31 xen/netfront: don't use gnttab_query_foreign_access() for mapped status
f9ade968df79 xen/blkfront: don't use gnttab_query_foreign_access() for mapped status
1dd5b4b230f6 xen/grant-table: add gnttab_try_end_foreign_access()
66cb2bbb522b xen/xenbus: don't let xenbus_grant_ring() remove grants in error case
2b2d2a8ba2e9 ARM: fix build warning in proc-v7-bugs.c
8836a046ef41 arm64: Do not include __READ_ONCE() block in assembly files
431b92c3c25e ARM: Do not use NOCROSSREFS directive with ld.lld
57a65667fbdc ARM: fix co-processor register typo
49062ec32e79 ARM: fix build error when BPF_SYSCALL is disabled
3317d21b84e9 arm64: proton-pack: Include unprivileged eBPF status in Spectre v2 mitigation reporting
8979720ac64c arm64: Use the clearbhb instruction in mitigations
fb2bb2ec137c KVM: arm64: Allow SMCCC_ARCH_WORKAROUND_3 to be discovered and migrated
4bbfd0c28025 arm64: Mitigate spectre style branch history side channels
8e55b9b0e765 arm64: proton-pack: Report Spectre-BHB vulnerabilities as part of Spectre-v2
d7066114dcd6 arm64: Add percpu vectors for EL1
cfd0c38125aa arm64: entry: Add macro for reading symbol addresses from the trampoline
50e700a11766 arm64: entry: Add vectors that have the bhb mitigation sequences
ffb8a34c0fd8 arm64: entry: Add non-kpti __bp_harden_el1_vectors for mitigations
517f988ee050 arm64: entry: Allow the trampoline text to occupy multiple pages
6895584a92ee arm64: entry: Make the kpti trampoline's kpti sequence optional
a40472d463f9 arm64: entry: Move trampoline macros out of ifdef'd section
be9c5526aad6 arm64: entry: Don't assume tramp_vectors is the start of the vectors
2e09754a03a7 arm64: entry: Allow tramp_alias to access symbols after the 4K boundary
e25a9dced2bd arm64: entry: Move the trampoline data page before the text page
4a691bbf56a1 arm64: entry: Free up another register on kpti's tramp_exit path
479c9bb741bf arm64: entry: Make the trampoline cleanup optional
368a1fd8c4a6 KVM: arm64: Allow indirect vectors to be used without SPECTRE_V3A
44adac5908ff arm64: spectre: Rename spectre_v4_patch_fw_mitigation_conduit
b7beeab84f02 arm64: entry.S: Add ventry overflow sanity checks
e38b3c0d245b arm64: cpufeature: add HWCAP for FEAT_RPRES
a4c234f60269 arm64: cpufeature: add HWCAP for FEAT_AFP
912961e188dc arm64: add ID_AA64ISAR2_EL1 sys register
ac7bc62b78de arm64: Add Cortex-X2 CPU part definition
f0c559c38e98 arm64: Add HWCAP for self-synchronising virtual counter
d82f489cbbdb arm64: Add Neoverse-N2, Cortex-A710 CPU part definition
842f2d498ee1 ARM: include unprivileged BPF status in Spectre V2 reporting
576548846f1e ARM: Spectre-BHB workaround
2dca61693e6c ARM: use LOADADDR() to get load address of sections
878ad97f745e ARM: early traps initialisation
f02cab2bed1a ARM: report Spectre v2 status through sysfs
bf048d1921b6 x86/speculation: Warn about eIBRS + LFENCE + Unprivileged eBPF + SMT
074d72604639 x86/speculation: Warn about Spectre v2 LFENCE mitigation
36fbbd78471c x86/speculation: Update link to AMD speculation whitepaper
a56566d7a957 x86/speculation: Use generic retpoline by default on AMD
316e4a16524a x86/speculation: Include unprivileged eBPF status in Spectre v2 mitigation reporting
eb4596417756 Documentation/hw-vuln: Update spectre doc
d7771f380c90 x86/speculation: Add eIBRS + Retpoline options
f150b6fccf7f x86/speculation: Rename RETPOLINE_AMD to RETPOLINE_LFENCE
e94d490a1ad6 x86,bugs: Unconditionally allow spectre_v2=retpoline,amd
668c821321b4 slip: fix macro redefine warning
efe3167e52a5 Linux 5.15.27
ea2bc310250d hamradio: fix macro redefine warning
8998aa676205 KVM: x86/mmu: Passing up the error state of mmu_alloc_shadow_roots()
416e3a0e4276 proc: fix documentation and description of pagemap
8b893496892e Revert "xfrm: xfrm_state_mtu should return at least 1280 for ipv6"
6599d5e8bd75 btrfs: do not start relocation until in progress drops are done
4aef4c900597 btrfs: add missing run of delayed items after unlink during log replay
34146bbadcdd btrfs: qgroup: fix deadlock between rescan worker and remove qgroup
e00077aa439f btrfs: do not WARN_ON() if we have PageError set
725a6ac389b1 btrfs: fix relocation crash due to premature return from btrfs_commit_transaction()
5342e9f3dac0 btrfs: fix lost prealloc extents beyond eof after full fsync
80660a726d47 tracing: Fix return value of __setup handlers
452f64ee0940 tracing/histogram: Fix sorting on old "cpu" value
aa6d3eef28f3 HID: add mapping for KEY_ALL_APPLICATIONS
b355d6a14ba7 HID: add mapping for KEY_DICTATE
74e9545d9e25 Input: samsung-keypad - properly state IOMEM dependency
cb19f03e5f65 Input: elan_i2c - fix regulator enable count imbalance after suspend/resume
f74fc94691f0 Input: elan_i2c - move regulator_[en|dis]able() out of elan_[en|dis]able_power()
7a1ee9934b14 MAINTAINERS: adjust file entry for of_net.c after movement
7626ab3a3897 iavf: missing unlocks in iavf_watchdog_task()
d784113217f9 iavf: do not override the adapter state in the watchdog task (again)
d61f3737c559 net: stmmac: perserve TX and RX coalesce value during XDP setup
d666d3363845 selftests: mlxsw: resource_scale: Fix return value
6fe3127d3af1 net: dcb: disable softirqs in dcbnl_flush_dev()
46eed3a37dee drm/amdgpu: fix suspend/resume hang regression
a1e603e5f3b2 nl80211: Handle nla_memdup failures in handle_nan_filter
a30496660634 MIPS: ralink: mt7621: use bitwise NOT instead of logical
68c4fe2ef0bf e1000e: Fix possible HW unit hang after an s0ix exit
9dfe6abc6c13 drm/bridge: ti-sn65dsi86: Properly undo autosuspend
d675c05b792e drm/i915/guc/slpc: Correct the param count for unset param
6f62bc0fc12b iavf: Fix __IAVF_RESETTING state usage
598bc8955916 iavf: Fix race in init state
ddc5db0bcfa2 iavf: Fix locking for VIRTCHNL_OP_GET_OFFLOAD_VLAN_V2_CAPS
8c0e4da63385 iavf: Fix init state closure on remove
85aa76066fef iavf: Add waiting so the port is initialized in remove
e734c794dea3 iavf: Fix kernel BUG in free_msi_irqs
200366d1a583 iavf: Add helper function to go from pci_dev to adapter
23901462c301 iavf: Rework mutexes for better synchronisation
9fedc4f86ee3 iavf: Add trace while removing device
b4e0e00a361d iavf: Combine init and watchdog state machines
57d2f0db2e63 iavf: Add __IAVF_INIT_FAILED state
7e2d102501e1 iavf: Refactor iavf state machine tracking
f8ce435f2c81 net: sparx5: Fix add vlan when invalid operation
50948cea504c net: chelsio: cxgb3: check the return value of pci_find_capability()
ea3d3c36a4fa ibmvnic: complete init_done on transport events
13e3b51ffaf8 ibmvnic: define flush_reset_queue helper
046d933c1b74 ibmvnic: initialize rc before completing wait
bb20939bc8d1 net: stmmac: only enable DMA interrupts when ready
e753b639363d net: stmmac: enhance XDP ZC driver level switching performance
8cdac518eac7 can: etas_es58x: change opened_channel_cnt's type from atomic_t to u8
04746dbd9593 ARM: tegra: Move panels to AUX bus
9920d99cc89a netfilter: nf_tables: prefer kfree_rcu(ptr, rcu) variant
4ed52fbeb967 soc: fsl: qe: Check of ioremap return value
c2266d20251c soc: fsl: guts: Add a missing memory allocation failure check
20ff0ff315cd soc: fsl: guts: Revert commit 3c0d64e867ed
40d763efa5bf ARM: dts: Use 32KiHz oscillator on devkit8000
50bce7f03e8c ARM: dts: switch timer config to common devkit8000 devicetree
af143626eb85 MIPS: ralink: mt7621: do memory detection on KSEG1
378e2fe1eb58 iommu/amd: Fix I/O page table memory leak
f6cabb721c5b arm64: dts: juno: Remove GICv2m dma-range
3411613611a5 sched: Fix yet more sched_fork() races
3d76a995f646 s390/extable: fix exception table sorting
b7c35587be23 memfd: fix F_SEAL_WRITE after shmem huge page allocated
39738a2346b2 ibmvnic: free reset-work-item when flushing
d4706de93cf7 igc: igc_write_phy_reg_gpy: drop premature return
896d1b8a3612 pinctrl: sunxi: Use unique lockdep classes for IRQs
09423ff81601 selftests: mlxsw: tc_police_scale: Make test more robust
0c3f34beb459 mptcp: Correctly set DATA_FIN timeout when number of retransmits is large
d7a4b54f4fc5 ARM: 9182/1: mmu: fix returns from early_param() and __setup() functions
a664bd7a0084 mips: setup: fix setnocoherentio() boolean setting
f14a0244b1ba ARM: Fix kgdb breakpoint for Thumb2
c9cfcdd111d7 igc: igc_read_phy_reg_gpy: drop premature return
7c1db4a30e29 arm64: dts: rockchip: Switch RK3399-Gru DP to SPDIF output
6be5b626bec1 iommu/tegra-smmu: Fix missing put_device() call in tegra_smmu_find
2b04bb51a9c1 can: gs_usb: change active_channels's type from atomic_t to u8
b6149efc57bf auxdisplay: lcd2s: Use proper API to free the instance of charlcd object
5d53cd33f425 auxdisplay: lcd2s: Fix memory leak in ->remove()
6d6c139d1e2d ASoC: cs4265: Fix the duplicated control name
d442f20e6daf firmware: arm_scmi: Remove space in MODULE_ALIAS name
f9c3aa939c41 auxdisplay: lcd2s: Fix lcd2s_redefine_char() feature
4efa386ef9e1 efivars: Respect "block" flag in efivar_entry_set_safe()
61a303971c3c iavf: Fix deadlock in iavf_reset_task
366f785bbba4 ixgbe: xsk: change !netif_carrier_ok() handling in ixgbe_xmit_zc()
ea372aab5490 net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe()
1c09774e5ea1 ibmvnic: register netdev after init of adapter
f58ead21dd6a net: sxgbe: fix return value of __setup handler
23a6be260d56 iavf: Fix missing check for running netdev
a83ebad95542 mac80211: treat some SAE auth steps as final
b85dd0d7a503 net: stmmac: fix return value of __setup handler
828f75c24ab8 mac80211: fix forwarded mesh frames AC & queue selection
5afd80c393f4 btrfs: fix ENOSPC failure when attempting direct IO write into NOCOW range
15cbeeaada70 net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error cause by server
21922d9cde88 net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error generated by client
80895b6f9154 net/smc: fix connection leak
a559e0598ce6 net: ipa: add an interconnect dependency
4daaf8816d60 net: dcb: flush lingering app table entries for unregistered devices
b11781515208 net: ipv6: ensure we call ipv6_mc_down() at most once
24e49e17cbfc batman-adv: Don't expect inter-netns unique iflink indices
94355d99ad70 batman-adv: Request iflink once in batadv_get_real_netdevice
58ea33965a6f batman-adv: Request iflink once in batadv-on-batadv check
216f3cb587e0 netfilter: nf_queue: handle socket prefetch
dd648bd1b33a netfilter: nf_queue: fix possible use-after-free
63291e95e8ae netfilter: nf_queue: don't assume sk is full socket
3a65b82b1ef2 net: fix up skbs delta_truesize in UDP GRO frag_list
a47e7ac8851c e1000e: Correct NVM checksum verification flow
4020d2e14f13 xfrm: enforce validity of offload input flags
ce0d6bf33c35 xfrm: fix the if_id check in changelink
00c74b587197 bpf, sockmap: Do not ignore orig_len parameter
bd61f192a339 netfilter: fix use-after-free in __nf_register_net_hook()
75cbedd33343 xfrm: fix MTU regression
261eff11ade9 mm: Consider __GFP_NOWARN flag for oversized kvmalloc() calls
5d7c23d39660 ntb: intel: fix port config status offset for SPR
78acc7dbd84a blktrace: fix use after free for struct blk_trace
5f298bf7f337 mac80211: fix EAPoL rekey fail in 802.3 rx path
3dafbf915c05 thermal: core: Fix TZ_GET_TRIP NULL pointer dereference
a63eb1e4a2e1 xen/netfront: destroy queues before real_num_tx_queues is zeroed
dab06be16184 drm/amd/display: Reduce dmesg error to a debug print
7508ac360d1e drm/i915: s/JSP2/ICP2/ PCH
a8a86631f4ce iommu/amd: Recover from event log overflow
2aaa085bd012 iommu/vt-d: Fix double list_add when enabling VMD in scalable mode
050b1821f27c ASoC: ops: Shift tested values in snd_soc_put_volsw() by +min
7de1ed755e1a iwlwifi: mvm: check debugfs_dir ptr before use
728fb555882b riscv: Fix config KASAN && DEBUG_VIRTUAL
08b22e3f150e riscv: Fix config KASAN && SPARSEMEM && !SPARSE_VMEMMAP
e64d6a689ec5 riscv/efi_stub: Fix get_boot_hartid_from_fdt() return value
6c3d4da8e7a9 ucounts: Fix systemd LimitNPROC with private users regression
3eb418122d12 ALSA: intel_hdmi: Fix reference to PCM buffer address
9285523b4174 net: of: fix stub of_net helpers for CONFIG_NET=n
dc75d7968901 PCI: mvebu: Fix device enumeration regression
35afd8ae1184 drm/amd/display: For vblank_disable_immediate, check PSR is really used
5f283e64a850 bnxt_en: Fix occasional ethtool -t loopback test failures
10dd26349edf drm/amd/display: Fix stream->link_enc unassigned during stream removal
aa280c04da1b cifs: fix confusing unneeded warning message on smb2.1 and earlier
3d74c2c917e4 cifs: protect session channel fields with chan_lock
2594dba1cd79 drm/mediatek: mtk_dsi: Reset the dsi0 hardware
f510d6463949 net: ethernet: litex: Add the dependency on HAS_IOMEM
3a3aa0881aeb of: net: move of_net under net/
960dfaf3b578 ibmvnic: don't release napi in __ibmvnic_open()
1d13e7221035 net: dsa: seville: register the mdiobus under devres
8bfa27186e29 net: dsa: ocelot: seville: utilize of_mdiobus_register
68c8e6d16f57 gve: Recording rx queue before sending to napi
5c66161cceaa drm/i915: Disable DRRS on IVB/HSW port != A
e2b3d1bf6ec3 drm/i915/display: Move DRRS code its own file
23eb29281f1e drm/i915/display: split out dpt out of intel_display.c
fbf6d5f8eef7 riscv/mm: Add XIP_FIXUP for phys_ram_base
86a337bb8030 drm: mxsfb: Fix NULL pointer dereference
9bbeba67bbbd drm: mxsfb: Set fallback bus format when the bridge doesn't provide one
ed4488d8307f drm/amd/display: Update watermark values for DCN301
07058fb18df8 bpf: Fix possible race in inc_misses_counter
aa5040691cb7 bpf: Use u64_stats_t in struct bpf_prog_stats
82a82ad92746 net/mlx5e: IPsec: Fix crypto offload for non TCP/UDP encapsulated traffic
748438b4e62c net/mlx5e: IPsec: Refactor checksum code in tx data path
f1c0163bb824 octeontx2-af: Add KPU changes to parse NGIO as separate layer
63138001c961 octeontx2-af: Adjust LA pointer for cpt parse header
ab3380a844aa octeontx2-af: cn10k: Use appropriate register for LMAC enable
fe3eafea3907 octeontx2-af: cn10k: RPM hardware timestamp configuration
ef33ae74bb9c octeontx2-af: Reset PTP config in FLR handler
75279de4e392 octeontx2-af: Optimize KPU1 processing for variable-length headers
462c5e6cb241 ethtool: Fix link extended state for big endian
27e01f10d183 drm/amd/display: move FPU associated DSC code to DML folder
691c0030be65 drm/amd/display: Use adjusted DCN301 watermarks
2157e509e5b2 drm/amdgpu: filter out radeon secondary ids as well
f724a438d986 drm/amdgpu: filter out radeon PCI device IDs
48cf33ee6b04 drm/amdgpu/display: Only set vblank_disable_immediate when PSR is not enabled
3f20cf3cd43f hugetlbfs: fix off-by-one error in hugetlb_vmdelete_list()
e9737301f0df selftests/vm: make charge_reserved_hugetlb.sh work with existing cgroup setting
1123c2fb9dc3 kasan: fix quarantine conflicting with init_on_free
f1675103e0f3 mm: defer kmemleak object creation of module_alloc()
013c2af6c15c tracing/probes: check the return value of kstrndup() for pbuf
8a20fed48eb4 tracing/uprobes: Check the return value of kstrdup() for tu->filename
1a62246c2c60 dma-buf: cma_heap: Fix mutex locking section
8654464086a1 i3c: master: dw: check return of dw_i3c_master_get_free_pos()
a80b13642a10 drm/amdgpu: use spin_lock_irqsave to avoid deadlock by local interrupt
5609b7803947 drm/amdkfd: Check for null pointer after calling kmemdup
950d17f190a4 ntb_hw_switchtec: Fix bug with more than 32 partitions
377cbdc92716 ntb_hw_switchtec: Fix pff ioread to read into mmio_part_cfg_all
cd07b19fbf37 drm/atomic: Check new_crtc_state->active to determine if CRTC needs disable in self refresh mode
1796d5350cb4 drm/sun4i: dw-hdmi: Fix missing put_device() call in sun8i_hdmi_phy_get
e209742c13d2 SUNRPC: Fix sockaddr handling in svcsock_accept_class trace points
bdaa8c7b7189 SUNRPC: Fix sockaddr handling in the svc_xprt_create_error trace point
d3f67ceaeb3f drm/i915: don't call free_mmap_offset when purging
e47679c06afc x86/hyperv: Properly deal with empty cpumasks in hyperv_flush_tlb_multi()
4425ca3677a6 nfsd: fix crash on COPY_NOTIFY with special stateid
0f84cfb465af Revert "nfsd: skip some unnecessary stats in the v4 case"
3abe2a70f5b4 NFSD: Fix verifier returned in stable WRITEs
e7c433270307 PCI: mvebu: Fix support for DEVCAP2, DEVCTL2 and LNKCTL2 registers on emulated bridge
a24745673304 PCI: mvebu: Fix support for PCI_EXP_RTSTA on emulated bridge
1d4200e28436 PCI: mvebu: Fix support for PCI_EXP_DEVCTL on emulated bridge
1ea3f69784ed PCI: mvebu: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge
9c91c755005b PCI: mvebu: Setup PCIe controller to Root Complex mode
3d394fa375f4 PCI: mvebu: Fix configuring secondary bus of PCIe Root Port via emulated bridge
4396c507a8f8 PCI: mvebu: Fix support for bus mastering and PCI_COMMAND on emulated bridge
bc988b126134 PCI: mvebu: Do not modify PCI IO type bits in conf_write
c1a027629c36 PCI: mvebu: Check for errors from pci_bridge_emul_init() call
7c93c809e00a Input: ti_am335x_tsc - fix STEPCONFIG setup for Z2
16ff93557d1e Input: ti_am335x_tsc - set ADCREFM for X configuration
628761fe0588 tracing: Do not let synth_events block other dyn_event systems during create
f35bacbb795a i3c/master/mipi-i3c-hci: Fix a potentially infinite loop in 'hci_dat_v1_get_index()'
e5264d44f732 i3c: fix incorrect address slot lookup on 64-bit
1adfbfaeb20d KVM: x86: Exit to userspace if emulation prepared a completion callback
3d8468045e39 KVM: x86: Handle 32-bit wrap of EIP for EMULTYPE_SKIP with flat code seg
00542cbacf22 KVM: X86: Ensure that dirty PDPTRs are loaded
723053e16d55 KVM: VMX: Read Posted Interrupt "control" exactly once per loop iteration
32b758d12c24 KVM: s390: Ensure kvm_arch_no_poll() is read once when blocking vCPU
b63190d0203f KVM: VMX: Don't unblock vCPU w/ Posted IRQ if IRQs are disabled in guest
f303196899f1 PCI: aardvark: Fix checking for MEM resource type
a2f5e9a6f2a0 PCI: dwc: Do not remap invalid res
d9fc43aab60d PCI: rcar: Check if device is runtime suspended instead of __clk_is_enabled()
aa805236ed97 PCI: mediatek-gen3: Disable DVFSRC voltage request
7f361266e981 signal: In get_signal test for signal_group_exit every time through the loop
f98371d2ac83 MIPS: fix local_{add,sub}_return on MIPS64
64b487be33b7 mtd: spi-nor: Fix mtd size for s3an flashes
83ef63535a8a tools/resolve_btf_ids: Close ELF file on error
1bd12b7aaee0 io_uring: fix no lock protection for ctx->cq_extra
384d1b11382b NFSD: Fix zero-length NFSv3 WRITEs
2de88544b3db NFSD: Have legacy NFSD WRITE decoders use xdr_stream_subsegment()
771aca9bc707 ipv6: fix skb drops in igmp6_event_query() and igmp6_event_report()
33e22b6c53d0 tracing: Add ustring operation to filtering string pointers
a9c6e02d223e drm/amdgpu: check vm ready by amdgpu_vm->evicting flag
b2a3068d5f15 ata: pata_hpt37x: fix PCI clock detection
e0bcd6b57793 sched/fair: Fix fault in reweight_entity
6f6ffc717b85 ext4: fast commit may miss file actions
97abcfedc87c ext4: fast commit may not fallback for ineligible commit
647b3f1533f4 ext4: simplify updating of fast commit stats
5abb1d84b6db ext4: drop ineligible txn start stop APIs
82a99bc85c0e serial: stm32: prevent TDR register overwrite when sending x_char
1921d1fd0e60 arm64: Mark start_backtrace() notrace and NOKPROBE_SYMBOL
60e6d58ef921 tracing: Add test for user space strings when filtering on string pointers
c9f727219f3e exfat: fix i_blocks for files truncated over 4 GiB
1ffc130388c5 exfat: reuse exfat_inode_info variable instead of calling EXFAT_I()
ab3656acb7b4 usb: gadget: clear related members when goto fail
07de9a494b5a usb: gadget: don't release an existing dev->buf
a1ba98731518 block-map: add __GFP_ZERO flag for alloc_page in function bio_copy_kern
1148adac7781 net: usb: cdc_mbim: avoid altsetting toggling for Telit FN990
f6fbf18d156c i2c: qup: allow COMPILE_TEST
d65d187b51b6 i2c: imx: allow COMPILE_TEST
d2327116861c i2c: cadence: allow COMPILE_TEST
7b22f63b933f dmaengine: shdma: Fix runtime PM imbalance on error
7d0214c38dca selftests/ftrace: Do not trace do_softirq because of PREEMPT_RT
4543426cd7b8 drm/amd/pm: correct UMD pstate clocks for Dimgrey Cavefish and Beige Goby
b628fffce58a selftests/seccomp: Fix seccomp failure by adding missing headers
54e7951a1988 cifs: modefromsids must add an ACE for authenticated users
18a9d6b18c2b HID: amd_sfh: Add interrupt handler to process interrupts
852b6b0411e6 HID: amd_sfh: Add functionality to clear interrupts
8ba9a2e72584 HID: amd_sfh: Handle amd_sfh work buffer in PM ops
546d60859ecf cifs: fix double free race when mount fails in cifs_get_root()
ccf46cb68859 cifs: do not use uninitialized data in the owner/group sid
5340a0924ea9 tipc: fix a bit overflow in tipc_crypto_key_rcv()
1ccc12f2240a block: loop:use kstatfs.f_bsize of backing file to set discard granularity
8694330db9b0 KVM: arm64: vgic: Read HW interrupt pending state from the HW
850a77c999b8 btrfs: get rid of warning on transaction commit when using flushoncommit
6279c5263ded Input: clear BTN_RIGHT/MIDDLE on buttonpads
700485846e12 regulator: core: fix false positive in regulator_late_cleanup()
fd64f8bc0644 ASoC: rt5682: do not block workqueue if card is unbound
4235a04ad401 ASoC: rt5668: do not block workqueue if card is unbound
2ed390555dbc i2c: bcm2835: Avoid clock stretching timeouts
e03ad1915ccc mac80211_hwsim: initialize ieee80211_tx_info at hw_scan_work
2d27a2bd381f mac80211_hwsim: report NOACK frames in tx_status
8993e6067f26 Linux 5.15.26
3c805fce07c9 ice: fix concurrent reset and removal of VFs
26bc7197f9d3 ice: Fix race conditions between virtchnl handling and VF ndo ops
fd21a0b6da94 memblock: use kfree() to release kmalloced memblock regions
83f331d1debb gpio: tegra186: Fix chip_data type confusion
a15769155440 pinctrl: k210: Fix bias-pull-up
e3a751ee48f9 pinctrl: fix loop in k210_pinconf_get_drive()
92cab57ea6d7 tty: n_gsm: fix deadlock in gsmtty_open()
06bce5327b76 tty: n_gsm: fix wrong modem processing in convergence layer type 2
1bc6f3b19bc6 tty: n_gsm: fix wrong tty control line for flow control
50cacb783bb3 tty: n_gsm: fix NULL pointer access due to DLCI release
519d0b389c10 tty: n_gsm: fix proper link termination after failed open
4f0ab1c8a5a6 tty: n_gsm: fix encoding of control signal octet bit DV
1851b9a46706 riscv: fix oops caused by irqsoff latency tracer
e0ff4dffded5 riscv: fix nommu_k210_sdcard_defconfig
72aa720acacf IB/qib: Fix duplicate sysfs directory name
7a7e1b3aeef7 tps6598x: clear int mask on probe failure
bde6a6b111b9 staging: fbtft: fb_st7789v: reset display before initialization
ba9efbbf6745 thermal: int340x: fix memory leak in int3400_notify()
00265efbd3e5 RDMA/cma: Do not change route.addr.src_addr outside state checks
8df508b7a44c btrfs: prevent copying too big compressed lzo segment
d2bef2cbd3b1 driver core: Free DMA range map when device is released
453a82127f17 mtd: core: Fix a conflict between MTD and NVMEM on wp-gpios property
fcd3f5906d64 nvmem: core: Fix a conflict between MTD and NVMEM on wp-gpios property
ce94606060d7 xhci: Prevent futile URB re-submissions due to incorrect return value.
c8b38e557414 xhci: re-initialize the HC during resume if HCE was set
88f69c64443f usb: dwc3: gadget: Let the interrupt handler disable bottom halves.
83e0190fb77c usb: dwc3: pci: Fix Bay Trail phy GPIO mappings
e62f41a6528f usb: dwc3: pci: Add "snps,dis_u2_susphy_quirk" for Intel Bay Trail
943a914d3dab usb: dwc2: drd: fix soft connect when gadget is unconfigured
85171fbf714c USB: serial: option: add Telit LE910R1 compositions
c331aa7e7064 USB: serial: option: add support for DW5829e
6db927ce66ac tracefs: Set the group ownership in apply_options() not parse_options()
2c775ad1fd5e USB: gadget: validate endpoint index for xilinx udc
da514063440b usb: gadget: rndis: add spinlock for rndis response list
f7c9fd0dff99 Revert "USB: serial: ch341: add new Product ID for CH341A"
27089f04fac6 ata: pata_hpt37x: disable primary channel on HPT371
4e508c593573 sc16is7xx: Fix for incorrect data being transmitted
72b0fba2dd4d iio: Fix error handling for PM
1f05c7568445 iio: imu: st_lsm6dsx: wait for settling time in st_lsm6dsx_read_oneshot
c77f4ae7bd43 iio: accel: fxls8962af: add padding to regmap for SPI
ca9d1799be68 iio: adc: ad7124: fix mask used for setting AIN_BUFP & AIN_BUFM bits
0cb9b2f73c18 iio: adc: tsc2046: fix memory corruption by preventing array overflow
fe7347780298 iio: adc: men_z188_adc: Fix a resource leak in an error handling path
7bdf7d5f0cbd iio:imu:adis16480: fix buffering for devices with no burst mode
9000406481a5 tracing: Have traceon and traceoff trigger honor the instance
7e35b31e2cee tracing: Dump stacktrace trigger to the corresponding instance
c8b56e51aa91 RDMA/ib_srp: Fix a deadlock
e7a66dd26877 configfs: fix a race in configfs_{,un}register_subsystem()
a94879d41917 bnxt_en: Increase firmware message response DMA wait time
27440589551f RDMA/rtrs-clt: Move free_permit from free_clt to rtrs_clt_close
bf2cfad0c6e4 RDMA/rtrs-clt: Fix possible double free in error case
ff999198ec21 net-timestamp: convert sk->sk_tskey to atomic_t
d99dcdabc52a regmap-irq: Update interrupt clear register for proper reset
43221f446c02 gpio: rockchip: Reset int_bothedge when changing trigger
3c32405d6474 spi: spi-zynq-qspi: Fix a NULL pointer dereference in zynq_qspi_exec_mem_op()
2378f94c8d9b net/mlx5: Update log_max_qp value to be 17 at most
6e94d2863384 net/mlx5e: kTLS, Use CHECKSUM_UNNECESSARY for device-offloaded packets
95c1867704d0 net/mlx5e: MPLSoUDP decap, fix check for unsupported matches
d4d188487ddc net/mlx5: DR, Fix the threshold that defines when pool sync is initiated
9703a9e2f968 net/mlx5: Fix wrong limitation of metadata match on ecpf
f63548dd05ab net/mlx5: Fix possible deadlock on rule deletion
837b0d2e69e8 net/mlx5: DR, Don't allow match on IP w/o matching on full ethertype/ip_version
954997aeb8f2 ibmvnic: schedule failover only if vioctl fails
117a5a7f019e net/mlx5: DR, Cache STE shadow memory
6b6094db77e6 udp_tunnel: Fix end of loop test in udp_tunnel_nic_unregister()
4039254acbd4 surface: surface3_power: Fix battery readings on batteries without a serial number
062772d5cc8c net/smc: Use a mutex for locking "struct smc_pnettable"
e96e204ee6fa netfilter: nf_tables: fix memory leak during stateful obj update
7d258451d345 net: mdio-ipq4019: add delay after clock enable
9d8097caa732 nfp: flower: Fix a potential leak in nfp_tunnel_add_shared_mac()
8ffb8ac34488 netfilter: nf_tables: unregister flowtable hooks on netns exit
2e15fa8091de net: Force inlining of checksum functions in net/checksum.h
be2d38247657 net: ll_temac: check the return value of devm_kmalloc()
a95ea90deb30 net/sched: act_ct: Fix flow table lookup after ct clear or switching zones
d064d0c39405 drm/i915/dg2: Print PHY name properly on calibration error
eae86ab32069 drm/vc4: crtc: Fix runtime_pm reference counting
163e50b00530 net/mlx5e: Fix wrong return value on ioctl EEPROM query failure
143dafa60aa7 drm/edid: Always set RGB444
f941104aa116 openvswitch: Fix setting ipv6 fields causing hw csum failure
62ca33976ddc net: mv643xx_eth: process retval from of_get_mac_address
899e56a1ad43 gso: do not skip outer ip header in case of ipip and net_failover
0a9bc4179c30 tipc: Fix end of loop tests for list_for_each_entry()
8270e92a0e42 nvme: also mark passthrough-only namespaces ready in nvme_update_ns_info
6f2e0ae12aa8 net: __pskb_pull_tail() & pskb_carve_frag_list() drop_monitor friends
c718ea4e7382 io_uring: add a schedule point in io_add_buffers()
8628f489b749 bpf: Add schedule points in batch ops
976406c5cc00 bpf: Fix a bpf_timer initialization issue
755d4b744056 selftests: bpf: Check bpf_msg_push_data return value
5d75e374eb77 bpf: Do not try bpf_msg_push_data with len 0
719d1c2524c8 bpf: Fix crash due to incorrect copy_map_value
de49b0e1cf62 net/mlx5: Update the list of the PCI supported devices
9594d817b5eb ice: initialize local variable 'tlv'
b3615ea66b91 ice: check the return of ice_ptp_gettimex64
7e8da9964437 net/mlx5: Fix tc max supported prio for nic mode
7efe8499cb90 hwmon: Handle failure to register sensor with thermal zone correctly
86da2e4a1284 bnxt_en: Fix incorrect multicast rx mask setting when not requested
24931b4d199e bnxt_en: Fix offline ethtool selftest with RDMA enabled
f84bbb9893bd bnxt_en: Fix active FEC reporting to ethtool
1243861bc002 bnx2x: fix driver load from initrd
7c844c7af784 selftests: mptcp: be more conservative with cookie MPJ limits
f76977643339 selftests: mptcp: fix diag instability
f25ae162f4b3 mptcp: add mibs counter for ignored incoming options
150d1e06c4f1 mptcp: fix race in incoming ADD_ADDR option processing
40bbab9d4ed7 perf data: Fix double free in perf_session__delete()
05ef4f56173e perf evlist: Fix failed to use cpu list for uncore events
0b92b5f4c50b gpu: host1x: Always return syncpoint value when waiting
734d80b4365a Revert "i40e: Fix reset bw limit when DCB enabled with 1 TC"
1cfb33b338fb ping: remove pr_err from ping_lookup
2922aff43397 optee: use driver internal tee_context for some rpc
0efdc0360395 tee: export teedev_open() and teedev_close_context()
6c5d780469d6 netfilter: nf_tables_offload: incorrect flow offload action array size
144f3008524c netfilter: xt_socket: missing ifdef CONFIG_IP6_NF_IPTABLES dependency
cb2313b216be netfilter: xt_socket: fix a typo in socket_mt_destroy()
49909c9f8458 CDC-NCM: avoid overflow in sanity checking
4b77aab7ada7 USB: zaurus: support another broken Zaurus
9f2d61477990 sr9700: sanity check for packet length
0726fca0b6cc drm/i915: Fix bw atomic check when switching between SAGV vs. no SAGV
1b4445e09df8 drm/i915: Correctly populate use_sagv_wm for all pipes
7782e3c4e539 drm/i915: Widen the QGV point mask
8840d963e566 drm/amdgpu: do not enable asic reset for raven2
70b2413ac30c drm/amdgpu: disable MMHUB PG for Picasso
ea44fcee7e3d drm/amd: Check if ASPM is enabled from PCIe subsystem
c00e4c01f470 drm/amd/pm: fix some OEM SKU specific stability issues
211b67fb5a49 drm/amd/display: Protect update_bw_bounding_box FPU code.
4c3644b6c96c KVM: x86/mmu: make apf token non-zero to fix bug
759e5dc6554d parisc/unaligned: Fix ldw() and stw() unalignment handlers
bf0b3d61e002 parisc/unaligned: Fix fldd and fstd unaligned handlers on 32-bit kernel
960d474e451b vhost/vsock: don't check owner in vhost_vsock_stop() while releasing
af091cc27e37 selinux: fix misuse of mutex_is_locked()
0d773aaf5a90 io_uring: disallow modification of rsrc_data during quiesce
7c83437fb3ae io_uring: don't convert to jiffies for waiting on timeouts
6d20ff677349 clk: jz4725b: fix mmc0 clock gating
b80fbc20f334 btrfs: tree-checker: check item_size for dev_item
7e80846a9927 btrfs: tree-checker: check item_size for inode_item
a6d9692cadb9 x86/ptrace: Fix xfpregs_set()'s incorrect xmm clearing
ebeb7b73571e cgroup-v1: Correct privileges check in release_agent writes
ffed0bf6a63d cgroup/cpuset: Fix a race between cpuset_attach() and cpu hotplug
f89903ae99bd mm/filemap: Fix handling of THPs in generic_file_buffered_read()
1e7beca28299 Linux 5.15.25
5dcc36569734 lockdep: Correct lock_classes index mapping
c2df4c62a189 i2c: brcmstb: fix support for DSL and CM variants
ec7d87b64e78 ice: enable parsing IPSEC SPI headers for RSS
0b4ea5b72b17 scsi: qedi: Fix ABBA deadlock in qedi_process_tmf_resp() and qedi_process_cmd_cleanup_resp()
795feafb7234 copy_process(): Move fd_install() out of sighand->siglock critical section
3e41445287af dmaengine: ptdma: Fix the error handling path in pt_core_init()
8641ceb41f30 i2c: qcom-cci: don't put a device tree node before i2c_add_adapter()
7512f91bc313 i2c: qcom-cci: don't delete an unregistered adapter
052707279e70 tests: fix idmapped mount_setattr test
6b186a23af0d dmaengine: sh: rcar-dmac: Check for error num after dma_set_max_seg_size
4f3a0737992c dmaengine: stm32-dmamux: Fix PM disable depth imbalance in stm32_dmamux_probe
62e228e3e169 dmaengine: sh: rcar-dmac: Check for error num after setting mask
f4a821b098c5 net: sched: limit TC_ACT_REPEAT loops
2b2be95b6013 ucounts: Move RLIMIT_NPROC handling after set_user
b5f949d9a9c3 rlimit: Fix RLIMIT_NPROC enforcement failure caused by capability calls in set_user
114e9f141822 lib/iov_iter: initialize "flags" in new pipe_buffer
2d2d92cfcd3b ucounts: Enforce RLIMIT_NPROC not RLIMIT_NPROC+1
efc853d8ffd5 ucounts: Base set_cred_ucounts changes on the real user
f418bfabea43 ucounts: In set_cred_ucounts assume new->ucounts is non-NULL
d464492eb391 ucounts: Handle wrapping in is_ucounts_overlimit
e1e26697d032 EDAC: Fix calculation of returned address and next offset in edac_align_ptr()
e6da726eb67d scsi: lpfc: Fix pt2pt NVMe PRLI reject LOGO loop
3f2bc7f028f6 kconfig: fix failing to generate auto.conf
88289d56cb28 net: macb: Align the dma and coherent dma masks
b501b0f4e113 net: usb: qmi_wwan: Add support for Dell DW5829e
1ddab2ee8829 drm/amd/display: fix yellow carp wm clamping
929b2eddebc2 drm/amd/display: Cap pflip irqs per max otg number
3fd92f5be6c4 display/amd: decrease message verbosity about watermarks table failure
eb61dbb192b1 tracing: Fix tp_printk option related with tp_printk_stop_on_boot
893297940084 drm/rockchip: dw_hdmi: Do not leave clock enabled in error case
9921c866dc36 xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create
b5caba5efbab soc: aspeed: lpc-ctrl: Block error printing on probe defer cases
71720cae1cad ata: libata-core: Disable TRIM on M88V29
62542c5f18a1 kconfig: let 'shell' return enough output for deep path names
004458327695 ACPI: PM: Revert "Only mark EC GPE for wakeup on Intel systems"
246dfbc12539 mm: io_uring: allow oom-killer from io_uring_setup
54d69f072d5e selftests: fixup build warnings in pidfd / clone3 tests
fc6d187f2986 pidfd: fix test failure due to stack overflow on some arches
9659711c3248 arm64: dts: meson-g12: drop BL32 region from SEI510/SEI610
42b3092ccfb1 arm64: dts: meson-g12: add ATF BL32 reserved-memory region
de3b10b7ccc6 arm64: dts: meson-gx: add ATF BL32 reserved-memory region
5644bf688e4a ksmbd: don't align last entry offset in smb2 query directory
03dd71e0b9d8 ksmbd: fix same UniqueId for dot and dotdot entries
7afed8b3608e netfilter: conntrack: don't refresh sctp entries in closed state
f7b95b396700 x86/bug: Merge annotate_reachable() into _BUG_FLAGS() asm
c4315bffe5d0 irqchip/sifive-plic: Add missing thead,c900-plic match string
459b97c958c1 phy: phy-mtk-tphy: Fix duplicated argument in phy-mtk-tphy
993db6da4aec staging: vc04_services: Fix RCU dereference check
6a469cf7f372 phy: usb: Leave some clocks running during suspend
9492e1e53e7d ARM: OMAP2+: adjust the location of put_device() call in omapdss_init_of
1587d6b1e0b9 ARM: OMAP2+: hwmod: Add of_node_put() before break
5f45f96f4189 KVM: x86/pmu: Use AMD64_RAW_EVENT_MASK for PERF_TYPE_RAW
0d3b91d4d9f5 KVM: x86/pmu: Don't truncate the PerfEvtSeln MSR when creating a perf event
d8110cb2cf19 KVM: x86/pmu: Refactoring find_arch_event() to pmc_perf_hw_id()
c377e2ba78d3 Drivers: hv: vmbus: Fix memory leak in vmbus_add_channel_kobj
6936f02d14ed mtd: rawnand: ingenic: Fix missing put_device in ingenic_ecc_get
de0d102d0c8c HID: elo: fix memory leak in elo_probe
ffe36e3a991e mtd: rawnand: brcmnand: Fixed incorrect sub-page ECC status
9fd00a568663 mtd: phram: Prevent divide by zero bug in phram_setup()
3eb5185896a6 mtd: parsers: qcom: Fix missing free for pparts in cleanup
eb03cb6e03ff mtd: parsers: qcom: Fix kernel panic on skipped partition
502f86f5168a mtd: rawnand: qcom: Fix clock sequencing in qcom_nandc_probe()
e65450a12cf4 block: fix surprise removal for drivers calling blk_set_queue_dying
e1dce8e127fd tty: n_tty: do not look ahead for EOL character past the end of the buffer
21165833efa6 NFS: Do not report writeback errors in nfs_getattr()
f1322f10f60c NFS: LOOKUP_DIRECTORY is also ok with symlinks
f2238b4e83b6 NFS: Remove an incorrect revalidation in nfs4_update_changeattr_locked()
4b9c861a589e block/wbt: fix negative inflight counter when remove scsi device
a22b213139e0 ASoC: qcom: Actually clear DMA interrupt register for HDMI
ce3e1f82da73 ASoC: tas2770: Insert post reset delay
493c9e850677 scsi: ufs: Fix a deadlock in the error handler
2af0fdfbfb37 scsi: ufs: Remove dead code
84c109620fef tipc: fix wrong notification node addresses
727dd33561d5 smb3: fix snapshot mount option
4a7ec50298b1 mtd: rawnand: gpmi: don't leak PM reference in error path
45948a4b1fd0 powerpc/lib/sstep: fix 'ptesync' build error
0e0b5705640c powerpc/603: Fix boot failure with DEBUG_PAGEALLOC and KFENCE
68b8924f6038 cifs: fix set of group SID via NTSD xattrs
b4b8e7ae1346 ASoC: ops: Fix stereo change notifications in snd_soc_put_xr_sx()
312d8074bc99 ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw_sx()
ed1e33f121ea ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw_range()
edb43ae4ca8d ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw()
900d37d7d8ef ALSA: hda: Fix missing codec probe on Shenker Dock 15
f9d9574a8ba8 ALSA: hda: Fix regression on forced probe mask option
3b6134e35a60 ALSA: hda/realtek: Fix deadlock by COEF mutex
a562de3b700a ALSA: hda/realtek: Add quirk for Legion Y9000X 2019
2c9a7e11127e ALSA: usb-audio: revert to IMPLICIT_FB_FIXED_DEV for M-Audio FastTrack Ultra
7285daaca3cd arm64: Correct wrong label in macro __init_el2_gicv3
b04dcc00ae33 selftests/exec: Add non-regular to TEST_GEN_PROGS
bf4161eb7e3b perf bpf: Defer freeing string after possible strlen() on it
e8ba5b039eea net: bridge: multicast: notify switchdev driver whenever MC processing gets disabled
6b1c9f99c2e6 dpaa2-eth: Initialize mutex used in one step timestamping path
d3c9dd36ec24 dpaa2-switch: fix default return of dpaa2_switch_flower_parse_mirror_key
1a16f047946b tipc: fix wrong publisher node address in link publications
868366d627e4 atl1c: fix tx timeout after link flap on Mikrotik 10/25G NIC
0e6727589aea net: phy: mediatek: remove PHY mode check on MT7531
7de7ba7a8bd4 net/smc: Avoid overwriting the copies of clcsock callback functions
f8ba235c4927 libsubcmd: Fix use-after-free for realloc(..., 0)
4c9f207810b7 bonding: fix data-races around agg_select_timer
9bb363ba014f net_sched: add __rcu annotation to netdev->qdisc
3077976a752a drop_monitor: fix data-race in dropmon_net_event / trace_napi_poll_hit
bdb6df9bedb3 bonding: force carrier update when releasing slave
b9ff5667e116 ping: fix the dif and sdif check in ping_lookup
392c42424ae0 net: ieee802154: ca8210: Fix lifs/sifs periods
4b27446b538d net: dsa: lan9303: add VLAN IDs to master device
860c5c275ed2 net: dsa: lan9303: handle hwaccel VLAN tags
df2495f329b0 net: dsa: lantiq_gswip: fix use after free in gswip_remove()
2566a89b9e16 net: dsa: mv88e6xxx: flush switchdev FDB workqueue before removing VLAN
d8905a499af4 net: dsa: lan9303: fix reset on probe
241e633cb379 cfg80211: fix race in netlink owner interface destruction
c4caf72a42d3 brcmfmac: firmware: Fix crash in brcm_alt_fw_path
00fb850c8a1a mac80211: mlme: check for null after calling kmemdup
61e8fc49a9f8 Revert "net: ethernet: bgmac: Use devm_platform_ioremap_resource_byname"
d51cd648dbca ipv6: per-netns exclusive flowlabel checks
3e11ef1903cf ipv6: mcast: use rcu-safe version of ipv6_get_lladdr()
9ed25183e6d4 ipv6: fix data-race in fib6_info_hw_flags_set / fib6_purge_rt
db333693b052 ipv4: fix data races in fib_alias_hw_flags_set
5dc653ef0785 selftests: netfilter: disable rp_filter on router
2035d13eb12e netfilter: nft_synproxy: unregister hooks on init error path
a1d9e1f14207 selftests: netfilter: fix exit value for nft_concat_range
b10f4b00e10a iwlwifi: mvm: don't send SAR GEO command for 3160 devices
c448b0541abf iwlwifi: pcie: gen2: fix locking when "HW not ready"
78cd5c0acfed iwlwifi: pcie: fix locking when "HW not ready"
79bdf56cc55d drm/i915/ttm: tweak priority hint selection
e4778408c04d drm/i915/gvt: Make DRM_I915_GVT depend on X86
02f7d38533ba drm/cma-helper: Set VM_DONTEXPAND for mmap
787468ee7a43 vsock: remove vsock from connected table when connect is interrupted by a signal
fe802b3fe763 drm/i915: Fix mbus join config lookup
34f5556ddf2b drm/i915: Fix dbuf slice config lookup
d006f2fe7d62 drm/i915/opregion: check port number bounds for SWSCI display power state
960c8a55016b drm/amdgpu: skipping SDMA hw_init and hw_fini for S0ix.
3851046599c1 drm/amd/pm: correct the sequence of sending gpu reset msg
a1596e0277ed drm/atomic: Don't pollute crtc_state->mode_blob with error pointers
68f3a4252e97 drm/radeon: Fix backlight control on iMac 12,1
ddd46059f7d9 iwlwifi: fix use-after-free
8209fede7d58 KVM: x86: nSVM: mark vmcb01 as dirty when restoring SMM saved state
74b426bea4f7 KVM: x86: nSVM: fix potential NULL derefernce on nested migration
417b87cb2311 KVM: x86: SVM: don't passthrough SMAP/SMEP/PKE bits in !NPT && !gCR0.PG case
cd14c7342df5 KVM: x86: nSVM/nVMX: set nested_run_pending on VM entry which is a result of RSM
b5c86e750388 KVM: x86/xen: Fix runstate updates to be atomic when preempting vCPU
b16817a6de31 random: wake up /dev/random writers after zap
effdcc250584 gcc-plugins/stackleak: Use noinstr in favor of notrace
0a01326fddf6 Revert "module, async: async_synchronize_full() on module init iff async is used"
769a6b33ec9f x86/Xen: streamline (and fix) PV CPU enumeration
0fec53c5dca8 drm/amdgpu: fix logic inversion in check
38108fd273ac drm/amd: Only run s3 or s0ix if system is configured properly
72808bb42c87 drm/amd: add support to check whether the system is set to s3
0ceba4d64fee net: sparx5: do not refer to skb after passing it on
646952b2210f nvme-rdma: fix possible use-after-free in transport error_recovery work
5e42fca37ccc nvme-tcp: fix possible use-after-free in transport error_recovery work
e043fb5a0336 nvme: fix a possible use-after-free in controller reset during load
64519c9e32ac drm/amd: Warn users about potential s0ix problems
d9d93f32534a scsi: pm8001: Fix use-after-free for aborted SSP/STP sas_task
3c334cdfd949 scsi: pm8001: Fix use-after-free for aborted TMF sas_task
f2c58667ffcd scsi: core: Reallocate device's budget map on queue depth change
46756cc81099 kselftest: Fix vdso_test_abi return status
3801775a07b5 scsi: pm80xx: Fix double completion for SATA devices
64d6f76958c5 quota: make dquot_quota_sync return errors from ->sync_fs
38f22c730c38 vfs: make freeze_super abort when sync_filesystem returns error
5d3e1af11e07 pinctrl: bcm63xx: fix unmet dependency on REGMAP for GPIO_REGMAP
4c958f0c5714 ax25: improve the incomplete fix to avoid UAF and NPD bugs
bced176da6e0 selftests: skip mincore.check_file_mmap when fs lacks needed support
7d10b671a052 selftests: openat2: Skip testcases that fail with EOPNOTSUPP
04542fd44dd7 selftests: openat2: Add missing dependency in Makefile
a613105e07b9 selftests: openat2: Print also errno in failure messages
16d28de2f361 selftests/zram: Adapt the situation that /dev/zram0 is being used
9172557bdf13 selftests/zram01.sh: Fix compression ratio calculation
586ec7c0992a selftests/zram: Skip max_comp_streams interface on newer kernel
23b2a2538240 net: ieee802154: at86rf230: Stop leaking skb's
c99068d6839c kselftest: signal all child processes
eb3b35385558 selftests: rtc: Increase test timeout so that all tests run
ec1d9bb08850 kunit: tool: Import missing importlib.abc
fdad28ff1d1d platform/x86: ISST: Fix possible circular locking dependency detected
54688a550924 platform/x86: touchscreen_dmi: Add info for the RWC NANOTE P8 AY07J 2-in-1
7e234c47fd2f btrfs: send: in case of IO error log it
94e76b372817 parisc: Add ioread64_lo_hi() and iowrite64_lo_hi()
c7a4b1d155d3 PCI: hv: Fix NUMA node assignment when kernel boots with custom NUMA topology
7da6ba116cdc HID: amd_sfh: Correct the structure field name
6b75f5c18f38 HID: amd_sfh: Increase sensor command timeout
bdbc65eb77ee HID: i2c-hid: goodix: Fix a lockdep splat
6451058f2720 HID: amd_sfh: Add illuminance mask to limit ALS max value
b3dc4b9d3ca6 mm: don't try to NUMA-migrate COW pages that have other uses
f3ff5f75d8f6 mmc: block: fix read single on recovery logic
5b6e29b9306c parisc: Fix sglist access in ccio-dma.c
8c8e949ae81e parisc: Fix data TLB miss in sba_unmap_sg
9413b2e2bdb7 parisc: Drop __init from map_pages declaration
35c955b5a45e serial: parisc: GSC: fix build when IOSAPIC is not set
7a25d8249971 parisc: Show error if wrong 32/64-bit compiler is being used
9750d45760c8 Revert "svm: Add warning message for AVIC IPI invalid target"
65ad2f6191a6 HID:Add support for UGTABLET WP5540
06bd0f157e70 scsi: lpfc: Fix mailbox command failure during driver initialization
ae6ca6343929 btrfs: zoned: cache reported zone during mount
a8dd0cfa3779 fs/proc: task_mmu.c: don't read mapcount for migration entry
f0a60c7c4ede drm/nouveau/pmu/gm200-: use alternate falcon reset sequence
a0ebea480bb3 Linux 5.15.24
65ab30f6a695 iommu: Fix potential use-after-free during probe
7969fe91c983 perf: Fix list corruption in perf_cgroup_switch()
8ebcd2c680e1 arm64: dts: imx8mq: fix lcdif port node
48f54966f7f7 MIPS: octeon: Fix missed PTR->PTR_WD conversion
cd4494f8685c scsi: lpfc: Reduce log messages seen after firmware download
6737f9a95a42 scsi: lpfc: Remove NVMe support if kernel has NVME_FC disabled
c8e9c2b52c4c Makefile.extrawarn: Move -Wunaligned-access to W=1
24645c47880b x86/sgx: Silence softlockup detection when releasing large enclaves
30de73bebf2b hwmon: (dell-smm) Speed up setting of fan speed
16cde074b00c bus: mhi: pci_generic: Add mru_default for Cinterion MV31-W
2c1d20e34669 bus: mhi: pci_generic: Add mru_default for Foxconn SDX55
fe990b7bf6ac s390/cio: verify the driver availability for path_event call
56ca18dd5483 signal: HANDLER_EXIT should clear SIGNAL_UNKILLABLE
f7a56fcca2e4 seccomp: Invalidate seccomp mode to catch death failures
956cf21cd1ae mm: memcg: synchronize objcg lists with a dedicated spinlock
b7f54894aa75 iio: buffer: Fix file related error handling in IIO_BUFFER_GET_FD_IOCTL
7a360e546ad9 phy: ti: Fix missing sentinel for clk_div_table
12431425c466 speakup-dectlk: Restore pitch setting
9ae3dad535a9 USB: serial: cp210x: add CPI Bulk Coin Recycler id
7e5108a22f19 USB: serial: cp210x: add NCR Retail IO box id
8d226d39d052 USB: serial: ch341: add support for GW Instek USB2.0-Serial devices
2ea4f4612cb9 USB: serial: option: add ZTE MF286D modem
24311a9fc426 USB: serial: ftdi_sio: add support for Brainboxes US-159/235/320
2330b2ba6465 usb: raw-gadget: fix handling of dual-direction-capable endpoints
33d2a0c1ec20 usb: gadget: f_uac2: Define specific wTerminalType
2da3b0ab54fb usb: gadget: rndis: check size of RNDIS_MSG_SET command
3e33e5c67cb9 USB: gadget: validate interface OS descriptor requests
d3d5bfb3a279 usb: gadget: udc: renesas_usb3: Fix host to USB_ROLE_NONE transition
8d2b04dad380 usb: dwc3: gadget: Prevent core from processing stale TRBs
93feb2bdf6d4 usb: ulpi: Call of_node_put correctly
fc50f42e4616 usb: ulpi: Move of_node_put to ulpi_dev_release
ffd0393adcdc net: usb: ax88179_178a: Fix out-of-bounds accesses in RX fixup
f4e72ad027b0 Revert "usb: dwc2: drd: fix soft connect when gadget is unconfigured"
a6ef1bda0efd usb: dwc2: drd: fix soft connect when gadget is unconfigured
9a5f471ae380 eeprom: ee1004: limit i2c reads to I2C_SMBUS_BLOCK_MAX
decb36e9a9f0 n_tty: wake up poll(POLLRDNORM) on receiving data
573321db328b vt_ioctl: add array_index_nospec to VT_ACTIVATE
ffe54289b02e vt_ioctl: fix array_index_nospec in vt_setactivate
f916181692cb net: dsa: mv88e6xxx: fix use-after-free in mv88e6xxx_mdios_unregister
d98ba26a4ba9 net: mscc: ocelot: fix mutex lock error during ethtool stats read
41a8c548d47b ice: Avoid RTNL lock when re-creating auxiliary device
f9daedc3ab8f ice: Fix KASAN error in LAG NETDEV_UNREGISTER handler
52eb5c86ede4 ice: fix IPIP and SIT TSO offload
efd399e12c1b ice: fix an error code in ice_cfg_phy_fec()
12e067a4d98f dpaa2-eth: unregister the netdev before disconnecting from the PHY
29b25d5f8f30 mptcp: netlink: process IPv6 addrs in creating listening sockets
dcd1c4663469 drm/amd/pm: fix hwmon node of power1_label create issue
4b24ef1d03cf net: amd-xgbe: disable interrupts during pci removal
489d9fa78e59 tipc: rate limit warning for received illegal binding update
bb04b5527aff net: mdio: aspeed: Add missing MODULE_DEVICE_TABLE
b8ac37e57044 veth: fix races around rq->rx_notify_masked
fdcb263fa5cd net: fix a memleak when uncloning an skb dst and its metadata
f1ab1ba32d36 net: do not keep the dst cache when uncloning an skb dst and its metadata
6cbe14cc0eb6 nfp: flower: fix ida_idx not being released
3cab045c99db ipmr,ip6mr: acquire RTNL before calling ip[6]mr_free_table() on failure path
b5652bc50dde net: dsa: lantiq_gswip: don't use devres for mdiobus
46b747232329 net: dsa: mt7530: fix kernel bug in mdiobus_free() when unbinding
8cda7577a0b4 net: dsa: felix: don't use devres for mdiobus
caabb5f64f5c net: dsa: bcm_sf2: don't use devres for mdiobus
aae1c6a1d3d6 net: dsa: ar9331: register the mdiobus under devres
8b626d45127d net: dsa: mv88e6xxx: don't use devres for mdiobus
147540cae264 bonding: pair enable_port with slave_arr_updates
3523167d6658 fbcon: Avoid 'cap' set but not used warning
ef2cb1fc0365 gpio: sifive: use the correct register to read output values
d9daa2b76dde gpiolib: Never return internal error codes to user space
e799974e7cbb ACPI: PM: s2idle: Cancel wakeup before dispatching EC GPE
ab142ea5d502 drm/panel: simple: Assign data from panel_dpi_probe() correctly
9e3dd49145f3 ixgbevf: Require large buffers for build_skb on 82599VF
51eece9f8a1d arm64: dts: meson-sm1-odroid: fix boot loop after reboot
57154c07ed62 arm64: dts: meson-sm1-bananapi-m5: fix wrong GPIO domain for GPIOE_2
162f8057192c arm64: dts: meson-sm1-odroid: use correct enable-gpio pin for tf-io regulator
006dc5815bb3 arm64: dts: meson-g12b-odroid-n2: fix typo 'dio2133'
c5ee4cbd0f1b netfilter: ctnetlink: disable helper autoassign
7f486bed5ec0 net: sparx5: Fix get_stat64 crash in tcpdump
e4382d0a39f9 misc: fastrpc: avoid double fput() on failed usercopy
f5e8733d93cf drm/vc4: hdmi: Allow DBLCLK modes even if horz timing is odd.
3d2bc21a6768 NFS: Don't skip directory entries when doing uncached readdir
557302faea9c NFS: Don't overfill uncached readdir pages
00181d6c9665 gpio: aggregator: Fix calling into sleeping GPIO controllers
ddcb149ce10a phy: dphy: Correct clk_pre parameter
72a8aee863af usb: f_fs: Fix use-after-free for epfile
0ed2f9a97a92 arm64: dts: imx8mq: fix mipi_csi bidirectional port numbers
af6a1d60a13c ARM: dts: imx7ulp: Fix 'assigned-clocks-parents' typo
94b16ca86ab6 phy: stm32: fix a refcount leak in stm32_usbphyc_pll_enable()
541ec7bfeed3 phy: xilinx: zynqmp: Fix bus width setting for SGMII
58c42f415b81 ARM: dts: imx6qdl-udoo: Properly describe the SD card detect
025c6eef1490 staging: fbtft: Fix error path in fbtft_driver_module_init()
c0ad2c2cac1b phy: broadcom: Kconfig: Fix PHY_BRCM_USB config option
86cdc3060d41 ARM: dts: meson8b: Fix the UART device-tree schema validation
5253b083f0a8 ARM: dts: meson8: Fix the UART device-tree schema validation
00d135070efa ARM: dts: meson: Fix the UART compatible strings
c22bddf61db0 ARM: dts: Fix timer regression for beagleboard revision c
ac14a51c3169 drm/i915: Populate pipe dbuf slices more accurately during readout
8d6a31b83cdd drm/i915: Allow !join_mbus cases for adlp+ dbuf configuration
05ffa30c99f7 drm/rockchip: vop: Correct RK3399 VOP register fields
c1af59449d80 drm/amdgpu/display: change pipe policy for DCN 2.0
0e546bb1324e PM: s2idle: ACPI: Fix wakeup interrupts handling
65aabd296665 ACPI/IORT: Check node revision for PMCG resources
64c37c05f7ad nvme-tcp: fix bogus request completion when failing to send AER
7740eb27c38e ARM: socfpga: fix missing RESET_CONTROLLER
ccdd7956cd28 ARM: dts: Fix boot regression on Skomer
14917a884f70 ARM: dts: imx23-evk: Remove MX23_PAD_SSP1_DETECT from hog group
4134396f99d2 gfs2: Fix gfs2_release for non-writers regression
71f46f3d1bf2 riscv: eliminate unreliable __builtin_frame_address(1)
efe220337181 riscv: cpu-hotplug: clear cpu from numa map when teardown
7486227fa47a riscv: fix build with binutils 2.38
67398d2c7b8c KVM: x86: Report deprecated x87 features in supported CPUID
c09a83ae3b2e KVM: VMX: Set vmcs.PENDING_DBG.BS on #DB in STI/MOVSS blocking shadow
f7da3276e087 KVM: SVM: Don't kill SEV guest if SMAP erratum triggers in usermode
11f9427d01a3 KVM: nVMX: Also filter MSR_IA32_VMX_TRUE_PINBASED_CTLS when eVMCS
a3c43649600b KVM: nVMX: eVMCS: Filter out VM_EXIT_SAVE_VMX_PREEMPTION_TIMER
d44af3ad2a21 KVM: eventfd: Fix false positive RCU usage warning
a85f3ea1407f net: stmmac: dwmac-sun8i: use return val of readl_poll_timeout()
a3ba49c129ed MIPS: Fix build error due to PTR used in more places
96f91a877a5c nvme-pci: add the IGNORE_DEV_SUBNQN quirk for Intel P4500/P4600 SSDs
a3486ef99a3b perf: Always wake the parent event
8981a8fd900e usb: dwc2: gadget: don't try to disable ep0 in dwc2_hsotg_suspend
a277422a8d97 drm/amd/display: Correct MPC split policy for DCN301
dc5769c7b063 PM: hibernate: Remove register_nosave_region_late()
50fe79589c14 net: stmmac: reduce unnecessary wakeups from eee sw timer
6207f35c213f scsi: myrs: Fix crash in error case
0c8d27c2aae5 scsi: ufs: Treat link loss as fatal error
f0a91d892310 scsi: ufs: Use generic error code in ufshcd_set_dev_pwr_mode()
cb26e94204d7 scsi: pm8001: Fix bogus FW crash for maxcpus=1
1c22df15cf40 scsi: qedf: Change context reset messages to ratelimited
6be8eaad75ca scsi: qedf: Fix refcount issue when LOGO is received during TMF
1f53bbf27a87 scsi: qedf: Add stag_work to all the vports
83f31dab46b2 scsi: ufs: ufshcd-pltfrm: Check the return value of devm_kstrdup()
4f786e8f18c3 scsi: target: iscsi: Make sure the np under each tpg is unique
43ae0ccc4d27 powerpc/fixmap: Fix VM debug warning on unmap
fa693cfd8fe4 net: sched: Clarify error message when qdisc kind is unknown
9696125fb3ca drm: panel-orientation-quirks: Add quirk for the 1Netbook OneXPlayer
770d1ba9a820 drm/vc4: Fix deadlock on DSI device attach error
85008bde411d sched: Avoid double preemption in __cond_resched_*lock*()
ec903b6daa58 x86/perf: Avoid warning for Arch LBR without XSAVE
ef5685971abd perf/x86/rapl: fix AMD event handling
3f4e05eb46ae irqchip/realtek-rtl: Service all pending interrupts
4403233b8775 sunrpc: Fix potential race conditions in rpc_sysfs_xprt_state_change()
4b22aa42bd4d net/sunrpc: fix reference count leaks in rpc_sysfs_xprt_state_change
5ca123c91a64 SUNRPC allow for unspecified transport time in rpc_clnt_add_xprt
c5ae18fa8d71 NFSv4 handle port presence in fs_location server string
be67be6a1a8f NFSv4 expose nfs_parse_server_name function
6f2836341d8a NFSv4.1 query for fs_location attr on a new file system
2df6a47a131a NFSv4 store server support for fs_location attribute
0c5d3bfb2967 NFSv4 remove zero number of fs_locations entries error check
3cb5b317901e NFSv4.1: Fix uninitialised variable in devicenotify
58967a232ab3 nfs: nfs4clinet: check the return value of kstrdup()
bbf647ecebc0 NFSv4 only print the label when its queried
38ae938701e7 NFS: change nfs_access_get_cached to only report the mask
78c28fdf1685 tracing: Propagate is_signed to expression
8fdaa9a6ace2 thermal/drivers/int340x: Fix RFIM mailbox write commands
5abd95ff5d6a thermal: int340x: Limit Kconfig to 64-bit
786293f61b4b thermal/drivers/int340x: processor_thermal: Suppot 64 bit RFIM responses
e9b0301939d1 thermal/drivers/int340x: Improve the tcc offset saving for suspend/resume
c6eff5c42771 NFSD: Fix the behavior of READ near OFFSET_MAX
c9a8571dd893 NFSD: Fix offset type in I/O trace points
01c3ae81eef4 NFSD: Clamp WRITE offsets
8e0ecaf7a7e5 NFSD: Fix ia_size underflow
37f2d2cd8ead NFSD: Fix NFSv3 SETATTR/CREATE's handling of large file sizes
535e301ea677 NFS: Fix initialisation of nfs_client cl_flags field
6b42352bea56 net: phy: marvell: Fix MDI-x polarity setting in 88e1118-compatible PHYs
9338c17e2c63 net: phy: marvell: Fix RGMII Tx/Rx delays setting in 88e1121-compatible PHYs
540dff311c9a can: isotp: fix error path in isotp_sendmsg() to unlock wait queue
f90cc68f9f4b can: isotp: fix potential CAN frame reception race in isotp_rcv()
dbe7bf9b6fc8 mmc: core: Wait for command setting 'Power Off Notification' bit to complete
222c071fadd6 mmc: sdhci-of-esdhc: Check for error num after setting mask
cf4570ca8ed6 ima: Do not print policy rule with inactive LSM labels
5389ea64af1e ima: Allow template selection with ima_template[_fmt]= after ima_hash=
20805cdf95af ima: Remove ima_policy file before directory
0838d6d68182 ima: fix reference leak in asymmetric_verify()
739b7bb886b5 integrity: check the return value of audit_log_start()
c1d3ac0c115f Linux 5.15.23
1f1788616157 tipc: improve size validations for received domain records
40eb05e5e72b crypto: api - Move cryptomgr soft dependency into algapi
ab32ea3ad0d5 ksmbd: fix SMB 3.11 posix extension mount failure
14f880ea779e KVM: s390: Return error on SIDA memop on normal guest
c28ee73fea29 arm64: Add Cortex-A510 CPU part definition
af0e6c49438b moxart: fix potential use-after-free on remove path
0bf5b7cc9848 Linux 5.15.22
3853c4e27149 selftests: netfilter: check stateless nat udp checksum fixup
b84753200e79 selftests: nft_concat_range: add test for reload with no element add/del
7c0ee51fe998 gpio: mpc8xxx: Fix an ignored error return from platform_get_irq()
3d631a1af0d7 gpio: idt3243x: Fix an ignored error return from platform_get_irq()
ff43b75eea32 tools include UAPI: Sync sound/asound.h copy with the kernel sources
f5afdefe188e cgroup/cpuset: Fix "suspicious RCU usage" lockdep warning
e4a7e1418ab7 net: dsa: mt7530: make NET_DSA_MT7530 select MEDIATEK_GE_PHY
f187daed64e1 ext4: fix incorrect type issue during replay_del_range
1b6762ecdf3c ext4: fix error handling in ext4_fc_record_modified_inode()
ce38bb98cec7 ext4: fix error handling in ext4_restore_inline_data()
869cb287d893 ext4: modify the logic of ext4_mb_new_blocks_simple
0cb4480bc4f4 ext4: prevent used blocks from being allocated during fast commit replay
d583cb17ee50 EDAC/xgene: Fix deferred probing
c6c04bb32b73 EDAC/altera: Fix deferred probing
587dadb43c9a x86/perf: Default set FREEZE_ON_SMI for all
e83d941fd344 perf/x86/intel/pt: Fix crash with stop filters in single-range mode
0f4dcaeaf6ae perf stat: Fix display of grouped aliased events
64e133ce280b perf: Copy perf_event_attr::sig_data on modification
9a60e92b76d6 kvm/arm64: rework guest entry logic
83071e2dad68 kvm: add guest_state_{enter,exit}_irqoff()
aba976f96bbc rtc: cmos: Evaluate century appropriate
3b5fcdfab628 e1000e: Separate ADP board type from TGP
b3a4d501e91c tools/resolve_btfids: Do not print any commands when building silently
7620887a7779 selftests: futex: Use variable MAKE instead of make
c5610494fd45 selftests/exec: Remove pipe from TEST_GEN_FILES
5e457aeab52a bpf: Use VM_MAP instead of VM_ALLOC for ringbuf
62ab929a8f6b gve: fix the wrong AdminQ buffer queue index check
3611f4f91e11 nfsd: nfsd4_setclientid_confirm mistakenly expires confirmed client.
2f5a1ac68bdf scsi: bnx2fc: Make bnx2fc_recv_frame() mp safe
0bb4c6b9ecff pinctrl: bcm2835: Fix a few error paths
3cdcfa3c526e pinctrl: intel: fix unexpected interrupt
ca63438dc5c4 pinctrl: intel: Fix a glitch when updating IRQ flags on a preconfigured line
d4036172ca3b pinctrl: sunxi: Fix H616 I2S3 pin data
f00012885e70 ASoC: codecs: wcd938x: fix return value of mixer put function
b54ff87a1567 ASoC: codecs: lpass-rx-macro: fix sidetone register offsets
aa7152f9f117 ASoC: codecs: wcd938x: fix incorrect used of portid
baead410e5db ASoC: max9759: fix underflow in speaker_gain_control_put()
263b947aa4c1 ASoC: cpcap: Check for NULL pointer after calling of_get_child_by_name
841e6a6b831b ASoC: simple-card: fix probe failure on platform component
c6cf5b5078db ASoC: xilinx: xlnx_formatter_pcm: Make buffer bytes multiple of period bytes
9d44f73df070 ASoC: fsl: Add missing error handling in pcm030_fabric_probe
8a15ac1786c9 drm/amd: avoid suspend on dGPUs w/ s2idle support when runtime PM enabled
5cba71707f0a drm/i915/overlay: Prevent divide by zero bugs in scaling
b2c91bee7970 drm/kmb: Fix for build errors with Warray-bounds
a84854bc230a net: stmmac: ensure PTP time register reads are consistent
27ea34ead54a net: stmmac: dump gmac4 DMA registers correctly
0ced878998f2 net: macsec: Verify that send_sci is on when setting Tx sci explicitly
e7a0b3a0806d net: macsec: Fix offload support for NETDEV_UNREGISTER event
2967b08119d5 net: stmmac: properly handle with runtime pm in stmmac_dvr_remove()
6358e093547c net: stmmac: dwmac-visconti: No change to ETHER_CLOCK_SEL for unexpected speed request.
0ef6049f6649 net/smc: Forward wakeup to smc socket waitqueue after fallback
ea8ecd2d65b4 net: ieee802154: Return meaningful error codes from the netlink helpers
566bf0e1c761 netfilter: nft_reject_bridge: Fix for missing reply from prerouting
94cd597e20ed net: ieee802154: ca8210: Stop leaking skb's
6c6b19a99131 net: ieee802154: mcr20a: Fix lifs/sifs periods
29e60b77a449 net: ieee802154: hwsim: Ensure proper channel selection at probe time
bb7a226780e2 IB/cm: Release previously acquired reference counter in the cm_id_priv
40e20ba90390 IB/hfi1: Fix tstats alloc and dealloc
dd00b4f8f768 spi: uniphier: fix reference count leak in uniphier_spi_probe()
66606d329d61 spi: meson-spicc: add IRQ check in meson_spicc_probe
7352f2c26482 spi: mediatek: Avoid NULL pointer crash in interrupt
101a1cf8af55 spi: bcm-qspi: check for valid cs before applying chip select
ca1f48c30e5b iommu/amd: Fix loop timeout issue in iommu_ga_log_enable()
336d096b62bd iommu/vt-d: Fix potential memory leak in intel_setup_irq_remapping()
e4b74b89862c ALSA: hda: Skip codec shutdown in case the codec is not registered
0c5c64335657 ALSA: hda: Fix signedness of sscanf() arguments
c2a91f1ef38a ALSA: usb-audio: initialize variables that could ignore errors
63c69c93d978 RDMA/mlx4: Don't continue event handler after memory allocation failure
035ea99c537d RDMA/siw: Fix broken RDMA Read Fence/Resume logic.
7d9ad6f9f38f IB/rdmavt: Validate remote_addr during loopback atomic tests
2989ba9532ba RDMA/siw: Fix refcounting leak in siw_create_qp()
2923948ffe08 RDMA/ucma: Protect mc during concurrent multicast leaves
7715682f357d RDMA/cma: Use correct address when leaving multicast group
0452c3dc851b KVM: arm64: Stop handle_exit() from handling HVC twice when an SError occurs
e1e852746997 KVM: arm64: Avoid consuming a stale esr value when SError occur
aff6657f5243 Revert "ASoC: mediatek: Check for error clk pointer"
9908c759a17e mptcp: fix msk traversal in mptcp_nl_cmd_set_flags()
778283dc2840 fbcon: Add option to enable legacy hardware acceleration
2a2629db4248 Revert "fbcon: Disable accelerated scrolling"
a3dd4d2682f2 IB/hfi1: Fix AIP early init panic
24f8e12d965b dma-buf: heaps: Fix potential spectre v1 gadget
f576721152fd block: bio-integrity: Advance seed correctly for larger interval sizes
a5389c80992f mm/kmemleak: avoid scanning potential huge holes
65a4863a4ed5 mm/pgtable: define pte_index so that preprocessor could recognize it
120973e64db9 mm/debug_vm_pgtable: remove pte entry from the page table
90391ac6888e nvme-fabrics: fix state check in nvmf_ctlr_matches_baseopts()
2093ecf557e7 drm/amd/display: Force link_rate as LINK_RATE_RBR2 for 2018 15" Apple Retina panels
7ff0ed88e4eb drm/amd/display: watermark latencies is not enough on DCN31
4f4c77ad5a13 drm/amd/pm: correct the MGpuFanBoost support for Beige Goby
39ac3945d966 drm/i915/adlp: Fix TypeC PHY-ready status readout
d877e814a62b drm/nouveau: fix off by one in BIOS boundary checking
b9e9f848c82b Revert "fs/9p: search open fids first"
a7b717fa1516 btrfs: fix use-after-free after failure to create a snapshot
89d4cca583fc btrfs: fix deadlock between quota disable and qgroup rescan worker
f4b2736eeb62 btrfs: don't start transaction for scrub if the fs is mounted read-only
7ccf5849bef7 ALSA: hda/realtek: Fix silent output on Gigabyte X570 Aorus Xtreme after reboot from Windows
9fc509f806a5 ALSA: hda/realtek: Fix silent output on Gigabyte X570S Aorus Master (newer chipset)
b3625b0017a4 ALSA: hda/realtek: Add missing fixup-model entry for Gigabyte X570 ALC1220 quirks
730f823e3c68 ALSA: hda/realtek: Add quirk for ASUS GU603
586d71ddee6c ALSA: hda: realtek: Fix race at concurrent COEF updates
0e629052f013 ALSA: hda: Fix UAF of leds class devs at unbinding
303e89f94b66 ALSA: usb-audio: Correct quirk for VF0770
b0a7836ecf13 ASoC: ops: Reject out of bounds values in snd_soc_put_xr_sx()
e8e07c5e25a2 ASoC: ops: Reject out of bounds values in snd_soc_put_volsw_sx()
9e8895f1b3d4 ASoC: ops: Reject out of bounds values in snd_soc_put_volsw()
10007bd96b6c ASoC: hdmi-codec: Fix OOB memory accesses
0b8b02903173 spi: stm32-qspi: Update spi registering
45ba0a5fa0a6 ipc/sem: do not sleep with a spin lock held
b8d9e0aec158 audit: improve audit queue handling when "audit=1" on cmdline
70caa32e6d81 selinux: fix double free of cond_list on error paths
d63d077fc446 drm/i915: Disable DSB usage for now
f01ed5defb04 Linux 5.15.21
2b2f53331b3a Revert "drm/vc4: hdmi: Make sure the device is powered with CEC" again
a03d2f9f82bd Revert "drm/vc4: hdmi: Make sure the device is powered with CEC"
(From meta-yocto rev: b608714c3fc60c43cb3dc6d1b1c04ffc5a6c106c)
(From meta-yocto rev: 7cbffb2065312ab8d2164b509c4d0cdb848283bd)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9abfc74ab404ada55fc058e8bc685e56fa132f0c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The autobuilder sstate was corrupted via incorrect equiavlences caused by
the security fix to git and the poor interaction that had with SCM version
checks under fakeroot/pseudo. Bump the versions to enable a clean slate
to work off.
(From OE-Core rev: 69f2d0822462e77d09b4781dcec41a0747e4d387)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3b6672730372e130d4d72b683fc3150911964745)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Currently the signatures for do_packagedata don't reflect whether PRServ
was active or not. This means that if you have mxiing of PRServ usage and
non PRServ usage against the same sstate cache it can rarely become
corrupted with one referencing the other.
This likely doesn't happen in general but does on the autobuilder as PRServ
is tested. Add in some variables to ensure the binary state of PRServ being
enabled or disabled is tracked (but not the server value). We continue to
assume one PRServ is used per sstate cache.
(From OE-Core rev: 4c2f429d6876c29b17931daa039c4899aacd7234)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit dd660e5c3fb74f7c4b7b8e863f7143066ae22813)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Turns out this doesn't actually work, as git doesn't respect the environment
when reading the safe.directory configuration variable.
This reverts commit d4a5862ce8.
(From OE-Core rev: 73087e3c4bf6792c37f0a9d8d006c09856d36b13)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e28dd48ffb84c8bb4356d889b70a4b876c8bbaf3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This is horrible but I'm running out of better ideas. We hit circular reference
issues which we were trying to avoid in the core HOSTTOOLS code. When building
the eSDK, there can be two copies of the script.
Therefore assume git will never be in a directory called scripts. This
fixes eSDK build failures.
(From OE-Core rev: b9dcaa76b3274ced1e4b9e2ca33f778e8cd50032)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 27de610ac30d4c81352efc794df7e9b1060f7a68)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The previous minimially invasive git intercept simply isn't enough. For example,
meson used in the igt-gpu-tools recipe hardcodes the path to git in the configure
step so at install time, changing PATH has no effect.
There are lots of interesting things we could do to try and avoid problems but
making the git intercept and dropping fakeroot privs for git global is probably
the least worst solution at this point. It will add slight overhead to git calls
but we don't make many so the overall impact is likely minimal.
(From OE-Core rev: 07f282fb94a5a7c0a3fad451c844e5b26074c744)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit af27c81eaf68ee681dcd9456a74cca6a9ab40bf6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We'd like to intercept git calls but we don't want circular references
and HOSTTOOLS currently sets them up. Tweak to avoid them.
(From OE-Core rev: 9f4acb8d8b47349e7a4adbb25842a94c0947469a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 52c37e133fa55846aca2248ffcf3a10648dbb8d7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The fix for CVE-2022-24765 in git[1] breaks any use of git inside
pseudo. Add a simple test case to oe-selftest to verify that at least
basic uses of git work fine under pseudo.
[1] 8959555cee
(From OE-Core rev: 3fafd22233be8961801fa541969383b5b8444dee)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 46822268040a23dbb81f71fe35aee8c2663a31f6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
When creating the manifest and the testdata.json links, if the link
name is equal to the output name the link is not created, otherwise
it is. This prevents a link-to-self in the first case.
(From OE-Core rev: e69a1533dfb8ceb5b91610f2ab8b3da575fcc36e)
Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bed63756c56f296ff3d5a7eef66e978bd19f1008)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
An if statement now checks if the link and output path are
the same, if they are then the link is not created,
otherwise it is.
(From OE-Core rev: 2fd7f3b7dc964b59b268dd4a34761f9f71f61c25)
Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 2f024c0236c4806f0e59e4ce51a42f6b80fdf1b3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Create generate_json_report including all the code used to generate the JSON
manifest file.
Add to cve_save_summary_handler the ability to create the summary in JSON format.
(From OE-Core rev: 8a79c476706b25e5c707c65b4e46b6e940874bd6)
Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit f2987891d315466b7ef180ecce81d15320ce8487)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Add a new variable CVE_DB_UPDATE_INTERVAL allowing the user to set
the database update interval.
- a positive value sets an interval (in seconds)
- a zero ("0") forces the database update
(From OE-Core rev: 0007dd0edb39123201a46886a4e71d001c118ddf)
Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fe7bc6f16184d5ebdb1dd914b6dcb75c9e5e0c9c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The update of the NVD database was expected to happen once per hour.
However, the database file date changes only if the content was actually
updated. In practice, the check worked for the first hour after the
new download.
As the NVD database changes usually only once a day, we can just
update it less frequently.
(From OE-Core rev: 27b1cb83ec666cc91930f2a7b5a6282fde77c730)
Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 35bccdedadeaba820d58b69fe74ce5e4c1f577e3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The only part of the cve-check task which needs files is the patch
examination, and typically these patches are local so fetch isn't needed.
(From OE-Core rev: a76b642736d78cd4dec0ae264da6d0ffd4e9aaf7)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2c9b3186d3b7c18cbea239ab9b06e85b7c243b54)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Kernel commit:
commit 3d4b396a616d0d67bf95d6823ad1197f6247292e
Author: Christian Brauner <christian.brauner@ubuntu.com>
Date: Mon Oct 11 15:37:04 2021 +0200
landlock: Use square brackets around "landlock-ruleset"
commit aea0b9f2486da8497f35c7114b764bf55e17c7ea upstream.
Make the name of the anon inode fd "[landlock-ruleset]" instead of
"landlock-ruleset". This is minor but most anon inode fds already
carry square brackets around their name:
[eventfd]
[eventpoll]
[fanotify]
[fscontext]
[io_uring]
[pidfd]
[signalfd]
[timerfd]
[userfaultfd]
For the sake of consistency lets do the same for the landlock-ruleset anon
inode fd that comes with landlock. We did the same in
1cdc415f1083 ("uapi, fsopen: use square brackets around "fscontext" [ver #2]")
for the new mount api.
Cc: linux-security-module@vger.kernel.org
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
Link: https://lore.kernel.org/r/20211011133704.1704369-1-brauner@kernel.org
Cc: stable@vger.kernel.org
Signed-off-by: Mickaël Salaün <mic@linux.microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Changed the format of the landlock tracing. We need to update the strace
expected string to match.
Upstream-Status: Submitted [https://lists.strace.io/pipermail/strace-devel/2022-April/011064.html]
(From OE-Core rev: 0268bc1ed04212acdb5b08e57334ed367042c1a2)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bf7d885aef06f6208533dd5fab45ee8e92d6d6d7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
During the cleanup/refactoring of qemuarm* we dropped a PCI option
that is required for graphical boot. The configuration is fixed to
create a separate fragment, which just enabled the minimim and we
include it into qemuarma15 standard/preempt-rt.
Integrating the following commit(s) to linux-yocto/5.15:
fcf48627ea5 qemuarma15: include pci-of-generic support
(From OE-Core rev: ccd27ea8b8e179b7eb0526ed1416ca674c9d295e)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 375366bd16619b14f718f96a9235d0936cae97ac)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
45451e8015a9 Linux 5.15.36
bb906d15a99e arm64: dts: qcom: add IPA qcom,qmp property
1ea01e64632f block/compat_ioctl: fix range check in BLKGETSIZE
6a3c609feb11 spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and controller
b1b8f39c2475 jbd2: fix a potential race while discarding reserved buffers after an abort
2e25c46c6eef netfilter: nft_ct: fix use after free when attaching zone template
2b273d1fd18e ext4: force overhead calculation if the s_overhead_cluster makes no sense
52ca84a3edd1 ext4: fix overhead calculation to account for the reserved gdt blocks
6b952563934c ext4, doc: fix incorrect h_reserved size
9b90003771e5 ext4: limit length to bitmap_maxbytes - blocksize in punch_hole
e3912775b476 ext4: fix use-after-free in ext4_search_dir
8bb5676b49d3 ext4: fix symlink file size not match to file content
ba50ea456f49 ext4: fix fallocate to use file_modified to update permissions consistently
67e4860eeed8 netfilter: conntrack: avoid useless indirection during conntrack destruction
bcba40bd36d7 netfilter: conntrack: convert to refcount_t api
4bbd693d9f0a KVM: SVM: Flush when freeing encrypted pages even on SME_COHERENT CPUs
8b2da9690489 KVM: nVMX: Defer APICv updates while L2 is active until L1 is active
a41b3243a6de KVM: x86: Pend KVM_REQ_APICV_UPDATE during vCPU creation to fix a race
2b4417acd3c6 KVM: x86/pmu: Update AMD PMC sample period to fix guest NMI-watchdog
87d95ff0ca27 arm_pmu: Validate single/group leader events
4d98fbb26683 ARC: entry: fix syscall_trace_exit argument
7b69c07beb23 e1000e: Fix possible overflow in LTR decoding
73a0b4c5c0bd ASoC: soc-dapm: fix two incorrect uses of list iterator
571a67b0d8a4 gpio: Request interrupts after IRQ is initialized
e411af98013d openvswitch: fix OOB access in reserve_sfa_size()
bac4cadeb718 xtensa: fix a7 clobbering in coprocessor context load/store
91335ca9ebe7 xtensa: patch_text: Fixup last cpu should be master
49952e31e50d perf report: Set PERF_SAMPLE_DATA_SRC bit for Arm SPE event
04ecea282b42 perf script: Always allow field 'data_src' for auxtrace
a92335b4b189 powerpc/perf: Fix power10 event alternatives
7a56867c5ef3 powerpc/perf: Fix power9 event alternatives
53c4a9ff225b drm/vc4: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage
9dc46d2e3723 KVM: PPC: Fix TCE handling for VFIO
76614b111867 drm/panel/raspberrypi-touchscreen: Initialise the bridge in prepare
7981351a916e drm/panel/raspberrypi-touchscreen: Avoid NULL deref if not initialised
56637084e8a5 perf/core: Fix perf_mmap fail when CONFIG_PERF_USE_VMALLOC enabled
b1b929468229 sched/pelt: Fix attach_entity_load_avg() corner case
914473a07088 scsi: sr: Do not leak information in ioctl
f0cfae3e0d3a Input: omap4-keypad - fix pm_runtime_get_sync() error checking
232541989a1a net: atlantic: invert deep par in pm functions, preventing null derefs
6b8af9f96749 dmaengine: imx-sdma: fix init of uart scripts
1a8d1665cff1 dma: at_xdmac: fix a missing check on list iterator
d10a711d4db6 ata: pata_marvell: Check the 'bmdma_addr' beforing reading
48b2ab1a960a mm/mmu_notifier.c: fix race in mmu_interval_notifier_remove()
41ba681c6373 oom_kill.c: futex: delay the OOM reaper to allow time for proper futex cleanup
9dcb65cdf312 mm, hugetlb: allow for "high" userspace addresses
07bdd207774c memcg: sync flush only if periodic flush is delayed
9c71b29d55d4 mm/memory-failure.c: skip huge_zero_page in memory_failure()
b81291922f8b EDAC/synopsys: Read the error count from the correct register
87dd813bd2c3 nvme-pci: disable namespace identifiers for Qemu controllers
dab2f477e15a nvme-pci: disable namespace identifiers for the MAXIO MAP1002/1202
25f37ed22a9e nvme: add a quirk to disable namespace identifiers
4a9f9f1791f3 VFS: filename_create(): fix incorrect intent.
773ca67ffc96 stat: fix inconsistency between struct stat and struct compat_stat
80c713a894c3 scsi: qedi: Fix failed disconnect handling
c7f4f3016fea scsi: iscsi: Fix NOP handling during conn recovery
e4efe868aa14 scsi: iscsi: Merge suspend fields
740411ee2f94 scsi: iscsi: Release endpoint ID when its freed
123a52eb610d net: macb: Restart tx only if queue pointer is lagging
bc663ff8cae3 drm/msm/mdp5: check the return of kzalloc()
5fe864539caf dpaa_eth: Fix missing of_node_put in dpaa_get_ts_info()
48e1db2c3d42 brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant
e25b350e2521 mt76: Fix undefined behavior due to shift overflowing the constant
a7a651d5a525 net: atlantic: Avoid out-of-bounds indexing
213330bafd02 cifs: Check the IOCB_DIRECT flag, not O_DIRECT
6085e24fd972 vxlan: fix error return code in vxlan_fdb_append
32fe43df71c5 arm64: dts: imx: Fix imx8*-var-som touchscreen property sizes
f0ba965e4783 drm/msm/disp: check the return value of kzalloc()
b78d40339568 ALSA: usb-audio: Fix undefined behavior due to shift overflowing the constant
9d441c2e2ad1 platform/x86: samsung-laptop: Fix an unsigned comparison which can never be negative
4426116b2e02 reset: tegra-bpmp: Restore Handle errors in BPMP response
a6ec9d95c205 reset: renesas: Check return value of reset_control_deassert()
70fa727835f9 ARM: vexpress/spc: Avoid negative array index when !SMP
d3acd3f9f80e arm64: mm: fix p?d_leaf()
ec9cb700cbf7 selftests: mlxsw: vxlan_flooding: Prevent flooding of unwanted packets
6b9a418d3850 dmaengine: idxd: skip clearing device context when device is read-only
49047fa486b3 dmaengine: idxd: add RO check for wq max_transfer_size write
6c30e099b978 dmaengine: idxd: add RO check for wq max_batch_size write
e83acf93919b net: stmmac: Use readl_poll_timeout_atomic() in atomic state
79957134ca1d drm/i915/display/psr: Unset enable_psr2_sel_fetch if other checks in intel_psr2_config_valid() fails
f3552c37593a netlink: reset network and mac headers in netlink_dump()
93581ae1f980 net: mscc: ocelot: fix broken IP multicast flooding
6a5ca57d5acd net: dsa: hellcreek: Calculate checksums in tagger
40ebaf7365b0 can: isotp: stop timeout monitoring when no first frame was sent
652a5405396d ipv6: make ip6_rt_gc_expire an atomic_t
d23fe66eb7b0 l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using netdev_master_upper_dev_get_rcu
58bdbd121a34 net/sched: cls_u32: fix possible leak in u32_init_knode()
1b4fb109cc53 net: restore alpha order to Ethernet devices in config
d5049ef1f671 ip6_gre: Fix skb_under_panic in __gre6_xmit()
3cc2f6b71eb6 ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit()
ab26f1136757 net/packet: fix packet_sock xmit return value checking
b355ca6a915f net/smc: Fix sock leak when release after smc_shutdown()
8fe1bf23c96b rxrpc: Restore removed timer deletion
09da8cf94588 ALSA: hda/hdmi: fix warning about PCM count when used with SOF
c7c71b3e4764 igc: Fix suspending when PTM is active
da323d0d6aaa igc: Fix BUG: scheduling while atomic
b3ce7d3a1742 igc: Fix infinite loop in release_swfw_sync
8920a03a3a15 spi: cadence-quadspi: fix incorrect supports_op() return value
a583f2f3c878 esp: limit skb_page_frag_refill use to a single page
76900a136b1a spi: spi-mtk-nor: initialize spi controller after resume
84e77e72367f dmaengine: dw-edma: Fix unaligned 64bit access
d18fb19c1c8e dmaengine: mediatek:Fix PM usage reference leak of mtk_uart_apdma_alloc_chan_resources
8932d9ee4b9f dmaengine: imx-sdma: Fix error checking in sdma_event_remap
a8be4586352b dmaengine: idxd: fix device cleanup on disable
6168532a08ef ASoC: codecs: wcd934x: do not switch off SIDO Buck when codec is in use
053bd9604f05 ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component
9a4c63e7332c ASoC: rk817: Use devm_clk_get() in rk817_platform_probe
bc15442cc99f ASoC: topology: Correct error handling in soc_tplg_dapm_widget_create()
bc7d0133181e ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek
236785649ad2 ALSA: hda/realtek: Add quirk for Clevo NP70PNP
aaa22e5b526d ALSA: usb-audio: Clear MIDI port active flag after draining
ba9e9a794fd1 net/sched: cls_u32: fix netns refcount changes in u32_change()
8dfec6e0a62d scsi: ufs: core: scsi_get_lba() error fix
c2d0cdf8ad06 gfs2: assign rgrp glock before compute_bitstructs
a52e73bef254 mm, kfence: support kmem_dump_obj() for KFENCE objects
3876c574e4cc perf tools: Fix segfault accessing sample_id xyarray
77a467983bff mm: page_alloc: fix building error on -Werror=array-compare
3177d047e58a etherdevice: Adjust ether_addr* prototypes to silence -Wstringop-overead
3f7b1a87ac75 arm64/mm: drop HAVE_ARCH_PFN_VALID
c01430cf5b87 dma-mapping: remove bogus test for pfn_valid from dma_map_resource
155ae0547cb8 xfs: return errors in xfs_fs_sync_fs
935745abcf4c vfs: make sync_filesystem return errors from ->sync_fs
6eb927ee189f block: simplify the block device syncing code
7877e7a5a52e block: remove __sync_blockdev
4b7617ae04de fs: remove __sync_filesystem
(From OE-Core rev: f967efa7f28d67c8f47e879fb96696b29bd7621b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 02149163c8643cec5fd8ef9c7b8a2f5af06519ec)
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:
4eba9348d3e2 Revert "Revert "fbdev: Hot-unplug firmware fb devices on forced removal""
The revert of commit [fbdev: Hot-unplug firmware fb devices on forced
removal] was done to fix powerpc fbdev issues. Upstream went in a
different direction, which means that our fbdev routines have conflicts
with -stable updates.
The fix for the fbdev is in -stable, so we drob our reverted commit,
such that 5.15 builds again, and fbdev is functional.
(From OE-Core rev: f648a6b4a4f5c4e99ea93e802b2ca7284f52f72d)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 6da0cde02dd6a315a7eb34cb0bc691cf622eba05)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
gcc12 generates some warnings with arch/powerpc, and we know that
these warnings are understood/non-fatal at runtime.
This fragment allows testing to continue, while upstream powerpc
looks at removing warnings.
We only enable it for 5.10/5.15 standard kernels for now, since
this gets us enough coverage to continue working with gcc12.
(From OE-Core rev: b52d50e00d00df3a3a8263a6b5ef04e22a9c93fb)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 992d9d41642981152a387fe59733cc6a77ea3528)
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:
5df6d1b00f95 jbd2: fix use-after-free of transaction_t race
2d83e8196487 jbd2: refactor wait logic for transaction updates into a common function
(From OE-Core rev: f900829f96b7592ce026067e5154e2f1f55a9d4e)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3a0d2acf249717416226c34b6147e5499adbda15)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
81d8d30c35ed Linux 5.15.35
85f25bb9a005 ax25: Fix UAF bugs in ax25 timers
43c107021d91 ax25: Fix NULL pointer dereferences in ax25 timers
da6509fba636 ax25: fix NPD bug in ax25_disconnect
1bf8946d5826 ax25: fix UAF bug in ax25_send_control()
452ae92b9906 ax25: Fix refcount leaks caused by ax25_cb_del()
b982492ec3a1 ax25: fix UAF bugs of net_device caused by rebinding operation
bc706d89199b ax25: fix reference count leaks of ax25_dev
9af0fd5c4453 ax25: add refcount in ax25_dev to avoid UAF bugs
de6a76eea645 cpufreq: intel_pstate: ITMT support for overclocked system
74d23d422556 net: ipa: fix a build dependency
1648c7b450d8 soc: qcom: aoss: Fix missing put_device call in qmp_get
d712aea3cd81 cpu/hotplug: Remove the 'cpu' member of cpuhp_cpu_state
14785927a1d4 drm/i915: Sunset igpu legacy mmap support based on GRAPHICS_VER_FULL
4ef9951d0252 dma-direct: avoid redundant memory sync for swiotlb
111becd63e37 timers: Fix warning condition in __run_timers()
cbdd7a33c533 dt-bindings: net: snps: remove duplicate name
83a4c1080e09 i2c: pasemi: Wait for write xfers to finish
44981e4cde68 smp: Fix offline cpu check in flush_smp_call_function_queue()
2f345bb14ad4 i2c: dev: check return value when calling dev_set_name()
6b4bf97587ef dm integrity: fix memory corruption when tag_size is less than digest size
0940795c6834 ARM: davinci: da850-evm: Avoid NULL pointer dereference
68a38b07f125 tick/nohz: Use WARN_ON_ONCE() to prevent console saturation
c11ef9ded22e genirq/affinity: Consider that CPUs on nodes can be unbalanced
c61d929944c9 x86/tsx: Disable TSX development mode at boot
aaf27fcaefc1 x86/tsx: Use MSR_TSX_CTRL to clear CPUID bits
2dd7d2eddf8e drm/amdgpu: Enable gfxoff quirk on MacBook Pro
804c096d640e drm/amd/display: don't ignore alpha property on pre-multiplied mode
adee01bbf6cb ipv6: fix panic when forwarding a pkt with no in6 dev
cab64cb82fe1 nl80211: correctly check NL80211_ATTR_REG_ALPHA2 size
63038f6e96a7 ALSA: pcm: Test for "silence" field in struct "pcm_format_data"
a53062c94b8c ALSA: hda/realtek: add quirk for Lenovo Thinkpad X12 speakers
0349df521528 ALSA: hda/realtek: Add quirk for Clevo PD50PNT
3680b48533ae btrfs: mark resumed async balance as writing
252db93fd0bd btrfs: fix root ref counts in error handling in btrfs_get_root_ref
9b81c2c147e1 ath9k: Fix usage of driver-private space in tx_info
3386927f436e ath9k: Properly clear TX status area before reporting to mac80211
7a509a9f2bb7 cifs: verify that tcon is valid before dereference in cifs_kill_sb
bd17422b9b67 gcc-plugins: latent_entropy: use /dev/urandom
05d1824a7fb4 memory: renesas-rpc-if: fix platform-device leak in error path
f5e13d700a4d SUNRPC: Fix NFSD's request deferral on RDMA transports
00715427ea77 KVM: x86/mmu: Resolve nx_huge_pages when kvm.ko is loaded
70ea5e7b38c3 mm: kmemleak: take a full lowmem check in kmemleak_*_phys()
12ba1d38115a mm: fix unexpected zeroed page mapping with zram swap
bb7645c33869 mm, page_alloc: fix build_zonerefs_node()
b6d17c67885a mm/secretmem: fix panic when growing a memfd_secret
4cdf0e7a5be8 perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant
b8ed0f7531f3 io_uring: use nospec annotation for more indexes
5218d5cc0283 io_uring: zero tag on rsrc removal
efb020924a71 drivers: net: slip: fix NPD bug in sl_tx_timeout()
e455d7510db7 scsi: megaraid_sas: Target with invalid LUN ID is deleted during scan
f1933d9ee745 scsi: mvsas: Add PCI ID of RocketRaid 2640
389f37e46bdd scsi: mpt3sas: Fail reset operation if config request timed out
184b4fad0872 drbd: set QUEUE_FLAG_STABLE_WRITES
6a03581ccffa drm/amd/display: Fix allocate_mst_payload assert on resume
ac2eb310af05 drm/amd/display: Revert FEC check in validation
eab8e585840f drm/amd/display: Enable power gating before init_pipes
d8860f1f9e41 spi: cadence-quadspi: fix protocol setup for non-1-1-X operations
6d48df738272 myri10ge: fix an incorrect free for skb in myri10ge_sw_tso
b416898442f2 net: usb: aqc111: Fix out-of-bounds accesses in RX fixup
c3f86aef97cf Drivers: hv: balloon: Disable balloon and hot-add accordingly
1c9fdb9587e0 net: axienet: setup mdio unconditionally
61dd8bef80c2 tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry
ed2711c696ce arm64: alternatives: mark patch_alternative() as `noinstr`
cfd24b14eb2d regulator: wm8994: Add an off-on delay for WM8994 variant
86d1cdf56fc5 gpu: ipu-v3: Fix dev_dbg frequency output
4583205048ae ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs
6eecc4811a47 net: micrel: fix KS8851_MLL Kconfig
9e60a788a3f7 scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024
026083cb43a4 scsi: lpfc: Fix queue failures when recovering from PCI parity error
b7f3b5d70c83 scsi: target: tcmu: Fix possible page UAF
44f95a5aae99 Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer
92a3499933c1 PCI: hv: Propagate coherence from VMbus device to PCI device
1b576e81d31b Drivers: hv: vmbus: Deactivate sysctl_record_panic_msg by default in isolated guests
f2658d5966bc drm/amdkfd: Check for potential null return of kmalloc_array()
9f0fabf30b48 drm/amdgpu/vcn: improve vcn dpg stop procedure
25efb191d86b drm/amdkfd: Fix Incorrect VMIDs passed to HWS
7a3bc11a4034 drm/amd/display: Update VTEM Infopacket definition
92951699a5f1 drm/amd/display: FEC check in timing validation
b054e8183fbd drm/amd/display: fix audio format not updated after edid updated
37bc29a44538 drm/amdgpu/gmc: use PCI BARs for APUs in passthrough
5a3b56a4a1c7 drm/amdgpu: conduct a proper cleanup of PDB bo
01dcda701fef btrfs: do not warn for free space inode in cow_file_range
bb93369f93b5 btrfs: fix fallocate to use file_modified to update permissions consistently
6dded62e5aa6 drm/amd: Add USBC connector ID
3e67054c339c block: fix offset/size check in bio_trim()
279018a01b08 net: bcmgenet: Revert "Use stronger register read/writes to assure ordering"
b8c0f6d1b04c vfio/pci: Fix vf_token mechanism when device-specific VF drivers are used
5fda973f0ece dm mpath: only use ktime_get_ns() in historical selector
9901b07ba42b cifs: potential buffer overflow in handling symlinks
9ded5ae40f4f nfc: nci: add flush_workqueue to prevent uaf
331c99ee8dcb net: ftgmac100: access hardware register after clock ready
8f79ce226ad2 macvlan: Fix leaking skb in source mode with nodst option
8e86fba13479 perf tools: Fix misleading add event PMU debug message
1665758b4bfd ALSA: usb-audio: Limit max buffer and period sizes per time
6b38c5722610 ALSA: usb-audio: Increase max buffer size
7399ed8e6a8d testing/selftests/mqueue: Fix mq_perf_tests to free the allocated cpu set
9947548d9cef io_uring: verify pad field is 0 in io_get_ext_arg
7a7c9f9de961 io_uring: verify that resv2 is 0 in io_uring_rsrc_update2
22aa1597f462 io_uring: move io_uring_rsrc_update2 validation
cb981d5c7511 ALSA: mtpav: Don't call card private_free at probe error path
872e5fa0781f ALSA: ad1889: Fix the missing snd_card_free() call at probe error
96aceacda8d2 netfilter: nf_tables: nft_parse_register can return a negative value
90c153ca45da sctp: Initialize daddr on peeled off socket
50d46b5ce004 scsi: iscsi: Fix unbound endpoint error handling
578616ac3d87 scsi: iscsi: Fix conn cleanup and stop race during iscsid restart
485780af7ef1 scsi: iscsi: Fix endpoint reuse regression
cbd4f4e40944 scsi: iscsi: Fix offload conn cleanup when iscsid restarts
cc0082d45de1 scsi: iscsi: Move iscsi_ep_disconnect()
d6f6f945e850 scsi: pm80xx: Enable upper inbound, outbound queues
b02c509ceef4 scsi: pm80xx: Mask and unmask upper interrupt vectors 32-63
3a523807f014 net/smc: Fix NULL pointer dereference in smc_pnet_find_ib()
66b3107a4a06 drm/msm/dp: add fail safe mode outside of event_mutex context
815006c33391 drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init()
a6549b364be4 drm/msm: Fix range size vs end confusion
1c86b7ea63ff netfilter: nft_socket: make cgroup match work in input too
5a52384a5134 cfg80211: hold bss_lock while updating nontrans_list
d5be67ecbeff net/sched: taprio: Check if socket flags are valid
62a48383ebe2 net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link
72f9c15854b0 net: dsa: felix: suppress -EPROBE_DEFER errors
13faa76cf572 net/sched: fix initialization order when updating chain 0 head
4c979e6fcec8 mlxsw: i2c: Fix initialization error flow
152b813d8ba5 net: mdio: don't defer probe forever if PHY IRQ provider is missing
675e7d3086d0 cifs: release cached dentries only if mount is complete
d40cf3492277 gpiolib: acpi: use correct format characters
93940fc4cb81 veth: Ensure eth header is in skb's linear part
de8a332c86a7 net/sched: flower: fix parsing of ethertype following VLAN header
726ae7300fcc SUNRPC: Fix the svc_deferred_event trace class
ec2ab59b9e66 media: rockchip/rga: do proper error checking in probe
b0d8a9eb3239 firmware: arm_scmi: Fix sorting of retrieved clock rates
e2da8f9ce3ea Revert "ath11k: mesh: add support for 256 bitmap in blockack frames in 11ax"
9f029cb2c92e memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe
e7b1992b0722 firmware: arm_scmi: Remove clear channel call on the TX channel
77ffc38e577d drm/msm: Add missing put_task_struct() in debugfs path
aa4845194b9d ALSA: nm256: Don't call card private_free at probe error path
425c83e2898d ALSA: usb-audio: Cap upper limits of buffer/period bytes for implicit fb
3bbd4850d957 ALSA: via82xx: Fix the missing snd_card_free() call at probe error
56e44ff13d84 ALSA: sonicvibes: Fix the missing snd_card_free() call at probe error
73229d7cb836 ALSA: sc6000: Fix the missing snd_card_free() call at probe error
df03ce487e1b ALSA: rme96: Fix the missing snd_card_free() call at probe error
ef4c35339414 ALSA: rme9652: Fix the missing snd_card_free() call at probe error
4efa63663c36 ALSA: rme32: Fix the missing snd_card_free() call at probe error
bb94f5d98511 ALSA: riptide: Fix the missing snd_card_free() call at probe error
4ecd10217df6 ALSA: oxygen: Fix the missing snd_card_free() call at probe error
30b86477daaa ALSA: maestro3: Fix the missing snd_card_free() call at probe error
5fbb73cb1208 ALSA: lx6464es: Fix the missing snd_card_free() call at probe error
0651442d22e2 ALSA: lola: Fix the missing snd_card_free() call at probe error
0bec8b8a57de ALSA: korg1212: Fix the missing snd_card_free() call at probe error
d9ac5256de1f ALSA: intel_hdmi: Fix the missing snd_card_free() call at probe error
e87b8d0ba455 ALSA: intel8x0: Fix the missing snd_card_free() call at probe error
547c9af67b4e ALSA: ice1724: Fix the missing snd_card_free() call at probe error
141abcbf902a ALSA: hdspm: Fix the missing snd_card_free() call at probe error
f006a4bcf8bb ALSA: hdsp: Fix the missing snd_card_free() call at probe error
85515309293b ALSA: galaxy: Fix the missing snd_card_free() call at probe error
841e8f8dd21f ALSA: fm801: Fix the missing snd_card_free() call at probe error
3a738f1b3ffd ALSA: es1968: Fix the missing snd_card_free() call at probe error
d3c6ac7a051c ALSA: es1938: Fix the missing snd_card_free() call at probe error
20b35ba7aa2f ALSA: ens137x: Fix the missing snd_card_free() call at probe error
0d52c09f0c17 ALSA: emu10k1x: Fix the missing snd_card_free() call at probe error
2a2a75ebdbd4 ALSA: echoaudio: Fix the missing snd_card_free() call at probe error
648e89e9de29 ALSA: cs5535audio: Fix the missing snd_card_free() call at probe error
9decc5bfd173 ALSA: cs4281: Fix the missing snd_card_free() call at probe error
2dde47610757 ALSA: cmipci: Fix the missing snd_card_free() call at probe error
f98476228801 ALSA: ca0106: Fix the missing snd_card_free() call at probe error
e5a54e236f70 ALSA: bt87x: Fix the missing snd_card_free() call at probe error
935629ba096e ALSA: azt3328: Fix the missing snd_card_free() call at probe error
3a943321c362 ALSA: aw2: Fix the missing snd_card_free() call at probe error
811a92b866a0 ALSA: au88x0: Fix the missing snd_card_free() call at probe error
ea61c1bd582b ALSA: atiixp: Fix the missing snd_card_free() call at probe error
007a9b5554e1 ALSA: als4000: Fix the missing snd_card_free() call at probe error
291d9e5e94d0 ALSA: als300: Fix the missing snd_card_free() call at probe error
5bc156409025 ALSA: ali5451: Fix the missing snd_card_free() call at probe error
cfa98d6c41e0 ALSA: sis7019: Fix the missing error handling
1479bdea76dd ALSA: core: Add snd_card_free_on_error() helper
07cacfd9d9dc btrfs: release correct delalloc amount in direct IO write path
8ff8bdb8c92d net: ipa: request IPA register values be retained
587ced6b8cf3 dt-bindings: net: qcom,ipa: add optional qcom,qmp property
7883df73fd59 soc: qcom: aoss: Expose send for generic usecase
ec13aa4e0085 btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups()
ed0e951463ea btrfs: remove no longer used counter when reading data page
6308ab54c8ec btrfs: remove unused parameter nr_pages in add_ra_bio_pages()
ff810f85ed3f ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40
7cad1c40ef91 ACPI: processor idle: Allow playing dead in C3 state
631473adaaef ACPI: processor idle: Check for architectural support for LPI
5b13295ac584 cpuidle: PSCI: Move the `has_lpi` check to the beginning of the function
9873fe0f3857 hamradio: remove needs_free_netdev to avoid UAF
c799c18a287e hamradio: defer 6pack kfree after unregister_netdev
8e663865f528 drm/amd/display: Fix p-state allow debug index on dcn31
685a19fa6ae9 drm/amd/display: Add pstate verification and recovery for DCN31
1b86fc15ba6d Linux 5.15.34
c9ea4fb1f3f3 stacktrace: move filter_irq_stacks() to kernel/stacktrace.c
fddb88bd266f powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit
68cea1e243b8 static_call: Don't make __static_call_return0 static
429f413ed83f mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning
8fe51495efff irqchip/gic, gic-v3: Prevent GSI to SGI translations
69943af22a32 powerpc/64: Fix build failure with allyesconfig in book3s_64_entry.S
7b5d60323f90 irqchip/gic-v4: Wait for GICR_VPENDBASER.Dirty to clear before descheduling
f4f8b6d8490e x86,static_call: Fix __static_call_return0 for i386
ff6505766565 sched: Teach the forced-newidle balancer about CPU affinity limitation.
f399f38eda57 x86/bug: Prevent shadowing in __WARN_FLAGS
469eed08becd Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb()
f5e59185b033 mm: don't skip swap entry even if zap_details specified
4693fce5a5d4 selftests: cgroup: Test open-time cgroup namespace usage for migration checks
47802775bc11 selftests: cgroup: Test open-time credential usage for migration checks
e326f218de1f selftests: cgroup: Make cg_create() use 0755 for permission instead of 0644
33db9912ff7c ubsan: remove CONFIG_UBSAN_OBJECT_SIZE
f1607e13ed71 Revert "net/mlx5: Accept devlink user input after driver initialization complete"
226b4327ef5c KVM: avoid NULL pointer dereference in kvm_dirty_ring_push
104bfa23a001 dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error"
3c3a8e56553e tools build: Use $(shell ) instead of `` to get embedded libperl's ccopts
fbe722d48b8e tools build: Filter out options and warnings not supported by clang
9b2b01e36741 perf python: Fix probing for some clang command line options
03044b841406 perf build: Don't use -ffat-lto-objects in the python feature test when building with clang-13
3b14aa053181 Revert "nbd: fix possible overflow on 'first_minor' in nbd_dev_add()"
5d69622eb036 SUNRPC: Don't call connect() more than once on a TCP socket
22174e8ce8ac rtc: mc146818-lib: fix signedness bug in mc146818_get_time()
9e46f7319549 selftests/bpf: Fix u8 narrow load checks for bpf_sk_lookup remote_port
0c64645e6373 bpf: Make remote_port field in struct bpf_sk_lookup 16-bit wide
e2ff1d653069 Revert "selftests: net: Add tls config dependency for tls selftests"
7f48521172fb net/smc: send directly on setting TCP_NODELAY
20633216ded0 KVM: SVM: Allow AVIC support on system w/ physical APIC ID > 255
b536cf3eb6f9 drm/amdgpu: don't use BACO for reset in S3
3c8902bbf2ab drm/amdkfd: Create file descriptor after client is added to smi_clients list
588393cdae7f drm/nouveau/pmu: Add missing callbacks for Tegra devices
6a5d209898a6 drm/amdgpu/vcn: Fix the register setting for vcn1
155338be5d90 drm/amdgpu/smu10: fix SoC/fclk units in auto mode
0115e4f2f6bc drm/amdgpu/display: change pipe policy for DCN 2.1
28dc1503a9d3 drm/panel: ili9341: fix optional regulator handling
b911702a0105 SUNRPC: Prevent immediate close+reconnect
a551e6629247 amd/display: set backlight only if required
2388f826cdc9 fbdev: Fix unregistering of framebuffers without device
7218a789abb3 irqchip/gic-v3: Fix GICR_CTLR.RWP polling
fcf9ccf9d26a perf/core: Inherit event_caps
0309f053ce47 perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator
8a05a6952ecd ata: sata_dwc_460ex: Fix crash due to OOB write
136c21ce8e01 perf/x86/intel: Don't extend the pseudo-encoding to GP counters
983a759640bf x86/mm/tlb: Revert retpoline avoidance approach
2f67341e5bce x86/msi: Fix msi message data shadow struct
0912cf021fb5 gpio: Restrict usage of GPIO chip irq members before initialization
9ca11bd8222a RDMA/hfi1: Fix use-after-free bug for mm struct
fa7cc2df9505 arm64: patch_text: Fixup last cpu should be master
90012c6748d3 spi: core: add dma_map_dev for __spi_unmap_msg()
887366faf0c9 btrfs: prevent subvol with swapfile from being deleted
4b98799e181b btrfs: fix qgroup reserve overflow the qgroup limit
56c88810466b perf/x86/intel: Update the FRONTEND MSR mask on Sapphire Rapids
fab4b79e869a x86/speculation: Restore speculation related MSRs during S3 resume
fcf185f7e03e x86/pm: Save the MSR validity status at context setup
ba7261af2b03 io_uring: fix race between timeout flush and removal
fe223dd2f18b io_uring: implement compat handling for IORING_REGISTER_IOWQ_AFF
ae6cba337cbf io_uring: defer splice/tee file validity check until command issue
056e1e7c1713 io_uring: don't check req->file in io_fsync_prep()
198932a14aeb mm/mempolicy: fix mpol_new leak in shared_policy_replace
a04cb99c5d46 mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0)
c21d040de622 highmem: fix checks in __kmap_local_sched_{in,out}
9fb8bc6cfc58 lz4: fix LZ4_decompress_safe_partial read out of bound
75cae557bc44 mmc: core: Fixup support for writeback-cache for eMMC and SD
5d2712b78056 mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is complete
11497ecbda04 mmc: mmci: stm32: correctly check all elements of sg list
1515d2a466bf mmc: block: Check for errors after write on SPI
86b5d155fced Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning"
dc5e603c247d scsi: ufs: ufs-pci: Add support for Intel MTL
25c1353dca74 scsi: mpt3sas: Fix use after free in _scsih_expander_node_remove()
32dd8b63e633 arm64: Add part number for Arm Cortex-A78AE
159c7db3ccbb perf session: Remap buf if there is no space for event
58aece34fb7f perf tools: Fix perf's libperf_print callback
e1f2750e7531 perf: arm-spe: Fix perf report --mem-mode
47e239117bd9 iommu/omap: Fix regression in probe for NULL pointer dereference
3fd9be3ec5c8 SUNRPC: svc_tcp_sendmsg() should handle errors from xdr_alloc_bvec()
3b32dda29f99 SUNRPC: Handle low memory situations in call_status()
03ac680dacf9 SUNRPC: Handle ENOMEM in call_transmit_status()
285f5d724005 io_uring: don't touch scm_fp_list after queueing skb
50c981bd7790 io_uring: nospec index for tags on files update
685f42de443d scsi: ufs: ufshpb: Fix a NULL check on list iterator
a972c7687233 drbd: Fix five use after free bugs in get_initial_state
1816af613e56 bpf: Support dual-stack sockets in bpf_tcp_check_syncookie
88a3bdcb462a spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op()
c9bdce2359b5 qede: confirm skb is allocated before using
fb45e80b2194 net: phy: mscc-miim: reject clause 45 register accesses
8ba8e1398a66 net: sfc: fix using uninitialized xdp tx_queue
571d8e1d154c rxrpc: fix a race in rxrpc_exit_net()
837b96d81039 net: openvswitch: fix leak of nested actions
42b2e418f9a2 net: ethernet: mv643xx: Fix over zealous checking of_get_mac_address()
085d002432ac net: openvswitch: don't send internal clone attribute to the userspace.
70cf0b820e55 ice: xsk: fix VSI state check in ice_xsk_wakeup()
840cbbdc8bf1 ice: synchronize_rcu() when terminating rings
070aa68f8fab ipv6: Fix stats accounting in ip6_pkt_drop
1c0763475401 ice: Do not skip not enabled queues in ice_vc_dis_qs_msg
5d3e9f71c310 ice: Set txq_teid to ICE_INVAL_TEID on ring creation
599874bbc4ed dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe
2cb2b3fb20a2 sctp: count singleton chunks in assoc user stats
92f1947c0d26 IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition
3b5fd693621b IB/cm: Cancel mad on the DREQ event when the state is MRA_REP_RCVD
34b8ba1cb337 RDMA/mlx5: Add a missing update of cache->last_add
5b88519b78e8 RDMA/mlx5: Don't remove cache MRs when a delay is needed
d1c87d36a655 sfc: Do not free an empty page_ring
917eeb220023 bnxt_en: Prevent XDP redirect from running when stopping TX queue
154fc224e65e bnxt_en: reserve space inside receive page for skb_shared_info
6108a8918fd7 bnxt_en: Synchronize tx when xdp redirects happen on same ring
87f5d66daa5f arch/arm64: Fix topology initialization for core scheduling
cb713eb793e6 regulator: atc260x: Fix missing active_discharge_on setting
336942b1682f regulator: rtq2134: Fix missing active_discharge_on setting
2560fe298e6e drm/imx: dw_hdmi-imx: Fix bailout in error cases of probe
31e449302ed0 drm/imx: Fix memory leak in imx_pd_connector_get_modes
c1e96348dbeb drm/imx: imx-ldb: Check for null pointer after calling kmemdup
47fec6139b5e net: stmmac: Fix unset max_speed difference between DT and non-DT platforms
907c97986d6f net: ipv4: fix route with nexthop object delete warning
71d28e5073b8 mctp: Fix check for dev_hard_header() result
40229b2977f1 ice: Clear default forwarding VSI during VSI release
ba965e8605ae skbuff: fix coalescing for page_pool fragment recycling
13bcc6f8efcd vrf: fix packet sniffing for traffic originating from ip tunnels
6e2f1b033b17 net/tls: fix slab-out-of-bounds bug in decrypt_internal
ed7a824fda87 net: sfc: add missing xdp queue reinitialization
69ec350a417d vdpa: mlx5: prevent cvq work from hogging CPU
893c70f8b8f3 vdpa/mlx5: Propagate link status from device to vdpa driver
dc872b72d180 vdpa/mlx5: Rename control VQ workqueue to vdpa wq
aefd755a9605 scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one()
cd483e17eca2 scsi: core: Fix sbitmap depth in scsi_realloc_sdev_budget_map()
0610371c768c scsi: sr: Fix typo in CDROM(CLOSETRAY|EJECT) handling
6f52d4cda0bf NFSv4: fix open failure with O_ACCMODE flag
9f0c217469e8 Revert "NFSv4: Handle the special Linux file open access mode"
dcd6b1a624c0 Drivers: hv: vmbus: Fix potential crash on module unload
5ba9d78a7294 drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire()
985d87e6a365 rtc: mc146818-lib: fix RTC presence check
be6c3152d6f6 rtc: Check return value from mc146818_get_time()
8c6921075222 rtc: mc146818-lib: change return values of mc146818_get_time()
c9f50e06ca76 mm: fix race between MADV_FREE reclaim and blkdev direct IO read
93a8347f72c0 parisc: Fix patch code locking and flushing
f77f482ec31a parisc: Fix CPU affinity for Lasi, WAX and Dino chips
30dd4af48a9e selftests: net: Add tls config dependency for tls selftests
ea029e4ce760 NFS: Avoid writeback threads getting stuck in mempool_alloc()
da747de68599 NFS: nfsiod should not block forever in mempool_alloc()
e04ef859d6c6 SUNRPC: Fix socket waits for write buffer space
d925b7e78b62 jfs: prevent NULL deref in diFree
44c2d5fbe7b2 virtio_console: eliminate anonymous module_init & module_exit
053bbff873a1 serial: samsung_tty: do not unlock port->lock for uart_write_wakeup()
c393a9f4cb3b x86/Kconfig: Do not allow CONFIG_X86_X32_ABI=y with llvm-objcopy
e3c961c56ad5 x86: Annotate call_on_stack()
6bb2270223a8 NFS: swap-out must always use STABLE writes.
24d28d9b0fd5 NFS: swap IO handling is slightly different for O_DIRECT IO
a55386405094 SUNRPC: remove scheduling boost for "SWAPPER" tasks.
20700aa01bc2 SUNRPC/xprt: async tasks mustn't block waiting for memory
a19fd1d61797 SUNRPC/call_alloc: async tasks mustn't block waiting for memory
b07387c476a3 clk: Enforce that disjoints limits are invalid
15bfec9d8030 clk: ti: Preserve node in ti_dt_clocks_register()
5c0750cad733 xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32
12e49aefda2e habanalabs: fix possible memory leak in MMU DR fini
a34752aa2397 NFSv4: Protect the state recovery thread against direct reclaim
b37f482ba9f0 NFSv4.2: fix reference count leaks in _nfs42_proc_copy_notify()
24acdd5f9c91 w1: w1_therm: fixes w1_seq for ds28ea00 sensors
86efcb524ae1 staging: wfx: fix an error handling in wfx_init_common()
7295544bcf56 opp: Expose of-node's name in debugfs
ea1f29584136 cpufreq: CPPC: Fix performance/frequency conversion
26f0a9e3d04d clk: rockchip: drop CLK_SET_RATE_PARENT from dclk_vop* on rk3568
caffa76ded5a phy: amlogic: meson8b-usb2: fix shared reset control use
ab27675a0fcc phy: amlogic: meson8b-usb2: Use dev_err_probe()
35df38c4be0c phy: amlogic: phy-meson-gxl-usb2: fix shared reset controller use
42f2142a337e staging: vchiq_core: handle NULL result of find_service_by_handle
176df12b38c7 staging: vchiq_arm: Avoid NULL ptr deref in vchiq_dump_platform_instances
161863aec0e1 clk: si5341: fix reported clk_rate when output divider is 2
31e027259ce4 minix: fix bug when opening a file with O_DIRECT
4602b7a8ee0d init/main.c: return 1 from handled __setup() functions
9d849449d28f lib/Kconfig.debug: add ARCH dependency for FUNCTION_ALIGN option
2fe82d325402 ceph: fix memory leak in ceph_readdir when note_last_dentry returns error
3ae7163598c6 ceph: fix inode reference leakage in ceph_get_snapdir()
eb0e7173d9cb netlabel: fix out-of-bounds memory accesses
58d52743ae85 netfilter: conntrack: revisit gc autotuning
d404765dffdb Bluetooth: Fix use after free in hci_send_acl
f249bbf3cb9a MIPS: ingenic: correct unit node address
11ba1aa21280 xtensa: fix DTC warning unit_address_format
13946d5a68ef mt76: fix monitor mode crash with sdio driver
ac27808b82db usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm
0616792164d3 net: sfp: add 2500base-X quirk for Lantech SFP module
459e56859f7a net/mlx5e: Remove overzealous validations in netlink EEPROM query
1c4561d9b5cb net: limit altnames to 64k total
601f748029f3 net: account alternate interface name memory
d804db3dafd1 riscv: Fixed misaligned memory access. Fixed pointer comparison.
6ca71078a91e can: etas_es58x: es58x_fd_rx_event_msg(): initialize rx_event_msg before calling es58x_check_msg_len()
db9a140a8585 can: isotp: set default value for N_As to 50 micro seconds
f581df412bc4 scsi: libfc: Fix use after free in fc_exch_abts_resp()
2a71e3ecd829 powerpc/secvar: fix refcount leak in format_show()
5c80ff21c5db powerpc/64e: Tie PPC_BOOK3E_64 to PPC_FSL_BOOK3E
9b85e31309c2 MIPS: fix fortify panic when copying asm exception handlers
dc9d33b2d8d0 PCI: endpoint: Fix misused goto label
b6d4b322da46 bnxt_en: Eliminate unintended link toggle during FW reset
42b6a39f439b Bluetooth: use memset avoid memory leaks
0000de40b9f3 Bluetooth: Fix not checking for valid hdev on bt_dev_{info,warn,err,dbg}
bb78c3b11f4d tuntap: add sanity checks about msg_controllen in sendmsg
e8d8f1d091e4 macvtap: advertise link netns via netlink
5fb47ca34908 mips: ralink: fix a refcount leak in ill_acc_of_setup()
58758110912d net/smc: correct settings of RMB window update limit
dd111d335cab scsi: hisi_sas: Limit users changing debugfs BIST count value
f05a0d8de2ea scsi: hisi_sas: Free irq vectors in order for v3 HW
b8fa10d7c8fc scsi: aha152x: Fix aha152x_setup() __setup handler return value
556ec5030e57 mt76: mt7615: Fix assigning negative values to unsigned variable
c3543bac6efa powerpc/64s/hash: Make hash faults work in NMI context
df467929a040 mt76: mt7915: fix injected MPDU transmission to not use HW A-MSDU
e5ecdb01952f scsi: pm8001: Fix memory leak in pm8001_chip_fw_flash_update_req()
43c617eefab7 scsi: pm8001: Fix tag leaks on error
2290dcad6f65 scsi: pm8001: Fix task leak in pm8001_send_abort_all()
ece79aaec8fc scsi: pm8001: Fix pm8001_mpi_task_abort_resp()
5e4ac14baebb scsi: pm8001: Fix pm80xx_pci_mem_copy() interface
5e96bb81eddf vfio/pci: Stub vfio_pci_vga_rw when !CONFIG_VFIO_PCI_VGA
f325d3e1dcc8 drm/amdkfd: make CRAT table missing message informational only
da52e8b9dad6 dm: requeue IO if mapping table not yet available
02cc46f397eb dm ioctl: prevent potential spectre v1 gadget
049072749a5e ipv4: Invalidate neighbour for broadcast address upon address addition
e45d1d19a0bb drm/msm/dsi: Remove spurious IRQF_ONESHOT flag
e1b5aae5b6b0 iwlwifi: mvm: move only to an enabled channel
6f215801c302 iwlwifi: mvm: Correctly set fragmented EBS
d353d3b27af4 usb: dwc3: pci: Set the swnode from inside dwc3_pci_quirks()
c64f3707cdf9 net/mlx5e: Disable TX queues before registering the netdev
83efc05c8579 power: supply: axp288-charger: Set Vhold to 4.4V
6def4eaf0391 powerpc/set_memory: Avoid spinlock recursion in change_page_attr()
5d76a88b8536 scsi: mpi3mr: Fix memory leaks
248ead78f346 scsi: mpi3mr: Fix reporting of actual data transfer size
53643a112dd6 PCI: pciehp: Add Qualcomm quirk for Command Completed erratum
aa9c9fd0ef9d tcp: Don't acquire inet_listen_hashbucket::lock with disabled BH.
bd21b9607bd7 PCI: endpoint: Fix alignment fault error in copy tests
2aa10e2fa2ab usb: ehci: add pci device support for Aspeed platforms
99073052f45b iommu/arm-smmu-v3: fix event handling soft lockup
60eabd66d17f PCI: aardvark: Fix support for MSI interrupts
330c4e1b4ec4 scsi: smartpqi: Fix kdump issue when controller is locked up
0a922366d6d9 drm/amdgpu: Fix recursive locking warning
06ee48a4fc25 powerpc: Set crashkernel offset to mid of RMA region
9c1ace066f22 net: initialize init_net earlier
4790998fdd0d ipv6: make mc_forwarding atomic
e9da1df2c021 libbpf: Fix build issue with llvm-readelf
19d067c10b71 cfg80211: don't add non transmitted BSS to 6GHz scanned channels
55c93a89e31d mt76: dma: initialize skip_unmap in mt76_dma_rx_fill
38fbe8066450 mt76: mt7921: fix crash when startup fails.
793a37045893 power: supply: axp20x_battery: properly report current when discharging
a0f8220ce934 drm/v3d: fix missing unlock
0f8ec114029a scsi: bfa: Replace snprintf() with sysfs_emit()
1378075fa5bc scsi: mvsas: Replace snprintf() with sysfs_emit()
1c6ffdf4cc45 bpf: Make dst_port field in struct bpf_sock 16-bit wide
ff13c90d7f7a drm/bridge: Add missing pm_runtime_put_sync
35380262304f net/smc: Send directly when TCP_CORK is cleared
20d01a11efde ath11k: mhi: use mhi_sync_power_up()
fed4cef115ab ath11k: pci: fix crash on suspend if board file is not found
c4b7653af62a ath11k: fix kernel panic during unload/load ath11k modules
910ee99d47d3 powerpc: dts: t104xrdb: fix phy type for FMAN 4/5
e84b0438010d drm/amdkfd: Don't take process mutex for svm ioctls
1eb598045326 ptp: replace snprintf with sysfs_emit
052fb1c9ddfb usb: cdnsp: fix cdnsp_decode_trb function to properly handle ret value
c27576bbbe77 usb: gadget: tegra-xudc: Fix control endpoint's definitions
111a63235001 usb: gadget: tegra-xudc: Do not program SPARAM
6040c99cb1a1 drm/amd/display: Use PSR version selected during set_psr_caps
7e10369c72db drm/amd/display: Fix memory leak
3edd8646cb7c drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj
c4b64a80554e drm/amd/display: Add signal type check when verify stream backends same
be2f81024e79 ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111
b3ca02c1ee93 drm: Add orientation quirk for GPD Win Max
d5f6f44e04c3 KVM: x86/emulator: Emulate RDPID only if it is enabled in guest
a997e0f5aa55 KVM: x86/pmu: Fix and isolate TSX-specific performance event logic
e7bab9898249 KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs
5483640f8efb KVM: SVM: Fix kvm_cache_regs.h inclusions for is_guest_mode()
a82fe0ba1c52 KVM: x86/pmu: Use different raw event masks for AMD and Intel
105b50d9bb82 kfence: limit currently covered allocations when pool nearly full
44b44b64b4da kfence: move saving stack trace of allocations into __kfence_alloc()
72d2d94a981d kfence: count unexpectedly skipped allocations
5142720dbe51 nbd: fix possible overflow on 'first_minor' in nbd_dev_add()
64742cf82dec nbd: Fix hungtask when nbd_config_put
694b5a32c162 nbd: Fix incorrect error handle when first_minor is illegal in nbd_dev_add
3e526e9ae0e4 nbd: add error handling support for add_disk()
f8008f42d463 rtc: wm8350: Handle error for wm8350_register_irq
b257272f5483 um: fix and optimize xor select template for CONFIG64 and timetravel mode
2be1a7f09635 lib/logic_iomem: correct fallback config references
(From OE-Core rev: 2104966bb02100e661ce77887470b0df7a877ff2)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 39e9635c34b773f671870dec4c1953daef576b16)
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:
07a63f760793 netfilter: conntrack: avoid useless indirection during conntrack destruction
(From OE-Core rev: abf7178c03248f58caf403b6f80039ae23ed9bdf)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2aaf2429474da762d305d6fb70996b5502c879c7)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The 5.15-stable series pulled in the following commit:
commit c894ac44786cfed383a6c6b20c1bfb12eb96018a
Author: Thomas Zimmermann <tzimmermann@suse.de>
Date: Tue Jan 25 10:12:18 2022 +0100
fbdev: Hot-unplug firmware fb devices on forced removal
commit 27599aacbaefcbf2af7b06b0029459bbf682000d upstream.
Hot-unplug all firmware-framebuffer devices as part of removing
them via remove_conflicting_framebuffers() et al. Releases all
memory regions to be acquired by native drivers.
Firmware, such as EFI, install a framebuffer while posting the
computer. After removing the firmware-framebuffer device from fbdev,
a native driver takes over the hardware and the firmware framebuffer
becomes invalid.
Firmware-framebuffer drivers, specifically simplefb, don't release
their device from Linux' device hierarchy. It still owns the firmware
framebuffer and blocks the native drivers from loading. This has been
observed in the vmwgfx driver. [1]
Initiating a device removal (i.e., hot unplug) as part of
remove_conflicting_framebuffers() removes the underlying device and
returns the memory range to the system.
[1] https://lore.kernel.org/dri-devel/20220117180359.18114-1-zack@kde.org/
v2:
* rename variable 'dev' to 'device' (Javier)
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reported-by: Zack Rusin <zackr@vmware.com>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Reviewed-by: Zack Rusin <zackr@vmware.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
CC: stable@vger.kernel.org # v5.11+
Link: https://patchwork.freedesktop.org/patch/msgid/20220125091222.21457-2-tzimmermann@suse.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
And this is causing qemuppc to panic during boot when manipulating
the fbdev.
Reverting it fixes the problem, and won't cause issues for other
platforms, so we revert it.
(From OE-Core rev: 99d112f2d8f0c8b99ac8057bac93629284e0c5e2)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f69fca36ef10f7345bba08c55d8af2628d250a32)
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/.:
645b337371e base.cfg: enable kernel crypto userspace API
(From OE-Core rev: 0b6d826557cb395a9d4ed5bab85145314707071f)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c769807e3a150496f62be88bec9678c9f9dce211)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating linux-yocto/5.15 to the latest korg -stable release that comprises
the following commits:
06f50ca83ace Linux 5.15.33
541b7456fc4d PCI: xgene: Revert "PCI: xgene: Use inbound resources for setup"
39fd0cc079c9 coredump: Use the vma snapshot in fill_files_note
cabd69640957 coredump/elf: Pass coredump_params into fill_note_info
7ba958df6449 coredump: Remove the WARN_ON in dump_vma_snapshot
f6ca862806df coredump: Snapshot the vmas in do_coredump
57c04fac8023 iommu/dma: Account for min_align_mask w/swiotlb
3e44e136560c swiotlb: Support aligned swiotlb buffers
52d23f5f0915 iommu/dma: Check CONFIG_SWIOTLB more broadly
bc05d84824c0 iommu/dma: Fold _swiotlb helpers into callers
c3841d020b82 iommu/dma: Skip extra sync during unmap w/swiotlb
8771d9673e0b KVM: x86/mmu: do compare-and-exchange of gPTE via the user address
b0e8e828acb5 mmc: rtsx: Fix build errors/warnings for unused variable
8af04b6aa02b mmc: rtsx: Let MMC core handle runtime PM
a9bbdeef768f n64cart: convert bi_disk to bi_bdev->bd_disk fix build
2a710a5c59e9 torture: Make torture.sh help message match reality
acabfc943245 openvswitch: Fixed nd target mask field in the flow dump.
3fc38521fc30 docs: sysctl/kernel: add missing bit to panic_print
166abd13eab0 um: Fix uml_mconsole stop/go
94a53804ec3a arm64: dts: ls1046a: Update i2c node dma properties
32820c358d1b arm64: dts: ls1043a: Update i2c dma properties
28a020859c00 ARM: dts: spear13xx: Update SPI dma properties
7aa9bba18f80 ARM: dts: spear1340: Update serial node properties
dd8772224c19 spi: mediatek: support tick_delay without enhance_timing
2a6e0695ddd5 media: ov6650: Fix crop rectangle affected by set format
3995d4cf529c media: ov6650: Add try support to selection API operations
8f5e6110e108 perf vendor events: Update metrics for SkyLake Server
b0e5c18317f7 ASoC: topology: Allow TLV control to be either read or write
678b6901d00b ASoC: SOF: Intel: Fix build error without SND_SOC_SOF_PCI_DEV
ba8260872dd5 ubi: fastmap: Return error code if memory allocation fails in add_aeb()
666176d0f9bb dt-bindings: pinctrl: pinctrl-microchip-sgpio: Fix example
e918b36600d6 dt-bindings: memory: mtk-smi: No need mediatek,larb-id for mt8167
b2b85196a31a dt-bindings: spi: mxic: The interrupt property is not mandatory
c19a9d307844 dt-bindings: mtd: nand-controller: Fix a comment in the examples
716a77f8460d dt-bindings: mtd: nand-controller: Fix the reg property description
8ec990990be3 mmc: rtsx: Use pm_runtime_{get,put}() to handle runtime PM
50c906a6977f bpf: Fix comment for helper bpf_current_task_under_cgroup()
398ac11f4425 bpf: Adjust BPF stack helper functions to accommodate skip > 0
21b6b8d43d87 af_unix: Support POLLPRI for OOB.
260daa256d30 mm/usercopy: return 1 from hardened_usercopy __setup() handler
c9acbcd636ab mm/memcontrol: return 1 from cgroup.memory __setup() handler
48ddbd8b4e42 ARM: 9187/1: JIVE: fix return value of __setup handler
6795b20d4b2c mm/mmap: return 1 from stack_guard_gap __setup() handler
23629b673b78 net: preserve skb_end_offset() in skb_unclone_keeptruesize()
51e458fc0ca6 net: add skb_set_end_offset() helper
14d552ab31ed tracing: Have type enum modifications copy the strings
7007c894631c Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE""
63351e2e1362 ASoC: soc-compress: Change the check for codec_dai
7ed3cce2fe68 arm64: mm: Drop 'const' from conditional arm64_dma_phys_limit definition
5ab0f5e238b9 staging: mt7621-dts: fix pinctrl-0 items to be size-1 items on ethernet
0e39097efcb5 scsi: qla2xxx: Add qla2x00_async_done() for async routines
b9cf1208af36 drm/connector: Fix typo in documentation
5b422da35c15 proc: bootconfig: Add null pointer check
f78f56488cd3 can: isotp: restore accidentally removed MSG_PEEK feature
3fc81968625a platform/chrome: cros_ec_typec: Check for EC device
8c1c3c00dceb spi: Fix Tegra QSPI example
7480cc0240eb vhost: handle error while adding split ranges to iotlb
97b5593fd1b1 ACPI: CPPC: Avoid out of bounds access when parsing _CPC data
dae252901378 riscv module: remove (NOLOAD)
0853bd6885c2 io_uring: fix memory leak of uid in files registration
5b9ac3727e4a block: Fix the maximum minor value is blk_alloc_ext_minor()
21cfddd5e0f6 ARM: iop32x: offset IRQ numbers by 1
1a3f1cf87054 ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl
619709f0c608 ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs
d509d41d89c5 pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE()
3e51c3023228 pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR()
b603cbe08b0b net: sparx5: uses, depends on BRIDGE or !BRIDGE
84817c83c0e7 watchdog: rti-wdt: Add missing pm_runtime_disable() in probe function
d02ca80ec735 pinctrl: pinconf-generic: Print arguments for bias-pull-*
4913daecd04a watch_queue: Free the page array when watch_queue is dismantled
210891d81b9c crypto: arm/aes-neonbs-cbc - Select generic cbc and aes
c78d23ea7506 mailbox: imx: fix wakeup failure from freeze mode
8cbf4ae7a283 rxrpc: Fix call timer start racing with call destruction
432297011caf rxrpc: fix some null-ptr-deref bugs in server_key.c
88570bda6e48 net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware
a0817ad3f283 net: hns3: fix the concurrency between functions reading debugfs
5c3c9bce1c99 gfs2: Make sure FITRIM minlen is rounded up to fs block size
1d8195349742 gfs2: gfs2_setattr_size error path fix
50ed32e67c5c rtc: check if __rtc_read_time was successful
9f20ce95db3d modpost: restore the warning message for missing symbol versions
7aae60df6782 XArray: Update the LRU list in xas_split()
be8ebbabac94 can: mcp251xfd: mcp251xfd_register_get_dev_id(): fix return of error value
fa9c1f14002d can: mcba_usb: properly check endpoint type
37f07ad24866 can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path
7521a97b1929 XArray: Fix xas_create_range() when multi-order entry present
9af42a4f6d81 wireguard: socket: ignore v6 endpoints when ipv6 is disabled
402991a97715 wireguard: socket: free skb in send6 when ipv6 is disabled
6a7245252fdc wireguard: queueing: use CFI-safe ptr_ring cleanup function
c98f792a1468 nvme: fix the read-only state for zoned namespaces with unsupposed features
7d18d6c71372 nvme: allow duplicate NSIDs for private namespaces
578bf41d9443 ubifs: rename_whiteout: correct old_dir size computing
4f75bab98565 ubifs: Fix to add refcount once page is set private
a7054aaf1909 ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock()
56cf8b26b18e ubifs: setflags: Make dirtied_ino_d 8 bytes aligned
489c3a2577b3 ubifs: Rectify space amount budget for mkdir/tmpfile operations
a9662bec5a4d ubifs: Fix 'ui->dirty' race between do_tmpfile() and writeback work
c67bc98d1f08 ubifs: Rename whiteout atomically
ff846f2c5d1d ubifs: Add missing iput if do_tmpfile() failed in rename whiteout
c58af8564a7b ubifs: Fix deadlock in concurrent rename whiteout and inode writeback
2ad07009c459 ubifs: rename_whiteout: Fix double free for whiteout_ui->data
3fa2d7479605 KVM: SVM: fix panic on out-of-bounds guest IRQ
63961ac1359e KVM: x86: fix sending PV IPI
43637ee17092 KVM: Prevent module exit until all VMs are freed
ba6e8c2df520 KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated
0e5dbc0540ba KVM: x86: Avoid theoretical NULL pointer dereference in kvm_irq_delivery_to_apic_fast()
569a229142e9 KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq
81e5b16de862 platform: chrome: Split trace include file
89dad346c241 scsi: qla2xxx: Use correct feature type field during RFF_ID processing
f63fde0d16a4 scsi: qla2xxx: Reduce false trigger to login
20909563bd50 scsi: qla2xxx: Fix stuck session of PRLI reject
2b612191f9d3 scsi: qla2xxx: Fix N2N inconsistent PLOGI
c9d6081a5f18 scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests
d6f691a133f0 scsi: qla2xxx: Fix hang due to session stuck
7ccd6063874d scsi: qla2xxx: Fix incorrect reporting of task management failure
c0300beb313f scsi: qla2xxx: Fix disk failure to rediscover
9c33d49ab9f3 scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair()
d1b7d23cd462 scsi: qla2xxx: Check for firmware dump already collected
812afc2b8ec0 scsi: qla2xxx: Add devids and conditionals for 28xx
d70d86f7a6ea scsi: qla2xxx: Fix T10 PI tag escape and IP guard options for 28XX adapters
2df59f3bb240 scsi: qla2xxx: edif: Fix clang warning
fbc1aa41269a scsi: qla2xxx: Fix device reconnect in loop topology
b6c95db6d2e8 scsi: qla2xxx: Fix warning for missing error code
67b1be130861 scsi: qla2xxx: Fix wrong FDMI data for 64G adapter
5ef6319f9882 scsi: qla2xxx: Fix premature hw access after PCI error
826a9d4a00d1 scsi: qla2xxx: Fix scheduling while atomic
7a3457777c4f scsi: qla2xxx: Fix warning message due to adisc being flushed
5fb0a488028e scsi: qla2xxx: Fix stuck session in gpdb
e17111dd2fda scsi: qla2xxx: Implement ref count for SRB
24e86eae3f7b scsi: qla2xxx: Refactor asynchronous command initialization
f5a0cf225f8d drm/i915: Reject unsupported TMDS rates on ICL+
beeebae6ea82 drm/i915: Fix PSF GV point mask when SAGV is not possible
102cba6d5ae2 drm/i915: Treat SAGV block time 0 as SAGV disabled
e912d697400c drm/dp: Fix off-by-one in register cache size
2d67222b2380 powerpc: Fix build errors with newer binutils
f4b0b5a0f3c1 powerpc: Add set_memory_{p/np}() and remove set_memory_attr()
a29341e48601 powerpc/lib/sstep: Fix build errors with newer binutils
d25efd904271 powerpc/lib/sstep: Fix 'sthcx' instruction
5a3d8f3192a4 powerpc/kasan: Fix early region not updated correctly
cb188e07105f KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercall
5c3d0dbe200f KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB flush hypercalls
72eae60bfe83 KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_flush_tlb()
dbec906dbef6 KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_send_ipi()
f4fd34eaa767 KVM: x86/mmu: Check for present SPTE when clearing dirty bit in TDP MMU
af47248407c0 KVM: x86/mmu: Zap _all_ roots when unmapping gfn range in TDP MMU
31a70b170e06 KVM: x86/mmu: Move "invalid" check out of kvm_tdp_mmu_get_root()
48306afcac2a KVM: x86: Reinitialize context if host userspace toggles EFER.LME
273ad0cf5684 ALSA: hda/realtek: Add alc256-samsung-headphone fixup
fe440221ca0f media: atomisp: fix bad usage at error handling logic
251a11699fe5 mmc: host: Return an error when ->enable_sdio_irq() ops is missing
7c6bd60999f3 tracing: Have TRACE_DEFINE_ENUM affect trace event types as well
ae2b93b0a6a7 ASoC: Intel: sof_sdw: fix quirks for 2022 HP Spectre x360 13"
f90db7cca4d4 media: hdpvr: initialize dev->worker at hdpvr_register_videodev
deb1f0453198 media: Revert "media: em28xx: add missing em28xx_close_extension"
96a7522c72c4 media: i2c: ov5648: Fix lockdep error
eae90015d10f video: fbdev: sm712fb: Fix crash in smtcfb_write()
a07c7b64eadf ASoC: amd: vg: fix for pm resume callback sequence
4ab0293c961b ARM: mmp: Fix failure to remove sram device
f8ef3b979bfa ARM: tegra: tamonten: Fix I2C3 pad setting
6a1c70de40b5 lib/test_lockup: fix kernel pointer check for separate address spaces
8b2a6074b981 uaccess: fix type mismatch warnings from access_ok()
cb5bd93ad218 media: cx88-mpeg: clear interrupt status register before streaming video
02f9f97d54ff media: imx-jpeg: fix a bug of accessing array out of bounds
0b620fce5eae ASoC: soc-core: skip zero num_dai component in searching dai name
80e6bbe4e193 ARM: dts: bcm2711: Add the missing L1/L2 cache information
2d5c47df8e21 video: fbdev: udlfb: replace snprintf in show functions with sysfs_emit
e7f5b1c56921 video: fbdev: omapfb: panel-tpo-td043mtea1: Use sysfs_emit() instead of snprintf()
509bc99aba95 video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf()
79045b61875d arm64: defconfig: build imx-sdma as a module
c7129c401f55 ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk
330de92eb10f ARM: ftrace: avoid redundant loads or clobbering IP
3f887cb763a0 media: atomisp: fix dummy_ptr check to avoid duplicate active_bo
8b6b38083a29 media: atomisp_gmin_platform: Add DMI quirk to not turn AXP ELDO2 regulator off on some boards
1c17870f26d9 ASoC: madera: Add dependencies on MFD
35a2aeb70fe6 ARM: dts: bcm2837: Add the missing L1/L2 cache information
93b85b6e8358 ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960
521796018815 video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit
6fe23ff94e78 video: fbdev: cirrusfb: check pixclock to avoid divide by zero
9522e11e8636 video: fbdev: w100fb: Reset global state
9ff2f7294ab0 video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow
77fbe028d5a3 media: iommu/mediatek: Add device_link between the consumer and the larb devices
4dd3e2d1bd70 media: iommu/mediatek: Return ENODEV if the device is NULL
1515d1414967 media: iommu/mediatek-v1: Free the existed fwspec if the master dev already has
eff76b180751 media: imx-jpeg: Prevent decoding NV12M jpegs into single-planar buffers
47b45e08e5ad ASoC: SOF: Intel: match sdw version on link_slaves_found
205db54b159f ASoC: sh: rz-ssi: Make the data structures available before registering the handlers
2011363c1968 media: ir_toy: free before error exiting
0b2313042634 media: atmel: atmel-isc-base: report frame sizes as full supported range
3681eb1fd45c media: staging: media: zoran: fix various V4L2 compliance errors
7e76f3ed7ab2 media: staging: media: zoran: calculate the right buffer number for zoran_reap_stat_com
ff3357bffd9f media: staging: media: zoran: move videodev alloc
24ab2d4ef52c ntfs: add sanity check on allocation size
9dd6bb11df64 Adjust cifssb maximum read size
1a55c48bba81 f2fs: compress: fix to print raw data size in error path of lz4 decompression
2eff60346e7a f2fs: use spin_lock to avoid hang
c78bada18aa1 btrfs: make search_csum_tree return 0 if we get -EFBIG
40d006dfedd6 btrfs: harden identification of a stale device
58d3aa672d13 f2fs: don't get FREEZE lock in f2fs_evict_inode in frozen fs
7260793c13e9 NFSD: Fix nfsd_breaker_owns_lease() return values
f68caedf264a f2fs: fix to do sanity check on curseg->alloc_type
a0856764dc12 ext4: don't BUG if someone dirty pages without asking ext4 first
7cca463f1030 sched/tracing: Report TASK_RTLOCK_WAIT tasks as TASK_UNINTERRUPTIBLE
6a6beb074186 ext4: fix ext4_mb_mark_bb() with flex_bg with fast_commit
572d14e6cec4 ext4: correct cluster len and clusters changed accounting in ext4_mb_mark_bb
1388c10b3257 locking/lockdep: Iterate lock_classes directly when reading lockdep files
95bc0ba6bef8 atomics: Fix atomic64_{read_acquire,set_release} fallbacks
75fe5dcb1653 spi: tegra20: Use of_device_get_match_data()
ffe0c4916795 nvme-tcp: lockdep: annotate in-kernel sockets
b3ea76bda7f7 parisc: Fix handling off probe non-access faults
c29642ba72f8 PM: core: keep irq flags in device_pm_check_callbacks()
c02f2d420a44 ACPI/APEI: Limit printable size of BERT table data
65d8a737452e Revert "Revert "block, bfq: honor already-setup queue merges""
5b8d69c8c107 lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3
33ccf4f81785 ACPICA: Avoid walking the ACPI Namespace if it is not there
080665e2c3cb bfq: fix use-after-free in bfq_dispatch_request
e0943c456b60 fs/binfmt_elf: Fix AT_PHDR for unusual ELF files
757322b5aba9 irqchip/nvic: Release nvic_base upon failure
dabfc878ef6f irqchip/qcom-pdc: Fix broken locking
05ba7d0c639f Fix incorrect type in assignment of ipv6 port for audit
860d36424d1b loop: use sysfs_emit() in the sysfs xxx show()
55d192691b4b selinux: allow FIOCLEX and FIONCLEX with policy capability
e48c260b0b2a arm64: module: remove (NOLOAD) from linker script
15bb7a467b2b selinux: use correct type for context length
8f34dea99cd7 block, bfq: don't move oom_bfqq
69d41c77aadf crypto: hisilicon/sec - not need to enable sm4 extra mode at HW V3
f84b1633004d crypto: xts - Add softdep on ecb
e11293de5cf6 block/bfq_wf2q: correct weight to ioprio
e34806c6c29d rcu: Mark writes to the rcu_segcblist structure's ->flags field
99780fcb5494 pinctrl: npcm: Fix broken references to chip->parent_device
999ee266531b gcc-plugins/stackleak: Exactly match strings instead of prefixes
ca97dfbda510 crypto: hisilicon/qm - cleanup warning in qm_vf_read_qos
4941c21090c3 regulator: rpi-panel: Handle I2C errors/timing to the Atmel
f3f93a1aaafc LSM: general protection fault in legacy_parse_param
c331c9d1d2b7 fs: fix fd table size alignment properly
611170142b42 lib/test: use after free in register_test_dev_kmod()
136736abcd35 fs: fd tables have to be multiples of BITS_PER_LONG
fd3f70b90772 net: dsa: bcm_sf2_cfp: fix an incorrect NULL check on list iterator
a738ff8143d8 NFSv4/pNFS: Fix another issue with a list iterator pointing to the head
bcbf4e5c3b5b net/sched: act_ct: fix ref leak when switching zones
72dd9e61fa31 net: prefer nf_ct_put instead of nf_conntrack_put
6b663fa23c7e octeontx2-af: initialize action variable
b375ea083fa6 net: sparx5: switchdev: fix possible NULL pointer dereference
409570a619c1 net/x25: Fix null-ptr-deref caused by x25_disconnect
c416e9bb85a6 qlcnic: dcb: default to returning -EOPNOTSUPP
e87c47df2193 net: sparx5: depends on PTP_1588_CLOCK_OPTIONAL
34a5c64951c3 net: hns3: clean residual vf config after disable sriov
c95578235888 NFS: Don't loop forever in nfs_do_recoalesce()
667760fe01e9 selftests: test_vxlan_under_vrf: Fix broken test case
2d05a007096e net: phy: broadcom: Fix brcm_fet_config_init()
2dc73ba93202 net: hns3: refine the process when PF set VF VLAN
ee7e9a9d73d9 net: hns3: format the output of the MAC address
30f0ff7176ef net: hns3: add vlan list lock to protect vlan list
02948e5782ce net: hns3: fix port base vlan add fail when concurrent with reset
5e528c0e0618 net: hns3: fix bug when PF set the duplicate MAC address for VFs
be6937a11b1c net: enetc: report software timestamping via SO_TIMESTAMPING
af884b276b08 xen: fix is_xen_pmu()
6c17fd7a6f5d clk: Initialize orphan req_rate
8b320893461c vsock/virtio: enable VQs early on probe
b64bf5464ad5 vsock/virtio: read the negotiated features before using VQs
10c6cb867ffa vsock/virtio: initialize vdev->priv before using VQs
c07a9d2a1d1d clk: qcom: gcc-msm8994: Fix gpll4 width
e16b5f077980 perf stat: Fix forked applications enablement of counters
c532caa7df8c kdb: Fix the putarea helper function
0445609a7ace NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error
4ee7a4b67770 SUNRPC don't resend a task on an offlined transport
6195af5ad801 netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options
6bbfe9a715ea jfs: fix divide error in dbNextAG
104852921ff6 driver core: dd: fix return value of __setup handler
20fab30930f3 firmware: google: Properly state IOMEM dependency
af6e1b06d0ba kgdbts: fix return value of __setup handler
1d5103d9bb7d virt: acrn: fix a memory leak in acrn_dev_ioctl()
b9c43aa0b18d virt: acrn: obtain pa from VMA with PFNMAP flag
16e323804732 serial: 8250: fix XOFF/XON sending when DMA is used
a885e17cf5f2 kgdboc: fix return value of __setup handler
e1338178f35e tty: hvc: fix return value of __setup handler
e35a555b5a9d pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe
c52703355766 pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe
84940deb8dd3 pinctrl: microchip-sgpio: lock RMW access
c6f009fe90f1 pinctrl: microchip sgpio: use reset driver
a843ba2e9c87 pinctrl: mediatek: paris: Skip custom extra pin config dump for virtual GPIOs
070d46aee151 pinctrl: mediatek: paris: Fix pingroup pin config state readback
1190c1a5828a pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get()
a8d236a32934 pinctrl: mediatek: paris: Fix PIN_CONFIG_BIAS_* readback
3ddbb9ba7579 pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init
127a5d3e732d staging: mt7621-dts: fix GB-PC2 devicetree
b24dfa54d6e8 staging: mt7621-dts: fix pinctrl properties for ethernet
97d01fabee69 staging: mt7621-dts: fix formatting
1293b7481d73 staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree
75ee75cc360a NFS: remove unneeded check in decode_devicenotify_args()
8bddc0227e78 mailbox: imx: fix crash in resume on i.mx8ulp
613e1b253f6d clk: tegra: tegra124-emc: Fix missing put_device() call in emc_ensure_emc_driver
4be3e4c05d8d clk: Fix clk_hw_get_clk() when dev is NULL
071c958f8e1b clk: clps711x: Terminate clk_div_table with sentinel element
0415dce6228c clk: hisilicon: Terminate clk_div_table with sentinel element
f4aee7714a1c clk: loongson1: Terminate clk_div_table with sentinel element
7608a654a294 clk: actions: Terminate clk_div_table with sentinel element
be8ab90a3a77 nvdimm/region: Fix default alignment for small regions
bd4771ba2cf9 remoteproc: qcom_q6v5_mss: Fix some leaks in q6v5_alloc_memory_region
9c28309d6a5e remoteproc: qcom_wcnss: Add missing of_node_put() in wcnss_alloc_memory_region
9a809b902e1d remoteproc: qcom: Fix missing of_node_put in adsp_alloc_memory_region
95deff8996fb dmaengine: hisi_dma: fix MSI allocate fail when reload hisi_dma
2a9b575627fc clk: qcom: clk-rcg2: Update the frac table for pixel clock
34dca60982e9 clk: qcom: clk-rcg2: Update logic to calculate D value for RCG
7a778371f9f2 clk: at91: sama7g5: fix parents of PDMCs' GCLK
4b8a71f206c9 clk: imx: off by one in imx_lpcg_parse_clks_from_dt()
4bd979ee9927 clk: imx7d: Remove audio_mclk_root_clk
c39a750b61f7 dma-debug: fix return value of __setup handlers
872a7b12af43 staging: r8188eu: fix endless loop in recv_func
18dc19571210 NFS: Return valid errors from nfs2/3_decode_dirent()
8a842f88d0e2 habanalabs: Add check for pci_enable_device
82546d91d588 iio: adc: Add check for devm_request_threaded_irq
3e843460fb42 serial: 8250: Fix race condition in RTS-after-send handling
ba3a3390c9b1 NFS: Use of mapping_set_error() results in spurious errors
b59173ff16fb serial: 8250_lpss: Balance reference count for PCI DMA device
3a1131f7d2a8 serial: 8250_mid: Balance reference count for PCI DMA device
675216a820ec phy: phy-brcm-usb: fixup BCM4908 support
d9a3c2949d04 phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure})
ca3d7cf53d8f clk: qcom: ipq8074: Use floor ops for SDCC1 clock
8c54f6c900d1 pinctrl: renesas: checker: Fix miscalculation of number of states
d19fb1d659ba pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel
157a22ca80c5 staging:iio:adc:ad7280a: Fix handing of device address bit reversing.
d6c4fc0d903f serial: 8250_aspeed_vuart: add PORT_ASPEED_VUART port type
011e841cd11b iio: mma8452: Fix probe failing when an i2c_device_id is used
cad1a3b1f481 dmaengine: idxd: restore traffic class defaults after wq reset
7bebc9519691 dmaengine: idxd: change bandwidth token to read buffers
e509584b079a dmaengine: idxd: check GENCAP config support for gencfg register
41e360fa73a4 clk: qcom: ipq8074: fix PCI-E clock oops
9a5f4da1ea27 soundwire: intel: fix wrong register name in intel_shim_wake
251aabcb0b09 cpufreq: qcom-cpufreq-nvmem: fix reading of PVS Valid fuse
2d7a9c09be64 misc: alcor_pci: Fix an error handling path
72c4f4200f98 fsi: Aspeed: Fix a potential double free
8adfd166fb32 pps: clients: gpio: Propagate return value from pps_gpio_probe
6f4f778f2747 pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add()
28a886a308ed fsi: scom: Remove retries in indirect scoms
9fdc543b0e2a fsi: scom: Fix error handling
b125b08dbee3 mxser: fix xmit_buf leak in activate when LSR == 0xff
7a68abde36e1 staging: r8188eu: release_firmware is not called if allocation fails
1768384f61d1 staging: r8188eu: convert DBG_88E_LEVEL call in hal/rtl8188e_hal_init.c
a9e88c2618d2 kernel/resource: fix kfree() of bootmem memory again
585dc196a08f drivers: ethernet: cpsw: fix panic when interrupt coaleceing is set via ethtool
eec20eea27a0 ice: don't allow to run ice_send_event_to_aux() in atomic ctx
9b77c8cf69a4 ice: fix 'scheduling while atomic' on aux critical err interrupt
c64223a8d188 mfd: asic3: Add missing iounmap() on error asic3_mfd_probe
21a2b4ab48a4 tipc: fix the timer expires after interval 100ms
95df5cd5a446 net: dsa: fix panic on shutdown if multi-chip tree failed to probe
894347d4d29b openvswitch: always update flow key after nat
862002402333 tcp: ensure PMTU updates are processed during fastopen
06d836801cd8 net: bcmgenet: Use stronger register read/writes to assure ordering
40092a8ac089 PCI: Avoid broken MSI on SB600 USB devices
dd1043342e45 selftests/bpf/test_lirc_mode2.sh: Exit with proper code
33d39efb61a8 powerpc/pseries: Fix use after free in remove_phb_dynamic()
226ec1997de7 i2c: mux: demux-pinctrl: do not deactivate a master that is not active
0ee072f91326 netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned()
9b2bbf36b9cf i2c: meson: Fix wrong speed use from probe
7409ff6393a6 af_netlink: Fix shift out of bounds in group mask calculation
9151982547ee ipv4: Fix route lookups when handling ICMP redirects and PMTU updates
770a97d3f34b Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt
60283d3ad395 Bluetooth: call hci_le_conn_failed with hdev lock in hci_le_conn_failed
7235485433d2 Bluetooth: hci_uart: add missing NULL check in h5_enqueue
292e8478ae0a selftests/bpf: Fix error reporting from sock_fields programs
48e785075f9e af_unix: Fix some data-races around unix_sk(sk)->oob_skb.
1bd58abf595b ibmvnic: fix race between xmit and reset
3f798111077a bareudp: use ipv6_mod_enabled to check if IPv6 enabled
b184a8fa7dd4 can: isotp: support MSG_TRUNC flag when reading from socket
05e4e7d9bbb3 can: isotp: return -EADDRNOTAVAIL when reading from unbound socket
f343dbe82314 can: isotp: sanitize CAN ID checks in isotp_bind()
9265c09b2415 mt76: mt7921: fix mt7921_queues_acq implementation
2a85c4cb3b15 netfilter: flowtable: Fix QinQ and pppoe support for inet table
7ff346ee019b drm/i915/display: Fix HPD short pulse handling for eDP
5d48ddbcafdf USB: storage: ums-realtek: fix error code in rts51x_read_mem()
bc2c4dc5b566 samples/bpf, xdpsock: Fix race when running for fix duration of time
cb6f141ae705 bpf, sockmap: Fix double uncharge the mem of sk_msg
168ff181f5b6 bpf, sockmap: Fix more uncharged while msg has more_data
de3a8d8fab07 bpf, sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full
ef9785f42979 bpf, sockmap: Fix memleak in sk_psock_queue_msg
8dd392e352d3 RDMA/mlx5: Fix memory leak in error flow for subscribe event routine
b089f7fc89f9 Revert "RDMA/core: Fix ib_qp_usecnt_dec() called when error"
d52dab6e0355 RDMA/irdma: Prevent some integer underflows
18e65ab351cf power: ab8500_chargalg: Use CLOCK_MONOTONIC
fe0e2ce5c87e mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init
d29cda15cab0 MIPS: pgalloc: fix memory leak caused by pgd_free()
d5e41310bd72 MIPS: RB532: fix return value of __setup handler
69155dc2e047 mips: cdmm: Fix refcount leak in mips_cdmm_phys_base
32939187f254 ath10k: Fix error handling in ath10k_setup_msa_resources
9d04f4a15fe0 vxcan: enable local echo for sent CAN frames
45962427aca2 powerpc: 8xx: fix a return value error in mpc8xx_pic_init
88242bd033e2 scsi: mpt3sas: Fix incorrect 4GB boundary check
ee773b7018d6 platform/x86: huawei-wmi: check the return value of device_create_file()
fdee6b347cb8 selftests/bpf: Make test_lwt_ip_encap more stable and faster
adc4a1ed139e libbpf: Unmap rings when umem deleted
0a0c75ce5e26 mfd: mc13xxx: Add check for mc13xxx_irq_request
4a852ff9b7be powerpc/64s: Don't use DSISR for SLB faults
b55697c2a274 powerpc/sysdev: fix incorrect use to determine if list is empty
804338913d27 MIPS: Sanitise Cavium switch cases in TLB handler synthesizers
be48780b4dec mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n
f23b4c9c6a5a drm/msm/a6xx: Fix missing ARRAY_SIZE() check
62f44f554d1c net: axienet: fix RX ring refill allocation failure handling
e37d269734ee PCI: Reduce warnings on possible RW1C corruption
4c3c666ecc6a RDMA/core: Fix ib_qp_usecnt_dec() called when error
c5505076073b IB/hfi1: Allow larger MTU without AIP
4124966fbd95 power: supply: wm8350-power: Add missing free in free_charger_irq
1318caf07507 power: supply: wm8350-power: Handle error for wm8350_register_irq
8659aba5cab3 i2c: xiic: Make bus names unique
383798d13aea hv_balloon: rate-limit "Unhandled message" warning
5baa1283d698 KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor()
468b136c2ca1 KVM: x86: Fix emulation in writing cr8
29322cd03678 powerpc/Makefile: Don't pass -mcpu=powerpc64 when building 32-bit
451472dc178f powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties()
6792c0b56252 libbpf: Skip forward declaration when counting duplicated type names
c06577a80485 gpu: host1x: Fix a memory leak in 'host1x_remove()'
2154f7cadd88 RDMA/irdma: Remove incorrect masking of PD
a0051c05312e RDMA/irdma: Fix Passthrough mode in VM
5e96bb45c936 RDMA/irdma: Fix netdev notifications for vlan's
ad7219cd8751 xsk: Fix race at socket teardown
c08f23081c9b bpf, arm64: Feed byte-offset into bpf line info
c301772c219d bpf, arm64: Call build_prologue() first in first JIT pass
ffe0526c2e17 drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt
849e6be7d66d scsi: hisi_sas: Change permission of parameter prot_mask
1003a85d0a30 power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false return
852c1f5f3119 drm/tegra: Fix reference leak in tegra_dsi_ganged_probe
3813591bc046 ext2: correct max file size computing
0c80fe5ea1b3 power: supply: sbs-charger: Don't cancel work that is not initialized
c2554b47644f TOMOYO: fix __setup handlers return values
bd443887ed2a drm/amd/display: Remove vupdate_int_entry definition
847f8677e367 RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR
c8db786858d8 scsi: pm8001: Fix abort all task initialization
c6c95cdd5138 scsi: pm8001: Fix NCQ NON DATA command completion handling
e4fce9af88ec scsi: pm8001: Fix NCQ NON DATA command task initialization
03865ae38771 scsi: pm8001: Fix le32 values handling in pm80xx_chip_sata_req()
b453d71af756 scsi: pm8001: Fix le32 values handling in pm80xx_chip_ssp_io_req()
d14d1f88d8c2 scsi: pm8001: Fix payload initialization in pm80xx_encrypt_update()
fc1d7c820287 scsi: pm8001: Fix le32 values handling in pm80xx_set_sas_protocol_timer_config()
e332a97c4358 scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config()
3a9bb3afd0cb scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req()
4e878e41e900 scsi: pm8001: Fix command initialization in pm80XX_send_read_log()
08f0b58e2a5f scsi: fnic: Fix a tracing statement
aed99c7648cb vfio/pci: wake-up devices around reset functions
4319f17fb826 vfio/pci: fix memory leak during D3hot to D0 transition
5f3856f3ba10 dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS
590bc324ac4e drm/msm/dpu: fix dp audio condition
9b625cee90a9 drm/msm/dpu: add DSPP blocks teardown
ea009273d0c2 drm/msm/dsi/phy: fix 7nm v4.0 settings for C-PHY mode
04ed3cd92999 drm/msm/dsi: Use "ref" fw clock instead of global name for VCO parent
47e2060f2366 drm/msm/dp: always add fail-safe mode into connector mode list
740d2330760e drm/msm/dp: stop link training after link training 2 failed
9525b8bcae8b drm/msm/dp: populate connector of struct dp_panel
2c4de9b94227 mtd: rawnand: pl353: Set the nand chip node as the flash node
a2095c3e0309 iwlwifi: mvm: Fix an error code in iwl_mvm_up()
01e36bdb95e7 iwlwifi: Fix -EIO error code that is never returned
a3bb5cda4fed iwlwifi: yoyo: remove DBGI_SRAM address reset writing
06511eed8177 iwlwifi: mvm: align locking in D3 test debugfs
ec9b77481aaf iwlwifi: mvm: don't iterate unadded vifs when handling FW SMPS req
21053d707480 iwlwifi: mvm: Don't call iwl_mvm_sta_from_mac80211() with NULL sta
2de35ae362f3 selftests: mptcp: add csum mib check for mptcp_connect
e2951eaa9398 dax: make sure inodes are flushed before destroy cache
c08208f2635c IB/cma: Allow XRC INI QPs to set their local ACK timeout
d85baefc858f libbpf: Fix memleak in libbpf_netlink_recv()
0f47edc22c2b drm/amd/display: Add affected crtcs to atomic state for dsc mst unplug
ac98fdec1114 drm/amd/pm: enable pm sysfs write for one VF mode
28093e78e0f2 bpftool: Fix the error when lookup in no-btf maps
64c06df2428b drm/bridge: anx7625: Fix overflow issue on reading EDID
d6c7f46b8f05 iommu/ipmmu-vmsa: Check for error num after setting mask
b5b285818754 HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports
ffb8e92b4cef power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init
9dea119df0fa libbpf: Use dynamically allocated buffer when receiving netlink messages
f2a19db2a941 drm/bridge: dw-hdmi: use safe format when first in bridge chain
2f0949db6e2c libbpf: Fix compilation warning due to mismatched printf format
0255e93dce7a net:enetc: allocate CBD ring data memory using DMA coherent methods
721992163e0c cxl/regs: Fix size of CXL Capability Header Register
0e348f94787f cxl/core: Fix cxl_probe_component_regs() error message
855f1c64e21e libbpf: Fix signedness bug in btf_dump_array_data()
cdb2150050c7 RDMA/rxe: Check the last packet by RXE_END_MASK
ed750e22e443 PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge
0fe94b84c43c PCI: aardvark: Fix reading MSI interrupt number
1f0add37ac5c igb: refactor XDP registration
ab8c107470d1 igc: avoid kernel warning when changing RX ring parameters
ea6b04796c87 mtd: mchp48l640: Add SPI ID table
21e78798b206 mtd: mchp23k256: Add SPI ID table
0eec5e2748f1 i2c: bcm2835: Fix the error handling in 'bcm2835_i2c_probe()'
0b01811fc193 i2c: bcm2835: Use platform_get_irq() to get the interrupt
b96a7265f763 net: asix: add proper error handling of usb read errors
b997cfdc3f98 livepatch: Fix build failure on 32 bits processors
34bed8dae12a scripts/dtc: Call pkg-config POSIXly correct
0aec294f2d2f mac80211: limit bandwidth in HE capabilities
a41efae062bf mac80211: Remove a couple of obsolete TODO
5ad6b337e4ac net: dsa: mv88e6xxx: Enable port policy support on 6097
b2dea2a696d0 ptp: unregister virtual clocks when unregistering physical clock.
a53c147ac496 mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update
fd1fcad5c053 mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update
443cb1bc8a96 mt76: mt7615: fix a leftover race in runtime-pm
421cb64c91dd mt76: mt7921: fix a leftover race in runtime-pm
0f3d76144b9c mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv
60d815fd4338 mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta mode
203a1e1230cf mt76: connac: fix sta_rec_wtbl tag len
94fd8a2a47c8 powerpc/perf: Don't use perf_hw_context for trace IMC PMU
0dc750479a5f KVM: PPC: Book3S HV: Check return value of kvmppc_radix_init
10686b028059 powerpc: dts: t1040rdb: fix ports names for Seville Ethernet switch
9acf7c2f3145 ray_cs: Check ioremap return value
3a4bcc4cb612 power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe
cb42b6cfc5b0 ixgbe: respect metadata on XSK Rx to skb
8c072b8e3226 ixgbe: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb
6dc18226976c ixgbe: pass bi->xdp to ixgbe_construct_skb_zc() directly
28e561f3660d igc: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb
0e2f6a7f59f1 i40e: respect metadata on XSK Rx to skb
968c76e96afd i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb
7ad4f7729f0e selftests/net: timestamping: Fix bind_phc check
5bedd66a59e5 KVM: PPC: Fix vmx/vsx mixup in mmio emulation
72c179f650f6 RDMA/core: Set MR type in ib_reg_user_mr
0b700f7d0649 ath9k_htc: fix uninit value bugs
c41832e7dadd selftests/bpf/test_xdp_redirect_multi: use temp netns for testing
a5c1c0920cf6 selftests/bpf: Normalize XDP section names in selftests
f00346b30a7c net: phy: at803x: move page selection fix to config_init
b175bc586410 drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function
bdc7429708a0 drm/amd/display: Fix a NULL pointer dereference in amdgpu_dm_connector_add_common_modes()
408ab78ca138 drm/nouveau/acr: Fix undefined behavior in nvkm_acr_hsfw_load_bl()
2e05de23052d ionic: Don't send reset commands if FW isn't running
4f69a923a388 ionic: start watchdog after all is setup
76624b5a61c7 ionic: fix type complaint in ionic_dev_cmd_clean()
da491fc54e4e drm/edid: Split deep color modes between RGB and YUV444
19da408ab41c drm/edid: Don't clear formats if using deep color
8480efe815e5 mtd: rawnand: gpmi: fix controller timings setting
5b1f32593955 mtd: onenand: Check for error irq
041e5b8a62e6 Bluetooth: hci_serdev: call init_rwsem() before p->open()
9d42e744685c Bluetooth: btintel: Fix WBS setting for Intel legacy ROM products
0b96610a7b74 selftests: bpf: Fix bind on used port
0728ccb66468 drm/selftests/test-drm_dp_mst_helper: Fix memory leak in sideband_msg_req_encode_decode
51b82141fffa bpf: Fix UAF due to race between btf_try_get_module and load_module
811b667cefbe udmabuf: validate ubuf->pagecount
e5f642c55f4c bpftool: Only set obj->skeleton on complete success
b385ebe91ae9 libbpf: Fix possible NULL pointer dereference when destroying skeleton
34d0a99fa09a drm/panfrost: Check for error num after setting mask
2ff993b3daa4 drm/v3d/v3d_drv: Check for error num after setting mask
982d824a9b27 ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern
66b805b63527 drm: bridge: adv7511: Fix ADV7535 HPD enablement
c43b4106cfc5 drm/bridge: nwl-dsi: Fix PM disable depth imbalance in nwl_dsi_probe
4db8e14ce478 drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe
f20a990784ee drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev
461656a5e9be drm/meson: Fix error handling when afbcd.ops->init fails
1c5439a71612 drm/meson: split out encoder from meson_dw_hdmi
ffcfa1669316 drm/meson: Make use of the helper function devm_platform_ioremap_resourcexxx()
d2a0678dff46 drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops
d81d72b912dc ARM: configs: multi_v5_defconfig: re-enable DRM_PANEL and FB_xxx
c4d2a100f104 ARM: configs: multi_v5_defconfig: re-enable CONFIG_V4L_PLATFORM_DRIVERS
c2e5f5d23718 ASoC: amd: Fix reference to PCM buffer address
2f44eca78cc6 ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data
e2aeafc6509c ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe
f589063b585a ASoC: atmel: Fix error handling in sam9x5_wm8731_driver_probe
f2b0fc2a46a6 mmc: davinci_mmc: Handle error for clk_enable
9668c6bca12a ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in msm8916_wcd_digital_probe
42735eae94ee ASoC: SOF: Intel: enable DMI L1 for playback streams
b23b524b8bbd ASoC: imx-es8328: Fix error return code in imx_es8328_probe()
06e6f4ba2534 ASoC: fsl_spdif: Disable TX clock when stop
44acdaf7acb6 ASoC: mxs: Fix error handling in mxs_sgtl5000_probe
1ecf9dcf2868 ASoC: dmaengine: do not use a NULL prepare_slave_config() callback
39c2894dfc08 ASoC: rk817: Fix missing clk_disable_unprepare() in rk817_platform_probe
87e04a89c31e ASoC: mediatek: mt8192-mt6359: Fix error handling in mt8192_mt6359_dev_probe
56e0f1696a96 ASoC: mediatek: use of_device_get_match_data()
5441ab46dd43 ASoC: SOF: Add missing of_node_put() in imx8m_probe
6724217bfbfd ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in rockchip_i2s_probe
f32ac9bf5e3f ASoC: atmel: Fix error handling in snd_proto_probe
1e77cab218e4 ivtv: fix incorrect device_caps for ivtvfb
a8523efdc946 media: saa7134: fix incorrect use to determine if list is empty
a41fc6d02d82 video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of
c19312809931 ASoC: fsi: Add check for clk_enable
0bdb861b7d1b ASoC: wm8350: Handle error for wm8350_register_irq
a0bc36b247dc ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe
9dd2fd7a1f84 media: vidtv: Check for null return of vzalloc
a09e9882800f media: stk1160: If start stream fails, return buffers with VB2_BUF_STATE_QUEUED
ea2258664ffc m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined
178b32112be1 arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly
eab74c416120 ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction
2883fb9838fc memory: emif: check the pointer temp in get_device_details()
50d934cea574 memory: emif: Add check for setup_interrupts
fc237b8d624f ASoC: soc-compress: prevent the potentially use of null pointer
d70d4a3ff5f2 ASoC: dwc-i2s: Handle errors for clk_enable
58b64ee38637 ASoC: atmel_ssc_dai: Handle errors for clk_enable
152d62d80960 ASoC: mxs-saif: Handle errors for clk_enable
f64c5b235b47 printk: fix return value of printk.devkmsg __setup handler
0fbd610e68c2 arm64: dts: broadcom: Fix sata nodename
de64846df9fe arm64: dts: ns2: Fix spi-cpol and spi-cpha property
b98940965daf ALSA: spi: Add check for clk_enable()
89676d9e8c84 ASoC: ti: davinci-i2s: Add check for clk_enable()
0a96bff46a5e mmc: sdhci_am654: Fix the driver data of AM64 SoC
7c31acd9ca79 soc: mediatek: pm-domains: Add wakeup capacity support in power domain
9db742370304 ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp()
3fa8114be4a2 uaccess: fix nios2 and microblaze get_user_8()
469277ff5ac8 vsprintf: Fix %pK with kptr_restrict == 0
8611161ea715 lib: uninline simple_strntoull() as well
34dd193d2329 selftests/lkdtm: Add UBSAN config
f58159509b62 media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated
b1b91b31627d media: v4l2-core: Initialize h264 scaling matrix
7399b9b62277 ASoC: codecs: wcd934x: fix return value of wcd934x_rx_hph_mode_put
c42e96af49ef ASoC: codecs: wcd934x: fix kcontrol max values
363490abe0be ASoC: codecs: wcd938x: fix kcontrol max values
adafea71b49e ASoC: codecs: wc938x: fix accessing array out of bounds for enum type
966408e37d84 ASoC: codecs: va-macro: fix accessing array out of bounds for enum type
eb15c6ea692f ASoC: codecs: rx-macro: fix accessing array out of bounds for enum type
9208ecc703b5 ASoC: codecs: rx-macro: fix accessing compander for aux
56dcb5480687 media: cedrus: h264: Fix neighbour info buffer size
dd6454742581 media: cedrus: H265: Fix neighbour info buffer size
895364fa97e6 media: usb: go7007: s2250-board: fix leak in probe()
332d45fe51d7 media: em28xx: initialize refcount before kref_get
aa613ac27029 media: ti-vpe: cal: Fix a NULL pointer dereference in cal_ctx_v4l2_init_formats()
12cb301cc5cb media: video/hdmi: handle short reads of hdmi info frame.
0d05a58ea3b9 media: mexon-ge2d: fixup frames size in registers
498ab2d70a9d ARM: dts: imx: Add missing LVDS decoder on M53Menlo
2305e3460b42 vsprintf: Fix potential unaligned access
b4c8675a710a ARM: dts: sun8i: v3s: Move the csi1 block to follow address order
49db8d166d7b soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe
42dab81e9309 firmware: ti_sci: Fix compilation failure when CONFIG_TI_SCI_PROTOCOL is not defined
19e4c3b037ff arm64: dts: qcom: sm8350: Correct TCS configuration for apps rsc
8026415d7f54 arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc
17790ef9ad1f arm64: dts: broadcom: bcm4908: use proper TWD binding
cc3a67e4147e arm64: dts: qcom: sm8250: fix PCIe bindings to follow schema
4514dc92a353 arm64: dts: qcom: sdm845: fix microphone bias properties and values
15565049d729 soc: qcom: aoss: remove spurious IRQF_ONESHOT flags
1874365f3c17 soc: qcom: ocmem: Fix missing put_device() call in of_get_ocmem
724376c30af5 soc: qcom: rpmpd: Check for null return of devm_kcalloc
d761d62022bb ARM: dts: qcom: ipq4019: fix sleep clock
b14f6a7d3608 firmware: qcom: scm: Remove reassignment to desc following initializer
6c4cc4d36966 ARM: dts: Fix OpenBMC flash layout label addresses
c3364cbc3762 video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name()
f3ef254c840d video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe()
c420b540db4b video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe()
24cfeb466146 video: fbdev: controlfb: Fix COMPILE_TEST build
02684dd83332 video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to avoid black screen
96eb48f017cd media: aspeed: Correct value for h-total-pixels
4a3051977327 media: ov5648: Don't pack controls struct
26b1865f1fd4 media: v4l: Avoid unaligned access warnings when printing 4cc modifiers
ef35afc268c5 media: ov6650: Fix set format try processing path
4ea548312052 media: hantro: Fix overfill bottom register field name
b0b890dd8df3 media: meson: vdec: potential dereference of null pointer
c3590ec1161d media: coda: Fix missing put_device() call in coda_get_vdoa_data
f0344f0aee4d ASoC: simple-card-utils: Set sysclk on all components
bb0a0e23dd00 ASoC: xilinx: xlnx_formatter_pcm: Handle sysclk setting
1179081ba5fa ASoC: codecs: Check for error pointer after calling devm_regmap_init_mmio
e48b189799d3 ASoC: sh: rz-ssi: Drop calling rz_ssi_pio_recv() recursively
f7d07ad8bc03 media: atmel: atmel-sama7g5-isc: fix ispck leftover
25b925f94a36 media: bttv: fix WARNING regression on tunerless devices
e1854a6c3a68 media: imx: imx8mq-mipi_csi2: fix system resume
72d79cd3c3ad media: imx: imx8mq-mipi-csi2: remove wrong irq config write operation
0022dc8cafa5 media: mtk-vcodec: potential dereference of null pointer
48d00e24822e media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls
1fbc023f8173 media: staging: media: imx: imx7-mipi-csis: Make subdev name unique
74cbe85fa044 media: camss: vfe-170: fix "VFE halt timeout" error
9af4e473668a media: camss: csid-170: set the right HALT_CMD when disabled
a3b104487f74 media: camss: csid-170: don't enable unused irqs
20d5934825b9 media: camss: csid-170: fix non-10bit formats
0ac903a7bde9 media: staging: media: zoran: fix usage of vb2_dma_contig_set_max_seg_size
b84343a9d676 pinctrl: samsung: Remove EINT handler for Exynos850 ALIVE and CMGP gpios
9a24d035c5eb kunit: make kunit_test_timeout compatible with comment
9ca7b59e7877 drivers/base/memory: add memory block to memory group after registration succeeded
5bed6c2c1ffe selftests, x86: fix how check_cc.sh is being invoked
0f42a02e4773 f2fs: fix compressed file start atomic write may cause data corruption
1a97987f76b4 btrfs: fix unexpected error path when reflinking an inline extent
2911ad0249c5 f2fs: fix to avoid potential deadlock
1e0e63ad6243 sched/rt: Plug rt_mutex_setprio() vs push_rt_task() race
b7aec0843e28 sched/cpuacct: Fix charge percpu cpuusage
cc91880f0417 nfsd: more robust allocation failure handling in nfsd_file_cache_init
d1eaaf6caded f2fs: fix missing free nid in f2fs_handle_failed_inode
ec5884cbbfd3 sched/fair: Improve consistency of allowed NUMA balance calculations
df5e0a0b3a4e perf/x86/intel/pt: Fix address filter config for 32-bit kernel
929d8a87f709 perf/core: Fix address filter parser for multiple filters
3bb11f3f6872 rseq: Remove broken uapi field layout on 32-bit little endian
d2c741290f7e sched/uclamp: Fix iowait boost escaping uclamp restriction
6c7276622393 sched/core: Export pelt_thermal_tp
8bc68c44d97f sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa
d8c8dd97bb8c f2fs: fix to enable ATGC correctly via gc_idle sysfs interface
f69aecb49968 watch_queue: Actually free the watch
695c47cea02b watch_queue: Fix NULL dereference in error cleanup
109dda451021 io_uring: terminate manual loop iterator loop correctly for non-vecs
1323976e9448 io_uring: don't check unrelated req->open.how in accept request
657edec8987a clocksource: acpi_pm: fix return value of __setup handler
9b181ad309c6 hwmon: (pmbus) Add Vin unit off handling
41887c82e76f hwrng: nomadik - Change clk_disable to clk_disable_unprepare
335bf1fc74f7 crypto: ccree - Fix use after free in cc_cipher_exit()
20550eb187e8 crypto: ccp - ccp_dmaengine_unregister release dma channels
166b2478152c ACPI: APEI: fix return value of __setup handlers
bfa4a733aeaa KEYS: trusted: Avoid calling null function trusted_key_exit
b0efbe7e88c7 KEYS: trusted: Fix trusted key backends when building as module
d362998e8df9 arm64: prevent instrumentation of bp hardening callbacks
df04ef63347f clocksource/drivers/timer-of: Check return value of of_iomap in timer_of_base_init()
abc6b2a12a3e clocksource/drivers/timer-microchip-pit64b: Use notrace
a81de4315ecf clocksource/drivers/exynos_mct: Handle DTS with higher number of interrupts
e34ba9ff04ee clocksource/drivers/exynos_mct: Refactor resources allocation
97e3aaace46e clocksource/drivers/timer-ti-dm: Fix regression from errata i940 fix
58c9d407ce82 crypto: vmx - add missing dependencies
f9474039df09 crypto: gemini - call finalize with bh disabled
6ce48276d736 crypto: amlogic - call finalize with bh disabled
67bc6890b981 crypto: sun8i-ce - call finalize with bh disabled
05e13c5e4f8e crypto: sun8i-ss - call finalize with bh disabled
2684f459f919 hwrng: atmel - disable trng on failure path
f8a1392c099b spi: spi-zynqmp-gqspi: Handle error for dma_set_mask
7e45fc93dde2 PM: suspend: fix return value of __setup handler
d0cd9da501f6 PM: hibernate: fix __setup handler error handling
efaa0e969261 block: don't delete queue kobject before its children
b9070c866aa3 nvme: fix the check for duplicate unique identifiers
2340a15d3914 nvme: cleanup __nvme_check_ids
a015dd1b8a54 hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING
3a70165fc788 hwmon: (pmbus) Add mutex to regulator ops
f2757af27bf3 spi: pxa2xx-pci: Balance reference count for PCI DMA device
40dba7c26e89 crypto: hisilicon/sec - fix the aead software fallback for engine
c71e4d45dcc4 crypto: ccree - don't attempt 0 len DMA mappings
0c366ade8606 EVM: fix the evm= __setup handler return value
3a10df731516 audit: log AUDIT_TIME_* records only from rules
8e8724b87afe crypto: rockchip - ECB does not need IV
4d6e00474872 selftests/sgx: Treat CC as one argument
d9172393f0f6 selftests/x86: Add validity check and allow field splitting
e129fb065106 blk-cgroup: set blkg iostat after percpu stat aggregation
c17eb1586c94 arm64/mm: avoid fixmap race condition when create pud mapping
8550c9b846c5 stack: Constrain and fix stack offset randomization with Clang builds
8effc4dc79a5 spi: tegra210-quad: Fix missin IRQ check in tegra_qspi_probe
906315cb82d6 spi: tegra114: Add missing IRQ check in tegra_spi_probe
e6374086f249 crypto: octeontx2 - remove CONFIG_DM_CRYPT check
9ada174f47b3 thermal: int340x: Check for NULL after calling kmemdup()
486d4c18f207 selinux: Fix selinux_sb_mnt_opts_compat()
c111b3c1a257 crypto: mxs-dcp - Fix scatterlist processing
af3c34eb9410 crypto: authenc - Fix sleep in atomic context in decrypt_tail
8f10a38c9212 crypto: sun8i-ss - really disable hash on A80
046f1499aef8 hwrng: cavium - HW_RANDOM_CAVIUM should depend on ARCH_THUNDER
7919dfd84b35 hwrng: cavium - Check health status while reading random data
0e67b3e1f93a crypto: ccp - Ensure psp_ret is always init'd in __sev_platform_init_locked()
01d508417055 selinux: check return value of sel_make_avc_files
aeeb944e7f91 selinux: access superblock_security_struct in LSM blob way
ae2ff8d991b6 regulator: qcom_smd: fix for_each_child.cocci warnings
9bbe88d1023f PCI: xgene: Revert "PCI: xgene: Fix IB window setup"
920facf23305 PCI: pciehp: Clear cmd_busy bit in polling mode
86ca87591870 PCI: imx6: Allow to probe when dw_pcie_wait_for_link() fails
312d3d4f49e1 drm/i915/gem: add missing boundary check in vm_access
d8b8bd1d03ee drm/i915/opregion: check port number bounds for SWSCI display power state
2b08e0189b02 brcmfmac: pcie: Fix crashes due to early IRQs
a7ea6de3bdd5 brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio
b6957a10747c brcmfmac: pcie: Declare missing firmware files in pcie.c
a88337a06966 brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path
6e2dfa829026 brcmfmac: firmware: Allocate space for default boardrev in nvram
51f0af904fb6 drm/fb-helper: Mark screen buffers in system memory with FBINFO_VIRTFB
713f1fefb6c6 drm/nouveau/backlight: Just set all backlight types as RAW
80de94c4ab4e drm/nouveau/backlight: Fix LVDS backlight detection on some laptops
7585d0f56f29 drm/syncobj: flatten dma_fence_chains on transfer
85814e6461b8 xtensa: fix xtensa_wsr always writing 0
821907e8f516 xtensa: fix stop_machine_cpuslocked call in patch_text
e28bace5e7dc xtensa: define update_mmu_tlb function
00c6bb4cea62 btrfs: verify the tranisd of the to-be-written dirty extent buffer
f85ee0c845fd btrfs: extend locking to all space_info members accesses
68a8120e1647 btrfs: zoned: mark relocation as writing
2bd666b0fd28 media: davinci: vpif: fix unbalanced runtime PM enable
12159871e1b4 media: davinci: vpif: fix unbalanced runtime PM get
992af22dab9c media: venus: venc: Fix h264 8x8 transform control
d5fcfc4af806 media: venus: hfi_cmds: List HDR10 property as unsupported for v1 and v3
0a45148635f8 media: gpio-ir-tx: fix transmit with long spaces on Orange Pi PC
3e3c8d88e0ca DEC: Limit PMAX memory probing to R3k systems
2039163c30f8 PM: domains: Fix sleep-in-atomic bug caused by genpd_debug_remove()
74e2d61e4faa bcache: fixup multiple threads crash
2221a0f6c90c crypto: rsa-pkcs1pad - fix buffer overread in pkcs1pad_verify_complete()
dc7cacd209c8 crypto: rsa-pkcs1pad - restore signature length check
5013dbd89101 crypto: rsa-pkcs1pad - correctly get hash from source scatterlist
9c8d8f87c213 crypto: rsa-pkcs1pad - only allow with rsa
1290eb4412aa exec: Force single empty string when argv is empty
d342786a0e94 lib/raid6/test: fix multiple definition linking error
137c66d5f915 thermal: int340x: Increase bitmap size
bc5f440e1c5c pstore: Don't use semaphores in always-atomic-context code
10a15d91bcba carl9170: fix missing bit-wise or operator for tx_params
1d89cb2c72d6 mgag200 fix memmapsl configuration in GCTL6 register
bd0cc79722df ARM: dts: exynos: add missing HDMI supplies on SMDK5420
661016b895e6 ARM: dts: exynos: add missing HDMI supplies on SMDK5250
d4577ac55725 ARM: dts: exynos: fix UART3 pins configuration in Exynos5250
cc7c9d207fce ARM: dts: at91: sama5d2: Fix PMERRLOC resource size
64b3bc9050d8 ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes
cdcaec46a6b2 rfkill: make new event layout opt-in
677a5f6c81b5 video: fbdev: atari: Atari 2 bpp (STe) palette bugfix
46cdbff26c88 video: fbdev: sm712fb: Fix crash in smtcfb_read()
c894ac44786c fbdev: Hot-unplug firmware fb devices on forced removal
6e72980d588e drm/edid: check basic audio support on CEA extension block
2e76c69c85f9 block: don't merge across cgroup boundaries if blkcg is enabled
6a11b52b498d block: limit request dispatch loop duration
f1dd8c1186be mailbox: tegra-hsp: Flush whole channel
3d4b396a616d landlock: Use square brackets around "landlock-ruleset"
20fbf100f84b samples/landlock: Fix path_list memory leak
3eb18f8a1d02 drivers: hamradio: 6pack: fix UAF bug caused by mod_timer()
3c65b7309d2e ext4: make mb_optimize_scan performance mount option work with extents
597393cde841 ext4: fix fs corruption when tring to remove a non-empty directory with IO error
73fa1798233c ext4: fix ext4_fc_stats trace point
6cdb84dd0c8d coredump: Also dump first pages of non-executable ELF libraries
8a7f9d9c3f6a ACPI: properties: Consistently return -ENOENT if there are no more references
2e2eb55823df Revert "ACPI: Pass the same capabilities to the _OSC regardless of the query flag"
b6094744e261 ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM
5e3bd996d2c8 arm64: dts: ti: k3-am64: Fix gic-v3 compatible regs
96181539a521 arm64: dts: ti: k3-j7200: Fix gic-v3 compatible regs
e931b8494a51 arm64: dts: ti: k3-j721e: Fix gic-v3 compatible regs
146ad3e0177d arm64: dts: ti: k3-am65: Fix gic-v3 compatible regs
393a8a0f971e arm64: dts: qcom: sm8250: Fix MSI IRQ for PCIe1 and PCIe2
a01e1eaf5407 arm64: Do not defer reserve_crashkernel() for platforms with no DMA memory zones
556e8e0a27c8 arm64: signal: nofpsimd: Do not allocate fp/simd context when not available
e04a1de51cf6 PCI: fu740: Force 2.5GT/s for initial device probe
ec5ebfd1ce35 powerpc/kvm: Fix kvm_use_magic_page
024c2a0db53a drbd: fix potential silent data corruption
39483fd3b2d2 tracing: Have trace event string test handle zero length strings
12ea1f73690b dm integrity: set journal entry unused when shrinking device
737d5e25e28d dm: fix double accounting of flush with data
dc77afd7491e dm: interlock pending dm_io and dm_wait_for_bios_completion
0987f00a76a1 dm: fix use-after-free in dm_cleanup_zoned_dev()
d3444138ff0d dm stats: fix too short end duration_ns when using precise_timestamps
7d3bd683e084 mm/kmemleak: reset tag when compare object pointer
7d04d6d5c114 mm,hwpoison: unmap poisoned page before invalidation
d4835551fd9f Revert "mm: madvise: skip unmapped vma holes passed to process_madvise"
a07a4b75cccb mm: madvise: return correct bytes advised with process_madvise
27d96f11b0a2 mm: madvise: skip unmapped vma holes passed to process_madvise
476df5994878 drm/simpledrm: Add "panel orientation" property on non-upright mounted LCD panels
7c5312fdb1dc ocfs2: fix crash when mount with quota enabled
cd2722e411e8 rtc: pl031: fix rtc features null pointer dereference
8e167fdd4f62 rtc: mc146818-lib: fix locking in mc146818_set_time
0cc320929ac6 ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020
7777744e92a0 ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock
f9f37a956de1 ALSA: hda: Avoid unsol event during RPM suspending
cf4cd2a5d0ae ALSA: cs4236: fix an incorrect NULL check on list iterator
39a4bf7d1a23 cifs: fix NULL ptr dereference in smb2_ioctl_query_info()
f143f8334fb9 cifs: prevent bad output lengths in smb2_ioctl_query_info()
665cf5507470 Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads"
305a5303d1da riscv: Increase stack size under KASAN
ee29fe27818e riscv: Fix fill_callchain return value
3c4a1c81900c riscv: dts: canaan: Fix SPI3 bus width
876a9bdfd9af qed: validate and restrict untrusted VFs vlan promisc mode
4d8323922ea9 qed: display VF trust config
59a4bc52f111 scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands
cbf4e2f4f700 scsi: scsi_transport_fc: Fix FPIN Link Integrity statistics counters
64b0fe4808bd scsi: ufs: Fix runtime PM messages never-ending cycle
6ade94e6afc6 scsi: core: sd: Add silence_suspend flag to suppress some PM messages
5e217aa2c825 mempolicy: mbind_range() set_policy() after vma_merge()
3bae72c2db69 mm: invalidate hwpoison page cache page in fault path
a74bb0eeabcd mm/pages_alloc.c: don't create ZONE_MOVABLE beyond the end of a node
ab657a29c3e9 mm: fs: fix lru_cache_disabled race in bh_lru
52ba0ab4f0a6 jffs2: fix memory leak in jffs2_scan_medium
4392e8aeebc5 jffs2: fix memory leak in jffs2_do_mount_fs
7a75740206af jffs2: fix use-after-free in jffs2_clear_xattr_subsystem
f2ce5238904f can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error path
f43e64076ff1 can: m_can: m_can_tx_handler(): fix use after free of skb
459b19f42fd5 can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path
31d7d7f35045 mtd: rawnand: protect access to rawnand devices while in suspend
7d94d25c7972 spi: mxic: Fix the transmit path
48254561bd04 net: bnxt_ptp: fix compilation error
89d369454267 pinctrl: samsung: drop pin banks references on error paths
1db1639d955b pinctrl: ingenic: Fix regmap on X series SoCs
025a7ccfb7a5 mm/mlock: fix two bugs in user_shm_lock()
34afac3c75fa remoteproc: Fix count check in rproc_coredump_write()
b065f398c860 f2fs: fix to do sanity check on .cp_pack_total_block_count
f9156db0987f f2fs: quota: fix loop condition at f2fs_quota_sync()
e98ae961b334 f2fs: fix to unlock page correctly in error path of is_alive()
303cd6173dce NFSD: prevent integer overflow on 32 bit systems
614a61e15920 NFSD: prevent underflow in nfssvc_decode_writeargs()
253a9533941e NFS: NFSv2/v3 clients should never be setting NFS_CAP_XATTR
518a7d6be1ed SUNRPC: avoid race between mod_timer() and del_timer_sync()
19c82681db26 HID: intel-ish-hid: Use dma_alloc_coherent for firmware update
b3e38f939ab4 firmware: sysfb: fix platform-device leak in error path
0dff5664b867 firmware: stratix10-svc: add missing callback parameter on RSU
72403d1c04bb Documentation: update stable tree link
8259235ab46e Documentation: add link to stable release candidate tree
a1e55db51a88 KEYS: asymmetric: properly validate hash_algo and encoding
255921f63a9e KEYS: asymmetric: enforce that sig algo matches key algo
fe8df4489240 KEYS: fix length validation in keyctl_pkey_params_get_2()
512bde642087 cifs: we do not need a spinlock around the tree access during umount
2fafbc198613 cifs: fix handlecache and multiuser
b6d75218ff65 ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE
42606add50f9 clk: uniphier: Fix fixed-rate initialization
5aa6d84a0b07 clk: rockchip: re-add rational best approximation algorithm to the fractional divider
ab67122003b1 greybus: svc: fix an error handling bug in gb_svc_hello()
9e97f6641c87 iio: inkern: make a best effort on offset calculation
b378d3f585e3 iio: inkern: apply consumer scale when no channel scale is available
e38582362101 iio: inkern: apply consumer scale on IIO_VAL_INT cases
1cb35faea3c3 iio: afe: rescale: use s64 for temporary scale calculations
c61e2fc87f24 coresight: syscfg: Fix memleak on registration failure in cscfg_create_device
ba81399402b7 coresight: Fix TRCCONFIGR.QE sysfs interface
f1d936537155 docs: sphinx/requirements: Limit jinja2<3.1
c1013a5ba4c9 bus: mhi: Fix MHI DMA structure endianness
fe66a11af28c bus: mhi: pci_generic: Add mru_default for Quectel EM1xx series
84bb0ac6c86f mei: avoid iterator usage outside of list_for_each_entry
6d2ec095176c mei: me: add Alder Lake N device id.
7c2422748463 mei: me: disable driver on the ign firmware
f6121a746fae xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx()
7c2a317703c6 xhci: make xhci_handshake timeout for xhci_reset() adjustable
4f2ab7e93b37 xhci: fix runtime PM imbalance in USB2 resume
75bbc2b9748b xhci: fix garbage USBSTS being logged in some cases
f5dc00496f76 USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c
c94138ae4000 usb: typec: tipd: Forward plug orientation to typec subsystem
662893b4f6bd tpm: fix reference counting for struct tpm_chip
5a0735b0bcf9 virtio-blk: Use blk_validate_block_size() to validate block size
8a4521456b54 iommu/iova: Improve 32-bit free space estimate
fe953e0f77e5 drm/amdgpu: only check for _PR3 on dGPUs
0884abb259f1 drm/amdgpu: move PX checking into amdgpu_device_ip_early_init
03f836fcb655 locking/lockdep: Avoid potential access of invalid memory in lock_class
9f93d46a63d5 selftests: vm: fix clang build error multiple output files
2ea395dc1327 net: dsa: microchip: add spi_device_id tables
d06ee4572fd9 af_key: add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register
f868ffd1ead3 Input: zinitix - do not report shadow fingers
8745973cdfc6 spi: Fix erroneous sgs value with min_t()
20f46b12162c Revert "gpio: Revert regression in sysfs-gpio (gpiolib.c)"
13b570f365b8 net:mcf8390: Use platform_get_irq() to get the interrupt
526a46a5f479 spi: Fix invalid sgs value
a28571fcc422 gpio: Revert regression in sysfs-gpio (gpiolib.c)
cd3121310e33 ethernet: sun: Free the coherent when failing in probing
afffb79a2dd5 tools/virtio: fix virtio_test execution
f8f8e96048ad vdpa/mlx5: should verify CTRL_VQ feature exists for MQ
32aef620e650 virtio_console: break out of buf poll on remove
3d39860bea5e ARM: mstar: Select HAVE_ARM_ARCH_TIMER
189bdde30b55 xfrm: fix tunnel model fragmentation behavior
3a2914bc3e62 HID: Add support for open wheel and no attachment to T300
a3248ecf0724 HID: logitech-dj: add new lightspeed receiver id
d5aad7d63b1b hv: utils: add PTP_1588_CLOCK to Kconfig to fix build
dd84d71bcbcb mm: kfence: fix missing objcg housekeeping for SLAB
3d7df3f83f67 USB: serial: simple: add Nokia phone driver
33325a62249e USB: serial: pl2303: fix GS type detection
1dd64317e785 dt-bindings: usb: hcd: correct usb-device path
2241e42f6c71 USB: serial: pl2303: add IBM device IDs
890f78e54b74 Revert "swiotlb: rework "fix info leak with DMA_FROM_DEVICE""
(From OE-Core rev: 79790e0aa5cc637fa4572e2894989c0000ec8ef7)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 079cf4b9edb0a40f40135b7ae761254823051393)
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/.:
20dcef87913 versatile: restore explicit CONFIG_ARM
8e63ec2fc66 qemuarm64: cleanup for tiny enablement
fa720c009a8 arm-versatile-926ejs: reorg for tiny and preempt-rt
7febff689a8 qemuarma15: fix tiny and preempt-rt
7720c50d622 tiny: make more generic
f052e84eafa pci: remove CONFIG_PCI_MMCONFIG
917043019b4 virtio: Add prereqs for tiny
da919d67b1a common-pc: add CONFIG_ISA_DMA_API for tiny
1a3a497c472 x2apic: enable iommu for tiny
63e25b57177 features/security: Move x86_64 configs to separate file
(From OE-Core rev: 74f2af2010e133e0cc1f8767bd3bcabbfca7c784)
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3e966df4f2d3236a259e6057f2deb22823fca173)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Add support for qemuarmv5 and qemuarm64, and remove qemuarm specific
entries, as it should be generic now.
(From OE-Core rev: 617e13b1af686f0713589b10b2f094a34f588b9d)
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9bd21e1130155ad1ec704e0151a22e9f84bfaa78)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating linux-yocto/5.10 to the latest korg -stable release that comprises
the following commits:
1052f9bce629 Linux 5.10.112
5c62d3bf1410 ax25: Fix UAF bugs in ax25 timers
f934fa478dd1 ax25: Fix NULL pointer dereferences in ax25 timers
145ea8d213e8 ax25: fix NPD bug in ax25_disconnect
a4942c6fea87 ax25: fix UAF bug in ax25_send_control()
b20a5ab0f5fb ax25: Fix refcount leaks caused by ax25_cb_del()
57cc15f5fd55 ax25: fix UAF bugs of net_device caused by rebinding operation
5ddae8d06441 ax25: fix reference count leaks of ax25_dev
5ea00fc60676 ax25: add refcount in ax25_dev to avoid UAF bugs
361288633bfa scsi: iscsi: Fix unbound endpoint error handling
129db30599bc scsi: iscsi: Fix endpoint reuse regression
26f827e095ab dma-direct: avoid redundant memory sync for swiotlb
9a5a4d23e24d timers: Fix warning condition in __run_timers()
84837f43e56f i2c: pasemi: Wait for write xfers to finish
89496d80bf84 smp: Fix offline cpu check in flush_smp_call_function_queue()
cd02b2687d66 dm integrity: fix memory corruption when tag_size is less than digest size
0a312ec66a03 ARM: davinci: da850-evm: Avoid NULL pointer dereference
0806f1930562 tick/nohz: Use WARN_ON_ONCE() to prevent console saturation
0275c75955d1 genirq/affinity: Consider that CPUs on nodes can be unbalanced
1fcfe37d170a drm/amdgpu: Enable gfxoff quirk on MacBook Pro
68ae52efa132 drm/amd/display: don't ignore alpha property on pre-multiplied mode
a263712ba8c9 ipv6: fix panic when forwarding a pkt with no in6 dev
659214603bf2 nl80211: correctly check NL80211_ATTR_REG_ALPHA2 size
912797e54c99 ALSA: pcm: Test for "silence" field in struct "pcm_format_data"
48d070ca5e7e ALSA: hda/realtek: add quirk for Lenovo Thinkpad X12 speakers
163e16247130 ALSA: hda/realtek: Add quirk for Clevo PD50PNT
5e4dd1799883 btrfs: mark resumed async balance as writing
1d2eda18f6ff btrfs: fix root ref counts in error handling in btrfs_get_root_ref
9b7ec35253c9 ath9k: Fix usage of driver-private space in tx_info
0f65cedae500 ath9k: Properly clear TX status area before reporting to mac80211
cc21ae932656 gcc-plugins: latent_entropy: use /dev/urandom
c089ffc846c8 memory: renesas-rpc-if: fix platform-device leak in error path
342454231ee5 KVM: x86/mmu: Resolve nx_huge_pages when kvm.ko is loaded
06c348fde545 mm: kmemleak: take a full lowmem check in kmemleak_*_phys()
20ed94f8181a mm: fix unexpected zeroed page mapping with zram swap
192e507ef894 mm, page_alloc: fix build_zonerefs_node()
000b3921b4d5 perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant
ca24c5e8f0ac drivers: net: slip: fix NPD bug in sl_tx_timeout()
e8cf1e4d953d scsi: megaraid_sas: Target with invalid LUN ID is deleted during scan
5b7ce74b6bc8 scsi: mvsas: Add PCI ID of RocketRaid 2640
4b44cd584057 drm/amd/display: Fix allocate_mst_payload assert on resume
34ea097fb63d drm/amd/display: Revert FEC check in validation
fa5ee7c4232c myri10ge: fix an incorrect free for skb in myri10ge_sw_tso
d90df6da50c5 net: usb: aqc111: Fix out-of-bounds accesses in RX fixup
9c12fcf1d864 net: axienet: setup mdio unconditionally
b643807a735e tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry
98973d2bdd4a arm64: alternatives: mark patch_alternative() as `noinstr`
2462faffbfa5 regulator: wm8994: Add an off-on delay for WM8994 variant
aa8cdedaf760 gpu: ipu-v3: Fix dev_dbg frequency output
150fe861c57c ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs
1ff5359afa5e net: micrel: fix KS8851_MLL Kconfig
d3478709edf2 scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024
b9a110fa755b scsi: lpfc: Fix queue failures when recovering from PCI parity error
aec36b98a1bb scsi: target: tcmu: Fix possible page UAF
43666798059c Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer
1d7a5aae884c drm/amdkfd: Check for potential null return of kmalloc_array()
e5afacc826a8 drm/amdgpu/vcn: improve vcn dpg stop procedure
d2e0931e6d84 drm/amdkfd: Fix Incorrect VMIDs passed to HWS
7fc0610ad818 drm/amd/display: Update VTEM Infopacket definition
6906e05cf3ad drm/amd/display: FEC check in timing validation
756c61c1680f drm/amd/display: fix audio format not updated after edid updated
76e086ce7b2d btrfs: do not warn for free space inode in cow_file_range
217190dc66ef btrfs: fix fallocate to use file_modified to update permissions consistently
9b5d1b3413d7 drm/amd: Add USBC connector ID
6f9c06501d28 net: bcmgenet: Revert "Use stronger register read/writes to assure ordering"
504c15f07f54 dm mpath: only use ktime_get_ns() in historical selector
4e166a41180b cifs: potential buffer overflow in handling symlinks
67677050cecb nfc: nci: add flush_workqueue to prevent uaf
bfba9722cf2e perf tools: Fix misleading add event PMU debug message
280f721edc54 testing/selftests/mqueue: Fix mq_perf_tests to free the allocated cpu set
eb8873b324d9 sctp: Initialize daddr on peeled off socket
45226fac4d31 scsi: iscsi: Fix conn cleanup and stop race during iscsid restart
73805795c99f scsi: iscsi: Fix offload conn cleanup when iscsid restarts
699bd835c36e scsi: iscsi: Move iscsi_ep_disconnect()
46f37a34a53d scsi: iscsi: Fix in-kernel conn failure handling
812573896711 scsi: iscsi: Rel ref after iscsi_lookup_endpoint()
22608545b834 scsi: iscsi: Use system_unbound_wq for destroy_work
4029a1e992fc scsi: iscsi: Force immediate failure during shutdown
17d14456f626 scsi: iscsi: Stop queueing during ep_disconnect
da9cf24aa739 scsi: pm80xx: Enable upper inbound, outbound queues
e08d26971237 scsi: pm80xx: Mask and unmask upper interrupt vectors 32-63
35b91e49bc80 net/smc: Fix NULL pointer dereference in smc_pnet_find_ib()
98a7f6c4ada4 drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init()
5f78ad93837c drm/msm: Fix range size vs end confusion
5513f9a0b068 cfg80211: hold bss_lock while updating nontrans_list
a44938950e5e net/sched: taprio: Check if socket flags are valid
08d5e3e95453 net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link
2ad9d890d850 net: dsa: felix: suppress -EPROBE_DEFER errors
f2cc341fcc42 net/sched: fix initialization order when updating chain 0 head
7a7cf8414841 mlxsw: i2c: Fix initialization error flow
43e58e119a2b net: mdio: Alphabetically sort header inclusion
9709c8b5cdc8 gpiolib: acpi: use correct format characters
d67c900f1947 veth: Ensure eth header is in skb's linear part
845f44ce3d9f net/sched: flower: fix parsing of ethertype following VLAN header
85ee17ca21cf SUNRPC: Fix the svc_deferred_event trace class
af12dd71235c media: rockchip/rga: do proper error checking in probe
563712971202 firmware: arm_scmi: Fix sorting of retrieved clock rates
16c628b0c6fa memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe
cb66641f8106 drm/msm: Add missing put_task_struct() in debugfs path
921fdc45a084 btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups()
5d131318bb87 ACPI: processor idle: Check for architectural support for LPI
503934df3108 cpuidle: PSCI: Move the `has_lpi` check to the beginning of the function
cfa98ffc42f1 hamradio: remove needs_free_netdev to avoid UAF
80a4df14643f hamradio: defer 6pack kfree after unregister_netdev
f0c31f192f38 drm/amdkfd: Use drm_priv to pass VM from KFD to amdgpu
6c8e5cb264df Linux 5.10.111
d36febbcd537 powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit
5c672073bcca mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning
5973f7507a73 irqchip/gic, gic-v3: Prevent GSI to SGI translations
000e09462f85 Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb()
e1f540b752cb arm64: module: remove (NOLOAD) from linker script
919823bd6738 selftests: cgroup: Test open-time cgroup namespace usage for migration checks
637eca44b8f7 selftests: cgroup: Test open-time credential usage for migration checks
9dd39d2c6572 selftests: cgroup: Make cg_create() use 0755 for permission instead of 0644
e74da71e6614 selftests/cgroup: Fix build on older distros
4665722d36ad cgroup: Use open-time credentials for process migraton perm checks
f089471d1b75 mm: don't skip swap entry even if zap_details specified
58823a9b097c ubsan: remove CONFIG_UBSAN_OBJECT_SIZE
03b39bbbec8b dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error"
40e00885a61f tools build: Use $(shell ) instead of `` to get embedded libperl's ccopts
75c8558d410f tools build: Filter out options and warnings not supported by clang
6374faf49e89 perf python: Fix probing for some clang command line options
79abc219bafd perf build: Don't use -ffat-lto-objects in the python feature test when building with clang-13
82e43950143c drm/amdkfd: Create file descriptor after client is added to smi_clients list
326b408e7ec7 drm/nouveau/pmu: Add missing callbacks for Tegra devices
786ae8de3a5e drm/amdgpu/smu10: fix SoC/fclk units in auto mode
ff24114bb08d irqchip/gic-v3: Fix GICR_CTLR.RWP polling
451214b266e9 perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator
fc629224aa62 ata: sata_dwc_460ex: Fix crash due to OOB write
7e88a50704b0 gpio: Restrict usage of GPIO chip irq members before initialization
5f54364ff6cf RDMA/hfi1: Fix use-after-free bug for mm struct
8bb41682911f arm64: patch_text: Fixup last cpu should be master
a044bca8ef31 btrfs: prevent subvol with swapfile from being deleted
82ae73ac963c btrfs: fix qgroup reserve overflow the qgroup limit
fc4bdaed4d4e x86/speculation: Restore speculation related MSRs during S3 resume
8c9e26c890ba x86/pm: Save the MSR validity status at context setup
2827328e646d io_uring: fix race between timeout flush and removal
f7e183b0a713 mm/mempolicy: fix mpol_new leak in shared_policy_replace
7d659cb1763f mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0)
6adc01a7aa37 lz4: fix LZ4_decompress_safe_partial read out of bound
8b6f04b4c9d9 mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is complete
029b4170737f mmc: mmci: stm32: correctly check all elements of sg list
41a519c05bee Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning"
9de98470db6e arm64: Add part number for Arm Cortex-A78AE
4604b5738d5b perf session: Remap buf if there is no space for event
362ced37690d perf tools: Fix perf's libperf_print callback
65210fac639e perf: arm-spe: Fix perf report --mem-mode
bd905fed87ce iommu/omap: Fix regression in probe for NULL pointer dereference
b3c00be2ff8b SUNRPC: svc_tcp_sendmsg() should handle errors from xdr_alloc_bvec()
9a45e08636bb SUNRPC: Handle low memory situations in call_status()
132cbe2f182a SUNRPC: Handle ENOMEM in call_transmit_status()
aed30a205406 io_uring: don't touch scm_fp_list after queueing skb
594205b49367 drbd: Fix five use after free bugs in get_initial_state
970a6bb72912 bpf: Support dual-stack sockets in bpf_tcp_check_syncookie
6c17f4ef3c4f spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op()
8928239e5e2e qede: confirm skb is allocated before using
b7893388bb88 net: phy: mscc-miim: reject clause 45 register accesses
08ff0e74fab5 rxrpc: fix a race in rxrpc_exit_net()
5ae05b5eb587 net: openvswitch: fix leak of nested actions
42ab401d22de net: openvswitch: don't send internal clone attribute to the userspace.
e54ea8fc51ca ice: synchronize_rcu() when terminating rings
e3dd1202ab2e ipv6: Fix stats accounting in ip6_pkt_drop
ffce126c952e ice: Do not skip not enabled queues in ice_vc_dis_qs_msg
b003fc4913ea ice: Set txq_teid to ICE_INVAL_TEID on ring creation
ebd1e3458dbf dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe
43c2d7890eca IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition
3a57babfb6e9 RDMA/mlx5: Don't remove cache MRs when a delay is needed
d8992b393f97 sfc: Do not free an empty page_ring
0ac74169ebc3 bnxt_en: reserve space inside receive page for skb_shared_info
f8b0ef0a5889 drm/imx: Fix memory leak in imx_pd_connector_get_modes
25bc9fd4c8d1 drm/imx: imx-ldb: Check for null pointer after calling kmemdup
02ab4abe5bbf net: stmmac: Fix unset max_speed difference between DT and non-DT platforms
63ea57478aaa net: ipv4: fix route with nexthop object delete warning
4be6ed03107b ice: Clear default forwarding VSI during VSI release
589154d0f189 net/tls: fix slab-out-of-bounds bug in decrypt_internal
c5f77b595379 scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one()
45b9932b4daa NFSv4: fix open failure with O_ACCMODE flag
c688705a3978 Revert "NFSv4: Handle the special Linux file open access mode"
cf580d2e3884 Drivers: hv: vmbus: Fix potential crash on module unload
0c122eb3a109 drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire()
84e5dfc05f37 Revert "hv: utils: add PTP_1588_CLOCK to Kconfig to fix build"
3c3fbfa6dddb mm: fix race between MADV_FREE reclaim and blkdev direct IO read
1753a49e266d parisc: Fix patch code locking and flushing
f7c35220305f parisc: Fix CPU affinity for Lasi, WAX and Dino chips
c74e2f6ecc51 NFS: Avoid writeback threads getting stuck in mempool_alloc()
34681aeddcfc NFS: nfsiod should not block forever in mempool_alloc()
7a506fabcfe1 SUNRPC: Fix socket waits for write buffer space
b9c5ac0a15f2 jfs: prevent NULL deref in diFree
c69b442125bf virtio_console: eliminate anonymous module_init & module_exit
3309b3221711 serial: samsung_tty: do not unlock port->lock for uart_write_wakeup()
9cb90f9ad597 x86/Kconfig: Do not allow CONFIG_X86_X32_ABI=y with llvm-objcopy
b3882e78aa0a NFS: swap-out must always use STABLE writes.
d4170a28217a NFS: swap IO handling is slightly different for O_DIRECT IO
4b6f122bdfdc SUNRPC: remove scheduling boost for "SWAPPER" tasks.
f4fc47e71e32 SUNRPC/xprt: async tasks mustn't block waiting for memory
f9244d31e05a SUNRPC/call_alloc: async tasks mustn't block waiting for memory
e2b2542f7452 clk: Enforce that disjoints limits are invalid
1e9b5538cf16 clk: ti: Preserve node in ti_dt_clocks_register()
a2a0e04f6478 xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32
4a2544ce244b NFSv4: Protect the state recovery thread against direct reclaim
9b9feec97c1f NFSv4.2: fix reference count leaks in _nfs42_proc_copy_notify()
2e16895d06e6 w1: w1_therm: fixes w1_seq for ds28ea00 sensors
93498c6e775a staging: wfx: fix an error handling in wfx_init_common()
8f1d24f85ffd phy: amlogic: meson8b-usb2: Use dev_err_probe()
aa0b72967853 staging: vchiq_core: handle NULL result of find_service_by_handle
be4ecca95819 clk: si5341: fix reported clk_rate when output divider is 2
c9cf6baabf78 minix: fix bug when opening a file with O_DIRECT
8d9efd4434e3 init/main.c: return 1 from handled __setup() functions
f44297861296 ceph: fix memory leak in ceph_readdir when note_last_dentry returns error
d745512d54fd netlabel: fix out-of-bounds memory accesses
2cc803804ec9 Bluetooth: Fix use after free in hci_send_acl
789621df1963 MIPS: ingenic: correct unit node address
61e25021e67a xtensa: fix DTC warning unit_address_format
f6b9550f5367 usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm
a4dd3e9e5ae8 net: sfp: add 2500base-X quirk for Lantech SFP module
278b652f0ad9 net: limit altnames to 64k total
423e7107f61f net: account alternate interface name memory
74c4d5025551 can: isotp: set default value for N_As to 50 micro seconds
1d7effe5fff9 scsi: libfc: Fix use after free in fc_exch_abts_resp()
02222bf4f0a2 powerpc/secvar: fix refcount leak in format_show()
fd416c3f5a4c MIPS: fix fortify panic when copying asm exception handlers
7c657c0694ff PCI: endpoint: Fix misused goto label
79cfc0052f39 bnxt_en: Eliminate unintended link toggle during FW reset
9567d54e70ff Bluetooth: use memset avoid memory leaks
f9b183f1332a Bluetooth: Fix not checking for valid hdev on bt_dev_{info,warn,err,dbg}
647b35aaf454 tuntap: add sanity checks about msg_controllen in sendmsg
797b4ea9515e macvtap: advertise link netns via netlink
142ae7d4f215 mips: ralink: fix a refcount leak in ill_acc_of_setup()
f2565cb40e9b net/smc: correct settings of RMB window update limit
224903cc60d0 scsi: hisi_sas: Free irq vectors in order for v3 HW
f49ffaa85d2c scsi: aha152x: Fix aha152x_setup() __setup handler return value
91ee8a14efb6 mt76: mt7615: Fix assigning negative values to unsigned variable
d83574666bac scsi: pm8001: Fix memory leak in pm8001_chip_fw_flash_update_req()
a0bb65eadbf9 scsi: pm8001: Fix tag leaks on error
2051044d7901 scsi: pm8001: Fix task leak in pm8001_send_abort_all()
3bd9a28798ca scsi: pm8001: Fix pm8001_mpi_task_abort_resp()
ef969095c442 scsi: pm8001: Fix pm80xx_pci_mem_copy() interface
fe4b6d5a0dd7 drm/amdkfd: make CRAT table missing message informational only
2f2f017ea873 dm: requeue IO if mapping table not yet available
71c8df33fd77 dm ioctl: prevent potential spectre v1 gadget
f655b724b440 ipv4: Invalidate neighbour for broadcast address upon address addition
bae03957e8ca iwlwifi: mvm: Correctly set fragmented EBS
9538563d31a2 power: supply: axp288-charger: Set Vhold to 4.4V
c66cc0404367 PCI: pciehp: Add Qualcomm quirk for Command Completed erratum
b1b27b0e8d48 tcp: Don't acquire inet_listen_hashbucket::lock with disabled BH.
b02a1a65023f PCI: endpoint: Fix alignment fault error in copy tests
4820847e8bc2 usb: ehci: add pci device support for Aspeed platforms
0b9cf0b59925 iommu/arm-smmu-v3: fix event handling soft lockup
e07e420a0056 PCI: aardvark: Fix support for MSI interrupts
6694b8643bde drm/amdgpu: Fix recursive locking warning
ea21eaea7f5f powerpc: Set crashkernel offset to mid of RMA region
fb5ac62fbe16 ipv6: make mc_forwarding atomic
5baf92a2c46c libbpf: Fix build issue with llvm-readelf
26a1e4739e44 cfg80211: don't add non transmitted BSS to 6GHz scanned channels
9a56e2b271bc mt76: dma: initialize skip_unmap in mt76_dma_rx_fill
b42b6d0ec358 power: supply: axp20x_battery: properly report current when discharging
de9505936c47 scsi: bfa: Replace snprintf() with sysfs_emit()
ed7db959203e scsi: mvsas: Replace snprintf() with sysfs_emit()
995f51788868 bpf: Make dst_port field in struct bpf_sock 16-bit wide
339bd0b55ecd ath11k: mhi: use mhi_sync_power_up()
c6a815f5abdf ath11k: fix kernel panic during unload/load ath11k modules
e4d2d7201356 powerpc: dts: t104xrdb: fix phy type for FMAN 4/5
02e2ee861984 ptp: replace snprintf with sysfs_emit
9ea17b9f1dd0 usb: gadget: tegra-xudc: Fix control endpoint's definitions
07971b818e18 usb: gadget: tegra-xudc: Do not program SPARAM
927beb05aaa4 drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj
85313d9bc7bd drm/amd/display: Add signal type check when verify stream backends same
9d7d83d0399e ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111
850c4351e895 drm: Add orientation quirk for GPD Win Max
a24479c5e9f4 KVM: x86/emulator: Emulate RDPID only if it is enabled in guest
66b0fa6b2218 KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs
2e52a294700b rtc: wm8350: Handle error for wm8350_register_irq
0777fe98a44c gfs2: gfs2_setattr_size error path fix
f349d7f9ee6d gfs2: Fix gfs2_release for non-writers regression
3f53715fd55c gfs2: Check for active reservation in gfs2_release
2dc49f58a29c ubifs: Rectify space amount budget for mkdir/tmpfile operations
(From OE-Core rev: cfea7f69f780502899925df374e6ad9f73e219d1)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1a5b51284c28013563bf654aa41287b1288684fb)
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/.:
bddb0e4921f base.cfg: enable kernel crypto userspace API
(From OE-Core rev: 372ee7fac31aa8ebf6f5c38550ecd8de190c40c9)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a08c1c7dba66a1d12e029906d86f4f84e9166232)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
its in auto mode, which is troublesome particularly on native recipe
where it pokes at build host to find this library if its not in native
sysroot and when build host has libbpf installed it enables it silently
otherwise disables the support. so lets make it deterministic, and if
one needs to enable this feature then enable the packageconfig
intentionally, It was found when trying to solve this QA warning
Skipping RPATH /usr/lib64 as is a standard search path for /mnt/b/yoe/master/build/tmp/work/x86_64-linux/qemu-system-native/6.2.0-
r0/sysroot-destdir/mnt/b/yoe/master/build/tmp/work/x86_64-linux/qemu-system-native/6.2.0-r0/recipe-sysroot-native/usr/bin/qemu-system-x86_64
This is becasue qemu's build system adds the needed flags to -rpath for
the libraries it needs and in this case it has found libbpf.so in
/usr/lib64 on build host.
(From OE-Core rev: 2f97e2d92982b9cffaccdf251c1b6d47de0258c2)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3d493928b7c98ab11b5d8c50924b1a2c464bf7f5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
OE-core previously carried patches to glibc that added optimized sqrt
implementations for various PowerPC chips. These were recently removed,
which now results in errors when compiling glibc with certian PowerPC
machine tunes:
checking sysdep dirs... configure: error: The 603e subspecies of powerpc is not supported.
Remove setting GLIBC_EXTRA_OECONF with parameters that are no longer
valid. Also remove a commented out setting of the variable that probably
isn't vaild anyway.
Fixes: 2511e937f445 ("glibc: Drop ppc sqrt optimisations")
(From OE-Core rev: 76ccd9914c47aebf2c4c211abc089d9b8acc6c66)
Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 40f15066c24720aae36713c9856ffb4fae146a45)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The systemd-unit parameter DefaultDependencies changed from true/false
to yes/no. This changed in systemd in v242.
(From OE-Core rev: 371a8e2b0b0a3a2febe1d8d6ce65f258a15f6b1f)
Signed-off-by: Portia Stephens <stephensportia@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit add4dcb03dc7b034253db05f0023cb97cab8b26d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Use of those tools was removed in b5c131006e3fad0a15e6cdf81f71dc1e96647028
perf-build-test/report: Drop phantomjs and html email reports support
(From OE-Core rev: 1063525be9b040ece8636c03ac8bab13952eb561)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 33df447affa7a3a360b1da028e6b12fbcd388db6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The GO_WORKDIR is used only in go-mod.bbclass. As this recipe does
not inherit go-mod.bbclass, this variable is useless here.
This go-helloworld recipe was made to inherit go-mod.bbclass and build
in module-aware mode. However, it was found that we need to build go
recipes in GOPATH mode in order to support offline build. As a result,
this recipe was changed back to only inherit go.bbclass. But the GO_WORKDIR
setting was not cleaned up.
(From OE-Core rev: 2b5c773637317b812f5bfa167a70d858ad5274ad)
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 70bc5b6d40f94bde82415fb87db37fdf2606c2fb)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
sstate filename generation was changed a while ago and taskname has to be
passed into core functions for the correct filename to be generated. Update
find_siginfo to match those changes and pass in taskname via SSTATE_CURRTASK.
Thanks to Gregory Lumen <gregorylumen@microsoft.com> for spotting.
[YOCTO #14774]
(From OE-Core rev: 3230134c0e5654afccf4f8831ab1101615502162)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 51d7310b6cf8ef9033d461868c07f686656070ba)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
RPi kernel has started building compressed kernel modules by default
starting 5.15, currenrly therefore meta-raspberrypi kernels are unable
to load kernel modules since kmod and kmod-native do not entertain xz
compressed modules. There is a fix proposed in meta-raspberrypi [1]
but the fix is needed for native and nativesdk recipes as well, perhaps
its best to enable it here for best out of box experience with
meta-raspberrypi
[1] https://github.com/agherzan/meta-raspberrypi/pull/1056
(From OE-Core rev: 4c8be443515deadaee97ef4ed470a167594e8102)
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 20e9917b8d40f576b3661bc29e13602a24e86b7b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This module contains legacy cipher suites from libcrypto.
We should not need to include base package because we want
to use this part of libcrypto.
(From OE-Core rev: f44368f58645715f210b46ca3f747d064b872b20)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1537ebc3f6ae2aec9a3864b03704ab4dbc0e971b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We don't have less in HOSTTOOLS in OE and this can confuse git. Force the
pager to cat to be consistent and minimal everywhere.
(Bitbake rev: 59c16ae6c55c607c56efd2287537a1b97ba2bf52)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d3d406e8552fdd865dc58b419a84411736475ad2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
File names containing colons cause split() to return a list with more
than two elements, which will lead to a stack trace ending in:
ValueError: too many values to unpack (expected 2)
Split only once at the last colon, thereby making sure that only two
elements are returned.
(Bitbake rev: e14ed7dd866334ab40cd335d9c006e5d7b447abd)
Signed-off-by: Roland Hieber <rhi@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a70a7376a8708bde07959deb5d5842d7f84ee5f8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We're using the wrong data store when trying to locate siginfo files,
fix this. Thanks to Gregory Lumen <gregorylumen@microsoft.com> for
spotting.
[YOCTO #14774]
(Bitbake rev: 7eb0ef75fd08b6e4ca1e9dca9c96a7b590e5147b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 0ed800e19a3197f8e622c8d3b630aae384e60aba)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The path has been encoded by urllib.parse.quote(), so decode it back for ssh.
Fixed when fetch from PREMIRRORS via ssh:
$ bitbake bonnie++ libsigc++-2.0 -cfetch
scp: /path/to/downloads/libsigc%2B%2B-2.10.7.tar.xz: No such file or directory
(Bitbake rev: 3969786a787eea34e096b932d52cd02978aacb8e)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c1c8fc678eb4783cea3974328a5fa8d1b79f1266)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This probably means the osc fetcher isn't being used but fix the missing
parameter.
(Bitbake rev: 73fbb743a2def2037d4053605e77e09d2d8a9fd0)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a23c201cb6efc5c0abf763c26f905442f0eebb68)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This is set at the start of the loop anyway so it does nothing. Drop
the pointless code.
(Bitbake rev: dcf78788daa177bf5c438f33b3c9f7ced7aea8ab)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e6a3173c9cdf349ccbd4cf612868f92cce8717c8)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The function has a loop where the variable is never used which I was going
to fix but the entire function never seems to be called so remove it entirely.
(Bitbake rev: d739799a1e68dc2ad0414d4ae7d9e079cedcee3c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3bcb20f025907f4e88bbe3d14f5638d5f01010cb)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Fix an issue where two tests have the same name with one overwriting the
other.
(Bitbake rev: 38842a8150f44f5d31d9bd2b0b6ec0502acc971d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit da812d938fd79e2cc7bdf355ccf5b0f9ead684c4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
During parsing, Python raises
RuntimeError: dictionary changed size during iteration
in getRuntimeProviders, if you happen to have a recipe
with an explicit RDEPENDS on a dynamic package containing a '+'
character, such as 'gtk+3-locale-en'.
This is because we're using the modified pattern as the
key into the packages_dynamic dict to append to rproviders,
and since that key doesn't exist, the dict is getting modified
to add a new, empty, entry for it. So even without the runtime
error, we'd be generating an incorrect result.
Fix this by using a local variable for modifying the pattern
and using the original key to retrieve the value on a match.
(Bitbake rev: 69d3b86449be23b07f794e302f6e18f3a2c46424)
Signed-off-by: Matt Madison <matt@madison.systems>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 07de375c3e57f17ab7b47569186f24ecd9896825)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Adding a dependency on ourselves in this function doesn't make sense, the hash
may change after hash equivalence is applied. Other code using BB_TASKDEPDATA does
handle the self reference correctly (which is there for a reason), update this
code to do likewise.
(From OE-Core rev: a1eba0f2d36f3bb03323a65c66dd2a83c5dd2c05)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d98b06c9c6f480de1e5167bfe8392e39300fc02c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
busybox also installs findfs but into base_sbindir which works out to be
ok when sbindir != base_sbindir but with usrmerge distro feature enabled
this starts to cause trouble because busybox's postinst is trying to
create a symlink for findfs applet in base_sbindir which is same as
sbindir now and there already is binary from util-linux and image fails
to build
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} ().
The real reason is burried in do_rootfs logs
update-alternatives: Error: not linking /mnt/b/yoe/master/build/tmp/work/beaglebone-yoe-linux-gnueabi/yoe-sdk-image/1.0-r0/rootfs/usr/sbin/findfs to /usr/bin/busybox.suid since /mnt/b/yoe/master/build/tmp/work/beaglebone-yoe-linux-gnueabi/yoe-sdk-image/1.0-r0/rootfs/usr/sbin/findfs exists and is not a link
Creating proper u-a for findfs in util-linux fixes the issue
(From OE-Core rev: 04e03fa3acde7a23825fb9a17de98f1cecaae097)
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 211ae2db1ab8fec1ed678170f9d8cbca2cc27ef3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Recent git releases containing [1] have an ownership check when opening
repositories, and refuse to open a repository if it is owned by a
different user.
This breaks any use of git in do_install, as that is executed by the
(fake) root user. Whilst not common, this does happen.
Setting the git configuration safe.directories=* disables this check, so
that git is usable in fakeroot tasks. This can be set globally via the
internal environment variable GIT_CONFIG_PARAMETERS, we can't use
GIT_CONFIG_*_KEY/VALUE as that isn't present in all the releases which
have the ownership check.
We already set GIT_CEILING_DIRECTORIES to ensure that git doesn't
recurse up out of the work directory, so this isn't a security issue.
[1] 8959555cee
(From OE-Core rev: 204cc2fdd75631ab0a84a3a090f5cd7dcfc13856)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8bed8e6993e7297bdcd68940aa0d47ef47120117)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We're going to use the environment approach for solving this issue.
(From OE-Core rev: 1b807a0ad9cf5acdbe7fce588544f7eb8cbbd80d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 0982977dc052ad4e65608f6853f930121d08837a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
In a devshell, recent versions of git will complain if the repo is owned
by someone other than the current UID - consider this example:
------
bitbake -c devshell linux-yocto
[...]
kernel-source#git branch
fatal: unsafe repository ('/home/paul/poky/build-qemuarm64/tmp/work-shared/qemuarm64/kernel-source' is owned by someone else)
To add an exception for this directory, call:
git config --global --add safe.directory /home/paul/poky/build-qemuarm64/tmp/work-shared/qemuarm64/kernel-source
kernel-source#
------
Of course the devshell has UID zero and the "real" UID is for "paul" in
this case. And so recent git versions complain.
As the whole purpose of the devshell is to invoke a shell where development
can take place, having a non-functional git is clearly unacceptable.
Richard suggested we could use PSEUDO_UNLOAD=1 to evade this issue, and I
suggested we probably will see other similar instances like this and should
make use of PATH to intercept via devshell wrappers - conveniently we already
have examples of this.
Here, we copy the existing "ar" example and tune it to the needs of git to
combine Richard's suggestion and mine.
As such we now also can store commit logs and use send-email with our user
specific settings, instead of "root", so in additon to fixing basic
commands like "git branch" it should also increase general usefulness.
RP: Tweaked the patch so the PATH change only applies to the devshell task
and is a generic git intercept rather than devshell specific.
RP: Also apply the PATH change to do_install tasks since that also runs under
fakeroot and several software projects inject "git describe" output into
their binaries (systemd, iputils, llvm, ipt-gpu-tools at least) causing
reproducibility issues from systems with different git versions.
(From OE-Core rev: 3a320c1555bf39b2d3c218ffc36827d9dda60fe1)
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3266c327dfa186791e0f1e2ad63c6f5d39714814)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We need to disable the use the default configuration file. This is
to ensure that user settings do not mess things up when building go
recipes.
For example, if I set 'GOBIN=./relative/path' in $HOME/.config/go/env,
then go-runtime fails to build with error like below:
cannot install, GOBIN must be an absolute path
According to `go help environment',
"""
Setting GOENV=off in the environment disables the use of the default
configuration file.
"""
We can explicitly disable the configuration file by setting GOENV to off.
(From OE-Core rev: 00f794aeaaa660851f3a8464ee89c553195dd3dd)
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 711b41744ab08ee62c71cdccca335a7828ec0ba1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
When building FreeRTOS this dependency generates an error because
bitbake cannot find any provider for "virtual/kernel".
>From a dependency analysis the task is executed independently from
this so it can be safely removed.
This patch has been discussed in this ML thread:
https://lists.openembedded.org/g/openembedded-core/topic/90602531
(From OE-Core rev: ec31ce4751e45e98730165d64eb74fc98eab8c85)
Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1c02b768a71ec88bfe1cc0c4443683de8b66056e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Otherwise it will fail if using OE_TERMINAL = "xterm" with the not so
helpful error:
xterm: Xt error: Can't open display: localhost:0.0
(From OE-Core rev: 147d4cc12cd0ac2680bffa4112cef2d2447d34e1)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ba53fc3bcecfe32401471dc1008c7ead96504150)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
In bitbake commit 1ecc1d94 (process: Do not mix stderr with stdout),
bb.process.Popen() was changed to no longer combine stdout and stderr by
default. However, the Terminal class was not updated to reflect this and
subsequently only output stdout in case of failures.
(From OE-Core rev: f8f8e2e159a5ac03f619e6d0882011445e6a2545)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 116d0bb07ba044cf8847bf3d5c3996ad7e58b7ae)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
With latest gstreamer version pkg-config able to find header
path with msdk enabled.
Drop this patch as its not require anymore.
(From OE-Core rev: aaea86534127b1c78d78ffe3a98bacec63d2d8a2)
Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit eaa3b31247b4d3cc47428f4d80ae31f232e344d4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This symlink is not valid when using usrmerge and ptest packaging would fail
Exception: FileExistsError: [Errno 17] File exists: '/usr/bin/busybox.suid' -> '/mnt/b/yoe/master/build/tmp/work/ppc64p9le-yoe-linux-musl/busybox/1.35.0-r0/package/usr/lib/busybox/ptest/bin/login'
(From OE-Core rev: 592464cb64a8eedf2ee1537934ba714059c2e0ce)
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 238fd30689054c7b44176dce7180fb6dac4e1b6f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Some recipes are marked machine specific which need qemu usermode during
build eg. if they use meson build system, which means they wont get
right -cpu settings to run qemu-ppc/qemu-ppc64 and build fails, this
ensures that we set the right options when PACKAGE_ARCH is set to
MACHINE_ARCH on ppc/ppc64 qemu
(From OE-Core rev: 05caadbfb940e236dcdc41620cf20de5809e8f40)
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 9f71bbe65a458f08cd8ede6522c8b988603202a0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Fixes
NOTE: Multiple providers are available for virtual/crypt (libxcrypt, musl)
Consider defining a PREFERRED_PROVIDER entry to match virtual/crypt
(From OE-Core rev: bdccfa48f2dc58d716bd2ddd9c6279584fd6515b)
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 4417dbf6fcb1f067705c8bd2220f4093ba899cc1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
When using "msdos" partition tables and "--label" but not "--use-uuid"
one can generate images which will not find their root, because
PARTLABEL does not work for "msdos".
Fix that by simply not going the PARTLABEL path in case of "msdos".
Fixes: 2fb247c5ecf0 ("wic: support rootdev identified by partition label")
(From OE-Core rev: 354ef6b723f50b5f0b46a2bf5797e5b982c6ea73)
Signed-off-by: Henning Schild <henning.schild@siemens.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9ea1a838b946020e026edc032039552b723fcaa4)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Fix a typo in the TUNEVALID[armv8-2a]: It enables instructions for
ARMv8.2-a, not just ARMv8-a.
(From OE-Core rev: 92e52e0bb7497a701a0a26305a1a1bed0f4a60ce)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 0a4404c117ef8733713962767c1d2c9f87c2c990)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
According to the WHENCE file, some a3k firmware files are licensed
under the special ar3k license, while others are licensed under the more
generic Atheros license. Document this by adding extending the
LICENSE:${PN}-ar3k and depending on both of them.
(From OE-Core rev: eff0cd8854f18b9ead2aaf7850d33d300cff2960)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 8e651814af706285d64b532095fcd6f5f02629ba)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The do_kernel_configcheck task requires a meta directory, normally
set by ${KMETA}. The meta directory is taken as a relative path
from ${S}:
outfile = "{}/{}/cfg/mismatch.txt".format( s, kmeta )
However, when checking for the presence of ${KMETA} the current
working directory is searched. This will almost always fail and
"kgit --meta" is used instead. If the user does have a path in
their current working directory that matches the ${KMETA}
variable but the path is not present within the kernel source
directory, the build will fail if it tries to write config errors/
warnings to that path.
If ${KMETA} is not set, the same problem exists with the hard-coded
"meta" directory.
Fix these issues by checking for ${KMETA} within ${S} rather than
the current working directory. Additionally, drop the hardcoded
backup directory "meta" as it hasn't been functioning and
probably has no users
(From OE-Core rev: c322272a51d923cda9b0e5e388e32b7dd3a6bd22)
Signed-off-by: Russ Dill <russ.dill@nikolamotor.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit f4a3e80a4a6f4f709d09940dcaf45b2b00654496)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The files in /sysroot-only are intended to make it into the
recipes sysroot output, but not into the package. However, if
do_package is run before do_populate_sysroot, the files are
removed.
Use a smaller hammer to avoid copying the files into the package so
they are still around when do_populate_sysroot runs.
(From OE-Core rev: acc0a31305cb1f799e8a6b3ea2d2c5ac5a9f67ee)
Signed-off-by: Russ Dill <russ.dill@nikolamotor.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit 493145c6f1bc92ab2b7a23e181641b09df87c9ff)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bug fix release
Overview of changes in GLib 2.72.1
Fix building projects which use g_warning_once() with clang++ (#2625)
Fix g_file_trash() not deleting directories via the portals backend (work by Matthias Clasen) (#2629)
A number more compiler warnings fixed for MSVC (work by Loïc Le Page) (!2495)
Fix detection of broken poll() function on macOS (work by Haruka Ma) (!2571)
Fix spawning subprocesses from GUI programs on Windows (work by Marc-André Lureau) (!2582)
Bugs fixed:
2312 gdbus-test-codegen tests leak GWeakRef objects
2625 g_warning_once fails to build with clang++
2629 g_file_trash() does not work on directories inside a sandbox
2495 Cleanup warnings split 6
2499 Various contenttype-related test fixes on win32
2534 gpowerprofilemonitor: Tweak wording of documentation to make more sense
2540 Various win32 tests skip & fixes
2541 meson: simplify lookup of python command
2543 ci: Update the Fedora CI image to Fedora 34
2556 gdbusconnection: Use g_strv_contains() rather than a home-grown version
2557 gdbusmethodinvocation: Fix a leak on an early return path
2558 Move unit test on g_basename() function to glib/tests/fileutils.c
2559 Move tests/relation-test.c to glib/tests/relation.c
2560 ci: Update Coverity, mingw and Android CI images to Fedora 34
2563 glib: Format GDateTime ISO8601 years as %C%y
2564 Move test files on slices from tests/ to glib/tests/
2566 tests: Add more tests for GResolver response parsing
2573 Backport translation fixes and !2571 “meson: Set BROKEN_POLL in macOS builds” to glib-2-72
2574 Backport !2565 “Revert "meson: simplify lookup of python command"” to glib-2-72
2587 Backport !2583 “Fix trashing sandboxed directories” to glib-2-72
2588 Backport !2582 “glib/win32: fix spawn from GUI regression” to glib-2-72
2590 Backport !2589 “tests: Don’t exit gdbus-method-invocation test early on connection close” to glib-2-72
2593 Backport !2578 “gatomic: Add a C++ variant of g_atomic_int_compare_and_exchange()” to glib-2-72
Translation updates:
Bulgarian
Catalan
Indonesian
Italian
Lithuanian
Polish
Portuguese
Russian
Slovenian
Swedish
Turkish
Ukrainian
(From OE-Core rev: d8222529a1caa2703ed296d8a8274983e738cefc)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e167060bfb105799e0931c06a6aa1275163bf261)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This release is primarily to fix two CVEs:
- CVE-2021-28544
- CVE-2022-24070
It also rewrites the macOS autoconf macros to be cross-compile friendly,
so we don't need to delete them anymore.
(From OE-Core rev: 76a74a8f22021e60326c001ccdd9b6ca200cd28e)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ecfbc2ef45a76ab96d215954ca0a109545e6ff02)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
apt (2.4.5) release notes:
* Only protect two kernels, not last installed one (LP: #1968154)
* Fix segfault in CacheSetHelperAPTGet::tryVirtualPackage()
(From OE-Core rev: 76f4471a26bf457d1f0816b2b5ba92d0d6474e14)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 6a6462fd0ab140b554f4bda260e26b938cd44dc2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
If a remote patch is compressed we need to have run the unpack task for
the file to exist locally. Currently cve_check only depends on fetch so
instead of erroring out, emit a warning that this file won't be scanned
for CVE references.
Typically, remote compressed patches won't contain our custom tags, so
this is unlikely to be an issue.
(From OE-Core rev: b52a508bd7693c40e6416db9c9076a8789499501)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit cefc8741438c91f74264da6b59dece2e31f9e5a5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
CVE-2015-20107 describes an arbitrary command execution in the mailcap
module, but this is by design in mailcap and needs to be worked around
by the calling application.
Upstream Python will be documenting this flaw in the library reference,
and it is likely that the mailcap module will be deprecated and removed
in the future.
(From OE-Core rev: f525745af38b0e5ea26693849cd4f19c627efd46)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 85fac8408baf92d8b71946f5bfea92952b7eab01)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This prevented variables from being substituted through the
code in yocto-vars.py, at least in the files included this way.
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
(From yocto-docs rev: ac4e4b167964dd4548fb3d90cf9c63580a70b6e3)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ruby 3.1.2 has been released.
This release includes security fixes.
CVE-2022-28738: Double free in Regexp compilation
CVE-2022-28739: Buffer overrun in String-to-Float conversion
(From OE-Core rev: ca1c990df62f1b3d53b2114a387f192efe7e38e8)
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1306c732a39070e12306b0b7a393e2a482c8b326)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Changelog:
=========
Validate repository directory ownership (v1.4)
midx: Fix an undefined behavior (left-shift signed overflow)
fetch: support OID refspec without dst
Fix crash when regenerating a patch with unquoted spaces in filename
(From OE-Core rev: e6541bd09289abc87b7e81716bea774c80285bc0)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit bef09c61ee32df214fb8cf6000e0314ff3a38156)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Changelog:
==========
* Fix regression with transfer free's after closing device
* Fix regression with destroyed context if API is misused
* Workaround for applications using missing default context
* Fix hotplog enumeration regression
* Fix Windows isochronous transfer regression since 1.0.24
* Fix macOS exit crash in some multi-context cases
* Build fixes for various platforms and configurations
* Fix Windows HID multi-interface product string retrieval
* Update isochronous OUT packet actual lengths on Windows
* Add interface bound checking for broken devices
* Add umockdev tests on Linux
(From OE-Core rev: 0c5828713ad1716d2032986f4156cfbc83a53674)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7353489980600af07d0771654da6a8a3b0df7572)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
License-Update:
Version of driver files updated
Added files for some drivers
(From OE-Core rev: 332dcf0fbce5d851e4d75216ed204ba6b7bd6a21)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 01684df3a51be476081ee21eb54c24fef00acb3f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
It duplicates udevadm in systemd recipe to make it could run
update_udev_hwdb with multilib enabled. Since systemd last update,
it deploys a shared library libsystemd-shared-250.so in /lib/systemd/.
The library will be overwritten when multilib enabled. Then if both
udev-hwdb and lib32-udev-hwdb are installed, it fails to run the
multilib version postinstall intercept update_udev_hwdb:
| /path/to/build/tmp-glibc/work/intel_x86_64-wrs-linux/wrlinux-image-small/1.0-r1/rootfs/usr/libexec/lib32-udevadm:
error while loading shared libraries: libsystemd-shared-250.so: wrong ELF class: ELFCLASS64
`udevadm hwdb --update` just concatenates .hwdb files in dirs
/etc/udev/hwdb.d and /lib/udev/hwdb.d. The output file hwdb.bin is
identical with the one created by lib32-udevadm. So do NOT duplicate
lib32-udevadm in systemd and eudev. And update intercept script
update_udev_hwdb that re-run udevadm with same arch qemuwrapper if run
${binprefix}qemuwrapper failed.
(From OE-Core rev: 74fe1b5af064f644a7d555b61527bb7d02cc30b8)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3dba872a42c2be7d0865a30118984ab013850292)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
pkg-config is used by the Makefiles, and thus pkgconfig needs to be
inherited.
(From OE-Core rev: 91bfc749de1530065d2cd8ecb4c8d16c458ade56)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 6148ac9bc5d3e0d0ffdbbd6695acd96ca1836b78)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
If IMAGE_NAME and IMAGE_LINK_NAME are the same an
exception is raised in image_combine_spdx because
it cannot create a symlink with the same exact
path of the original file. In that case there is
no point in creating a link in the first place.
Refactor image_combine_spdx to avoid code duplication
(From OE-Core rev: dfb49be6b586e3901a4398b46c914d80dcdd029b)
Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 88f76bba705007a7fcda506c79f743060d8f2e52)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
by default git pulls in several code fragments not being licensed
under just GPL-2.0-only.
obstack and poll are licensed under GPL-2.0-or-later
reftable being BSD-3-Clause
sha1dc and inet_ntop being MIT
netmalloc being Bosst-1.0 aka BSL-1.0
regex being LGPL-2.1-or-later
(From OE-Core rev: d12513f066baca13a5be0c00792b1bd7d8b07c17)
Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5184e651651ed949d198882a10f406cef5939b7b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
When signing the deb package feed gpg tools are a soft requirement. If gnupg-native
is not declared a dependancy the version from hosttools is used. Unfortunately the
gpg-agent version from Ubuntu 16.04 on the autobuilders is incompatible with the package_index task
and fails during oe-selftest. Fix by making gnupg-native a dependency.
Fixes: 0b4231b5 "package_manager: sign DEB package feeds"
Reported-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Suggested-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(From OE-Core rev: 74725c9f7e7ed4172781891001e85b64bfb206b8)
Signed-off-by: Ferry Toth <ftoth@exalondelft.nl>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c063b658e30a24be9214abc23cd2a16c0260e93e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Since Gatesgarth apt (1.8.2) has become more strict and doesn’t allow unsigned repositories by default.
Currently when building images this requirement is worked around by using [allow-insecure=yes] and
equivalently when performing selftest.
Patches "gpg-sign: Add parameters to gpg signature function" and "package_manager: sign DEB package feeds"
enable signed DEB package feeds. This patch adds a runtime test for apt derived from the test_testimage_dnf
test. It creates a signed deb package feed, runs a qemu image to install the key and performs some package
management. To be able to install the key the gnupg package is added to the testimage.
(From OE-Core rev: 10fd76e6dfd97b57a9e2f592677c7e47b622e6b5)
Signed-off-by: Ferry Toth <ftoth@exalondelft.nl>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3ec30490d09d6639eea2638cf12a323948f221cc)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
These settings are good for developers/maintainers but for distributions
generally disabling them turns out to be better especially when there is
a knob to do so. This fixes build with gcc-12 which find additional
warnings
inlined from 'bt_ctf_object_set_parent' at ../../../git/src/ctf-writer/object.h:120:6,
inlined from 'bt_ctf_trace_common_add_stream_class' at ../../../git/src/ctf-writer/trace.c:1243:3:
../../../git/src/ctf-writer/object.h:141:26: error: null pointer dereference [-Werror=null-dereference]
141 | if (child->parent) {
| ~~~~~^~~~~~~~
../../../git/src/ctf-writer/object.h:141:26: error: null pointer dereference [-Werror=null-dereference]
cc1: all warnings being treated as errors
(From OE-Core rev: bdf428b3b91d43eb61a6a4b83fc0f108745d45b7)
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 1898d10dd4d4372823e6c8b8c4ed28604e692365)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Users may or may not include the certificates in buildtools. Only set the
appropriate variables if they're present.
(From OE-Core rev: f3b1699afcd35494e972e7b5b575c318a196909f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 0945a2a5d7c41af22e222a116aafacb4beee54d2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
A fix is being added to bitbake to correctly handle spaces inside
checksum filenames. Add a test to oe-selftest to ensure this is
tested and doesn't regress in future.
(From OE-Core rev: 4146d30d06233c299b280d0e99ac5f51aab63ad4)
Signed-off-by: Paulo Neves <ptsneves@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 324109f034f069ee3e91a1a705b3449911a448de)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The virtio PCI devices seemed to be required for this machine for some
versions of qemu (based on errors from running qemu saying that the
devices don't exist). Changes to the entries here is all that is needed
to get it working.
(From OE-Core rev: 291940f12c319e74351ff97811919c8c03477c27)
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 217deeb43036d1a046d6c5ea2c1ccdb94d3d605a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
If I am not mistaken, the only kernel recipe to have a new PACKAGECONFIG
option is linux-yocto-dev, in commit 1bac831fba
"linux-yocto-dev: introduce dt-validation PACKAGECONFIG".
Therefore, let's replace (kernel) by the one kernel recipe that has this
change.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: 1882954924cef9f17caad0f83973afe08f4db764)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Plaintext/clear passwords are not supported anymore but hashed passwords
still are. Mention that in the migration guide and point to the
appropriate location of documentation.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: f8b9697ec7bcc188db5ce9e5067bc82c023b79d9)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
extlinks captions support using %s substitution but only from sphinx 4.0
onwards.
c.f. https://www.sphinx-doc.org/en/master/usage/extensions/extlinks.html#confval-extlinks
Weirdly enough, on older sphinx versions, the caption is just a prefix
to the actual text passed to the extlink. Therefore, in that specific
case, CVE- or CVE-%s are identical in meaning for sphinx >=4.0 and since
only CVE- caption works on sphinx <4.0, let's go with CVE- caption
prefix.
Fixes: b311070d866cf "manuals: add 3.4 and 3.4.1 release notes after migration information"
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: c9922076f5c1285d9cfd6aff8ce5b6635d88222f)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
XZ_THREADS and XZ_MEMLIMIT were introduced in dunfell.
[RP improved an original patch from Paul]
(From yocto-docs rev: 96defb66b775093b5270bd1ebad0461c2bba1e5b)
Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Generated from commits in the kirkstone branch, as well as a few entries
from the migration guide.
(Note that the "Repositories / Downloads" section still needs to be
filled in.)
(From yocto-docs rev: 0c66638e61d3e16ac8d4b7ebc4ec6fb35625bf4f)
Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Make some corrections to preliminary set of entries
* Move out entries that were more appropriate for the release notes
(i.e. that are more additions rather than changes that require the
user to make changes)
* Add new entries based on commits in the kirkstone branch
(From yocto-docs rev: bea2da80e7c5338dc5abefe95ce27b80ed4ee98a)
Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Add this since the INCOMPATIBLE_LICENSE wildcard support has changed in
the 4.0 release.
(From yocto-docs rev: c7946863e5a9d62a49131b92cc9549da9b799bbd)
Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
It seems prudent to point out that hard-coding passwords in the manner
detailed in the example is not a good idea in production. This type of
mistake has unfortunately been made by many device vendors (outside of
the Yocto Project context) leading to security vulnerabilities.
(From yocto-docs rev: 1d07dba9423ae0a841eccb58c297e31b63c3965d)
Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
We missed noting this in 3.4 but I noticed the documentation was
recently updated, so note the removal.
(From yocto-docs rev: f661e62d6faf48dbb6c6fd9a61a6448ec339d2bf)
Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The switcher expects URL subpath to match the "release" used by sphinx
to build the documentation. Branches, however, are put in a subpath
after their name (e.g. dunfell) while sphinx sets the "release" to
X.Y.999. This means the switcher cannot replace correctly the path to
switch between releases/versions.
Let set_versions.py inject the list of release names into the
switchers.js.in file so it can check whether the subpath is one of the
release names in which case it needs to be stripped.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: 5ef3d129b8d0d8ae98a694103930988a46285525)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This array only contains versions that can be selected through the
dropdown menu for switching between supported versions.
Therefore, let's rename it to switcher_versions to make its usecase
clearer.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: 5c3d67751bf3f572a0788d3a4734b80e3453d084)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Branches are identified by their .999 version suffix which means they
will never be matched in the forloop above this git context. Therefore,
branches will match the condition. However, branches are not necessarily
obsolete (e.g. dunfell, honister and kirkstone today), so let's mark as
obsolete the branches which are from obsolete releases.
Old tags of currently supported releases are not defined as obsolete but
outdated, therefore using the series to which they belong like it is
done for branches is enough for obsolescence detection.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: 7181a432da18b47608784363d243ea39b80be1ed)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
master branch of Bitbake is now located at docs.yoctoproject.org/dev
instead of docs.yoctoproject.org so let's update the switchers and
set_versions.py to reflect that change.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: 18338292d99ed236e2bac6e73a5152ef11c4a9e5)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
ourseries can be an active release and therefore shouldn't be marked as
obsolete. By adding ourseries to activereleases, it is impossible to
know if ourseries is actually an active release or not. Instead let's
loop on the active releases with ourseries too (only if it's not active
release, otherwise it'd appear twice).
Fixes: 6f40ef56054ec "docs: set_versions.py: add information about obsolescence of a release"
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: f16b633211b97b2cdf2c65d83c99cd3853d2bb5c)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
versions array is supposed to store the latest version of all active
releases. However, in the loop it is reassigned and therefore, the check
on whether our version is already in the versions array will always
return false (except for the latest version of the last active release)
and write our version again in the list.
By using a local variable for the logic instead of versions array, the
check now works properly.
Fixes: f2b069be8c307 "set_versions: Various improvements"
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: 36a088c8c99dd37f5ca07ec8f90f2c51ef8b36f2)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
$('#outdated-warning').html('This document is for outdated version '+release+', you should select the latest release version in this series, '+version+'.');
return "Your version of make 3.82 is broken. Please revert to 3.81 or install a patched version.\n"
finally:
os.remove("makefile_test")
if os.path.exists("makefile_test_a.c"):
os.remove("makefile_test_a.c")
if os.path.exists("makefile_test_b.c"):
os.remove("makefile_test_b.c")
if os.path.exists("makefile_test.a"):
os.remove("makefile_test.a")
if bb.utils.vercmp_string_op(version, "4.0", "<"):
return "Please install a make version of 4.0 or later.\n"
if bb.utils.vercmp_string_op(version, "4.2.1", "=="):
distro = oe.lsb.distro_identifier()
if "ubuntu" in distro:
if "ubuntu" in distro or "debian" in distro or "linuxmint" in distro:
return None
return "make version 4.2.1 is known to have issues on Centos/OpenSUSE and other non-Ubuntu systems. Please use a buildtools-make-tarball or a newer version of make.\n"
self.skipTest('virgl headless cannot be tested with %s'%(distro))
render_hint="""If /dev/dri/renderD* is absent due to lack of suitable GPU, 'modprobe vgem' will create one suitable for mesa llvmpipe software renderer."""
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.