| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The first 2 calls to add_layer_dependencies() are here to add all
dependencies for the 'layer under test' and the additional layers
provided by the users.
In both cases, we use misssing_dependencies boolean to indicate if any
dependency is missing. But we then never really use
missing_dependencies. Instead the script is calling
add_layer_dependencies() again (for both the layer under test, and the
additional layers) to detect if there are any missing dependency. As a
result, we are trying to add again all dependencies, and we can see
that from the traces:
INFO: Detected layers:
INFO: meta-aws: LayerType.SOFTWARE, /work/oe/sources/meta-aws
INFO: checklayer: Doesn't have conf/layer.conf file, so ignoring
INFO:
INFO: Setting up for meta-aws(LayerType.SOFTWARE), /work/oe/sources/meta-aws
INFO: Adding layer meta-python
INFO: Adding layer meta-oe
INFO: Adding layer meta-networking
-->
INFO: Adding layer meta-python
INFO: meta-python is already in /work/oe/poky/master/build-checklayer/conf/bblayers.conf
INFO: Adding layer meta-oe
INFO: meta-oe is already in /work/oe/poky/master/build-checklayer/conf/bblayers.conf
INFO: Adding layer meta-networking
INFO: meta-networking is already in /work/oe/poky/master/build-checklayer/conf/bblayers.conf
<--
INFO: Getting initial bitbake variables ...
The code appears more complex than it should, and we can simply
replace the complex if statement by using missing_dependencies, and
avoid duplicating the call to add_layer_dependencies().
(From OE-Core rev: fceb84f7bc472731b8f96ee1ebf0f4485943226c)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
It fails to build u-boot 2021.07 for qemumips and qemumips64:
| *** Can't find default configuration "arch/../configs/qemu_mips64_defconfig"!
According to
https://source.denx.de/u-boot/u-boot/-/commit/5308a71
set UBOOT_MACHINE with malta defconfigs for qemumips and qemumips64.
(From OE-Core rev: 337e461ff92cd114b97e19ecf79806030b9b4666)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The link back to uboot's env is causing a ton of pain since it is making
this recipe machine specific. Some machines may use uboot, some may
not but you really want an architecture/machine neutral library.
Revert this part of the 0.3 upgrade (OE-Core rev:
02d55cd35aac15095fc44f0cf8f9e7a71638f485) so that we don't need some
of the horrible workarounds being seen in other layers. If a given
machine uses u-boot, the env can be pulled in by the machine directly.
(From OE-Core rev: e6d13986aa913c07f26afa81f1db35fd3e4e7779)
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>
|
|
|
|
|
|
|
|
|
|
|
| |
For a full systemd distro, also add a weak assignment for systemd as
the dev manager.
(From OE-Core rev: 55c1c749b9d4ffdf00978391fd0437348ba75caa)
Signed-off-by: Vivien Didelot <vdidelot@pbsc.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 57a0ab3abf70963d13c6ccea275cd70d8531c0ff)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If a variable has a glossary entry and some rST files write about those
variables, it's better to point to the glossary entry instead of just
highlighting it by surrounding it with two tick quotes.
The script that is used to do the replacement of ``FOO`` by :term:`FOO`
is the following Python code:
import re
from pathlib import Path
from runpy import run_module
import contextlib
import io
import sys
re_term = re.compile(r'variables.html#term-([a-zA-Z_0-9]*)')
terms = []
new_terms = set()
with contextlib.redirect_stdout(io.StringIO()) as f:
run_module('sphinx.ext.intersphinx', run_name='__main__')
objects = f.getvalue()
match = re_term.search(objects)
while match:
if match.group(1):
terms.append(match.group(1))
match = re_term.search(objects, match.end())
for rst in Path('.').rglob('*.rst'):
with open(rst, 'r') as f:
content = "".join(f.readlines())
for term in terms:
content = re.sub(r'``({})``(?!.*\s+[~=-]{{{:d},}})'.format(term, len(term)), r':term:`\1`', content)
with open(rst, 'w') as f:
f.write(content)
This script takes one argument as input: an objects.inv which can be
gotten from doc/_build/html/objetcs.inv after running `make html`.
Note that this excludes from replacement terms that appear in section
titles as it requires refs to be changed too. This can be automated too
if need be but right now it looks a bit confusing to have an anchor link
(for sections) also have a term/reference link in it. I am not sure this
is desired today.
(Bitbake rev: aba88f40c47133ed9bc999e0298aca3bc8490912)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Quentin Schulz <foss@0leil.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
be alphabetically sorted
Even though, care should be taken to have the terms in the glossary
sources alphabetically ordered, it is possible some terms might be in
the wrong place.
This makes sure that whatever the order of terms in the glossary
sources, the generated medium is correctly sorted.
(Bitbake rev: 98809ebc6ad51f0a94cedccfaff9c11d3744dc0d)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Quentin Schulz <foss@0leil.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
glossary sources
This reorders a few entry so that they are alphabetically sorted.
(Bitbake rev: 311350ed5cb164d975c2119e60255a409e27dffb)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Quentin Schulz <foss@0leil.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
-W is for turning warnings into errors, --keep-going to make sure the
whole documentation is built and all warnings will be printed before
failing.
Since there's currently no warning, it's time to introduce it!
(Bitbake rev: 6b0b3d707f662ca7b1d0de99fe032e4f35867d10)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Quentin Schulz <foss@0leil.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
'runqemu qemux86' doesn't work any more.
The "Quick Build" documentation has already been updated
but this message that we get when sourcing "oe-init-build-env"
(From OE-Core rev: 581bebac87549b403dd69b57a6edfe38b8bfe760)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
This updates the link to the YP docs
and proposes to access the OE website through https
(From OE-Core rev: 87686233aeffc639c3f412fd5c4898b32b15013b)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 643a0398ebcfe9fd53d1b37fb0837d4db08a23af)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Adjust lines in license check; checksum is same.
(From OE-Core rev: 454f17c7dde8716e60c8b26303f906158d653f0b)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 6478ca47e76f4af10121ccb8428a5a68f21b16cd)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Drop no_traceback2.patch as issue fixed upstream.
(From OE-Core rev: a592d741dec7151d3d32c4584568e49d69ed5b6f)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
jinja is now required:
https://github.com/systemd/systemd/commit/e0698c66f4569c91e3fdd54ca77449698ae38704
Drop 0001-test-seccomp-Check-for-__NR_ppoll-before-use.patch as it is a backport.
(From OE-Core rev: 323ec445dfe22860cd450c303db5ed8fcb4e791c)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Other than the tcmode tweak, this was done by devtool \0/
(From OE-Core rev: ba6991c16a5dcac9ce6de18956c0a75ab7e856bb)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 53f5c5b56fd4b2c6a2fabdd26553296aff192380)
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>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fix a Makefile race resulting in the target creating a directory being
executed after the target to write into that directory.
[ YOCTO #14485 ]
(From OE-Core rev: e90c1d3b80e35fb685d4b321972743771eb2c2c0)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Nicolas Dechesne spotted there was duplicate code I had introduced with a
previous fix. Remove the second statement since the earlier one is correct
all that is needed.
(From OE-Core rev: f3e8d9f0e53e73de5498fccce81d049a88f6473b)
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>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 71f1f6bc9402ee0fad82aaf0757fffb73da4b706)
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 9eaf6f4b08144c7f5453545f2bd9fb387a2dbe2e)
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
URI has been permanently moved and returns HTTP 301.
(From OE-Core rev: a3a85d54af38a30f6de5f6d23e432afa26859888)
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Create the /var/log symlink directly after /var/volatile/log, so
/var/log is available for the creation of /var/log/wtmp a few lines
later.
(From OE-Core rev: 64b659b9e40da3280ba8911b4044b19aa7366262)
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The behavior of running create_file in the background was introduced in
d44816bedade ("initscripts: Populate volatile from existing file")
without further explanation. Besides its questionable benefit, this
causes actual issues:
- Not all create_file processes may have finished by the time the
initscript exits (or when it moves /etc/volatile.cache.build !)
- By making the order of commands nondeterminstic, it could hide
dependency issues where it was attempted to create files before their
containing directories
(From OE-Core rev: 1a4ddb0d3f1289e0b67b6eba9be58374d3d7a80b)
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
tty0 may not be the intended console for log messages, or it may not
exist at all in kernel configurations without CONFIG_VT. Just use the
default stdout/stderr instead.
(From OE-Core rev: 669e74d358db59768862515fe584aa1edf6cec04)
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
do_unpack_and_patch error happens for these recipes inherit dos2unix.
(From OE-Core rev: 2ceda7c90c0087f52693c54d5ccab143b27f4d21)
Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is next/latest release branch for binutils
Drop backports and CVE fixes which already are applied upstream
bfd_stdint.h has been removed in favor of using stdint.h
(From OE-Core rev: 08cd144fc4b5ac34ff99f71b1d825cbff96b642c)
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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
We have a long history with maintainers files and good and bad experiences. There
are people who'd like to see a kernel style machine readable file which defines
exactly which people should be reviewing which areas. In practise, the files we
do have struggle to stay up to date (e.g. the recipe maintainers file) and such
a file would also cause conflicts of expectations where person X would want to be
cc'd on patches touching file Y and want a revert if they hadn't acked it. We also
don't have clearly defined boundaries in some areas, e.g. toolchain.
We have a wide peer review system and nobody gets to make changes without that
review, even myself as the lead for OE-Core/Bitbake.
I do want to recognise that some people are key experts on particular areas and
hightlight that their views on those areas do carry weight. With that also comes
repsonsibility to help try and figure out bugs, help with review and so on.
I've tried to strike a balance with this file to detail who some of the experts
for particular areas are and to also highlight where we don't have coverage and
that there are opportunities.
I've tried to put the file in the wider context of the project, not just OE-Core.
It is in a repo rather than a wiki so we have visibility to changes through the
change control process.
I'm sure I will miss people, sorry, it is inevitable when you try and make a
list. There may be people who want to step down and don't want to be in this
role, I'm also hoping there are going to be some new volunteers to help in some
areas. Please do send follow up updates, this patch is really meant to help get
us started.
Volunteers to maintainer specific areas of the project are very welcome and
feel free to reach out to ask about areas or getting started and working towards
an official maintainer role (e.g. help with bug fixing).
(From OE-Core rev: b629978efae35d5ea3821f4375bc0d8228b6cc26)
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>
|
|
|
|
|
|
|
|
|
| |
PACKAGE_CLASES should be PACKAGE_CLASSES.
(From OE-Core rev: 7a96f3bceb2c857f841b1dbeb4587a8aaace529e)
Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
| |
I am releasing my responsibilities from these Packages so that those who are better capable can participate in the Package Maintainer Program. I have not done anything in years so its time to find better stewards.
(From OE-Core rev: 8cc704d4ce335c3871dc7993f3d962d185f1b8b1)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating linux-yocto/5.4 to the latest korg -stable release that comprises
the following commits:
9afc0c209685 Linux 5.4.134
c1dafbb26164 seq_file: disallow extremely large seq buffer allocations
b06ab67bd63b misc: alcor_pci: fix inverted branch condition
f40884382995 scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg()
e9602efecf19 MIPS: vdso: Invalid GIC access through VDSO
48351df82dbc mips: disable branch profiling in boot/decompress.o
d8afab9bc9fe mips: always link byteswap helpers into decompressor
bb2435840681 scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe()
2a22a1ca453a firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng
b7c1bafe813a firmware: turris-mox-rwtm: report failures better
7934e060732f firmware: turris-mox-rwtm: fix reply status decoding function
65f32d1e0514 thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations
a3ea516d8d5b ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery
c4e2fa6fb0f3 ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems
9cc2ef1a784c ARM: dts: imx6q-dhcom: Fix ethernet reset time properties
85434c3a281e ARM: dts: am437x: align ti,pindir-d0-out-d1-in property with dt-shema
e1314f75b38a ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema
443f6ca6fd18 memory: fsl_ifc: fix leak of private memory on probe failure
d9213d4f372d memory: fsl_ifc: fix leak of IO mapping on probe failure
8ef43fa4646f reset: bail if try_module_get() fails
04bb5b3ea08d ARM: dts: BCM5301X: Fixup SPI binding
cc10a352e29c firmware: arm_scmi: Reset Rx buffer to max size during async commands
7dde9387498c firmware: tegra: Fix error return code in tegra210_bpmp_init()
6ca8e516bc65 ARM: dts: r8a7779, marzen: Fix DU clock names
52cc83c0282c arm64: dts: renesas: v3msk: Fix memory size
11d6c1992120 rtc: fix snprintf() checking in is_rtc_hctosys()
226adc0bf947 memory: pl353: Fix error return code in pl353_smc_probe()
b782d54b4dca reset: brcmstb: Add missing MODULE_DEVICE_TABLE
2a9392c6d218 memory: atmel-ebi: add missing of_node_put for loop iteration
05cfac174796 ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4
45414bfe5af3 ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1
cc617c9ddb1f ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3
13c5fa0a43a0 ARM: exynos: add missing of_node_put for loop iteration
dc3939d97238 reset: a10sr: add missing of_match_table reference
b57e025bb0d7 ARM: dts: gemini-rut1xx: remove duplicate ethernet node
3f870d8c2bc1 hexagon: use common DISCARDS macro
3b03882123e4 NFSv4/pNFS: Don't call _nfs4_pnfs_v3_ds_connect multiple times
9f02e9dd8ca2 ALSA: isa: Fix error return code in snd_cmi8330_probe()
aa8866530d6a nvme-tcp: can't set sk_user_data without write_lock
496bcc8d4ff9 virtio_net: move tx vq operation under tx queue lock
aac6a79ee0c0 pwm: imx1: Don't disable clocks at device remove time
aa51b6bc7907 x86/fpu: Limit xstate copy size in xstateregs_set()
df749be38c94 PCI: iproc: Support multi-MSI only on uniprocessor kernel
25bff167719d PCI: iproc: Fix multi-MSI base vector number allocation
1d9d997850d8 ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode
d0b32dc1409f nfs: fix acl memory leak of posix_acl_create()
e7de89b8b285 watchdog: aspeed: fix hardware timeout calculation
0366238f6af4 um: fix error return code in winch_tramp()
c43226ac1079 um: fix error return code in slip_open()
81e03fe5bf8f NFSv4: Initialise connection to the server in nfs4_alloc_client()
2d2842f5d2cd power: supply: rt5033_battery: Fix device tree enumeration
c5b104a27028 PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun
5b6cde3bae6d f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs
00fcd8f33e9b x86/signal: Detect and prevent an alternate signal stack overflow
52bd1bce8624 virtio_console: Assure used length from device is limited
7909782857c2 virtio_net: Fix error handling in virtnet_restore()
04c6e60b884c virtio-blk: Fix memory leak among suspend/resume procedure
8ae24b9bf8f9 ACPI: video: Add quirk for the Dell Vostro 3350
0bbac736224f ACPI: AMBA: Fix resource name in /proc/iomem
7d0667521501 pwm: tegra: Don't modify HW state in .remove callback
f8ba40611be3 pwm: img: Fix PM reference leak in img_pwm_enable()
9eb5142d3f76 power: supply: ab8500: add missing MODULE_DEVICE_TABLE
658884b22ac8 power: supply: charger-manager: add missing MODULE_DEVICE_TABLE
ae1a6af2f8f8 NFS: nfs_find_open_context() may only select open files
04a333cf982c ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty
ab720715b8a8 orangefs: fix orangefs df output.
1680c3ece217 PCI: tegra: Add missing MODULE_DEVICE_TABLE
12f8d6e7f2c7 x86/fpu: Return proper error codes from user access functions
f58ab0b02ee7 watchdog: iTCO_wdt: Account for rebooting on second timeout
bcafecd30431 watchdog: imx_sc_wdt: fix pretimeout
db222f1477ad watchdog: Fix possible use-after-free by calling del_timer_sync()
7c56c5508dc2 watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff()
146cc288fb80 watchdog: Fix possible use-after-free in wdt_startup()
1e6e806dda4c PCI/P2PDMA: Avoid pci_get_slot(), which may sleep
d2bc221be148 ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1
94cfbe80f0cf power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE
b6d1d46165f0 power: supply: max17042: Do not enforce (incorrect) interrupt trigger type
e8794f7bb543 power: supply: ab8500: Avoid NULL pointers
af619a7455a1 pwm: spear: Don't modify HW state in .remove callback
f16b1d7dc46f power: supply: sc2731_charger: Add missing MODULE_DEVICE_TABLE
b8495c08b2e8 power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE
13b51d90f0a6 lib/decompress_unlz4.c: correctly handle zero-padding around initrds.
f492dfec0c82 i2c: core: Disable client irq on reboot/shutdown
ec50ddd8456c intel_th: Wait until port is in reset before programming it
ba547e7431bf staging: rtl8723bs: fix macro value for 2.4Ghz only device
6bc7ea6584cb ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions
7929bcf1a278 ALSA: hda: Add IRQ check for platform_get_irq()
0f3821c3281b backlight: lm3630a: Fix return code of .update_status() callback
84d84143037f ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters
4abe339ce863 powerpc/boot: Fixup device-tree on little endian
60c88c8ee548 usb: gadget: hid: fix error return code in hid_bind()
2bfe5a620894 usb: gadget: f_hid: fix endianness issue with descriptors
eb11ade08bc8 ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values
f9e5d0137c14 ALSA: usb-audio: scarlett2: Fix data_mutex lock
33251aa28d1c ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count
82343ce5cad2 ALSA: bebob: add support for ToneWeal FW66
86d56d5a5908 Input: hideep - fix the uninitialized use in hideep_nvm_unlock()
5f5c1e683351 s390/mem_detect: fix tprot() program check new psw handling
8a3adb42928c s390/mem_detect: fix diag260() program check new psw handling
e8df00854840 s390/ipl_parm: fix program check new psw handling
5176a4d1c43c s390/processor: always inline stap() and __load_psw_mask()
542d85dda7ba ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing()
41c488eb5dca gpio: pca953x: Add support for the On Semi pca9655
6602185b185b selftests/powerpc: Fix "no_handler" EBB selftest
75dc1942f8b6 ALSA: ppc: fix error return code in snd_pmac_probe()
8e1b6d96e95f gpio: zynq: Check return value of pm_runtime_get_sync
b11220803ad1 iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation
3761ae0d0e54 iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get fails
6c50a56d2bce powerpc/ps3: Add dma_mask to ps3_dma_region
5169c6b12b19 ALSA: sb: Fix potential double-free of CSP mixer elements
d481ddb1b6d0 selftests: timers: rtcpie: skip test if default RTC device does not exist
f0bca3fbf16b s390/sclp_vt220: fix console name to match device
1028b769600c serial: tty: uartlite: fix console setup
ba89ba738a82 ASoC: img: Fix PM reference leak in img_i2s_in_probe()
b5af7cec0f7e mfd: cpcap: Fix cpcap dmamask not set warnings
c19a95cffe33 mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE
d05da38c4110 scsi: qedi: Fix null ref during abort handling
a686ea60c17a scsi: iscsi: Fix shost->max_id use
d04958a348e5 scsi: iscsi: Fix conn use after free during resets
173fdf1497d9 scsi: iscsi: Add iscsi_cls_conn refcount helpers
9896b67e1b56 scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs
e8c75b5d88f2 scsi: megaraid_sas: Early detection of VD deletion through RaidMap update
0c6226601c3e scsi: megaraid_sas: Fix resource leak in case of probe failure
e54625f3f0f0 fs/jfs: Fix missing error code in lmLogInit()
077b59810cb6 scsi: scsi_dh_alua: Check for negative result value
ee16bed95986 tty: serial: 8250: serial_cs: Fix a memory leak in error handling path
9c543a9197c7 ALSA: ac97: fix PM reference leak in ac97_bus_remove()
086918e61c37 scsi: core: Cap scsi_host cmd_per_lun at can_queue
600a91ab5981 scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the SGLs
07aa0d14fc9e scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology
f1f72dac9219 scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw()
68ce66ba20cf w1: ds2438: fixing bug that would always get page0
1c774366428e Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro"
88262229b778 ALSA: usx2y: Don't call free_pages_exact() with NULL address
7dff52b311b1 iio: magn: bmc150: Balance runtime pm + use pm_runtime_resume_and_get()
921b361ce3ee iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get().
d2639ffdcad4 misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge
38660031e80e misc/libmasm/module: Fix two use after free in ibmasm_init_one
dc195d77dd6c tty: serial: fsl_lpuart: fix the potential risk of division or modulo by zero
fd005f53cb49 srcu: Fix broken node geometry after early ssp init
35072f336ae8 dmaengine: fsl-qdma: check dma_set_mask return value
249e0ab80c47 net: moxa: Use devm_platform_get_and_ioremap_resource()
359311b85ebe fbmem: Do not delete the mode that is still in use
c17363ccd620 cgroup: verify that source is a string
d4238c7539c8 tracing: Do not reference char * as a string in histograms
887bfae2732b scsi: core: Fix bad pointer dereference when ehandler kthread is invalid
22257d3c6840 KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run()
dc91a480ace2 KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled
f2ff9d03432f KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio
795e84798fa7 Linux 5.4.133
135122f174c3 smackfs: restrict bytes count in smk_set_cipso()
a21e5cb1a64c jfs: fix GPF in diFree
f190ca9068e3 pinctrl: mcp23s08: Fix missing unlock on error in mcp23s08_irq()
f176dec999c8 media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K
5d2a52732eeb media: gspca/sunplus: fix zero-length control requests
1c44f2e25d8e media: gspca/sq905: fix control-request direction
0edd67591672 media: zr364xx: fix memory leak in zr364xx_start_readpipe
27cd29ab9bf0 media: dtv5100: fix control-request directions
917791e43441 media: subdev: disallow ioctl for saa6588/davinci
04d67b34a33c PCI: aardvark: Implement workaround for the readback value of VEND_ID
a340b84e09d3 PCI: aardvark: Fix checking for PIO Non-posted Request
86968dfa4b55 PCI: Leave Apple Thunderbolt controllers on for s2idle or standby
964d57d1962d dm btree remove: assign new_root only when removal succeeds
ef0a06acc6b1 coresight: tmc-etf: Fix global-out-of-bounds in tmc_update_etf_buffer()
4e78a2a4fced ipack/carriers/tpci200: Fix a double free in tpci200_pci_probe
8489ebfac395 tracing: Resize tgid_map to pid_max, not PID_MAX_DEFAULT
41aa59030213 tracing: Simplify & fix saved_tgids logic
4d4f11c3566c rq-qos: fix missed wake-ups in rq_qos_throttle try two
33ab9138a13e seq_buf: Fix overflow in seq_buf_putmem_hex()
854bf7196601 extcon: intel-mrfld: Sync hardware and software state on init
ec31e681cfbf nvmem: core: add a missing of_node_put
f0f3f0abe58e power: supply: ab8500: Fix an old bug
7adc05b73d91 ubifs: Fix races between xattr_{set|get} and listxattr operations
5e4aae9e3e6b thermal/drivers/int340x/processor_thermal: Fix tcc setting
ec170de13b69 ipmi/watchdog: Stop watchdog timer when the current action is 'none'
efed363752c0 qemu_fw_cfg: Make fw_cfg_rev_attr a proper kobj_attribute
74f81fce1215 ASoC: tegra: Set driver_name=tegra for all machine drivers
862e1aef2bd4 MIPS: fix "mipsel-linux-ld: decompress.c:undefined reference to `memmove'"
5078f007d863 fpga: stratix10-soc: Add missing fpga_mgr_free() call
cfaaed5e4a12 clocksource/arm_arch_timer: Improve Allwinner A64 timer workaround
7044e6bbc8e8 cpu/hotplug: Cure the cpusets trainwreck
c90a5b1c3742 ata: ahci_sunxi: Disable DIPM
a7aa56f57e84 mmc: core: Allow UHS-I voltage switch for SDSC cards if supported
2d95959fa4f4 mmc: core: clear flags before allowing to retune
7e3b6e797a43 mmc: sdhci: Fix warning message when accessing RPMB in HS400 mode
690735ee3a9d drm/arm/malidp: Always list modifiers
e976698b2642 drm/msm/mdp4: Fix modifier support enabling
49d05786661b drm/tegra: Don't set allow_fb_modifiers explicitly
eaabef618cbb drm/amd/display: Reject non-zero src_y and src_x for video planes
36a9c775a5f8 pinctrl/amd: Add device HID for new AMD GPIO controller
7af725d1481c drm/amd/display: fix incorrrect valid irq check
1fe8005303a3 drm/rockchip: dsi: remove extra component_del() call
85ea095dc081 drm/radeon: Add the missed drm_gem_object_put() in radeon_user_framebuffer_create()
d05c9f91be93 drm/amdgpu: Update NV SIMD-per-CU to 2
a5cd29059916 powerpc/barrier: Avoid collision with clang's __lwsync macro
a82471a14aad powerpc/mm: Fix lockup on kernel exec fault
233339bf6c7c perf bench: Fix 2 memory sanitizer warnings
4d579ef78ae6 crypto: ccp - Annotate SEV Firmware file names
0e105eed0966 fscrypt: don't ignore minor_hash when hash is 0
5d4fa5e1b907 MIPS: set mips32r5 for virt extensions
2760c141dd10 MIPS: loongsoon64: Reserve memory below starting pfn to prevent Oops
a01745edc1c9 sctp: add size validation when walking chunks
03a5e454614d sctp: validate from_addr_param return
d04cd2c4fdd0 Bluetooth: btusb: fix bt fiwmare downloading failure issue for qca btsoc.
aa9a2ec7ee08 Bluetooth: Shutdown controller after workqueues are flushed or cancelled
6aac389d50d9 Bluetooth: Fix the HCI to MGMT status conversion table
a27610321c31 Bluetooth: btusb: Fixed too many in-token issue for Mediatek Chip.
032c68b4f5be RDMA/cma: Fix rdma_resolve_route() memory leak
d27483b844c8 net: ip: avoid OOM kills with large UDP sends over loopback
3fbae80e24d6 media, bpf: Do not copy more entries than user space requested
1127eb86b23d wireless: wext-spy: Fix out-of-bounds warning
161107916c79 sfc: error code if SRIOV cannot be disabled
a95fddec35f9 sfc: avoid double pci_remove of VFs
105982781699 iwlwifi: pcie: fix context info freeing
0b08e9b64b99 iwlwifi: pcie: free IML DMA memory allocation
6e2df6630636 iwlwifi: mvm: don't change band on bound PHY contexts
9fd9734e5739 RDMA/rxe: Don't overwrite errno from ib_umem_get()
75b011df8e00 vsock: notify server to shutdown when client has pending signal
2a0a6f67c5d5 atm: nicstar: register the interrupt handler in the right place
8a366dd45518 atm: nicstar: use 'dma_free_coherent' instead of 'kfree'
002d8b395fa1 MIPS: add PMD table accounting into MIPS'pmd_alloc_one
e15cff87dff2 rtl8xxxu: Fix device info for RTL8192EU devices
356bb9411a26 drm/amdkfd: Walk through list with dqm lock hold
995c3fc302bd net: sched: fix error return code in tcf_del_walker()
bba660a079a9 net: fix mistake path for netdev_features_strings
cea6ca260d22 mt76: mt7615: fix fixed-rate tx status reporting
e217aadc9b55 bpf: Fix up register-based shifts in interpreter to silence KUBSAN
7f356894ff12 cw1200: add missing MODULE_DEVICE_TABLE
d71dddeb5380 wl1251: Fix possible buffer overflow in wl1251_cmd_scan
e919fc655294 wlcore/wl12xx: Fix wl12xx get_mac error if device is in ELP
9981f8f4a8f9 xfrm: Fix error reporting in xfrm_state_construct.
46a2cd9cecbb drm/amd/display: Verify Gamma & Degamma LUT sizes in amdgpu_dm_atomic_check
5db647affcbd r8169: avoid link-up interrupt issue on RTL8106e if user enables ASPM
bfb8eb833e7d selinux: use __GFP_NOWARN with GFP_NOWAIT in the AVC
91f6b357e9c1 fjes: check return value after calling platform_get_resource()
2c028cee95a4 drm/amdkfd: use allowed domain for vmbo validation
5756c21dd7b7 drm/amd/display: Set DISPCLK_MAX_ERRDET_CYCLES to 7
c7010d0f0789 drm/amd/display: Release MST resources on switch from MST to SST
7182bba3c2c6 drm/amd/display: Update scaling settings on modeset
2ee8e85ea87e net: micrel: check return value after calling platform_get_resource()
80240ded7994 net: mvpp2: check return value after calling platform_get_resource()
6ac291d2b4d9 net: bcmgenet: check return value after calling platform_get_resource()
627fffae46c2 virtio_net: Remove BUG() to avoid machine dead
217533e60deb ice: set the value of global config lock timeout longer
c0b70153f13e pinctrl: mcp23s08: fix race condition in irq handler
e10062afd67d dm space maps: don't reset space map allocation cursor when committing
57ef44f35725 RDMA/cxgb4: Fix missing error code in create_qp()
ccde03a6a0fb ipv6: use prandom_u32() for ID generation
482708d036be clk: tegra: Ensure that PLLU configuration is applied properly
050c6bb5cbf7 clk: renesas: r8a77995: Add ZA2 clock
c84e0757d80b drm/bridge: cdns: Fix PM reference leak in cdns_dsi_transfer()
cdfd4ceafba9 igb: handle vlan types with checker enabled
596b031a3d3a e100: handle eeprom as little endian
80d505aee639 udf: Fix NULL pointer dereference in udf_symlink function
c32d0f0e164f drm/sched: Avoid data corruptions
6ebfdf01cc89 drm/virtio: Fix double free on probe failure
5e2d303b452a reiserfs: add check for invalid 1st journal block
1a2d21e266c4 drm/mediatek: Fix PM reference leak in mtk_crtc_ddp_hw_init()
45cc7a653f5a net: Treat __napi_schedule_irqoff() as __napi_schedule() on PREEMPT_RT
bdf5334250c6 atm: nicstar: Fix possible use-after-free in nicstar_cleanup()
3ecd228c636e mISDN: fix possible use-after-free in HFC_cleanup()
c9172498d4d6 atm: iphase: fix possible use-after-free in ia_module_exit()
b52b0d996a13 hugetlb: clear huge pte during flush function on mips platform
526451e8d241 drm/amd/display: fix use_max_lb flag for 420 pixel formats
cfd8894619d1 net: pch_gbe: Use proper accessors to BE data in pch_ptp_match()
f6d326ad0324 drm/vc4: fix argument ordering in vc4_crtc_get_margins()
997dedaa75e9 drm/amd/amdgpu/sriov disable all ip hw status by default
34b01e883a5d drm/zte: Don't select DRM_KMS_FB_HELPER
012439cba95c drm/mxsfb: Don't select DRM_KMS_FB_HELPER
(From OE-Core rev: f38fa9ad02b625534b91328755efbbdcff200010)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating linux-yocto/5.10 to the latest korg -stable release that comprises
the following commits:
2cd5fe24a7f0 Linux 5.10.52
174c34d9cda1 seq_file: disallow extremely large seq buffer allocations
b33aa0dbd72f scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg()
e09c9b558436 MIPS: vdso: Invalid GIC access through VDSO
20f79ce2b1ab mips: disable branch profiling in boot/decompress.o
4e2764e96a15 mips: always link byteswap helpers into decompressor
53c5c2496fc9 static_call: Fix static_call_text_reserved() vs __init
59ae35884c5e jump_label: Fix jump_label_text_reserved() vs __init
143a6b8ec5c6 sched/uclamp: Ignore max aggregation if rq is idle
43b89ef7bc4a scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe()
f71f13034f3b arm64: dts: rockchip: Re-add regulator-always-on for vcc_sdio for rk3399-roc-pc
b3231050c75c arm64: dts: rockchip: Re-add regulator-boot-on, regulator-always-on for vdd_gpu on rk3399-roc-pc
9436e9001d40 firmware: turris-mox-rwtm: show message about HWRNG registration
b2a5949a91a7 firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng
ddf380b0941f firmware: turris-mox-rwtm: report failures better
271c12dbeb62 firmware: turris-mox-rwtm: fix reply status decoding function
804aabb50990 thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations
dae777523234 ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery
936446f15aef ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems
f12a456f1c3b ARM: dts: imx6q-dhcom: Fix ethernet reset time properties
b1995806d008 thermal/drivers/sprd: Add missing MODULE_DEVICE_TABLE
4d9ea2858607 ARM: dts: am437x: align ti,pindir-d0-out-d1-in property with dt-shema
6641724d68fd ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema
0724764c085a ARM: dts: dra7: Fix duplicate USB4 target module node
6cd58375c532 arm64: dts: allwinner: a64-sopine-baseboard: change RGMII mode to TXID
b5789e23773f memory: fsl_ifc: fix leak of private memory on probe failure
8d071d270afb memory: fsl_ifc: fix leak of IO mapping on probe failure
1479998d8027 arm64: dts: ti: k3-j721e-main: Fix external refclk input to SERDES
668ca468702e arm64: dts: renesas: r8a779a0: Drop power-domains property from GIC node
884d09d1f18c reset: bail if try_module_get() fails
8c07e1a8c57c ARM: dts: BCM5301X: Fixup SPI binding
db4e87ab60e8 dt-bindings: i2c: at91: fix example for scl-gpios
4b4c61049ec5 firmware: arm_scmi: Reset Rx buffer to max size during async commands
c381e695cfcd firmware: tegra: Fix error return code in tegra210_bpmp_init()
f58a3bc94aae arm64: dts: qcom: trogdor: Add no-hpd to DSI bridge node
d99524d13df9 ARM: dts: stm32: Rework LAN8710Ai PHY reset on DHCOM SoM
91df7f4a0410 ARM: dts: stm32: Connect PHY IRQ line on DH STM32MP1 SoM
c4218acd688e arm64: dts: renesas: r8a7796[01]: Fix OPP table entry voltages
305df11389cb arm64: dts: renesas: Add missing opp-suspend properties
55fd1d3ca578 arm64: dts: ti: j7200-main: Enable USB2 PHY RX sensitivity workaround
b8d350b4ac1e ARM: dts: r8a7779, marzen: Fix DU clock names
b02a65061e97 arm64: dts: renesas: v3msk: Fix memory size
ab4d76eb7737 rtc: fix snprintf() checking in is_rtc_hctosys()
e35246365403 ARM: dts: sun8i: h3: orangepi-plus: Fix ethernet phy-mode
3199ff7b9f54 memory: pl353: Fix error return code in pl353_smc_probe()
fc7a8347ce49 reset: brcmstb: Add missing MODULE_DEVICE_TABLE
3f526ea670d8 memory: atmel-ebi: add missing of_node_put for loop iteration
84fa4a10631a memory: stm32-fmc2-ebi: add missing of_node_put for loop iteration
c385d93c3c1a ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4
b7016870feea ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1
640105e7c08d ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3
6870bc426796 ARM: exynos: add missing of_node_put for loop iteration
85dd41383b36 reset: a10sr: add missing of_match_table reference
685ec4c0f27c reset: RESET_INTEL_GW should depend on X86
2ca912471db4 reset: RESET_BRCMSTB_RESCAL should depend on ARCH_BRCMSTB
f75cec5c2048 ARM: dts: gemini-rut1xx: remove duplicate ethernet node
f11508ecc696 hexagon: use common DISCARDS macro
f7121692795c hexagon: handle {,SOFT}IRQENTRY_TEXT in linker script
4aa17d058a9b NFSv4/pNFS: Don't call _nfs4_pnfs_v3_ds_connect multiple times
885c0cc2acfe NFSv4/pnfs: Fix layoutget behaviour after invalidation
a668a77e6aed NFSv4/pnfs: Fix the layout barrier update
6ccccc03f87a vdpa/mlx5: Clear vq ready indication upon device reset
0e5f204ea595 ALSA: isa: Fix error return code in snd_cmi8330_probe()
6612c412336c nfsd: Reduce contention for the nfsd_file nf_rwsem
89047f0089cd nvme-tcp: can't set sk_user_data without write_lock
4b3fd33f580f virtio_net: move tx vq operation under tx queue lock
8795692f0d6c vdpa/mlx5: Fix possible failure in umem size calculation
63272b1ffdb0 vdpa/mlx5: Fix umem sizes assignments on VQ create
e22051e7c9f7 PCI: tegra194: Fix tegra_pcie_ep_raise_msi_irq() ill-defined shift
527bb29eb183 pwm: imx1: Don't disable clocks at device remove time
12d84de59da0 PCI: intel-gw: Fix INTx enable
b5859dacd29e x86/fpu: Limit xstate copy size in xstateregs_set()
07b760a79170 x86/fpu: Fix copy_xstate_to_kernel() gap handling
aa7fccd383de f2fs: fix to avoid adding tab before doc section
607caa080119 PCI: iproc: Support multi-MSI only on uniprocessor kernel
54dc6fcce3de PCI: iproc: Fix multi-MSI base vector number allocation
ac2e498ab222 ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode
4b515308ab87 nfs: fix acl memory leak of posix_acl_create()
b8eace7d3b9c SUNRPC: prevent port reuse on transports which don't request it.
5577eece796f watchdog: jz4740: Fix return value check in jz4740_wdt_probe()
3b93d520ac53 watchdog: aspeed: fix hardware timeout calculation
412ef737be65 ubifs: journal: Fix error return code in ubifs_jnl_write_inode()
6bcc0590cb91 ubifs: Fix off-by-one error
aab881d7f074 um: fix error return code in winch_tramp()
9bb3f31b25b2 um: fix error return code in slip_open()
0bfb6d49497c misc: alcor_pci: fix inverted branch condition
5c7ef8a37055 NFSv4: Fix an Oops in pnfs_mark_request_commit() when doing O_DIRECT
ff4023d01942 NFSv4: Initialise connection to the server in nfs4_alloc_client()
36291fd6279f power: supply: rt5033_battery: Fix device tree enumeration
ae56850d3657 PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun
6594d0aa1c22 remoteproc: k3-r5: Fix an error message
d3c150978ead f2fs: compress: fix to disallow temp extension
43cefd126450 f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs
74569cb9ed7b x86/signal: Detect and prevent an alternate signal stack overflow
f0e905df68d6 NFSD: Fix TP_printk() format specifier in nfsd_clid_class
2830dd2faa53 f2fs: atgc: fix to set default age threshold
f6ec306b93dc virtio_console: Assure used length from device is limited
09a94a89d74f virtio_net: Fix error handling in virtnet_restore()
cd24da0db9f7 virtio-blk: Fix memory leak among suspend/resume procedure
d420b1166643 PCI: rockchip: Register IRQ handlers after device and data are ready
424fc30298cb ACPI: video: Add quirk for the Dell Vostro 3350
4f2b140658cd ACPI: AMBA: Fix resource name in /proc/iomem
9dcc9ad34348 pwm: tegra: Don't modify HW state in .remove callback
3d82361abd03 pwm: img: Fix PM reference leak in img_pwm_enable()
b3205768cd1a drm/amdkfd: fix sysfs kobj leak
687875fa9c3b power: supply: ab8500: add missing MODULE_DEVICE_TABLE
e88d524c662b power: supply: charger-manager: add missing MODULE_DEVICE_TABLE
89786fbc4d1e NFS: nfs_find_open_context() may only select open files
0fedfa72aedc drm/gma500: Add the missed drm_gem_object_put() in psb_user_framebuffer_create()
59d912fe9bb9 ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty
3c586f825576 orangefs: fix orangefs df output.
6e43cdcbb715 PCI: tegra: Add missing MODULE_DEVICE_TABLE
2df1abffc474 remoteproc: core: Fix cdev remove and rproc del
f3a56cd3eaf6 x86/fpu: Return proper error codes from user access functions
39ed17de8c6f watchdog: iTCO_wdt: Account for rebooting on second timeout
9cc9f5de281b watchdog: imx_sc_wdt: fix pretimeout
66ba9cf929b1 watchdog: Fix possible use-after-free by calling del_timer_sync()
a173e3b62cf6 watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff()
a397cb4576fc watchdog: Fix possible use-after-free in wdt_startup()
96c0bf09125e PCI: pciehp: Ignore Link Down/Up caused by DPC
497064740406 NFSv4: Fix delegation return in cases where we have to retry
b05c555c8d4d PCI/P2PDMA: Avoid pci_get_slot(), which may sleep
8e3f27bb7fdd ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1
9d829ca43b08 power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE
efc6443c1abe power: supply: max17042: Do not enforce (incorrect) interrupt trigger type
7667cdc4b7e8 PCI: hv: Fix a race condition when removing the device
14016c172820 power: supply: ab8500: Avoid NULL pointers
0df49cdc7c15 PCI: ftpci100: Rename macro name collision
e133435232ed pwm: spear: Don't modify HW state in .remove callback
15a19c5a9292 power: supply: sc2731_charger: Add missing MODULE_DEVICE_TABLE
d7897890bade power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE
6ed9f9899b66 kcov: add __no_sanitize_coverage to fix noinstr for all architectures
ff53dfb32349 lib/decompress_unlz4.c: correctly handle zero-padding around initrds.
b85b43c3e4b8 phy: intel: Fix for warnings due to EMMC clock 175Mhz change in FIP
a9d986be494e i2c: core: Disable client irq on reboot/shutdown
9c6c65704719 intel_th: Wait until port is in reset before programming it
45f1de1fff2b staging: rtl8723bs: fix macro value for 2.4Ghz only device
1f577093c843 leds: turris-omnia: add missing MODULE_DEVICE_TABLE
ff8f11860e43 ALSA: firewire-motu: fix detection for S/PDIF source on optical interface in v2 protocol
9ada4baae639 ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions
fb7c8bfa2e3c ALSA: hda: Add IRQ check for platform_get_irq()
63c49cfa2f0c backlight: lm3630a: Fix return code of .update_status() callback
719c45a41cdb ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters
692e16958f48 powerpc/boot: Fixup device-tree on little endian
b41cb0e4af0b usb: gadget: hid: fix error return code in hid_bind()
309b44d31667 usb: gadget: f_hid: fix endianness issue with descriptors
16668cc65601 ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values
3005d48b40e5 ALSA: usb-audio: scarlett2: Fix data_mutex lock
8f075c61ea8d ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count
3b7bd795cbef ALSA: bebob: add support for ToneWeal FW66
90cd79aa9ac7 Input: hideep - fix the uninitialized use in hideep_nvm_unlock()
a50b56ffc0c8 s390/mem_detect: fix tprot() program check new psw handling
7e1e0235b3db s390/mem_detect: fix diag260() program check new psw handling
c25be19aa957 s390/ipl_parm: fix program check new psw handling
3794633dfdd8 s390/processor: always inline stap() and __load_psw_mask()
f22649cf90c3 habanalabs: remove node from list before freeing the node
25ddb0a42f3a habanalabs/gaudi: set the correct cpu_id on MME2_QM failure
3dd2a9daa765 ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing()
8e18158ea787 powerpc/mm/book3s64: Fix possible build error
ed0b4b56a922 gpio: pca953x: Add support for the On Semi pca9655
b7f4423c7de8 selftests/powerpc: Fix "no_handler" EBB selftest
c7f2112e7ada ALSA: ppc: fix error return code in snd_pmac_probe()
1004c52e3c51 scsi: storvsc: Correctly handle multiple flags in srb_status
b3d3a2466e74 gpio: zynq: Check return value of irq_get_irq_data
3d2b0818daa4 gpio: zynq: Check return value of pm_runtime_get_sync
71f8d7fbfe8e ASoC: soc-pcm: fix the return value in dpcm_apply_symmetry()
43d1aaa1965f iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation
c4007596fbda iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get fails
f8763ab3fb86 powerpc/ps3: Add dma_mask to ps3_dma_region
0e54f8ee6bff ALSA: sb: Fix potential double-free of CSP mixer elements
52d242f2bffe selftests: timers: rtcpie: skip test if default RTC device does not exist
7b18f26d8277 s390: disable SSP when needed
78cddc9aa6be s390/sclp_vt220: fix console name to match device
2f4e7363a998 serial: tty: uartlite: fix console setup
dc9db4629210 fsi: Add missing MODULE_DEVICE_TABLE
0c67c2e20366 ASoC: img: Fix PM reference leak in img_i2s_in_probe()
af8b891cd339 mfd: cpcap: Fix cpcap dmamask not set warnings
d339f6a0d1a1 mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE
5dd2955565e8 scsi: qedi: Fix cleanup session block/unblock use
6f36afa1550a scsi: qedi: Fix TMF session block/unblock use
57fa983ea736 scsi: qedi: Fix race during abort timeouts
afa1c8ee7e63 scsi: qedi: Fix null ref during abort handling
fa7adae4b577 scsi: iscsi: Fix shost->max_id use
89812e7957ab scsi: iscsi: Fix conn use after free during resets
21962a5dd6b4 scsi: iscsi: Add iscsi_cls_conn refcount helpers
5ac2428f2b96 scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs
422fb12054f4 scsi: megaraid_sas: Early detection of VD deletion through RaidMap update
0680db6f4192 scsi: megaraid_sas: Fix resource leak in case of probe failure
c851de0215eb fs/jfs: Fix missing error code in lmLogInit()
7207cd708eb3 scsi: scsi_dh_alua: Check for negative result value
6bad74b2b49f scsi: core: Fixup calling convention for scsi_mode_sense()
b4fd2ab0a91b scsi: mpt3sas: Fix deadlock while cancelling the running firmware event
7a80f71601af tty: serial: 8250: serial_cs: Fix a memory leak in error handling path
75452cc77668 ALSA: ac97: fix PM reference leak in ac97_bus_remove()
664695a75468 scsi: core: Cap scsi_host cmd_per_lun at can_queue
21d8b90cec7e scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the SGLs
2626d5ed6b5c scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology
bb1d1c214948 scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw()
024550409022 scsi: arcmsr: Fix doorbell status being updated late on ARC-1886
20c62caf2eaf w1: ds2438: fixing bug that would always get page0
8e8d910e9a3a usb: common: usb-conn-gpio: fix NULL pointer dereference of charger
b30a115e4af5 Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro"
7d7f30cf182e ALSA: usx2y: Don't call free_pages_exact() with NULL address
f4997bf6c448 ALSA: usx2y: Avoid camelCase
1b1d6aa1a8cf iio: magn: bmc150: Balance runtime pm + use pm_runtime_resume_and_get()
5ecb0acc45e8 iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get().
5f69841c220a partitions: msdos: fix one-byte get_unaligned()
a8c3d1a515b9 ASoC: intel/boards: add missing MODULE_DEVICE_TABLE
58f69684ba03 misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge
b9c87ce3bc63 misc/libmasm/module: Fix two use after free in ibmasm_init_one
4f3c807739e3 serial: fsl_lpuart: disable DMA for console and fix sysrq
6942fbc00981 tty: serial: fsl_lpuart: fix the potential risk of division or modulo by zero
35a35909ec19 rcu: Reject RCU_LOCKDEP_WARN() false positives
23597afbe096 srcu: Fix broken node geometry after early ssp init
4d395142d96f scsi: arcmsr: Fix the wrong CDB payload report to IOP
22d22fef9cbc dmaengine: fsl-qdma: check dma_set_mask return value
32064330708b ASoC: Intel: sof_sdw: add mutual exclusion between PCH DMIC and RT715
164a3880a76a leds: tlc591xx: fix return value check in tlc591xx_probe()
9ebcc60565f2 net: bridge: multicast: fix MRD advertisement router port marking race
664cc645bdd8 net: bridge: multicast: fix PIM hello router port marking race
b3aea76efe90 Revert "drm/ast: Remove reference to struct drm_device.pdev"
b3f8120039d5 drm/ingenic: Switch IPU plane to type OVERLAY
8f6dcc4dd731 drm/ingenic: Fix non-OSD mode
cae871baa4f3 drm/dp_mst: Add missing drm parameters to recently added call to drm_dbg_kms()
16fb4e9c39b9 drm/dp_mst: Avoid to mess up payload table by ports in stale topology
3462bc8b1a1f drm/dp_mst: Do not set proposed vcpi directly
087bff9acd2e fbmem: Do not delete the mode that is still in use
811763e3beb6 cgroup: verify that source is a string
0728df804806 drm/i915/gt: Fix -EDEADLK handling regression
81dd2d60f677 drm/i915/gtt: drop the page table optimisation
905169794d9c tracing: Do not reference char * as a string in histograms
e1261c7a846e scsi: zfcp: Report port fc_security as unknown early during remote cable pull
ea518b70ed5e scsi: core: Fix bad pointer dereference when ehandler kthread is invalid
8b2ae2de536c KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run()
bedc5d091138 KVM: nSVM: Check the value written to MSR_VM_HSAVE_PA
5b779e597cb7 KVM: x86/mmu: Do not apply HPA (memory encryption) mask to GPAs
1a1a5e440953 KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled
679837dc0aba KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio
72797ffca1bd cifs: handle reconnect of tcon when there is no cached dfs referral
b93f9499427c certs: add 'x509_revocation_list' to gitignore
f68261346518 Linux 5.10.51
86786603014e f2fs: fix to avoid racing on fsync_entry_slab by multi filesystem instances
5e4f5138bd85 ext4: fix memory leak in ext4_fill_super
3780348c1a0e smackfs: restrict bytes count in smk_set_cipso()
801893695036 jfs: fix GPF in diFree
fcb041ca5c77 drm/ast: Remove reference to struct drm_device.pdev
3785f3c1e3c7 pinctrl: mcp23s08: Fix missing unlock on error in mcp23s08_irq()
b716ccffbc8d dm writecache: write at least 4k when committing
090588059c30 io_uring: fix clear IORING_SETUP_R_DISABLED in wrong function
aa57b2d6b37e media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K
31874b6b63dd media: gspca/sunplus: fix zero-length control requests
de95c0bd797a media: gspca/sq905: fix control-request direction
c57bfd8000d7 media: zr364xx: fix memory leak in zr364xx_start_readpipe
dbd58d397844 media: dtv5100: fix control-request directions
db317a37229b media: subdev: disallow ioctl for saa6588/davinci
e2c1218ddc5f PCI: aardvark: Implement workaround for the readback value of VEND_ID
130919708990 PCI: aardvark: Fix checking for PIO Non-posted Request
f147115018aa PCI: Leave Apple Thunderbolt controllers on for s2idle or standby
ba47e65a5de3 dm btree remove: assign new_root only when removal succeeds
1b5918b087b1 dm writecache: flush origin device when writing and cache is full
cbc03ffec260 dm zoned: check zone capacity
35c1c4bd2d59 coresight: tmc-etf: Fix global-out-of-bounds in tmc_update_etf_buffer()
048624ad564c coresight: Propagate symlink failure
0c2bc1489104 ipack/carriers/tpci200: Fix a double free in tpci200_pci_probe
eb81b5a37dc5 tracing: Resize tgid_map to pid_max, not PID_MAX_DEFAULT
3cda5b7f4e29 tracing: Simplify & fix saved_tgids logic
8cc58a6e2c39 rq-qos: fix missed wake-ups in rq_qos_throttle try two
f9fb4986f4d8 seq_buf: Fix overflow in seq_buf_putmem_hex()
418b333afbd5 extcon: intel-mrfld: Sync hardware and software state on init
af092ec16e06 selftests/lkdtm: Fix expected text for CR4 pinning
0af643fa7e74 lkdtm/bugs: XFAIL UNALIGNED_LOAD_STORE_WRITE
baedb1f5a08c nvmem: core: add a missing of_node_put
f0a079c0ba87 mfd: syscon: Free the allocated name field of struct regmap_config
a8a2e506ea2f power: supply: ab8500: Fix an old bug
38dde03eb239 ubifs: Fix races between xattr_{set|get} and listxattr operations
690a11fb4e9f thermal/drivers/int340x/processor_thermal: Fix tcc setting
ef5066f95c15 ipmi/watchdog: Stop watchdog timer when the current action is 'none'
7ade84f8df8f qemu_fw_cfg: Make fw_cfg_rev_attr a proper kobj_attribute
02671eda9ab9 i40e: fix PTP on 5Gb links
ab9d7c5fc9c6 ASoC: tegra: Set driver_name=tegra for all machine drivers
e0d9beb44abd fpga: stratix10-soc: Add missing fpga_mgr_free() call
5a5ebf5d4822 clocksource/arm_arch_timer: Improve Allwinner A64 timer workaround
b5e26be407e6 cpu/hotplug: Cure the cpusets trainwreck
a11a457820fb arm64: tlb: fix the TTL value of tlb_get_level
0afa6ad0c49a ata: ahci_sunxi: Disable DIPM
5543f61e2e0c mmc: core: Allow UHS-I voltage switch for SDSC cards if supported
b53b0ca4a4ec mmc: core: clear flags before allowing to retune
658f58189a4f mmc: sdhci: Fix warning message when accessing RPMB in HS400 mode
5ced01c0e855 mmc: sdhci-acpi: Disable write protect detection on Toshiba Encore 2 WT8-B
3f9c2a058e61 drm/i915/display: Do not zero past infoframes.vsc
8abf5eec0ebd drm/nouveau: Don't set allow_fb_modifiers explicitly
42a333ea4b4f drm/arm/malidp: Always list modifiers
0bcc074f90d2 drm/msm/mdp4: Fix modifier support enabling
4d61ddd74041 drm/tegra: Don't set allow_fb_modifiers explicitly
c6016936171a drm/amd/display: Reject non-zero src_y and src_x for video planes
7d3053889400 pinctrl/amd: Add device HID for new AMD GPIO controller
b13574fa83ac drm/amd/display: fix incorrrect valid irq check
3c8216b3503a drm/rockchip: dsi: remove extra component_del() call
2998599fb16c drm/dp: Handle zeroed port counts in drm_dp_read_downstream_info()
98bd09d928b3 drm/vc4: hdmi: Prevent clock unbalance
a2b8835cb4d1 drm/vc4: crtc: Skip the TXP
293e520d2043 drm/vc4: txp: Properly set the possible_crtcs mask
0d50d93d05d6 drm/radeon: Call radeon_suspend_kms() in radeon_pci_shutdown() for Loongson64
7aa28f2f6742 drm/radeon: Add the missed drm_gem_object_put() in radeon_user_framebuffer_create()
2674ffcad0ae drm/amdgpu: enable sdma0 tmz for Raven/Renoir(V2)
8f933b27cbf1 drm/amdgpu: Update NV SIMD-per-CU to 2
97ebbfe445cd powerpc/powernv/vas: Release reference to tgid during window close
a024e88f8ab7 powerpc/barrier: Avoid collision with clang's __lwsync macro
d2e52d466409 powerpc/mm: Fix lockup on kernel exec fault
4ad382bc4abc scsi: iscsi: Fix iSCSI cls conn state
221b7e1e76fb scsi: iscsi: Fix race condition between login and sync thread
907318883508 io_uring: convert io_buffer_idr to XArray
c5a50a220a41 io_uring: Convert personality_idr to XArray
cb2985feb118 io_uring: simplify io_remove_personalities()
7d4f96158852 mm,hwpoison: return -EBUSY when migration fails
fd6625a1ec40 loop: fix I/O error on fsync() in detached loop devices
88f0bc830c52 arm64: dts: rockchip: Enable USB3 for rk3328 Rock64
421aff50af5e arm64: dts: rockchip: add rk3328 dwc3 usb controller node
8eb12fa96bc5 ath11k: unlock on error path in ath11k_mac_op_add_interface()
9706c5343346 MIPS: MT extensions are not available on MIPS32r1
6cf2e905b1a0 selftests/resctrl: Fix incorrect parsing of option "-t"
10f8fca6761b MIPS: set mips32r5 for virt extensions
ff4762bcb95e MIPS: loongsoon64: Reserve memory below starting pfn to prevent Oops
6ef81a5c0e22 sctp: add size validation when walking chunks
d4dbef7046e2 sctp: validate from_addr_param return
e83f312114a0 flow_offload: action should not be NULL when it is referenced
a61af0114118 bpf: Fix false positive kmemleak report in bpf_ringbuf_area_alloc()
20285dc2711c sched/fair: Ensure _sum and _avg values stay consistent
e2296a4365f2 Bluetooth: btusb: fix bt fiwmare downloading failure issue for qca btsoc.
8d7a3989c14d Bluetooth: mgmt: Fix the command returns garbage parameter value
05298f1733c6 Bluetooth: btusb: Add support USB ALT 3 for WBS
cc49ab24ec37 Bluetooth: L2CAP: Fix invalid access on ECRED Connection response
79a313086426 Bluetooth: L2CAP: Fix invalid access if ECRED Reconfigure fails
c4a9967e4d09 Bluetooth: btusb: Add a new QCA_ROME device (0cf3:e500)
60789afc02f5 Bluetooth: Shutdown controller after workqueues are flushed or cancelled
5147d86c4a5b Bluetooth: Fix alt settings for incoming SCO with transparent coding format
8f939b4c2563 Bluetooth: Fix the HCI to MGMT status conversion table
5f5f8022c1aa Bluetooth: btusb: Fixed too many in-token issue for Mediatek Chip.
3d08b5917984 RDMA/cma: Fix rdma_resolve_route() memory leak
a8585fdf42b5 net: ip: avoid OOM kills with large UDP sends over loopback
04177aa99a93 media, bpf: Do not copy more entries than user space requested
d8bb134d808c IB/isert: Align target max I/O size to initiator size
d330f5f8dff7 mac80211_hwsim: add concurrent channels scanning support over virtio
97f067722669 mac80211: consider per-CPU statistics if present
1b728869a134 cfg80211: fix default HE tx bitrate mask in 2G band
0a7ba5d373f1 wireless: wext-spy: Fix out-of-bounds warning
c1ad55b6a1f4 sfc: error code if SRIOV cannot be disabled
1013dc896d99 sfc: avoid double pci_remove of VFs
7cd6986f2de5 iwlwifi: pcie: fix context info freeing
b98ec6d8b34d iwlwifi: pcie: free IML DMA memory allocation
78eadadff3d1 iwlwifi: mvm: fix error print when session protection ends
1e1bb1efd60e iwlwifi: mvm: don't change band on bound PHY contexts
1df36030393a RDMA/rxe: Don't overwrite errno from ib_umem_get()
ee33c042f492 vsock: notify server to shutdown when client has pending signal
38bc2ebf344c atm: nicstar: register the interrupt handler in the right place
90efb7f1006a atm: nicstar: use 'dma_free_coherent' instead of 'kfree'
1d304c7ddd36 net: fec: add ndo_select_queue to fix TX bandwidth fluctuations
c7a31ae63e2c MIPS: add PMD table accounting into MIPS'pmd_alloc_one
50ce920fe113 rtl8xxxu: Fix device info for RTL8192EU devices
a10e871b73b4 mt76: mt7915: fix IEEE80211_HE_PHY_CAP7_MAX_NC for station mode
4cd713e48c27 drm/amdkfd: Walk through list with dqm lock hold
a2122e079204 drm/amdgpu: fix bad address translation for sienna_cichlid
932be4cf2ba2 io_uring: fix false WARN_ONCE
92a9fb51e5ec net: sched: fix error return code in tcf_del_walker()
d2801d111829 net: ipa: Add missing of_node_put() in ipa_firmware_load()
5cc0cf735f13 net: fix mistake path for netdev_features_strings
891db094a0aa mt76: mt7615: fix fixed-rate tx status reporting
090b06b25afe ice: mark PTYPE 2 as reserved
b88a90783043 ice: fix incorrect payload indicator on PTYPE
2e66c36f1308 bpf: Fix up register-based shifts in interpreter to silence KUBSAN
0e72b151e394 drm/amdkfd: Fix circular lock in nocpsch path
cd29db48bb65 drm/amdkfd: fix circular locking on get_wave_state
9d21abc8fd20 cw1200: add missing MODULE_DEVICE_TABLE
c5e4a10d7bd5 wl1251: Fix possible buffer overflow in wl1251_cmd_scan
5a3d373c4a33 wlcore/wl12xx: Fix wl12xx get_mac error if device is in ELP
ad7083a95d8a dm writecache: commit just one block, not a full page
57f7ed25bd16 xfrm: Fix error reporting in xfrm_state_construct.
a5f8862967c4 drm/amd/display: Verify Gamma & Degamma LUT sizes in amdgpu_dm_atomic_check
db3c3643d55e r8169: avoid link-up interrupt issue on RTL8106e if user enables ASPM
f38371821c25 selinux: use __GFP_NOWARN with GFP_NOWAIT in the AVC
0a244be95bca fjes: check return value after calling platform_get_resource()
378c156f9dd0 drm/amdkfd: use allowed domain for vmbo validation
fb3b4bcdd3bc net: sgi: ioc3-eth: check return value after calling platform_get_resource()
e613f67f1b51 selftests: Clean forgotten resources as part of cleanup()
8a4318c14ace net: phy: realtek: add delay to fix RXC generation issue
c71de31b2e0f drm/amd/display: Fix off-by-one error in DML
afa06442d23d drm/amd/display: Set DISPCLK_MAX_ERRDET_CYCLES to 7
02f444321b3a drm/amd/display: Release MST resources on switch from MST to SST
01d6a6931965 drm/amd/display: Update scaling settings on modeset
57c63b47d6f1 drm/amd/display: Fix DCN 3.01 DSCCLK validation
8e4da401425b net: moxa: Use devm_platform_get_and_ioremap_resource()
278dc34b7112 net: micrel: check return value after calling platform_get_resource()
ce1307ec621b net: mvpp2: check return value after calling platform_get_resource()
49b3a7f38a9b net: bcmgenet: check return value after calling platform_get_resource()
92820a12823e net: mscc: ocelot: check return value after calling platform_get_resource()
f3b96f4b6b2d virtio_net: Remove BUG() to avoid machine dead
87c39048ec7f ice: fix clang warning regarding deadcode.DeadStores
e352556acef9 ice: set the value of global config lock timeout longer
b5f2982e0609 pinctrl: mcp23s08: fix race condition in irq handler
a4a86400c68c net: bridge: mrp: Update ring transitions.
cc4f0a9d5aa1 dm: Fix dm_accept_partial_bio() relative to zone management commands
939f750215b8 dm writecache: don't split bios when overwriting contiguous cache content
65e780667cf3 dm space maps: don't reset space map allocation cursor when committing
313d9f25804c RDMA/cxgb4: Fix missing error code in create_qp()
f9c67c179e3b net: tcp better handling of reordering then loss cases
8fa6473a61ec drm/amdgpu: remove unsafe optimization to drop preamble ib
c5b518f4b98d drm/amd/display: Avoid HDCP over-read and corruption
3c172f6e444b MIPS: ingenic: Select CPU_SUPPORTS_CPUFREQ && MIPS_EXTERNAL_TIMER
0903ac8f09c6 MIPS: cpu-probe: Fix FPU detection on Ingenic JZ4760(B)
8f939b795797 ipv6: use prandom_u32() for ID generation
c92298d228f6 virtio-net: Add validation for used length
5e039a80a76b drm: bridge: cdns-mhdp8546: Fix PM reference leak in
d1eaf4cb4408 clk: tegra: Ensure that PLLU configuration is applied properly
dc5bacea9462 clk: tegra: Fix refcounting of gate clocks
315988817aa7 RDMA/rtrs: Change MAX_SESS_QUEUE_DEPTH
4f6a0f31c627 net: stmmac: the XPCS obscures a potential "PHY not found" error
a7d608bb786c drm: rockchip: add missing registers for RK3066
d89ea206e99c drm: rockchip: add missing registers for RK3188
e54b4a534845 net/mlx5: Fix lag port remapping logic
62137d1ae5f8 net/mlx5e: IPsec/rep_tc: Fix rep_tc_update_skb drops IPsec packet
219150485d73 clk: renesas: r8a77995: Add ZA2 clock
0680344d7131 drm/bridge: cdns: Fix PM reference leak in cdns_dsi_transfer()
95f8ce9f18cb igb: fix assignment on big endian machines
66d593aa3aea igb: handle vlan types with checker enabled
ffb865715a0f e100: handle eeprom as little endian
f06ea024c176 drm/vc4: hdmi: Fix PM reference leak in vc4_hdmi_encoder_pre_crtc_co()
48c96d5bacc0 drm/vc4: Fix clock source for VEC PixelValve on BCM2711
21bf1414580c udf: Fix NULL pointer dereference in udf_symlink function
0687411e2a88 drm/sched: Avoid data corruptions
5ed8c298b2e1 drm/scheduler: Fix hang when sched_entity released
73ac001f060b pinctrl: equilibrium: Add missing MODULE_DEVICE_TABLE
1b832bd77799 net/sched: cls_api: increase max_reclassify_loop
6ceb0182b087 net: mdio: provide shim implementation of devm_of_mdiobus_register
d2d17ca924f4 drm/virtio: Fix double free on probe failure
69a71b59b18c reiserfs: add check for invalid 1st journal block
c5073100dc4f drm/bridge: lt9611: Add missing MODULE_DEVICE_TABLE
b5713dac1916 net: mdio: ipq8064: add regmap config to disable REGCACHE
c0dd36bcb67f drm/mediatek: Fix PM reference leak in mtk_crtc_ddp_hw_init()
3393405257ed net: Treat __napi_schedule_irqoff() as __napi_schedule() on PREEMPT_RT
a7f7c42e3115 atm: nicstar: Fix possible use-after-free in nicstar_cleanup()
b7ee9ae1e0cf mISDN: fix possible use-after-free in HFC_cleanup()
e759ff76ebbb atm: iphase: fix possible use-after-free in ia_module_exit()
2292d9691ce9 hugetlb: clear huge pte during flush function on mips platform
a74872106e78 clk: renesas: rcar-usb2-clock-sel: Fix error handling in .probe()
3ca86d44b902 drm/amd/display: fix use_max_lb flag for 420 pixel formats
5953b984c3e4 net: pch_gbe: Use proper accessors to BE data in pch_ptp_match()
fb960728f8f1 drm/bridge: nwl-dsi: Force a full modeset when crtc_state->active is changed to be true
796554d3d68f drm/vc4: fix argument ordering in vc4_crtc_get_margins()
b025bc07c947 drm/amd/amdgpu/sriov disable all ip hw status by default
fb7479d64d77 drm/amd/display: fix HDCP reset sequence on reinitialize
d055669e669a drm/ast: Fixed CVE for DP501
95c3133bc8eb drm/zte: Don't select DRM_KMS_FB_HELPER
b60ae0fab550 drm/mxsfb: Don't select DRM_KMS_FB_HELPER
(From OE-Core rev: 9cec9a92c3e8451d1b9875e97e63c24543a6f787)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating linux-yocto/5.13 to the latest korg -stable release that comprises
the following commits:
64376a981a0e Linux 5.13.4
71de462034c6 seq_file: disallow extremely large seq buffer allocations
31cf8e7e504e misc: alcor_pci: fix inverted branch condition
9930eeb4ffae scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg()
e1b2b2b61d30 cpufreq: CPPC: Fix potential memleak in cppc_cpufreq_cpu_init
c898c9bfd3d5 perf tools: Fix pattern matching for same substring in different PMU type
04ea267f5357 MIPS: vdso: Invalid GIC access through VDSO
bd5b2e8f4a7c s390/irq: remove HAVE_IRQ_EXIT_ON_IRQ_STACK
272fa75ec8a0 perf script python: Fix buffer size to report iregs in perf script
3a5f4fb0ee2d mips: disable branch profiling in boot/decompress.o
79a0e94e1434 mips: always link byteswap helpers into decompressor
8be9eadd7bd6 kprobe/static_call: Restore missing static_call_text_reserved()
fda47dd9f5d7 static_call: Fix static_call_text_reserved() vs __init
a861b41d0b41 jump_label: Fix jump_label_text_reserved() vs __init
7ec843ba963e sched/uclamp: Ignore max aggregation if rq is idle
c368aa2bbd2a scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe()
b6a08c2f1c41 arm64: dts: rockchip: Re-add regulator-always-on for vcc_sdio for rk3399-roc-pc
12f8ee513a33 arm64: dts: rockchip: Re-add regulator-boot-on, regulator-always-on for vdd_gpu on rk3399-roc-pc
9f5d2c5052d3 firmware: turris-mox-rwtm: show message about HWRNG registration
852ae2d33e1f firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng
5f6ffd65b7dc firmware: turris-mox-rwtm: report failures better
aa1b734129a7 firmware: turris-mox-rwtm: fix reply status decoding function
3dbb2de9e7af kbuild: remove trailing slashes from $(KBUILD_EXTMOD)
2292bba57bb6 thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations
314027808303 arm64: dts: ti: k3-am642-evm: align ti,pindir-d0-out-d1-in property with dt-shema
908b140229a2 arm64: dts: ti: am65: align ti,pindir-d0-out-d1-in property with dt-shema
6f62efde1ae0 arm64: dts: ti: k3-am642-main: fix ports mac properties
5b47aec030e9 ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery
189c0feed615 ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems
bffed302186c ARM: dts: imx6q-dhcom: Fix ethernet reset time properties
527b863b5260 thermal/drivers/sprd: Add missing MODULE_DEVICE_TABLE
688126766067 ARM: dts: am437x: align ti,pindir-d0-out-d1-in property with dt-shema
ca219ca56e48 ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema
75e9d92befad ARM: dts: dra7: Fix duplicate USB4 target module node
4264bda03ef1 arm64: dts: allwinner: a64-sopine-baseboard: change RGMII mode to TXID
a6b45b4932f7 memory: fsl_ifc: fix leak of private memory on probe failure
28f71fd81ebd memory: fsl_ifc: fix leak of IO mapping on probe failure
5efc32c0cf6d arm64: dts: ti: k3-j721e-common-proc-board: Re-name "link" name as "phy"
c854fab6a0c9 arm64: dts: ti: k3-j721e-common-proc-board: Use external clock for SERDES
2920f3582a2b arm64: dts: ti: k3-j721e-main: Fix external refclk input to SERDES
e1ff512116e9 firmware: arm_scmi: Add delayed response status check
3b28d0838e94 Revert "ARM: dts: bcm283x: increase dwc2's RX FIFO size"
5bb263488bd0 arm64: dts: renesas: r8a779a0: Drop power-domains property from GIC node
cb5259dacdbc reset: bail if try_module_get() fails
39119c5e50a9 ARM: dts: BCM5301X: Fixup SPI binding
c2c62ef35e79 dt-bindings: i2c: at91: fix example for scl-gpios
365987eb0d0e firmware: arm_scmi: Reset Rx buffer to max size during async commands
1a35a7db3430 soc: mtk-pm-domains: Fix the clock prepared issue
02fb5809342a soc: mtk-pm-domains: do not register smi node as syscon
ea6ad20a5381 firmware: tegra: Fix error return code in tegra210_bpmp_init()
2ef47def7bba arm64: dts: qcom: sc7180: Fix sc7180-qmp-usb3-dp-phy reg sizes
77cb5b1b127f arm64: dts: qcom: c630: Add no-hpd to DSI bridge node
c8072f1620ce arm64: dts: qcom: trogdor: Add no-hpd to DSI bridge node
2d2b0b26399f ARM: dts: stm32: Rework LAN8710Ai PHY reset on DHCOM SoM
a3d54e663d3b arm64: dts: renesas: r8a7796[01]: Fix OPP table entry voltages
f8303239e753 arm64: dts: renesas: Add missing opp-suspend properties
bd8eefc0b53d ARM: dts: qcom: sdx55-telit: Represent secure-regions as 64-bit elements
6dfc3b366e20 ARM: dts: qcom: sdx55-t55: Represent secure-regions as 64-bit elements
1b5c14a6bbe4 arm64: dts: ti: j7200-main: Enable USB2 PHY RX sensitivity workaround
ec80ffdc4283 arm64: dts: ti: k3-j7200: Remove "#address-cells" property from GPIO DT nodes
6d300d33d567 arm64: dts: ti: k3-am64-mcu: Fix the compatible string in GPIO DT node
d1b67a186292 arm64: dts: qcom: sdm845-oneplus-common: guard rmtfs-mem
d8ef498abc67 ARM: dts: r8a7779, marzen: Fix DU clock names
7d32c0007098 arm64: dts: renesas: v3msk: Fix memory size
104f7241f12d rtc: fix snprintf() checking in is_rtc_hctosys()
0b46343d52e8 rtc: bd70528: fix BD71815 watchdog dependency
dff5eb6da4f8 ARM: dts: sun8i: h3: orangepi-plus: Fix ethernet phy-mode
7540e4352365 memory: pl353: Fix error return code in pl353_smc_probe()
410c26a81b6c arm64: defconfig: Do not override the MTK_PMIC_WRAP symbol
91253471596e reset: brcmstb: Add missing MODULE_DEVICE_TABLE
19c0f8293f31 memory: atmel-ebi: add missing of_node_put for loop iteration
e075ad208d19 memory: stm32-fmc2-ebi: add missing of_node_put for loop iteration
444c3049db10 ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4
209aa4be8b40 ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1
3bbfd45abcd3 ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3
3bd497c174c5 ARM: exynos: add missing of_node_put for loop iteration
7a91d9c67531 reset: a10sr: add missing of_match_table reference
6cf18d4e190b reset: RESET_INTEL_GW should depend on X86
1347d04d66f7 reset: RESET_BRCMSTB_RESCAL should depend on ARCH_BRCMSTB
3b5eb8cd04a2 arm64: dts: rockchip: Drop fephy pinctrl from gmac2phy on rk3328 rock-pi-e
62ace4c8a6fc arm64: dts: rockchip: rename LED label for NanoPi R4S
f499d706e21e ARM: dts: gemini-rut1xx: remove duplicate ethernet node
700ecdcb3e05 hexagon: use common DISCARDS macro
91a711977033 hexagon: handle {,SOFT}IRQENTRY_TEXT in linker script
a5d3913911f1 NFSv4/pNFS: Don't call _nfs4_pnfs_v3_ds_connect multiple times
a43389b7df96 NFSv4/pnfs: Fix layoutget behaviour after invalidation
f90295b4b641 NFSv4/pnfs: Fix the layout barrier update
65d105e0014c NFS: Fix fscache read from NFS after cache error
9d94a3f255da NFS: Ensure nfs_readpage returns promptly when internal error occurs
382f21675997 virtio-mem: don't read big block size in Sub Block Mode
8e0bfe5edb79 vdpa/mlx5: Clear vq ready indication upon device reset
eaa0eb7020f7 ALSA: isa: Fix error return code in snd_cmi8330_probe()
650e6f383a6e nfsd: fix NULL dereference in nfs3svc_encode_getaclres
7605bff387a9 NFSD: Prevent a possible oops in the nfs_dirent() tracepoint
e8a8bb8dca84 nfsd: Reduce contention for the nfsd_file nf_rwsem
1e8c6f23b183 nfsd: move fsnotify on client creation outside spinlock
ca9c3d31c52d NFSD: Add nfsd_clid_confirmed tracepoint
0d435b6d94b0 powerpc/bpf: Fix detecting BPF atomic instructions
bc6b8e2cd87e nvme-tcp: can't set sk_user_data without write_lock
c01f6cae4b1b virtio_net: move tx vq operation under tx queue lock
70899667e59a vdp/mlx5: Fix setting the correct dma_device
e654dbc9a6e2 vdpa/mlx5: Fix possible failure in umem size calculation
965b080f4e6d vdpa/mlx5: Fix umem sizes assignments on VQ create
9dca259fbb42 vp_vdpa: correct the return value when fail to map notification
c31fab84b23c io_uring: remove not needed PF_EXITING check
dafcb53b550b io_uring: inline __tctx_task_work()
7511a4f524f3 io_uring: move creds from io-wq work to io_kiocb
16eadf897956 io_uring: don't bounce submit_state cachelines
bea4688b9e59 io_uring: shuffle rarely used ctx fields
f564954855fc io_uring: get rid of files in exit cancel
04c529ed0e7f block: grab a device refcount in disk_uevent
ccdf7e073170 arch_topology: Avoid use-after-free for scale_freq_data
d6c153a6ae03 PCI: tegra194: Fix tegra_pcie_ep_raise_msi_irq() ill-defined shift
63798e31f588 f2fs: remove false alarm on iget failure during GC
e882298f7c3e nfs: update has_sec_mnt_opts after cloning lsm options from parent
582223e621e1 pwm: imx1: Don't disable clocks at device remove time
18cfc69d561a PCI: intel-gw: Fix INTx enable
29e9a35b400b x86/fpu: Limit xstate copy size in xstateregs_set()
a04e670b07df x86/fpu: Fix copy_xstate_to_kernel() gap handling
c615921c48c9 f2fs: fix to avoid adding tab before doc section
7bc134df92a2 PCI: iproc: Support multi-MSI only on uniprocessor kernel
5ac5596c3b7c PCI: iproc: Fix multi-MSI base vector number allocation
8f02865de3a3 ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode
687cf32865b2 nfs: fix acl memory leak of posix_acl_create()
7cedf369663f SUNRPC: prevent port reuse on transports which don't request it.
a96036c0b520 watchdog: jz4740: Fix return value check in jz4740_wdt_probe()
07777127a44a watchdog: aspeed: fix hardware timeout calculation
90d61adce958 watchdog: keembay: Removed timeout update in the TO ISR
04693e05d183 watchdog: keembay: Remove timeout update in the WDT start function
6479c1a2ae2c watchdog: keembay: Clear either the TO or TH interrupt bit
b8ba05635e6e watchdog: keembay: Update pretimeout to zero in the TH ISR
340590af29d5 watchdog: keembay: Upadate WDT pretimeout for every update in timeout
4cfc11b3a8fe watchdog: keembay: Update WDT pre-timeout during the initialization
f55dd38490f7 ubifs: journal: Fix error return code in ubifs_jnl_write_inode()
fe597a0eb351 um: fix error return code in winch_tramp()
a04880c5bb08 um: fix error return code in slip_open()
b71f11467022 um: Fix stack pointer alignment
a02357d7532b sunrpc: Avoid a KASAN slab-out-of-bounds bug in xdr_set_page_base()
7aec9f862411 NFSv4: Fix an Oops in pnfs_mark_request_commit() when doing O_DIRECT
b0bfac939030 NFSv4: Initialise connection to the server in nfs4_alloc_client()
16187f5228e6 power: supply: rt5033_battery: Fix device tree enumeration
7da9b60120b0 PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun
8fcb25a3ef23 power: supply: surface-charger: Fix type of integer variable
10d79d3bf5c4 remoteproc: k3-r5: Fix an error message
f02de04e14cf remoteproc: stm32: fix phys_addr_t format string
2ca41d7ba671 f2fs: compress: fix to disallow temp extension
c3988657d370 f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs
fa815e11816b module: correctly exit module_kallsyms_on_each_symbol when fn() != 0
7c2089413c67 pwm: visconti: Fix and simplify period calculation
ee24633a5048 cpufreq: scmi: Fix an error message
afb04d0b5543 x86/signal: Detect and prevent an alternate signal stack overflow
8e0648a3cb63 NFSD: Fix TP_printk() format specifier in nfsd_clid_class
e1f1f6603155 f2fs: atgc: fix to set default age threshold
0f0fd04efc26 power: supply: surface_battery: Fix battery event handling
73a14f65a67c block: fix the problem of io_ticks becoming smaller
21a06a244d25 virtio_console: Assure used length from device is limited
ffbfea49cc39 virtio_net: Fix error handling in virtnet_restore()
29a2f4a3214a virtio-blk: Fix memory leak among suspend/resume procedure
1c8c1adae69f ext4: fix WARN_ON_ONCE(!buffer_uptodate) after an error writing the superblock
b881ba731274 PCI: rockchip: Register IRQ handlers after device and data are ready
cfac32923d1d ACPI: video: Add quirk for the Dell Vostro 3350
16752e05c77a ACPI: AMBA: Fix resource name in /proc/iomem
fd313d643f07 pwm: tegra: Don't modify HW state in .remove callback
a1d3f7407f78 pwm: img: Fix PM reference leak in img_pwm_enable()
18127c30f619 drm/amdkfd: fix sysfs kobj leak
0b909924a4ae drm/amdgpu: fix Navi1x tcp power gating hang when issuing lightweight invalidaiton
813ff2425324 power: supply: axp288_fuel_gauge: Make "T3 MRD" no_battery_list DMI entry more generic
289834760579 power: supply: ab8500: add missing MODULE_DEVICE_TABLE
81cd77390071 power: supply: charger-manager: add missing MODULE_DEVICE_TABLE
a01f95e2f881 power: reset: regulator-poweroff: add missing MODULE_DEVICE_TABLE
c11910b2c2cf NFS: nfs_find_open_context() may only select open files
4a54caa8540f drm/gma500: Add the missed drm_gem_object_put() in psb_user_framebuffer_create()
e43aa6240814 ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty
4f8e35e9483a orangefs: fix orangefs df output.
cdc00734394b NFSv4: Fix handling of non-atomic change attrbute updates
357d88120072 NFS: Fix up inode attribute revalidation timeouts
6e56ae0a8901 PCI: tegra: Add missing MODULE_DEVICE_TABLE
7693312a8044 remoteproc: stm32: fix mbox_send_message call
a9f2ab385cc6 remoteproc: core: Fix cdev remove and rproc del
bbea0e789770 x86/fpu: Return proper error codes from user access functions
f8a51030e3be PCI: mediatek-gen3: Add missing MODULE_DEVICE_TABLE
c09a4ad6251f fuse: fix illegal access to inode with reused nodeid
6ba041fc3c44 virtiofs: propagate sync() to file server
5e65819a006e watchdog: iTCO_wdt: Account for rebooting on second timeout
cfb7e2f23aa0 watchdog: imx_sc_wdt: fix pretimeout
1a053c4d7168 watchdog: Fix possible use-after-free by calling del_timer_sync()
f0feab82f6a0 watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff()
8adbbe6c86bb watchdog: Fix possible use-after-free in wdt_startup()
a037ebbe72a4 PCI: Dynamically map ECAM regions
3cf262e8c698 PCI: pciehp: Ignore Link Down/Up caused by DPC
9f397e9e497d NFSv4: Fix delegation return in cases where we have to retry
eeb8022576c1 PCI/P2PDMA: Avoid pci_get_slot(), which may sleep
00fe7b64bba8 ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1
a67dc65f59ed power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE
00a34a993ac3 power: supply: max17040: Do not enforce (incorrect) interrupt trigger type
4d40b03031a0 power: supply: max17042: Do not enforce (incorrect) interrupt trigger type
471c250065e1 pwm: pca9685: Restrict period change for enabled PWMs
b050025f8de4 PCI: hv: Fix a race condition when removing the device
6b8813b09fab power: supply: ab8500: Enable USB and AC
aa092b2f5bb3 power: supply: ab8500: Avoid NULL pointers
341db343768b power: supply: ab8500: Move to componentized binding
dc72a15859b2 PCI: ftpci100: Rename macro name collision
6606e5a6811a pwm: spear: Don't modify HW state in .remove callback
19ce06dcd189 power: supply: sc2731_charger: Add missing MODULE_DEVICE_TABLE
2d7dae32b14b power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE
77637270800c kcov: add __no_sanitize_coverage to fix noinstr for all architectures
67a8dfc86bdb lib/decompress_unlz4.c: correctly handle zero-padding around initrds.
af6365ae0991 phy: intel: Fix for warnings due to EMMC clock 175Mhz change in FIP
e00d3efd53d0 i2c: core: Disable client irq on reboot/shutdown
47419e67a5ff intel_th: Wait until port is in reset before programming it
8c012f3504ab staging: rtl8723bs: fix check allowing 5Ghz settings
32615857345b staging: rtl8723bs: fix macro value for 2.4Ghz only device
5f59df2b2358 leds: turris-omnia: add missing MODULE_DEVICE_TABLE
658d9b291193 ALSA: firewire-motu: fix detection for S/PDIF source on optical interface in v2 protocol
048d83c67d37 ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions
4348f36461b8 ALSA: hda: Add IRQ check for platform_get_irq()
eff67a0bb38f backlight: lm3630a: Fix return code of .update_status() callback
18fbea65d1a5 ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters
d422f8be38a2 ASoC: fsl_xcvr: check return value after calling platform_get_resource_byname()
d15c57f8f120 powerpc/boot: Fixup device-tree on little endian
34ada7b357dd usb: gadget: hid: fix error return code in hid_bind()
c904d51536b4 usb: gadget: f_hid: fix endianness issue with descriptors
7113c2692f7f ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values
7d94bcba9e59 ALSA: usb-audio: scarlett2: Fix data_mutex lock
f3f7f6ef23fc ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count
669eb7736781 m68knommu: fix missing LCD splash screen data initializer
efd33d33dedd ALSA: bebob: add support for ToneWeal FW66
a5dc9f63b20d Input: hideep - fix the uninitialized use in hideep_nvm_unlock()
1043c57cff3d s390/mem_detect: fix tprot() program check new psw handling
bf04c373f1b3 s390/mem_detect: fix diag260() program check new psw handling
5c80766b911d s390/ipl_parm: fix program check new psw handling
45b658ee680d s390/processor: always inline stap() and __load_psw_mask()
4de8aba5c10f habanalabs/gaudi: set the correct rc in case of err
29d01e4b4c04 habanalabs: remove node from list before freeing the node
cce27a77cc59 habanalabs: set rc as 'valid' in case of intentional func exit
275674c1e58b habanalabs: fix mask to obtain page offset
30dd0cbabf14 habanalabs/gaudi: set the correct cpu_id on MME2_QM failure
4bf6fcdcca81 habanalabs: check if asic secured with asic type
dac25ad9dd9d xhci: handle failed buffer copy to URB sg list and fix a W=1 copiler warning
44be4fd02a92 ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing()
c90bcc03dd7c powerpc/mm/book3s64: Fix possible build error
d4921acaab93 gpio: pca953x: Add support for the On Semi pca9655
ac2ee946b71e selftests/powerpc: Fix "no_handler" EBB selftest
df6b21c0aa9d ALSA: ppc: fix error return code in snd_pmac_probe()
21b28dfedfc1 scsi: storvsc: Correctly handle multiple flags in srb_status
0c5085c93f64 powerpc/inst: Fix sparse detection on get_user_instr()
71bfeb9e0f1a thunderbolt: Fix DROM handling for USB4 DROM
4d18303a5bc1 gpio: zynq: Check return value of irq_get_irq_data
c42ec0450a55 gpio: zynq: Check return value of pm_runtime_get_sync
b5b9d977c7a8 ASoC: soc-pcm: fix the return value in dpcm_apply_symmetry()
77921518bf65 ALSA: control_led - fix initialization in the mode show callback
2955c54c5bca ALSA: n64: check return value after calling platform_get_resource()
5f9741a9a91f iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation
fe92c0581990 iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get fails
f30d6b6bb4f6 powerpc/ps3: Add dma_mask to ps3_dma_region
06771032116a ALSA: sb: Fix potential double-free of CSP mixer elements
c33fbdc1cdae iommu/arm-smmu-qcom: Skip the TTBR1 quirk for db820c.
de544803cbe0 selftests: timers: rtcpie: skip test if default RTC device does not exist
52e8bd03856a s390: disable SSP when needed
2fdbf6e7baa8 s390/sclp_vt220: fix console name to match device
b29ddd99c14f serial: tty: uartlite: fix console setup
2124240be810 fsi: Add missing MODULE_DEVICE_TABLE
ed8c2cc77381 iov_iter_advance(): use consistent semantics for move past the end
a3a117833731 ASoC: img: Fix PM reference leak in img_i2s_in_probe()
cc78632eb085 mfd: cpcap: Fix cpcap dmamask not set warnings
4aee78c62b9d mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE
e65432dce6b5 scsi: qedi: Fix cleanup session block/unblock use
400c206f3be0 scsi: qedi: Fix TMF session block/unblock use
cf5cc57ea7dc scsi: qedi: Fix race during abort timeouts
338330351ca5 scsi: qedi: Fix null ref during abort handling
52b5bf245a68 scsi: iscsi: Fix shost->max_id use
fa9542b35ceb scsi: iscsi: Fix conn use after free during resets
bf3ce567db56 scsi: iscsi: Add iscsi_cls_conn refcount helpers
1420af019bcb scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs
2262bb7ee19e scsi: megaraid_sas: Early detection of VD deletion through RaidMap update
e623f79691c5 scsi: megaraid_sas: Fix resource leak in case of probe failure
0dab71667eb0 fs/jfs: Fix missing error code in lmLogInit()
936440f47826 scsi: scsi_dh_alua: Check for negative result value
89b033dd8f3b scsi: core: Fixup calling convention for scsi_mode_sense()
fc6bf9941021 scsi: mpt3sas: Fix deadlock while cancelling the running firmware event
b2ef1f5de403 tty: serial: 8250: serial_cs: Fix a memory leak in error handling path
b731dddd686b ASoC: cs42l42: Fix 1536000 Bit Clock instability
2a1115ad5fce ALSA: ac97: fix PM reference leak in ac97_bus_remove()
dcb634e434b8 scsi: core: Cap scsi_host cmd_per_lun at can_queue
8b927240f44c scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the SGLs
9c1a1c3e71dd scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology
dd3bc6dc69c6 scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw()
67fb59eceee3 scsi: arcmsr: Fix doorbell status being updated late on ARC-1886
ab935078f361 w1: ds2438: fixing bug that would always get page0
59f03af920b5 ASoC: SOF: topology: fix assignment to use le32_to_cpu
1a133a0996d6 usb: common: usb-conn-gpio: fix NULL pointer dereference of charger
3b57a2dd956c Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro"
82e5ee742fdd ALSA: usx2y: Don't call free_pages_exact() with NULL address
6c9a4c651572 ALSA: usx2y: Avoid camelCase
c31e22bf9406 iio: magn: bmc150: Balance runtime pm + use pm_runtime_resume_and_get()
7beb9112a3bc iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get().
78f472928f3a iio: imu: st_lsm6dsx: correct ODR in header
27a19198ab58 partitions: msdos: fix one-byte get_unaligned()
9c029e50e662 ASoC: intel/boards: add missing MODULE_DEVICE_TABLE
09d154990ca8 misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge
a7268e8a227d misc/libmasm/module: Fix two use after free in ibmasm_init_one
221f655abb56 serial: 8250: of: Check for CONFIG_SERIAL_8250_BCM7271
464ffcfa6028 serial: fsl_lpuart: disable DMA for console and fix sysrq
c96867d0bba9 tty: serial: fsl_lpuart: fix the potential risk of division or modulo by zero
7397dab12fe1 usb: dwc3: pci: Fix DEFINE for Intel Elkhart Lake
c4b8190ae66f soundwire: bus: handle -ENODATA errors in clock stop/start sequences
740b019c2eb8 soundwire: bus: only use CLOCK_STOP_MODE0 and fix confusions
ee188d0f8dd5 rcu: Reject RCU_LOCKDEP_WARN() false positives
aa59856bcfd2 srcu: Fix broken node geometry after early ssp init
5318059dea5e scsi: arcmsr: Fix the wrong CDB payload report to IOP
38a6e9b501b2 dmaengine: fsl-qdma: check dma_set_mask return value
7bd674051bfe ASoC: Intel: sof_sdw: add mutual exclusion between PCH DMIC and RT715
c57e7b2f36ae leds: tlc591xx: fix return value check in tlc591xx_probe()
28f0adaae3e8 net: bridge: multicast: fix MRD advertisement router port marking race
dc924e411870 net: bridge: multicast: fix PIM hello router port marking race
b937eb91b353 drm/dp_mst: Add missing drm parameters to recently added call to drm_dbg_kms()
d3891139901b drm/dp_mst: Avoid to mess up payload table by ports in stale topology
d01943939f45 drm/dp_mst: Do not set proposed vcpi directly
c30f0b5c6fd1 btrfs: zoned: fix wrong mutex unlock on failure to allocate log root tree
02fac1508a72 btrfs: don't block if we can't acquire the reclaim lock
d6479f089af1 btrfs: rework chunk allocation to avoid exhaustion of the system chunk array
789b24d9950d btrfs: fix deadlock with concurrent chunk allocations involving system chunks
9ffb4cd20998 btrfs: zoned: fix types for u64 division in btrfs_reclaim_bgs_work
27c5ecbb691f btrfs: properly split extent_map for REQ_OP_ZONE_APPEND
08e1e3b6ddd8 io_uring: use right task for exiting checks
6ef21f34aa92 arm64: Avoid premature usercopy failure
70fa723908a4 mm/hugetlb: fix refs calculation from unaligned @vaddr
65a5977bd05c EDAC/igen6: fix core dependency AGAIN
d6e76469157d fbmem: Do not delete the mode that is still in use
a41573667b39 cgroup: verify that source is a string
a6859443061e drm/i915/gt: Fix -EDEADLK handling regression
1786384f5217 drm/i915/gtt: drop the page table optimisation
e67361d6c083 drm/amdgpu: add another Renoir DID
38379a09f735 tracing: Do not reference char * as a string in histograms
7e6a4c304deb iommu/vt-d: Fix clearing real DMA device's scalable-mode context entries
948ec6d00328 iommu/vt-d: Global devTLB flush when present context entry changed
208e33fa8359 scsi: zfcp: Report port fc_security as unknown early during remote cable pull
c1671d2d2ef8 scsi: core: Fix bad pointer dereference when ehandler kthread is invalid
aa25872fcc35 KVM: SVM: remove INIT intercept handler
bbca8ad77f26 KVM: SVM: #SMI interception must not skip the instruction
2338682c3fd1 KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run()
f4e862a6a3d9 KVM: nSVM: Check the value written to MSR_VM_HSAVE_PA
a238f763e650 KVM: SVM: Revert clearing of C-bit on GPA in #NPF handler
555e674fd3f9 KVM: x86/mmu: Do not apply HPA (memory encryption) mask to GPAs
4ccf1f873b70 KVM: x86: Use kernel's x86_phys_bits to handle reduced MAXPHYADDR
0eb28e18e56c KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled
228ce0ed1283 KVM: selftests: do not require 64GB in set_memory_region_test
069d44a24c0f KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio
d4e376c83736 cifs: Do not use the original cruid when following DFS links for multiuser mounts
0c480c45bed3 cifs: handle reconnect of tcon when there is no cached dfs referral
a29b76ec20f2 cifs: use the expiry output of dns_query to schedule next resolution
(From OE-Core rev: 28001800057149d4b771290753ebdfb69e9c999b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes the following error when building linux-yocto-upstream:
Fetcher failure: Unable to find revision 570e7aedcd00e7e8a218e37c3dfb3b1fda83d111
in branch v5.13/base even from upstream
The error occurred as the SRCREV_machine assignment earlier in the
recipe was being used instead of the mainline commit hash we want to use
for linux-yocto-upstream.
(From OE-Core rev: 0df7954d1ffe111337bd7d68f0cb09404906db85)
Signed-off-by: Paul Barker <paul@pbarker.dev>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 45c334b3cfdfc9584b80cbc3ede1a60f61ecc8bb)
Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
| |
(From OE-Core rev: c4fc226c2e3856b942bb4f57ead21a64c3dc8c0d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If the client process never sends cooker data, the server timeout will
be 0.0, not None. This will prevent the server from exiting, as it is
waiting for a new client. In particular, the client will disconnect with
a bad "INHERIT" line, such as:
INHERIT += "this-class-does-not-exist"
Instead of checking explicitly for None, check for a false value, which
means either 0.0 or None.
(Bitbake rev: 13e2855bff6a6ead6dbd33c5be4b988aafcd4afa)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
| |
Since we start to require these for builds, we need to include them in buildtools-tarball
so that older systems can access them easily.
(From OE-Core rev: a9ab105b881215653e08d442786e6a3aff84c8ba)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
After rng-tools upgraded to 6.13, the RNDR instruction added
as an entropy source [1]. But for some cpu which doesn't support
rndr, there comes below warning message:
# systemctl status rngd
[snip]
Jul 20 06:48:07 qemuarm64 rngd[163]: [rndr ]: No HW SUPPORT
Jul 20 06:48:07 qemuarm64 rngd[163]: [rndr ]: Initialization Failed
[snip]
Actually the failed message doesn't matter as it only indicates
one entropy source rndr fails to initialize and won't affect rngd
function, so ignore the failure message to fix below error during
do_testimage.
NOTE: ======================================================================
NOTE: FAIL: test_parselogs (parselogs.ParseLogsTest)
NOTE: ----------------------------------------------------------------------
NOTE: Traceback (most recent call last):
File "/build/layers/oe-core/meta/lib/oeqa/core/decorator/__init__.py", line 36, in wrapped_f
return func(*args, **kwargs)
File "/build/layers/oe-core/meta/lib/oeqa/runtime/cases/parselogs.py", line 382, in test_parselogs
self.assertEqual(errcount, 0, msg=self.msg)
AssertionError: 1 != 0 : Log: /build/tmp/work/qemuarm64-wrs-linux/wrlinux-image-std/1.0-r5/target_logs/daemon.log
-----------------------
Central error: 2021-06-23T20:44:18.374494+00:00 qemuarm64 rngd[162]: [rndr ]: Initialization Failed
(From OE-Core rev: 1edc840d6921668b69d248f9b32fa1d5c95e3138)
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
| |
We don't currently build the parallel version of zstd but we should. Add
this to the build. It will then be used in buildtools-tarball.
(From OE-Core rev: a2c85d3cac2a6c4cd8e961e915e9567ef2fc2c0b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
Adds a library that implements file-like objects (similar to
gzip.GzipFile) that can stream to arbitrary compression programs. This
is utilized to implement a LZ4 and zstd compression API.
(Bitbake rev: 61c3acd058ea018696bd284b3922d0b458838d05)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
It is becomming increasingly clear we need to find a way to show what
is/is not an override in our syntax. We need to do this in a way which
is clear to users, readable and in a way we can transition to.
The most effective way I've found to this is to use the ":" charater
to directly replace "_" where an override is being specified. This
includes "append", "prepend" and "remove" which are effectively special
override directives.
This patch simply adds the character to the parser so bitbake accepts
the value but maps it back to "_" internally so there is no behaviour
change.
This change is simple enough it could potentially be backported to older
version of bitbake meaning layers using the new syntax/markup could
work with older releases. Even if other no other changes are accepted
at this time and we don't backport, it does set us on a path where at
some point in future we could
require a more explict syntax.
I've tested this patch by converting oe-core/meta-yocto to the new
syntax for overrides (9000+ changes) and then seeing that builds
continue to work with this patch.
(Bitbake rev: 0dbbb4547cb2570d2ce607e9a53459df3c0ac284)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Updating linux-yocto/5.13 to the latest korg -stable release that comprises
the following commits:
f86aa267e180 Linux 5.13.3
e472b276a0d2 f2fs: fix to avoid racing on fsync_entry_slab by multi filesystem instances
258fd821f693 smackfs: restrict bytes count in smk_set_cipso()
bfb48b54db25 media: v4l2-core: explicitly clear ioctl input data
42f102ea1943 jfs: fix GPF in diFree
7ed572cdf110 ext4: fix possible UAF when remounting r/o a mmp-protected file system
e9f6b57ef114 drm/ast: Remove reference to struct drm_device.pdev
7eefc573bcbf pinctrl: mcp23s08: Fix missing unlock on error in mcp23s08_irq()
e294f97e8af8 dm writecache: write at least 4k when committing
691e71cf1fd1 media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K
7c148146e075 media: gspca/sunplus: fix zero-length control requests
8f6a609903a0 media: gspca/sq905: fix control-request direction
90be28e26596 media: ccs: Fix the op_pll_multiplier address
d69b39d89f36 media: zr364xx: fix memory leak in zr364xx_start_readpipe
2f920c1543f7 media: dtv5100: fix control-request directions
7be5e037e564 media: i2c: ccs-core: fix pm_runtime_get_sync() usage count
8b39b430dc0a media: subdev: disallow ioctl for saa6588/davinci
eda818ae5d39 PCI: aardvark: Implement workaround for the readback value of VEND_ID
678d93d3d243 PCI: aardvark: Fix checking for PIO Non-posted Request
9789b16dc4e3 PCI: Leave Apple Thunderbolt controllers on for s2idle or standby
ad365e9351ac dm btree remove: assign new_root only when removal succeeds
3993b84d4493 dm writecache: flush origin device when writing and cache is full
14f19e585018 dm zoned: check zone capacity
0115687be7b1 coresight: tmc-etf: Fix global-out-of-bounds in tmc_update_etf_buffer()
2ac133f4b299 coresight: Propagate symlink failure
5b37fd9da03f ipack/carriers/tpci200: Fix a double free in tpci200_pci_probe
1d2865bbd89e tracing: Resize tgid_map to pid_max, not PID_MAX_DEFAULT
38164905b1cc tracing: Simplify & fix saved_tgids logic
589f6fac5c92 rq-qos: fix missed wake-ups in rq_qos_throttle try two
d57fcab190b6 seq_buf: Fix overflow in seq_buf_putmem_hex()
775ab9f4a4d9 lkdtm: Enable DOUBLE_FAULT on all architectures
42e737661a0d extcon: intel-mrfld: Sync hardware and software state on init
6fd650c47411 selftests/lkdtm: Fix expected text for CR4 pinning
07b761cf78b1 lkdtm/bugs: XFAIL UNALIGNED_LOAD_STORE_WRITE
866573b6c9bf nvmem: core: add a missing of_node_put
9c6c73fc99b9 mfd: syscon: Free the allocated name field of struct regmap_config
8451754bca7b power: supply: ab8500: Fix an old bug
c0756f75c221 ubifs: Fix races between xattr_{set|get} and listxattr operations
ec00b71f402a thermal/drivers/int340x/processor_thermal: Fix tcc setting
238a7c0a5c30 ipmi/watchdog: Stop watchdog timer when the current action is 'none'
13b307880b66 qemu_fw_cfg: Make fw_cfg_rev_attr a proper kobj_attribute
1e71e1344d61 i40e: fix PTP on 5Gb links
35af69c7c049 mwifiex: bring down link before deleting interface
5665e64c99e3 ASoC: tegra: Set driver_name=tegra for all machine drivers
72104552eae2 fpga: stratix10-soc: Add missing fpga_mgr_free() call
c3f4ad1ba2eb clocksource/arm_arch_timer: Improve Allwinner A64 timer workaround
a34295528a14 cpu/hotplug: Cure the cpusets trainwreck
dcb4b49e3ced arm64: tlb: fix the TTL value of tlb_get_level
31d1d7db4978 ata: ahci_sunxi: Disable DIPM
3b7c6122f390 docs: Makefile: Use CONFIG_SHELL not SHELL
5c8e4b20e70f mmc: core: Allow UHS-I voltage switch for SDSC cards if supported
3d2e0431e687 mmc: core: clear flags before allowing to retune
c1b907e43b32 mmc: sdhci: Fix warning message when accessing RPMB in HS400 mode
7210a1b23c50 mmc: sdhci-acpi: Disable write protect detection on Toshiba Encore 2 WT8-B
970aa4aefaab drm/i915/display: Do not zero past infoframes.vsc
b4772d4e8ec3 drm/ingenic: Switch IPU plane to type OVERLAY
0256fdf3b07c drm/nouveau: Don't set allow_fb_modifiers explicitly
8c5960e823bf drm/arm/malidp: Always list modifiers
a2c67909bb71 drm/msm/mdp4: Fix modifier support enabling
337e397a1e9e drm/tegra: Don't set allow_fb_modifiers explicitly
5c2196d8286e drm/ingenic: Fix pixclock rate for 24-bit serial panels
858d38315fc3 drm/amd/display: Reject non-zero src_y and src_x for video planes
6683128d7ca5 pinctrl/amd: Add device HID for new AMD GPIO controller
dcb7f78b876c drm/amd/display: fix incorrrect valid irq check
72cba7be3648 drm/rockchip: dsi: remove extra component_del() call
e7762bc634c8 drm/dp: Handle zeroed port counts in drm_dp_read_downstream_info()
bab3618ca92c drm/vc4: hdmi: Prevent clock unbalance
dee39749424b drm/vc4: crtc: Skip the TXP
da442a77dd49 drm/vc4: txp: Properly set the possible_crtcs mask
e4f2d5c77205 drm/radeon: Call radeon_suspend_kms() in radeon_pci_shutdown() for Loongson64
63de45921822 drm/radeon: Add the missed drm_gem_object_put() in radeon_user_framebuffer_create()
7764d2c698d7 drm/amdgpu: fix the hang caused by PCIe link width switch
0d3a1e59fd9d drm/amdgpu: fix NAK-G generation during PCI-e link width switch
5af51c7bc675 drm/amdgpu: enable sdma0 tmz for Raven/Renoir(V2)
fb5beb2b3f06 drm/amdgpu: Update NV SIMD-per-CU to 2
788c261cdb58 drm/amdgpu: add new dimgrey cavefish DID
7fad97798d9b powerpc/powernv/vas: Release reference to tgid during window close
30a401a03189 powerpc/barrier: Avoid collision with clang's __lwsync macro
cc7442037062 powerpc/xive: Fix error handling when allocating an IPI
7feb683793ea powerpc/bpf: Reject atomic ops in ppc32 JIT
8a96ec5ebf96 powerpc/mm: Fix lockup on kernel exec fault
987a852734e6 mm/mremap: hold the rmap lock in write mode when moving page table entries.
f908381a3ec7 MIPS: MT extensions are not available on MIPS32r1
eecc96e0458c PCI: tegra194: Fix host initialization during resume
b63416bc9d6d MIPS: CI20: Reduce clocksource to 750 kHz.
8e3f6e978e4c MIPS: set mips32r5 for virt extensions
1930d84a29d4 MIPS: loongsoon64: Reserve memory below starting pfn to prevent Oops
92b74375a1bb sctp: add size validation when walking chunks
4ecabee69d19 sctp: validate from_addr_param return
5f7ca3459118 flow_offload: action should not be NULL when it is referenced
e9d02dbbab0a bpf: Fix false positive kmemleak report in bpf_ringbuf_area_alloc()
5f2d7f0241e2 sched/fair: Ensure _sum and _avg values stay consistent
377c584c325e Bluetooth: btusb: fix bt fiwmare downloading failure issue for qca btsoc.
387d99b463af Bluetooth: btusb: use default nvm if boardID is 0 for wcn6855.
8e4a714f4510 Bluetooth: mgmt: Fix the command returns garbage parameter value
15407b14e27b Bluetooth: btusb: Add support USB ALT 3 for WBS
69ccde876ca5 Bluetooth: L2CAP: Fix invalid access on ECRED Connection response
840907eecac0 Bluetooth: L2CAP: Fix invalid access if ECRED Reconfigure fails
efffb7884033 Bluetooth: btusb: Add a new QCA_ROME device (0cf3:e500)
c19a2820df32 Bluetooth: Shutdown controller after workqueues are flushed or cancelled
286bba24e6ce Bluetooth: Fix alt settings for incoming SCO with transparent coding format
cbb2f564faa4 Bluetooth: Fix the HCI to MGMT status conversion table
5c73a8008035 Bluetooth: cmtp: fix file refcount when cmtp_attach_device fails
dc239f449b03 Bluetooth: btusb: Fixed too many in-token issue for Mediatek Chip.
07583ba2e2d8 RDMA/cma: Fix rdma_resolve_route() memory leak
e4d57b37f034 net: ip: avoid OOM kills with large UDP sends over loopback
602b0c1dbedc net: retrieve netns cookie via getsocketopt
b01ad7c3b08e media, bpf: Do not copy more entries than user space requested
e6b42db7e571 IB/isert: Align target max I/O size to initiator size
b3d56dd75032 mac80211: Properly WARN on HW scan before restart
e32446de59d2 mac80211_hwsim: add concurrent channels scanning support over virtio
6f9ae4a024c5 mac80211: consider per-CPU statistics if present
5924678a442d cfg80211: fix default HE tx bitrate mask in 2G band
e1d88925c3b9 wireless: wext-spy: Fix out-of-bounds warning
649adc384fb3 sfc: error code if SRIOV cannot be disabled
65c8d58a1f7a sfc: avoid double pci_remove of VFs
81772d2c7d04 rtw88: add quirks to disable pci capabilities
2002b7ae2f00 rtw88: 8822c: update RF parameter tables to v62
5a7db3036585 iwlwifi: pcie: fix context info freeing
5b2b879f69b4 iwlwifi: pcie: free IML DMA memory allocation
44164d5528fb iwlwifi: mvm: fix error print when session protection ends
111fa98f60d2 iwlwifi: mvm: apply RX diversity per PHY context
89b944c896f9 iwlwifi: mvm: don't change band on bound PHY contexts
af1036530646 RDMA/rxe: Don't overwrite errno from ib_umem_get()
6e34e09aa418 drm/amd/display: Fix edp_bootup_bl_level initialization issue
f033a30e32ce vsock: notify server to shutdown when client has pending signal
ac05406330eb atm: nicstar: register the interrupt handler in the right place
3c0b0b2533f9 atm: nicstar: use 'dma_free_coherent' instead of 'kfree'
5ad7f389f93b net: fec: add ndo_select_queue to fix TX bandwidth fluctuations
df628a202755 net: fec: add FEC_QUIRK_HAS_MULTI_QUEUES represents i.MX6SX ENET IP
b223fca477ad MIPS: add PMD table accounting into MIPS'pmd_alloc_one
59dc71f577ea rtl8xxxu: Fix device info for RTL8192EU devices
97e50ed9eae5 mt76: fix iv and CCMP header insertion
65c015b50515 mt76: mt7915: fix IEEE80211_HE_PHY_CAP7_MAX_NC for station mode
9b6248b3e649 mt76: connac: fix the maximum interval schedule scan can support
bbe1d0ada80e mt76: connac: fix UC entry is being overwritten
57602135190b mt76: mt7921: enable hw offloading for wep keys
869417fa825c mt76: mt7921: reset wfsys during hw probe
6620a41fe435 mt76: mt7921: fix reset under the deep sleep is enabled
7922a844969d mt76: mt7915: fix tssi indication field of DBDC NICs
38b73fe18c6b drm/amdkfd: Walk through list with dqm lock hold
af15052971e1 drm/amdgpu: fix bad address translation for sienna_cichlid
a8eca6968b1e io_uring: fix false WARN_ONCE
9e134247013e net: sched: fix error return code in tcf_del_walker()
06648197e4ae net: ipa: Add missing of_node_put() in ipa_firmware_load()
0147b9c4ebf6 net: fix mistake path for netdev_features_strings
4d23e6082729 mt76: dma: use ieee80211_tx_status_ext to free packets when tx fails
2a64f3732310 mt76: mt7615: fix fixed-rate tx status reporting
b2b69554431f ice: mark PTYPE 2 as reserved
008ec090f0d1 ice: fix incorrect payload indicator on PTYPE
eb7b40d9d378 ext4: fix memory leak in ext4_fill_super
4d39b8f57b7d bpf: Fix up register-based shifts in interpreter to silence KUBSAN
2cb85397c30f net: hsr: don't check sequence number if tag removal is offloaded
3382ec34a4d5 drm/amdkfd: Fix circular lock in nocpsch path
161c4c2a19f4 drm/amdkfd: fix circular locking on get_wave_state
118e6aea7ae7 cw1200: add missing MODULE_DEVICE_TABLE
40af3960a153 wl1251: Fix possible buffer overflow in wl1251_cmd_scan
36409fe65122 net: phy: nxp-c45-tja11xx: enable MDIO write access to the master/slave registers
84bb21d9886c wlcore/wl12xx: Fix wl12xx get_mac error if device is in ELP
ce6dc850612a dm writecache: commit just one block, not a full page
7cc35bd4355b xfrm: Fix error reporting in xfrm_state_construct.
62adf2af9f09 ibmvnic: fix kernel build warnings in build_hdr_descs_arr
20102b0f6784 drm/amd/display: Verify Gamma & Degamma LUT sizes in amdgpu_dm_atomic_check
66fc2862a252 r8169: avoid link-up interrupt issue on RTL8106e if user enables ASPM
4b58c2891d09 selinux: use __GFP_NOWARN with GFP_NOWAIT in the AVC
dd18ad96a9ea net: mido: mdio-mux-bcm-iproc: Use devm_platform_get_and_ioremap_resource()
7ca7d4404b95 fjes: check return value after calling platform_get_resource()
61e364fafec1 drm/amdkfd: use allowed domain for vmbo validation
3b5c55df5067 net: sgi: ioc3-eth: check return value after calling platform_get_resource()
42b8412dc123 selftests: Clean forgotten resources as part of cleanup()
32438665ba66 net: phy: realtek: add delay to fix RXC generation issue
3df8a157824b drm/amd/display: Fix crash during MPO + ODM combine mode recalculation
caef3b95ce82 drm/amd/display: Fix off-by-one error in DML
6f88bc77bbc7 drm/amd/display: Set DISPCLK_MAX_ERRDET_CYCLES to 7
db1ca5441e33 drm/amd/display: Release MST resources on switch from MST to SST
71e0e437e97b drm/amd/display: Update scaling settings on modeset
dc9e10ea5bdd drm/amd/display: Revert "Fix clock table filling logic"
ef485944e718 drm/amd/display: Fix DCN 3.01 DSCCLK validation
18aa10751227 net: moxa: Use devm_platform_get_and_ioremap_resource()
c01540159ead net: micrel: check return value after calling platform_get_resource()
373db5a9c8c4 net: mvpp2: check return value after calling platform_get_resource()
cd9575caf7bd net: bcmgenet: check return value after calling platform_get_resource()
43630cbcd7de net: mscc: ocelot: check return value after calling platform_get_resource()
e8f03933f5a7 virtio_net: Remove BUG() to avoid machine dead
47cafc568c31 ice: fix clang warning regarding deadcode.DeadStores
63efeeb1274d ice: set the value of global config lock timeout longer
22f5c64be9c7 pinctrl: mcp23s08: fix race condition in irq handler
88e1357e4d05 net: bridge: mrp: Update ring transitions.
03de5ab1dc40 block: introduce BIO_ZONE_WRITE_LOCKED bio flag
4068cb7e1113 dm: Fix dm_accept_partial_bio() relative to zone management commands
0a8a10887b65 dm writecache: don't split bios when overwriting contiguous cache content
3c8afdbb62ee dm space maps: don't reset space map allocation cursor when committing
c5cc91094e6a RDMA/cxgb4: Fix missing error code in create_qp()
957d6d796e73 icmp: fix lib conflict with trinity
e0b8274cda12 net: tcp better handling of reordering then loss cases
b01c274e3a3a clk: tegra: tegra124-emc: Fix clock imbalance in emc_set_timing()
3da33bf6aaff drm/amdgpu: remove unsafe optimization to drop preamble ib
3b2b93a485fb drm/amd/display: Avoid HDCP over-read and corruption
060a3b127d9e drm/amdgpu: fix sdma firmware version error in sriov
3e7b75192e15 drm/amdgpu: fix metadata_size for ubo ioctl queries
7c77db5a26db MIPS: ingenic: Select CPU_SUPPORTS_CPUFREQ && MIPS_EXTERNAL_TIMER
181bc6b98b10 MIPS: cpu-probe: Fix FPU detection on Ingenic JZ4760(B)
8853d2ce4e9e ipv6: use prandom_u32() for ID generation
ba710baa1cc1 virtio-net: Add validation for used length
8d7221a98741 drm: bridge: cdns-mhdp8546: Fix PM reference leak in
4dbd10b868b6 clk: tegra: Ensure that PLLU configuration is applied properly
91789532c24c clk: tegra: Fix refcounting of gate clocks
9bce65a588d9 drm/tegra: hub: Fix YUV support
86e0ca4c6aee RDMA/rtrs: Change MAX_SESS_QUEUE_DEPTH
f2aad1098936 net: stmmac: the XPCS obscures a potential "PHY not found" error
7366ccbd327c drm: rockchip: add missing registers for RK3066
20f88209526e drm: rockchip: add missing registers for RK3188
c77ad9cbf0c7 net/mlx5: Fix lag port remapping logic
f39de3cc0ff7 net/mlx5e: IPsec/rep_tc: Fix rep_tc_update_skb drops IPsec packet
ba2d94789a1f drm/amdgpu/swsmu/aldebaran: fix check in is_dpm_running
93ed1b0210ea drm/amd/display: fix odm scaling
669f0f6f83d5 clk: renesas: r8a77995: Add ZA2 clock
383114477250 drm/bridge: cdns: Fix PM reference leak in cdns_dsi_transfer()
4432f3694ee5 igb: fix assignment on big endian machines
003d37fa8c70 igb: handle vlan types with checker enabled
dd658e324c34 e100: handle eeprom as little endian
38d70d239c7c drm/vc4: hdmi: Fix PM reference leak in vc4_hdmi_encoder_pre_crtc_co()
62f616078e9f drm/vc4: Fix clock source for VEC PixelValve on BCM2711
6d0f4887e742 drm/amd/pm: fix return value in aldebaran_set_mp1_state()
8722275b41d5 net: xilinx_emaclite: Do not print real IOMEM pointer
5150877e4d99 udf: Fix NULL pointer dereference in udf_symlink function
50d7e03ad487 drm/sched: Avoid data corruptions
baf802cd27cd drm/scheduler: Fix hang when sched_entity released
cef0b8eab231 pinctrl: equilibrium: Add missing MODULE_DEVICE_TABLE
248fc2633293 net: ethernet: ixp4xx: Fix return value check in ixp4xx_eth_probe()
7b777772879c net/sched: cls_api: increase max_reclassify_loop
0f20ce74aff8 net: mdio: provide shim implementation of devm_of_mdiobus_register
5cb3b25c7f53 drm/virtio: Fix double free on probe failure
5ac1c5fcffd0 reiserfs: add check for invalid 1st journal block
b8f63c943700 drm/bridge: lt9611: Add missing MODULE_DEVICE_TABLE
3828625dd18d net: mdio: ipq8064: add regmap config to disable REGCACHE
8f5cc4dc1e2a drm/panfrost: devfreq: Disable devfreq when num_supplies > 1
e049b85f7dcc drm/mediatek: Fix PM reference leak in mtk_crtc_ddp_hw_init()
609ee98affb0 net: Treat __napi_schedule_irqoff() as __napi_schedule() on PREEMPT_RT
5b991df88810 atm: nicstar: Fix possible use-after-free in nicstar_cleanup()
ed7c3739d0a0 mISDN: fix possible use-after-free in HFC_cleanup()
d1fb12412874 atm: iphase: fix possible use-after-free in ia_module_exit()
72bdf3c6b059 hugetlb: clear huge pte during flush function on mips platform
d2958a2e6d92 MIPS: Loongson64: Fix build error 'secondary_kexec_args' undeclared under !SMP
6102f34e4622 clk: renesas: rcar-usb2-clock-sel: Fix error handling in .probe()
5ec05aa8160b drm/amd/display: fix use_max_lb flag for 420 pixel formats
57092f4f803b drm/amd/display: Fix clock table filling logic
3eb50ab2c5ac drm/amdgpu: change the default timeout for kernel compute queues
c9c00298cf07 net: pch_gbe: Use proper accessors to BE data in pch_ptp_match()
ae1864f13cce drm/imx: Add 8 pixel alignment fix
925a6b206bde drm/bridge: nwl-dsi: Force a full modeset when crtc_state->active is changed to be true
0cf0cb019cd5 drm/vc4: fix argument ordering in vc4_crtc_get_margins()
e684e0ee1153 drm/amd/amdgpu/sriov disable all ip hw status by default
eeb44b638475 drm/amd/display: Fix BSOD with NULL check
3728601cd68e drm/amd/display: Revert wait vblank on update dpp clock
73893fe52178 drm/amd/display: fix HDCP reset sequence on reinitialize
fc2e7aeedba2 drm/ast: Fixed CVE for DP501
d5d89dd11f6f drm/zte: Don't select DRM_KMS_FB_HELPER
992b191b179c drm/mxsfb: Don't select DRM_KMS_FB_HELPER
(From OE-Core rev: cbd17e7a9641d628f4222b3af320d808d7037eea)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
| |
The READMEs are often viewed from websites so switch to markdown format which is
much as readable as text and much better from html in broswers.
(From OE-Core rev: a9f366a883e4a5dcc364ca2841615c5acc494439)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
Instead of forcibly disabling the device mapper support, add a disabled
PACKAGECONFIG.
(From OE-Core rev: d3ec50f754184081ec768d654da74ec8cac22c5f)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
| |
(From OE-Core rev: 638beadad098e9ee4e743be8f59f5a7f11373aff)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add patch to fix bug for undeclared macro on musl.
btrfs-progs-5.13 (2021-07-13)
* restore: remove loop checks for extent count and directory scan
* inspect dump-tree: new options to print node (--csum-headers) and data
checksums (--csum-items)
* fi usage:
* print stripe count for striped profiles
* print zoned information: size, total unusable
* mkfs: print note about sha256 accelerated module loading issue
* check: ability to reset dev_item::bytes_used
* fixes
* detect zoned kernel support at run time too
* exclusive op running check return value
* fi resize: support cancel (kernel 5.14)
* device remove: support cancel (kernel 5.14)
* documentation about general topics
* compression
* zoned mode
* storage model
* hardware considerations
* other
* libbtrfsutil API overview
* help text fixes and updates
* hash speedtest measure time, cycles using perf and print throughput
(From OE-Core rev: fd8989db25c674ca65389a2d41bf5b447e8794be)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
| |
(From meta-yocto rev: 0575fa17ecf4d4723a2683c18f6fde921914ae0c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
At the time of writing the qemu kernels don't support vfat filesystems.
There are patches on the list to add that, but as two tests fail without
vfat support, make them skip if vfat isn't available.
[ YOCTO #14470 ]
(From OE-Core rev: 17ecb3552cb7d7e7f82cc8b2e1b83f276525cbda)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|