Chris Laplante [Wed, 9 Sep 2020 20:51:07 +0000 (16:51 -0400)]
cve-check/cve-update-db-native: use lockfile to fix usage under multiconfig
Previously CVE_CHECK_DB_FILE / CVE_CHECK_DB_DIR was the same across
multiconfigs which led to a race condition wherein multiple
cve-update-db-native:do_populate_cve_db tasks could attempt to write to
the same sqlite database. This led to the following task failure:
Error executing a python function in exec_python_func() autogenerated:
The stack trace of python calls that resulted in this exception/failure was:
File: 'exec_python_func() autogenerated', lineno: 2, function: <module>
0001:
*** 0002:do_populate_cve_db(d)
0003:
File: '/mnt/data/agent/work/74f119cccb44f133/yocto/sources/poky/meta/recipes-core/meta/cve-update-db-native.bb', lineno: 103, function: do_populate_cve_db
0099: if year == date.today().year:
0100: cve_f.write('CVE database update : %s\n\n' % date.today())
0101:
0102: cve_f.close()
*** 0103: conn.commit()
0104: conn.close()
0105:}
0106:
0107:def initialize_db(c):
Exception: sqlite3.OperationalError: disk I/O error
Use a lockfile to ensure multiple tasks don't step over each other.
Signed-off-by: Chris Laplante <chris.laplante@agilent.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Weston 9.0.0 is released! This release cycle has been pretty quiet,
with just a few new features:
- A new kiosk shell allows to display regular desktop apps in an
always-fullscreen mode
- Improved testing infrastructure: the test harness has been
redesigned, DRM tests are now supported, DRM and OpenGL tests are now
enabled in our CI
- DRM panel orientation property support
As always, a number of bug fixes are included as well.
https://lists.freedesktop.org/archives/wayland-devel/2020-September/041595.html
Add a patch to fix building of tests/weston-test-fixture-compositor.c on musl.
Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
GNOME project libxml2 v2.9.10 and earlier have a global Buffer Overflow
vulnerability in xmlEncodeEntitiesInternal at libxml2/entities.c. The issue has
been fixed in commit 8e7c20a1 (20910-GITv2.9.10-103-g8e7c20a1).
recipes-graphics/xorg-xserver: Add patch to fix segfault when probe
Fix segfault on probing a non-PCI platform device on a system with PCI.
...
at ../../xorg-server-1.20.9/os/log.c:1017
at ../../xorg-server-1.20.9/os/osinit.c:156
at ../../xorg-server-1.20.9/os/osinit.c:110
at ../../../../xorg-server-1.20.9/hw/xfree86/common/xf86platformBus.c:292
argv=argv@entry=0xffffca43c7c8) at ../../../../xorg-server-1.20.9/hw/xfree86/common/xf86Init.c:388
at ../../xorg-server-1.20.9/dix/main.c:193
init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=<optimized out>)
at ../csu/libc-start.c:314
...
Changelog
- Fix issue with uintset and number of bytes copied.
- Fix issue with overflow in DHCP lease T2 computation.
- Fix issue with side channel leak in l_ecc_scalar_new.
- Fix issue with missing MSG_MORE in l_cipher_set_iv.
- Add support for DHCP v6 client implementation.
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Its possible some patterns may cause problems with the current path
manipulations, make a small tweak to try and avoid potential pathname
overlap issues.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Error Message:
| NOTE: Installed into sysroot: []
| NOTE: Skipping as already exists in sysroot: ['pseudo-native', 'glibc', 'patch-native', 'quilt-native', 'gcc-cross-arm', 'gcc-runtime', 'linux-libc-headers', 'libgcc', 'flex-native', 'xz-native', 'libtool-native', 'automake-native', 'binutils-cross-arm', 'zlib-native', 'mpfr-native', 'texinfo-dummy-native', 'autoconf-native', 'libmpc-native', 'gnu-config-native', 'gmp-native', 'attr-native', 'm4-native', 'gettext-minimal-native']
| DEBUG: Python function extend_recipe_sysroot finished
| DEBUG: Executing shell function do_install
| sed: -e expression #1, char 13: unterminated `s' command
| WARNING: exit code 1 from a shell command.
| ERROR: Execution of '/opt/Projects/poky/build/tmp/work/qemux86_64-poky-linux/systemd-serialgetty/1.0-r5/temp/run.do_install.11228' failed with exit code 1:
| sed: -e expression #1, char 13: unterminated `s' command
| WARNING: exit code 1 from a shell command.
|
To Fix this Issue using the strong (single quote) character in sed command.
It is recommend to use quotes. If we have meta-characters in the command, quotes are necessary.
Signed-off-by: Rahul Kumar <rahulk@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Escaping does not work in my use case. It must be escaped for
python, ssh and shell as well as for different versions of echo.
Let's try it a little less elegant, but hopefully more reliable.
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Commit 97b439469a45a089431ca9c31893288c855045f4 added a fallback
mechanism for getting the rootfs timestamp. However, it uses curly
braces around the variable name, which causes bitbake resolve the
variable reference, rather than the shell, so the git timestamp
never gets used. Fix the reference to restore the intent of
making it a fallback for when there is no git timestamp to
retrieve.
Signed-off-by: Matt Madison <matt@madison.systems> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Sat, 5 Sep 2020 14:06:07 +0000 (15:06 +0100)]
runqemu: Add a hook to allow it to renice
We have an issue where qemu is being starved of resources on our autobuilders.
We can't raise its priority without special capacilties, therefore add a hook
which if present can allow this to happen using an executable
"~/runqemu-renice".
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Thu, 3 Sep 2020 20:31:53 +0000 (21:31 +0100)]
kea: bump to 1.7.10
This is the latest release in the 1.7.x series so should be a safe
upgrade, and means we can drop a patch as the AC_TRY_RUN has an
optimistic fallback for cross-compiling now.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Thu, 3 Sep 2020 20:31:52 +0000 (21:31 +0100)]
kea: don't use PACKAGECONFIG inappropriately
The Kea recipe has PACKAGECONFIG options for boost, openssl, and
log4cplus. However, these are not optional but mandatory dependencies.
Remove the PACKAGECONFIGs and replace with explicit DEPENDS and
EXTRA_OECONF. Also the RDEPENDS in the PACKAGECONFIGs are redundant as
the library dependencies are generated correctly.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Thu, 3 Sep 2020 20:31:51 +0000 (21:31 +0100)]
kea: no need to depend on kea-native
kea-msg-compiler is only needed if you alter the messages and the
generated sources need to be rebuilt. When this is the case, there are
better ways to build kea-msg-compiler that don't involve building all of
Kea.
Don't depend on kea-native, remove BBCLASSEXTEND=native, and the target
overrides.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Thu, 3 Sep 2020 14:39:25 +0000 (15:39 +0100)]
autoconf: consolidate DEPENDS
Depending on nativesdk- varients in a nativesdk build isn't correct, so
just collapse the DEPENDS down and let bitbake do the right thing (which
is leaving them as -native).
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Thu, 3 Sep 2020 12:43:19 +0000 (13:43 +0100)]
insane: only load real files as ELF
The file path checks are passed an ELF object if the file is an ELF. It
doesn't make a lot of sense to load symlinks to ELFs as if they're in
the same package then the real file will be checked too.
This should speed up do_package_qa slightly as libraries won't be
scanned repeatedly.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Thu, 3 Sep 2020 10:54:48 +0000 (11:54 +0100)]
debianutils: change SRC_URI to use snapshot.debian.org
The primary Debian archive only contains tarballs which are currently
shipped in a release, so it's easy for a tarball we need to disappear.
Instead, point at snapshot.debian.org to ensure the link remains valid.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
License-Update: adjusted file list Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Mark Hatle [Wed, 2 Sep 2020 15:33:22 +0000 (10:33 -0500)]
package.bbclass: hash equivalency and pr service
When the PR service is enabled a number of small changes may happen
to variables. In the do_package step a call to package_get_auto_pr
will end up setting PRAUTO and modifying PKGV (if AUTOINC is there).
PRAUTO is then used by EXTENDPRAUTO, which is then used to generate
PKGR.
Since this behavior typically happens BEFORE the BB_UNIHASH is
calculated for do_package, we need a way to defer the expansion
until after we have the unihash value.
Writing out the pkgdata files w/o AUTOPR and PKGV (AUTOINC) expanded
to placeholder values is the easiest way to deal with this. All other
variables are expanded as expected.
In the next task, typically do_packagedata, we will then use the
UNIHASH from the do_package to get the PR (AUTOPR) as well as
generate the AUTOINC replacement value (now PRSERV_PV_AUTOINC).
The do_packagedata then translates the placeholders to the final values
when copying the data from pkgdata to pkgdata-pdata-input.
Also update the prservice test case. With unihash, just changing the
do_package (via a _append) will not change the PR. So write the date
to a specific file that is incorporated into the unihash to ensure it
is always different for the test. Various assert messages were also
updated to make it easier to figure out where/why a problem occured.
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Wed, 2 Sep 2020 14:33:03 +0000 (10:33 -0400)]
linux-yocto/5.8: update to v5.8.5
Updating linux-yocto/5.8 to the latest korg -stable release that comprises
the following commits:
9ece50d8a470 Linux 5.8.5 c05dea7c0f3f binfmt_flat: revert "binfmt_flat: don't offset the data start" 44f639d5aeda io_uring: fix missing ->mm on exit 3f4be7a7db9f netlink: fix state reallocation in policy export 1c0be9a99c9c ethtool: Don't omit the netlink reply if no features were changed 507d7ac63fad ethtool: Account for hw_features in netlink interface e53140320193 ethtool: Fix preserving of wanted feature bits in netlink interface da995e0a6dac net: ena: Make missed_tx stat incremental 3942262b7499 tipc: fix uninit skb->data in tipc_nl_compat_dumpit() 828fd2e892b0 tipc: call rcu_read_lock() in tipc_aead_encrypt_done() 22f2be57784e net/smc: Prevent kernel-infoleak in __smc_diag_dump() df805b956877 net: sctp: Fix negotiation of the number of data streams. 4c1fc05e5d6a net/sched: act_ct: Fix skb double-free in tcf_ct_handle_fragments() error flow 351366ffef2c net: qrtr: fix usage of idr in port assignment to socket c4c76ec584a7 net: nexthop: don't allow empty NHA_GROUP a75f8a60c415 net: Fix potential wrong skb->protocol in skb_vlan_untag() 3f13223bb0b1 gre6: Fix reception with IP6_TNL_F_RCV_DSCP_COPY
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
linux-libc-headers: kernel headers are installed in STAGING_KERNEL_BUILDDIR
Since 'fido', kernel headers are installed in STAGING_KERNEL_BUILDDIR,
not STAGING_KERNEL_DIR. So this message in the linux-libc-headers
recipe is slightly misleading.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
- libgcrypt is not required anymore because the md5 implementation was
part of this project.
- ninfod patches are upstreamed and other patch is not required anymore.
- Add tftpd in PACKAGECONFIG
Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Michael Tretter [Tue, 1 Sep 2020 13:29:00 +0000 (15:29 +0200)]
devtool: deploy-target: Fix size calculation for hard links
If a package contains hard links to a file, the file size is added for
each hard link instead of once for the file. Therefore, the calculated
size may be much larger than the actual package size.
For example, the mesa-megadriver package contains several hard links to
the same library.
Keep track of the inode numbers when listing the files that are
installed and use the actual size only for the first occurrence of an
inode. All further hard links to the same inode are added to the file
list, but accounted with size 0.
All file names need to be added to the file list, because the list is
used for preserving the files/hard links on the target.
Signed-off-by: Michael Tretter <m.tretter@pengutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Wed, 2 Sep 2020 10:41:54 +0000 (11:41 +0100)]
elfutils: silence a new QA warning
The fix to the gnu-hash-style check (oe-core 70d932f21) causes elfutils-ptest
to emit a new warning. This binary is explicitly compiled with a curated
minimal set of compiler flags, so to avoid breaking the test simply skip the
ldflags check for elfutils-ptest.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Michael Gloff [Sat, 29 Aug 2020 03:09:01 +0000 (22:09 -0500)]
sysvinit rc: Use PSPLASH_FIFO_DIR for progress fifo
psplash expects the fifo to be in /run or specified
by PSPLASH_FIFO_DIR. This patch allows psplash to
quit normally. Also, fix the work around of using
echo directly into the fifo and use psplash-write.
Signed-off-by: Michael Gloff <mgloff@emacinc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Joshua Watt [Sun, 30 Aug 2020 03:00:34 +0000 (22:00 -0500)]
oeqa: reproducible: Fix test not producing diffs
Diffoscope changed the --exclude-directory-metadata option to require an
argument.
Add a test to validate that diffoscope is functioning as
expected to ensure that future upgrades do not unintentionally break
the reproducibility tests.
[YOCTO #14025]
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Joshua Watt [Mon, 31 Aug 2020 21:53:53 +0000 (16:53 -0500)]
oeqa: sdk: Capture stderr output
Redirect stderr to stdout when running subcommands while doing the SDK
tests. The tests will show stdout when CalledProcessError is raised,
but any output to stderr was lost.
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
hongxu [Fri, 28 Aug 2020 01:46:10 +0000 (18:46 -0700)]
sysstat: fix installed-vs-shipped QA Issue in systemd
While enabling systemd, there is QA issue:
...
|ERROR: sysstat-12.4.0-r0 do_package: QA Issue: sysstat: Files/directories
were installed but not shipped in any package:
| /lib/systemd/system-sleep
| /lib/systemd/system-sleep/sysstat.sleep
...
https://www.freedesktop.org/software/systemd/man/systemd-sleep.html
says the files should be dropped into /usr/lib/systemd/system-sleep
(that would be /lib/systemd/system-sleep in our configuration). By
moving the files to another directory they'll be packaged but not
loaded by systemd.
Suggested-by Ross Burton <ross@burtonini.com>
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Thu, 27 Aug 2020 20:04:47 +0000 (16:04 -0400)]
kernel-yocto: checksum all modifications to available kernel fragments directories
This is based on the patch from Zhaolong Zhang <zhangzl2013@126.com>
[kernel-yocto: checksum indirect cfg and scc files]
While the recommended manner to share/reuse feature fragments is to
maintain them in a kernel-meta repository and track the changes via the
standard SRCREV fetcher mechanism, that method is not always practical
for small sets of features or for quick testing of changes.
These other flows use .scc files on the SRC_URI. It has been noted that
config fragments or other features indirectly included by those .scc
files will not trigger the kernel meta-data to be re-run and hence a
build can continue with stale data (or not be triggered at all).
To solve this issue, we can collect the directories that are searchable
via FILESEXTRAPATHS and add them to the do_kernel_metadata task
checksum.
This allows modifications, additions and removals from the potential
kernel feature directories to trigger a re-execution of the meta data
task.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Mark Hatle [Thu, 27 Aug 2020 19:07:05 +0000 (14:07 -0500)]
kernel.bbclass: Move away from calling package_get_auto_pr
...instead we call read_subpackage_metadata.
Calling package_get_auto_pr *should* result in the same PKGV AUTOINC
replacement. However, it will also end up changing PKGR differently
then do_package as the BB_TASKHASH used will be for the wrong task.
Generally this won't cause any real-world issue, but it could cause
problems.
Moving to read_subpackage_metadata ensures that the values used
in do_package will be read in and used for kernel deployment.
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Mark Hatle [Thu, 27 Aug 2020 19:07:04 +0000 (14:07 -0500)]
buildhistory.bbclass: Rework to use read_subpackage_metadata
Using this mechanism ensures that we have a single point to implement
the loading of the package and subpackage meta data. This also then
allows the buildhistory class to use the regular datastore vs it's
own custom arrays for processing history items.
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Thu, 27 Aug 2020 17:54:00 +0000 (13:54 -0400)]
linux-yocto/5.8: update to v5.8.4
Updating linux-yocto/5.8 to the latest korg -stable release that comprises
the following commits:
47dcb7fcad1d Linux 5.8.4 920ebff48be3 Revert "drm/amd/display: Improve DisplayPort monitor interop" d0a3a0136337 KVM: arm64: Only reschedule if MMU_NOTIFIER_RANGE_BLOCKABLE is not set af3093319fce KVM: Pass MMU notifier range flags to kvm_unmap_hva_range() d9903e8c2576 do_epoll_ctl(): clean the failure exits up a bit 1f802ace4bd5 efi/libstub: Handle unterminated cmdline ca60a5eb8372 efi/libstub: Handle NULL cmdline 3bff856ba44d efi/libstub: Stop parsing arguments at "--" e6584124b982 efi: add missed destroy_workqueue when efisubsys_init fails 09a307050798 efi/x86: Mark kernel rodata non-executable for mixed mode 3d9ed544ec9b EDAC/{i7core,sb,pnd2,skx}: Fix error event severity 979a9c0058f9 powerpc/pseries: Do not initiate shutdown when system is running on UPS d9b227a03e9a powerpc: Fix P10 PVR revision in /proc/cpuinfo for SMT4 cores c09886c19233 epoll: Keep a reference on files added to the check list 3489cea04a4b net: dsa: b53: check for timeout 0c831e9dad9d hv_netvsc: Fix the queue_mapping in netvsc_vf_xmit() d446604e432c selftests/bpf: Remove test_align leftovers 9500db5480f8 net: gemini: Fix missing free_netdev() in error path of gemini_ethernet_port_probe() af4a56476ddd net: ena: Change WARN_ON expression in ena_del_napi_in_range() 8c01a77d28bf net: ena: Prevent reset after device destruction 3c1d705f29c6 bonding: fix active-backup failover for current ARP slave f6c6b312efef powerpc/pseries/hotplug-cpu: wait indefinitely for vCPU death 63f10205a215 bpf: Use get_file_rcu() instead of get_file() for task_file iterator 2fe8be1a33d5 powerpc/fixmap: Fix the size of the early debug area 6f1d3ac25b59 ARM64: vdso32: Install vdso32 from vdso_install 88d78fa3426f afs: Fix NULL deref in afs_dynroot_depopulate() f09a790a6e46 kconfig: qconf: remove qInfo() to get back Qt4 support 19881ebab34f afs: Fix key ref leak in afs_put_operation() f35bb8426115 Revert "RDMA/hns: Reserve one sge in order to avoid local length error" 8facd0c47293 RDMA/bnxt_re: Do not add user qps to flushlist 1f43cb1c6f56 Fix build error when CONFIG_ACPI is not set/enabled: 15f8decf24ed efi: avoid error message when booting under Xen 80876bf7962d kconfig: qconf: fix signal connection to invalid slots a00ac43450bf kconfig: qconf: do not limit the pop-up menu to the first row a4d533969b91 Revert "scsi: qla2xxx: Disable T10-DIF feature with FC-NVMe during probe" 06e5e83d1fa5 scsi: ufs: Fix interrupt error message for shared interrupts a3ef038de59a scsi: ufs-pci: Add quirk for broken auto-hibernate for Intel EHL 88a3da2e55b0 scsi: ufs: Add quirk to fix abnormal ocs fatal error 65fa4a6ee3b8 scsi: ufs: Introduce UFSHCD_QUIRK_PRDT_BYTE_GRAN quirk 2a0b7adc5d0d scsi: ufs: Add quirk to enable host controller without hce 81929755f92e scsi: ufs: Add quirk to disallow reset of interrupt aggregation 8ab0b065d8bd scsi: ufs: Add quirk to fix mishandling utrlclr/utmrlclr c3e9f5c75eba scsi: ufs: ti-j721e-ufs: Fix error return in ti_j721e_ufs_probe() 3d1bc8c7b20f of/address: check for invalid range.cpu_addr e10e99e4872b kvm: x86: Toggling CR4.PKE does not load PDPTEs in PAE mode cfc52749f050 kvm: x86: Toggling CR4.SMAP does not load PDPTEs in PAE mode 753d60c62003 arch/ia64: Restore arch-specific pgd_offset_k implementation c9486fc5f69b vfio/type1: Add proper error unwind for vfio_iommu_replay() c49fa6397b6d vfio-pci: Avoid recursive read-lock usage ba9c27ba1175 watch_queue: Limit the number of watches a user can hold 7505eeadc5a7 ASoC: intel: Fix memleak in sst_media_open 2586fcb08f85 ASoC: msm8916-wcd-analog: fix register Interrupt offset ca79907768d3 s390/ptrace: fix storage key handling 87a297a5a835 s390/runtime_instrumentation: fix storage key handling 3bd77efc033f ipvlan: fix device features 39560b31450b bonding: fix a potential double-unregister dfdc8eaf69a6 can: j1939: add rxtimer for multipacket broadcast session 638e26b82db3 can: j1939: abort multipacket broadcast session when timeout occurs f7653e4b8fa9 can: j1939: cancel rxtimer on multipacket broadcast session complete 6cc1cc005e97 can: j1939: fix support for multipacket broadcast message f9c6097aeb30 bonding: show saner speed for broadcast mode b9ca7a24e64a net: fec: correct the error path for regulator disable in probe 22da47f7c872 i40e: Fix crash during removing i40e driver fb95a28d7daf i40e: Set RX_ONLY mode for unicast promiscuous on VLAN d302358881c4 igc: Fix PTP initialization 16c3d947c69b can: j1939: transport: add j1939_session_skb_find_by_offset() function f0c778597a5a can: j1939: transport: j1939_simple_recv(): ignore local J1939 messages send not by J1939 stack 089dd91ec99b can: j1939: fix kernel-infoleak in j1939_sk_sock2sockaddr_can() 93c39ebb5d44 libbpf: Fix BTF-defined map-in-map initialization on 32-bit host arches db7f8c57dbdd bpf: sock_ops sk access may stomp registers when dst_reg = src_reg cd4644d904e1 bpf: sock_ops ctx access may stomp registers in corner case 5d9c020bd8e3 tools/bpftool: Make skeleton code C++17-friendly by dropping typeof() c2bbf3cbcf78 ASoC: q6routing: add dummy register read/write function 60df9abd8489 ASoC: q6afe-dai: mark all widgets registers as SND_SOC_NOPM 4c3f6739fe05 spi: stm32: fixes suspend/resume management 4707dba95055 netfilter: nf_tables: nft_exthdr: the presence return value should be little-endian cfa678021a1b ext4: check journal inode extents more carefully 20070b188bf4 ext4: don't allow overlapping system zones 480a5124cd0e drm/virtio: fix missing dma_fence_put() in virtio_gpu_execbuffer_ioctl() 88e79f7a9841 ext4: fix potential negative array index in do_split() 95e117076842 fs/signalfd.c: fix inconsistent return codes for signalfd4 796f99a7b77a fat: fix fat_ra_init() for data clusters == 0 f358706be43a alpha: fix annotation of io{read,write}{16,32}be() 5461d5e84ed3 xfs: Fix UBSAN null-ptr-deref in xfs_sysfs_init 99b3f3bd1fa9 tools/testing/selftests/cgroup/cgroup_util.c: cg_read_strcmp: fix null pointer dereference 2dc74b9a9a9f media: camss: fix memory leaks on error handling paths in probe 630170dfc73a virtio_ring: Avoid loop when vq is broken in virtqueue_poll 55bd4074ce6b scsi: libfc: Free skb in fc_disc_gpn_id_resp() for valid cases caceaea09891 cpufreq: intel_pstate: Fix cpuinfo_max_freq when MSR_TURBO_RATIO_LIMIT is 0 3f6735308fdf swiotlb-xen: use vmalloc_to_page on vmalloc virt addresses 8d5b9bb9a58a ceph: fix use-after-free for fsc->mdsc 17754f71db7b jffs2: fix UAF problem 7beedf14a639 riscv: Fixup static_obj() fail 106f319212e5 drm/ttm: fix offset in VMAs with a pg_offs in ttm_bo_vm_access 8da93b053951 xfs: fix inode quota reservation checks a8c8ad128e19 svcrdma: Fix another Receive buffer leak 2a9eccbe614e m68knommu: fix overwriting of bits in ColdFire V3 cache control 4accb5af385b MIPS: Fix unable to reserve memory for Crash kernel 689bee9eb02a Input: psmouse - add a newline when printing 'proto' by sysfs f6b2fb80ffdc f2fs: should avoid inode eviction in synchronous path a692a28626e2 media: vpss: clean up resources in init b0eecd0e3c05 rtc: goldfish: Enable interrupt in set_alarm() when necessary e055ffe8d48a f2fs: fix to check page dirty status before writeback 527b13f612df media: coda: jpeg: add NULL check after kmalloc cd67c599233f media: budget-core: Improve exception handling in budget_register() f05c0e45e0b7 scsi: target: tcmu: Fix crash in tcmu_flush_dcache_range on ARM b84142b25cae scsi: ufs: Add DELAY_BEFORE_LPM quirk for Micron devices c68589be55fd drm/i915: Provide the perf pmu.module 3a07e556aa59 drm/i915/pmu: Prefer drm_WARN_ON over WARN_ON 33eb147ff02f drm/amd/display: fix pow() crashing when given base 0 e0a7a29fb37f drm/amd/display: Fix DFPstate hang due to view port changed 9cb01ea4fab5 drm/amd/display: Blank stream before destroying HDCP session 115e2a7226c0 drm/amd/display: Fix EDID parsing after resume from suspend e06fe5e678fe drm/amd/display: Fix incorrect backlight register offset for DCN c20d9803acc2 drm/amdgpu/display: use GFP_ATOMIC in dcn20_validate_bandwidth_internal bdc689905bef drm: amdgpu: Use the correct size when allocating memory 144fa0580fbe mm/memory.c: skip spurious TLB flush for retried page fault 6f2950ebcd88 s390/pci: ignore stale configuration request event 4c86de3bff29 s390/pci: fix PF/VF linking on hot plug 1d95c4596123 s390/pci: re-introduce zpci_remove_device() c77c3fdef0f6 s390/pci: fix zpci_bus_link_virtfn() 91729fc577b3 selftests: kvm: Use a shorter encoding to clear RAX 171f7e5f7d6a scsi: zfcp: Fix use-after-free in request timeout handlers 1ae4b74a2302 jbd2: add the missing unlock_buffer() in the error path of jbd2_write_superblock() 38ccb4b484bb ext4: fix checking of directory entry validity for inline directories 7535cbdd6cab ext4: do not block RWF_NOWAIT dio write on unallocated space e25d2b38fe64 opp: Put opp table in dev_pm_opp_set_rate() if _set_opp_bw() fails 9cb98fa067fa opp: Put opp table in dev_pm_opp_set_rate() for empty tables e8996e480762 opp: Enable resources again if they were disabled earlier 6b5b9fdedd98 RDMA/hfi1: Correct an interlock issue for TID RDMA WRITE request e0d5793a7aa6 ASoC: amd: renoir: restore two more registers during resume 5b21a116b136 mm, page_alloc: fix core hung in free_pcppages_bulk() 3d803ebd631e mm: include CMA pages in lowmem_reserve at boot 37d1789de274 squashfs: avoid bio_alloc() failure with 1Mbyte blocks a1a1ea598177 uprobes: __replace_page() avoid BUG in munlock_vma_page() 14fb06cc4b38 kernel/relay.c: fix memleak on destroy relay channel 734a5c3f266c romfs: fix uninitialized memory leak in romfs_dev_read() 0675a6f26bd8 mm/vunmap: add cond_resched() in vunmap_pmd_range 917cdc0d2c53 io_uring: find and cancel head link async work on files exit 93366cb81056 spi: Prevent adding devices below an unregistering controller a14e7ce59232 can: j1939: socket: j1939_sk_bind(): make sure ml_priv is allocated cf3b3ffb272c can: j1939: transport: j1939_session_tx_dat(): fix use-after-free read in j1939_tp_txtimer() 2d790596d76f ALSA: hda/realtek: Add quirk for Samsung Galaxy Book Ion c20d8d9c04b9 ALSA: hda/realtek: Add quirk for Samsung Galaxy Flex Book 44d8f487a7d6 ALSA: hda: avoid reset of sdo_limit 6a1624ca6229 khugepaged: adjust VM_BUG_ON_MM() in __khugepaged_enter() 801515285db3 drm/ast: Initialize DRAM type before posting GPU 38814f974d34 drm/ast: Remove unused code paths for AST 1180 f8be691dbd88 drm/panel-simple: Fix inverted V/H SYNC for Frida FRD350H54004 panel f04844351ce2 drm/vgem: Replace opencoded version of drm_gem_dumb_map_offset()
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>