Ross Burton [Tue, 12 Sep 2023 17:24:17 +0000 (18:24 +0100)]
gcc: Fix -fstack-protector issue on aarch64
This series of patches fixes deficiencies in GCC's -fstack-protector
implementation for AArch64 when using dynamically allocated stack space.
This is CVE-2023-4039. See:
Mikko Rapeli [Wed, 23 Aug 2023 06:10:24 +0000 (09:10 +0300)]
oeqa selftest runtime_test.py: append to TEST_RUNQEMUPARAMS
Don't overwrite TEST_RUNQEMUPARAMS since user may have added "slirp"
or similar things to it in site.conf, auto.conf or local.conf. Use
:append to add to it. Fixes failing tests when only "slirp" networking
works with qemu and tun based one is broken on the host machine.
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Mikko Rapeli [Wed, 23 Aug 2023 06:10:20 +0000 (09:10 +0300)]
oeqa dnf_runtime.py: fix HTTP server IP address and port
Use correct HTTPService parameters like apt.py when setting up the repo
server. These work with qemu tun and slirp networking. Fixes test
failure with slirp networking when executing testimage.bbclass
selftests "oe-selftest -r runtime_test.TestImage".
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
slirp networking means that only one TCP port is forwarded from host
system to the qemu machine so that ssh into the machine works. ping
and other low level networking from host to target machine do not work,
but networking from target via host does work. This is much more easy to
setup than the bridge networking used by default, which I've never
managed to get running on various host machines.
To use slirp networking wita qemu and core-image-minimal to run testimage.bbclass tests, add
these to local.conf:
Richard Purdie [Sun, 10 Sep 2023 08:24:08 +0000 (09:24 +0100)]
defaultsetup: Inherit create-spdx by default
This has been tested in poky by default for a while and ew've hopefully resolved
most of the gremlins. THis is the direction we're recommending for license/manifest
requirements so set it by default for OE.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Robert Yang [Mon, 11 Sep 2023 08:37:45 +0000 (01:37 -0700)]
libxcrypt-compat: Remove libcrypt.so to fix conflict with libcrypt
Fixed:
IMAGE_INSTALL:append = " libxcrypt-compat"
$ bitbake <image> -cpopulate_sdk
file /usr/lib/libcrypt.so from install of libxcrypt-compat-dev-4.4.33-r0.0.aarch64 conflicts with file from package libcrypt-dev-4.4.33-r0.2.aarch64
Remove libcrypt.so like other files to fix the error.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Mon, 11 Sep 2023 10:26:14 +0000 (11:26 +0100)]
machine/qemu*: add modesetting drivers to XSERVER
The modesetting driver works well in qemu, so install it by default. The
plain framebuffer has been buggy in recent 6.4 kernels, a sign that it's
not getting much testing. The Xorg modesetting driver that can use more
powerful virtualised hardware is much better.
We override the default XSERVER because we want to pull in the GLX
extension to exercise that.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Mon, 11 Sep 2023 10:26:12 +0000 (11:26 +0100)]
packagegroup-core-x11-xserver: add modesetting driver to default XSERVER
On modern systems, both real and virtual hardware, the modesetting
driver is preferred over the dumb framebuffer driver as it is more
functional and is essentially the default Xorg video driver.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Mikko Rapeli [Mon, 11 Sep 2023 13:39:50 +0000 (16:39 +0300)]
openssh: improve banner ptest failure logging
Log the input and output banner files. Output seems to
contain more lines than input which fails the test but
it's not clear what is in there from the ssh command
stderr. So print them out to dig deeper into the root
cause.
Upstream rejected previous logging patch so they will likely
do the same for this:
https://github.com/openssh/openssh-portable/pull/437
Richard Purdie [Mon, 11 Sep 2023 15:48:21 +0000 (16:48 +0100)]
bitbake.conf: Add IMAGE_BASENAME to SDK_NAME
When SPDX manifests are enabled for OE-Core, it hightlights that the SDK_NAME
default isn't working well. Add IMAGE_BASENAME to it to help avoid conflicts
between outut files.
I suspect the defaults aren't working well and most distros are already
overriding this.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
perl: Add packageconfig for setlocale functionality differences
setlocale behavior with 'missing' locales is different when using musl
[1] which confuses perl locale tests and perl thinks it has locale on
system while there are none. Therefore pass correct property on musl
regarding setlocale behaviour
When enabling the vnc feature as backend, the weston-remote-access is
installed from meson inside the /etc/pam.d directory.
Signed-off-by: Luan Rafael Carneiro <luan.rafael@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This is a bug fix release for 12.0 version. Full commit history bellow:
Derek Foreman (1):
data-device: Don't make a weston_coord with no valid space
Leandro Ribeiro (3):
drm: drop disable_planes being false as a condition to support writeback
drm: do not pull writeback task if KMS atomic API is not supported
tests: assert that capture info was received before trying screenshot
Liu, Kai1 (1):
xwm: WM_TRANSIENT_FOR should not point to override-redirect window
Marius Vlad (3):
backend-drm: Make DRM_CAP_ATOMIC_ASYNC_PAGE_FLIP inert
backend-drm/meson.build: Require at least mesa 21.1.1
build: bump to version 12.0.2 for the point release
Michael Olbrich (1):
backend-wayland: fix --fullscreen
Pekka Paalanen (1):
man: make --wait-for-debugger findable
Philipp Zabel (2):
backend-rdp: extract weston_output_set_single_mode()
backend-vnc: use weston_output_set_single_mode()
Signed-off-by: Luan Rafael Carneiro <luan.rafael@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Otavio Salvador [Sat, 9 Sep 2023 12:54:59 +0000 (09:54 -0300)]
weston-init: fix init code indentation
Tested-by: Tom Hochstein <tom.hochstein@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Otavio Salvador [Sat, 9 Sep 2023 12:54:58 +0000 (09:54 -0300)]
weston-init: remove misleading comment about udev rule
The udev rule has been removed but the comment has kept, by
mistake. Remove it.
Fixes: dd83fb40f7 ("weston-init: Stop running weston as root") Tested-by: Tom Hochstein <tom.hochstein@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie [Thu, 7 Sep 2023 11:57:36 +0000 (12:57 +0100)]
classes: Drop ';' delimiter from ROOTFS/IMAGE*COMMAND variables
Originally these were shell functions but they have long since been processed by
bb.build.exec_func(). Since we no longer need shell syntax, we can drop the ';'
delimiters and just use a space separated string.
This cleans up the variable and quietly removes any stray ';' that do happen to
still make it in.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Integer Overflow vulnerability in mp_grow in libtom libtommath before
commit beba892bc0d4e4ded4d667ab1d2a94f4d75109a9, allows attackers to
execute arbitrary code and cause a denial of service (DoS).
build-sysroots: target or native sysroot population need to be selected explicitly
Running them in parallel is prone to races as postinsts from target sysroots
rely on executables from native sysroots which may or may not be fully prepared
yet. This was observed for example here:
runqemu: check permissions of available render nodes as well as their presence
qemu itself is not helpful when render nodes exist, but can't be opened:
qemu-system-x86_64: egl: render node init failed
To fix this, users likely need to
* modprobe vgem (presence when physical graphic card is absent or has a driver without
support for render nodes, such as many older cards found in server machines)
* add their user to "render" group to write to /dev/dri/renderD* (permissions)
With this change runqemu should print hints for the above as appropriate from probing the nodes.
Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Markus Volk [Thu, 7 Sep 2023 08:33:20 +0000 (10:33 +0200)]
mesa: add intel raytracing support to opencl build
Recently mesa added a patch that allows to cross-compile Intel Vulkan
ray tracing support.
- Backport this patch
- Build and install intel_clc for mesa-native
- Add a dependency on mesa-native to provide intel_clc for target build
- Add a dependency on python3-ply-native as needed to build intel-clc
- Automatically build Intel Vulkan ray tracing support if the opencl
packageconfig was added
Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
nativesdk-intercept: Fix bad intercept chgrp/chown logic
Running either of these ends up corrupting the os.execv args.
If we run:
./scripts/nativesdk-intercept/chown -R foo:foo bar
The loop here ends up missing the conversion of foo:foo to root:root because
it sees sys.argv[0] and assumes that it's the user:group argument and that we
should convert that. We end up a os.execv(path, args) that have the following
args:
['root:root', '-R', 'foo:foo', 'bar']
As os.execv ignores args[0], we can just populate it with sys.argv[0] and then
loop through sys.argv[1:]. As both chgrp and chown would have either flags and
USER[:GROUP] next, this fixes the issue.
Signed-off-by: EilÃs 'pidge' Nà Fhlannagáin <pidge@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Yuta Hayama [Tue, 5 Sep 2023 07:29:06 +0000 (16:29 +0900)]
linux/generate-cve-exclusions: fix mishandling of boundary values
affected_versions in kernel_cves.json does not mean "first affected version
to last affected version" but actually "first affected version to fixed
version". Therefore, the variable names, conditional expressions, and
CVE_STATUS descriptions should be fixed.
For example, when the script was run against v6.1, if affected_versions was
"xxx to 6.1", the output was "cpe-stable-backport: Backported in 6.1", but
this should be "fixed-version: Fixed from version 6.1".
Signed-off-by: Yuta Hayama <hayama@lineo.co.jp> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
These firmware files are downloaded over UART interface. The
helper_uart_3000000.bin needs to be downloaded before
uartuart8997_bt_v4.bin for 88w8997 chip to set download baudrate
to 3000000.
The above commit message is copied from the source commit message:
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/nxp?id=1f82dd25c3ea59b6bed80ee685d860f0c5f19875
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Tue, 5 Sep 2023 16:40:42 +0000 (17:40 +0100)]
busybox: remove coreutils dependency in busybox-ptest
A dependency on coreutils was added to busybox-ptest in oe-core 658c5ed
to fix a test failure.
The failure is because one of the start-stop-daemon tests is known to
fail if /bin/false is busybox. Instead of failing, we can check if
/bin/false is a symlink to busybox and skip the test if so.
[ YOCTO #15068 ]
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>
Ross Burton [Tue, 5 Sep 2023 10:54:20 +0000 (11:54 +0100)]
cve-exclusion: review the last of the historical kernel CVEs
Review the last of the historical kernel CVEs. Issues which are
specific to other platforms or distributions are ignored in the kernel
recipe itself, whereas general security concerns like "ICMP leaks
information" and "USB has flaws" are ignored with more details in the
extra-exclusions file as before.
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>
Mikko Rapeli [Wed, 23 Aug 2023 06:10:23 +0000 (09:10 +0300)]
oeqa selftest context.py: fix git commands and set branch name
Check return values of each git command and set initial branch name
to avoid this warning on every test run:
NOTE: Starting bitbake server...
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Ross Burton [Wed, 6 Sep 2023 18:14:16 +0000 (19:14 +0100)]
harfbuzz: update PACKAGECONFIG
Add a chafa PACKAGECONFIG so that we explicitly disable it, and update
the graphite PACKAGECONFIG to use the graphite2 option as the old name is
deprecated.
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Drop backports. 0001-vpn-Adding-support-for-latest-pppd-2.5.0-release.patch
is partially dropped, as upstream hasn't included the newly added header
into the tarball (issue addressed after the release).
Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
If virtio-serial-device is used, the following error occurs on loongarch64:
qemu-system-loongarch64: -device virtio-serial-device: No "virtio-bus" bus found for device "virtio-serial-device"
Signed-off-by: Zang Ruochen <zangruochen@loongson.cn> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ross Burton [Wed, 6 Sep 2023 15:12:47 +0000 (16:12 +0100)]
glib-2.0: explicitly enable strlcpy()
We have glibc 2.38 which added strlcpy(), so enable the use of it
explicitly in the Meson cross file for when the target doesn't support
qemu-usermode (which will result in the default of not using it).
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bruce Ashfield [Tue, 5 Sep 2023 14:37:11 +0000 (10:37 -0400)]
linux-yocto/6.4: update to v6.4.13
Updating to the latest korg -stable release that comprises
the following commits:
388f6d150784 Linux 6.4.13 734cf5795f4b netfilter: nf_tables: fix kdoc warnings after gc rework ae2d1461ebcc TIOCSTI: Document CAP_SYS_ADMIN behaviour in Kconfig 259ff81cee3c ASoC: amd: vangogh: select CONFIG_SND_AMD_ACP_CONFIG d641fa9fc8fc maple_tree: disable mas_wr_append() when other readers are possible 163d62238efc ASoC: amd: yc: Fix a non-functional mic on Lenovo 82SJ 45bb78bc2f57 gpio: sim: pass the GPIO device's software node to irq domain 14540aa3eaba gpio: sim: dispose of irq mappings before destroying the irq_sim domain c6e1fcd50cbc dma-buf/sw_sync: Avoid recursive lock during fence signal 8c776cd8f1db pinctrl: renesas: rza2: Add lock around pinctrl_generic{{add,remove}_group,{add,remove}_function} 3efa0b7fc28d pinctrl: renesas: rzv2m: Fix NULL pointer dereference in rzv2m_dt_subnode_to_map() a1f12138b17d pinctrl: renesas: rzg2l: Fix NULL pointer dereference in rzg2l_dt_subnode_to_map() 66bb9745f96e ASoC: cs35l56: Read firmware uuid from a device property instead of _SUB 5e9db7d4d3bc ASoC: SOF: ipc4-pcm: fix possible null pointer deference dd07e9de2d82 clk: Fix undefined reference to `clk_rate_exclusive_{get,put}' 686c9e8221f8 scsi: core: raid_class: Remove raid_component_add() 2684b97b01eb scsi: ufs: ufs-qcom: Clear qunipro_g4_sel for HW major version > 5 43dc0a70ed1e scsi: snic: Fix double free in snic_tgt_create() 54fce635ee7f madvise:madvise_free_pte_range(): don't use mapcount() against large folio for sharing check 63f230177510 madvise:madvise_cold_or_pageout_pte_range(): don't use mapcount() against large folio for sharing check 26a2b7cec0dd drm/i915: Fix error handling if driver creation fails during probe 0a47ffcac3c5 can: raw: add missing refcount for memory leak fix 06614ca4f18e thunderbolt: Fix Thunderbolt 3 display flickering issue on 2nd hot plug onwards efe4d998330a PCI: acpiphp: Use pci_assign_unassigned_bridge_resources() only for non-root bus f80b4b818e5e media: vcodec: Fix potential array out-of-bounds in encoder queue_setup 423e75565761 pinctrl: amd: Mask wake bits on probe again ce2e8904a817 of: dynamic: Refactor action prints to not use "%pOF" inside devtree_lock d92815c542d7 of: unittest: Fix EXPECT for parse_phandle_with_args_map() test fa700d9cda9a radix tree: remove unused variable 8f6813c62d2f riscv: Fix build errors using binutils2.37 toolchains 1b7ac88ef2e4 riscv: Handle zicsr/zifencei issue between gcc and binutils 5039e4afc050 lib/clz_ctz.c: Fix __clzdi2() and __ctzdi2() for 32-bit kernels d64a94bc6ef7 ACPI: resource: Fix IRQ override quirk for PCSpecialist Elimina Pro 16 M 4cb9ace298f3 batman-adv: Hold rtnl lock during MTU update via netlink 55d18e4b2bfe batman-adv: Fix batadv_v_ogm_aggr_send memory leak e265dca9ba59 batman-adv: Fix TT global entry leak when client roamed back 5effaa05704a batman-adv: Do not get eth header before batadv_check_management_packet 1f82cd26c650 batman-adv: Don't increase MTU when set by user 2c783344218d batman-adv: Trigger events for auto adjusted MTU 21cd99431aae selinux: set next pointer before attaching to list 14fa028a2e63 nfsd: Fix race to FREE_STATEID and cl_revoked a3a91119964d NFS: Fix a use after free in nfs_direct_join_group() c8df36eedb65 nilfs2: fix general protection fault in nilfs_lookup_dirty_data_buffers() bca3e63be00e mm: multi-gen LRU: don't spin during memcg release 56d11051190d mm: memory-failure: fix unexpected return value in soft_offline_page() 22178c6e6c2d mm: add a call to flush_cache_vmap() in vmap_pfn() 0677bed47996 cgroup/cpuset: Free DL BW in case can_attach() fails d1cfa53e5e4e sched/deadline: Create DL BW alloc, free & check overflow interface c95a751498c9 cgroup/cpuset: Iterate only if DEADLINE tasks are present 74fac5bb0d37 sched/cpuset: Keep track of SCHED_DEADLINE task in cpusets 00f3719c85bf sched/cpuset: Bring back cpuset_mutex 4d17b2ea4ee6 cgroup/cpuset: Rename functions dealing with DEADLINE accounting aefabccb1334 drm/i915: fix display probe for IVB Q and IVB D GT2 server 6621912f4221 drm/i915/display: Handle GMD_ID identification in display code 517771333fd4 x86/fpu: Set X86_FEATURE_OSXSAVE feature after enabling OSXSAVE in CR4 4b04c422ea8d x86/fpu: Invalidate FPU state correctly on exec() 0c2a9b7ba1b8 LoongArch: Fix hw_breakpoint_control() for watchpoints 8771f80bafa3 drm/i915: Fix HPD polling, reenabling the output poll work as needed 40b67b55337a drm/display/dp: Fix the DP DSC Receiver cap size 503d787d303e drm/i915/dgfx: Enable d3cold at s2idle dd8683e0af50 drm/panfrost: Skip speed binning on EOPNOTSUPP 933f1fc826a5 drm: Add an HPD poll helper to reschedule the poll work 6969e4500d86 drm/vmwgfx: Fix possible invalid drm gem put calls 5574b0cbb493 drm/vmwgfx: Fix shader stage validation 980cde3ac4bb mm/gup: handle cont-PTE hugetlb pages correctly in gup_must_unshare() via GUP-fast 2106dae0f19d mm/gup: reintroduce FOLL_NUMA as FOLL_HONOR_NUMA_FAULT a55dd240a9f1 mm: enable page walking API to lock vmas during the walk 2dcc0e4b3c1c selftests/mm: FOLL_LONGTERM need to be updated to 0x100 c02c4e76ccb9 ALSA: ymfpci: Fix the missing snd_card_free() call at probe error 6218f967d579 shmem: fix smaps BUG sleeping while atomic 535cdce0713e mm,ima,kexec,of: use memblock_free_late from ima_free_kexec_buffer c856ff4acd94 clk: Fix slab-out-of-bounds error in devm_clk_release() ed2e9e10a130 NFSv4: Fix dropped lock for racing OPEN and delegation return ed29b5fbf07f platform/x86: ideapad-laptop: Add support for new hotkeys found on ThinkBook 14s Yoga ITL 3bdeb65ca9c8 platform/x86: lenovo-ymc: Add Lenovo Yoga 7 14ACN6 to ec_trigger_quirk_dmi_table 28eee9b4e819 wifi: mac80211: limit reorder_buf_filtered to avoid UBSAN warning a3009e19f09b ibmveth: Use dcbf rather than dcbfl 06a128cbe40e spi: spi-cadence: Fix data corruption issues in slave mode 28b605e939b3 ASoC: cs35l41: Correct amp_gain_tlv values 8c7fd1baeed0 ASoC: amd: yc: Add VivoBook Pro 15 to quirks list for acp6x 1cc2d9685043 bonding: fix macvlan over alb bond support abdf60d759f7 rtnetlink: Reject negative ifindexes in RTM_NEWLINK beceaf2e5e33 netfilter: nf_tables: defer gc run if previous batch is still pending 16cc42cc00fb netfilter: nf_tables: fix out of memory error handling e05b2a9f03b3 netfilter: nf_tables: use correct lock to protect gc_list e07e68823116 netfilter: nf_tables: GC transaction race with abort path 4167aa477abc netfilter: nf_tables: flush pending destroy work before netlink notifier e290509f8be5 netfilter: nf_tables: validate all pending tables 711ffb6fa5a0 i40e: fix potential NULL pointer dereferencing of pf->vf i40e_sync_vsi_filters() 7ac409385e1c net/sched: fix a qdisc modification with ambiguous command request 0717a95ba5ca igc: Fix the typo in the PTM Control macro 8fe9d54f7ad4 igb: Avoid starting unnecessary workqueues ecebc0841362 can: isotp: fix support for transmission of SF without flow control 65009906dff2 net: ethernet: mtk_eth_soc: fix NULL pointer on hw reset d56f8304bcc4 tg3: Use slab_build_skb() when needed be7d58c9a203 selftests: bonding: do not set port down before adding to bond b995365bbdd8 ice: Fix NULL pointer deref during VF reset 929892877620 Revert "ice: Fix ice VF reset during iavf initialization" 8aa038c25042 ice: fix receive buffer size miscalculation abee4c8eb778 ipv4: fix data-races around inet->inet_id 3844e0c55977 net: validate veth and vxcan peer ifindexes 691799211bf1 net: bcmgenet: Fix return value check for fixed_phy_register() d3a74a85fbb4 net: bgmac: Fix return value check for fixed_phy_register() a7cecd332c9e net: mdio: mdio-bitbang: Fix C45 read/write protocol 7e7b2b50dcd9 net: dsa: mt7530: fix handling of 802.1X PAE frames b457f312e78e selftests: mlxsw: Fix test failure on Spectrum-4 747e71ff06bf mlxsw: Fix the size of 'VIRT_ROUTER_MSB' 5a76c5256501 mlxsw: reg: Fix SSPR register layout 40ffbae5312a mlxsw: pci: Set time stamp fields also when its type is MIRROR_UTC 3f5a3e027410 ipvlan: Fix a reference count leak warning in ipvlan_ns_exit() 056e0ce1f1c0 dccp: annotate data-races in dccp_poll() 2a7d2f2b8c2c sock: annotate data-races around prot->memory_pressure b8bcc45afcd3 net: dsa: felix: fix oversize frame dropping for always closed tc-taprio gates e3b4e5276ccd devlink: add missing unregister linecard notification 0f0dd7b19ec6 octeontx2-af: SDP: fix receive link config 2242640e9bd9 tracing: Fix memleak due to race between current_tracer and trace 49834a2c43d5 tracing/synthetic: Allocate one additional element for size 009e77a91690 tracing/synthetic: Skip first entry for stack traces 5c2d886ea8cd tracing/synthetic: Use union instead of casts 299e0033f1bd tracing: Fix cpu buffers unavailable due to 'record_disabled' missed f3acc61309e0 wifi: iwlwifi: mvm: add dependency for PTP clock 7f35e5611730 can: raw: fix lockdep issue in raw_release() c8ddbaec835a can: raw: fix receiver memory leak 019b59aeb2af jbd2: fix a race when checking checkpoint buffer busy 557fda9ed70e jbd2: remove journal_clean_one_cp_list() 2968fec1d56f jbd2: remove t_checkpoint_io_list 1d9995c2ac80 PCI: acpiphp: Reassign resources on bridge if necessary a7342df30797 xprtrdma: Remap Receive buffers after a reconnect ef65498c8087 NFSv4: fix out path in __nfs4_get_acl_uncached 9e2388d814ac NFSv4.2: fix error handling in nfs42_proc_getxattr
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>