As discussed in [1], this commit fixes CVE-2024-41996.
Although openssl project does not consider this a vulnerability, it got
CVE number assigned so it deserves attention.
[1] https://github.com/openssl/openssl/pull/25088
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Peter Marko [Sun, 20 Jul 2025 21:10:38 +0000 (23:10 +0200)]
orc: set CVE_PRODUCT
There are new CVEs reported for this recipe which are not for this
componene, but for a component with same name from apache.
sqlite> select vendor, product, id, count(*) from products where product like 'orc' group by vendor, product, id;
apache|orc|CVE-2018-8015|1
apache|orc|CVE-2025-47436|4
gstreamer|orc|CVE-2024-40897|1
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Roland Kovacs [Thu, 24 Jul 2025 12:40:14 +0000 (14:40 +0200)]
sqlite3: fix CVE-2025-6965
There exists a vulnerability in SQLite versions before 3.50.2 where the
number of aggregate terms could exceed the number of columns available.
This could lead to a memory corruption issue.
Signed-off-by: Roland Kovacs <roland.kovacs@est.tech> Signed-off-by: Steve Sakoman <steve@sakoman.com>
objcopy: Don't extend the output section size
Since the output section contents are copied from the input, don't
extend the output section size beyond the input section size.
Backport a patch from upstream to fix CVE-2025-7545
Upstream-Status: Backport [https://sourceware.org/git/?p=binutils-gdb.git;a=patch;h=08c3cbe5926e4d355b5cb70bbec2b1eeb40c2944]
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Roland Kovacs [Thu, 17 Jul 2025 11:44:13 +0000 (13:44 +0200)]
libxml2: fix CVE-2025-49795
A NULL pointer dereference vulnerability was found in libxml2 when processing
XPath XML expressions. This flaw allows an attacker to craft a malicious XML
input to libxml2, leading to a denial of service.
Signed-off-by: Roland Kovacs <roland.kovacs@est.tech> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Joe Slater [Wed, 16 Jul 2025 09:01:02 +0000 (02:01 -0700)]
oe-debuginfod: add option for data storage
Storing the data files under $HOME can be unreliable if debuginfod
is used for several projects, especially if $HOME is shared
between machines. We provide an option to save files under the
project directory. The default behavior is unchanged.
Yi Zhao [Wed, 9 Jul 2025 03:03:40 +0000 (11:03 +0800)]
kea: set correct permissions for /var/run/kea
Set the permissions of /var/run/kea to 750 to fix kea server startup
error:
ERROR [kea-dhcp4.dhcp4/445.140718820303936] DHCP4_INIT_FAIL failed to
initialize Kea server: configuration error using file
'/etc/kea/kea-dhcp4.conf': 'socket-name' is invalid: socket
path:/var/run/kea does not exist or does not have permssions = 750
This permission check was introduced by commit[1] in kea 2.4.2.
Below commit on binutils-2.42 stable branch are updated.
x86: Check MODRM for call and jmp in binutils older than 2.45
Test Results:
Before After Diff
No. of expected passes 302 302 0
No. of unexpected failures 2 2 0
No. of untested testcases 1 1 0
No. of unsupported tests 7 7 0
Testing was done and there were no regressions found
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
===========
* Fixed CVE-2025-32462. Sudo's -h (--host) option could be specified
when running a command or editing a file. This could enable a
local privilege escalation attack if the sudoers file allows the
user to run commands on a different host.
* Fixed CVE-2025-32463. An attacker can leverage sudo's -R
(--chroot) option to run arbitrary commands as root, even if
they are not listed in the sudoers file. The chroot support has
been deprecated an will be removed entirely in a future release.
License-Update: Copyright updated to 2025
0001-sudo.conf.in-fix-conflict-with-multilib.patch refreshed for 1.9.17
Signed-off-by: Praveen Kumar <praveen.kumar@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw exists in gdk‑pixbuf within the gdk_pixbuf__jpeg_image_load_increment function
(io-jpeg.c) and in glib’s g_base64_encode_step (glib/gbase64.c). When processing
maliciously crafted JPEG images, a heap buffer overflow can occur during Base64 encoding,
allowing out-of-bounds reads from heap memory, potentially causing application crashes or
arbitrary code execution.
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Peter Marko [Sat, 12 Jul 2025 16:08:27 +0000 (18:08 +0200)]
busybox: apply patch for CVE-2023-39810
Backport patch referencing this CVE.
Note that the hardening is not activated by default, it adds defconfig
option to enable it.
Since it introduces a breaking change, it shouldn't be enabled in LTS
release by default.
This patch makes busybox cpio equivalent in this release to what is
currently in master and in kirkstone.
Also note that gnu cpio also does not have this hardening, but the CVE
is created only against busybox.
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Peter Marko [Wed, 9 Jul 2025 18:53:21 +0000 (20:53 +0200)]
python3: update CVE product
There are two "new" CVEs reported for python3, their CPEs are:
* CVE-2020-1171: cpe:2.3:a:microsoft:python:*:*:*:*:*:visual_studio_code:*:* (< 2020.5.0)
* CVE-2020-1192: cpe:2.3:a:microsoft:python:*:*:*:*:*:visual_studio_code:*:* (< 2020.5.0)
These are for "Visual Studio Code Python extension".
Solve this by addding CVE vendor to python CVE product to avoid
confusion with Microsoft as vendor.
Examining CVE DB for historical python entries shows:
sqlite> select vendor, product, count(*) from products where product = 'python' or product = 'cpython'
...> or product like 'python%3' group by vendor, product;
microsoft|python|2
python|python|1054
python_software_foundation|python|2
Note that this already shows that cpython product is not used, so
CVE-2023-33595 mentioned in 62598e1138f21a16d8b1cdd1cfe902aeed854c5c
was updated.
But let's keep it for future in case new CVE starts with that again.
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bruce Ashfield [Tue, 8 Jul 2025 14:40:32 +0000 (10:40 -0400)]
linux-yocto/6.6: update to v6.6.96
Updating linux-yocto/6.6 to the latest korg -stable release that comprises
the following commits:
a5df3a702b2c Linux 6.6.96 18d3f9b8e4b9 ARM: 9354/1: ptrace: Use bitfield helpers f9917821c527 firmware: arm_scmi: Ensure that the message-id supports fastchannel 67a50f572178 firmware: arm_scmi: Add a common helper to check if a message is supported 6f27bbf3de0d nvme: always punt polled uring_cmd end_io work to task_work cdfb20e4b34a spi: spi-cadence-quadspi: Fix pm runtime unbalance c46358d02759 Revert "ipv6: save dontfrag in cork" 1583d908cc77 x86/tools: Drop duplicate unlikely() definition in insn_decoder_test.c ed1f395ea5c0 Kunit to check the longest symbol length 5f4787834cb7 s390/entry: Fix last breaking event handling in case of stack corruption 56aa7679c9f3 media: uvcvideo: Rollback non processed entities on error f165d04c41a3 kbuild: rpm-pkg: simplify installkernel %post cca5bb42b736 scripts: clean up IA-64 code b90dc5d67b68 ksmbd: remove unsafe_memcpy use in session setup 107a48df3f94 ksmbd: Use unsafe_memcpy() for ntlm_negotiate 8302adf60aba drm/amdgpu: switch job hw_fence to amdgpu_fence a5d7cc1647f9 drm/amdgpu: Add kicker device detection f640d011080d drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1 a8ceffaeb780 drm/amdgpu: amdgpu_vram_mgr_new(): Clamp lpfn to total vram 5148c7ea69e9 drm/amd/display: Add null pointer check for get_first_active_display() ede04b471596 drm/bridge: cdns-dsi: Wait for Clk and Data Lanes to be ready 252e6e96f9b6 drm/bridge: cdns-dsi: Check return value when getting default PHY config c4ee1b31a540 drm/bridge: cdns-dsi: Fix connecting to next bridge f9b819c39d13 drm/bridge: cdns-dsi: Fix phy de-init and flag it so 2565ff3ac3f5 drm/bridge: cdns-dsi: Fix the clock variable for mode_valid() 76115eafad12 drm/amdkfd: Fix race in GWS queue scheduling 7946a10f8da7 drm/msm/gpu: Fix crash when throttling GPU immediately during boot 50e48e940329 drm/udl: Unregister device before cleaning up on disconnect 5ff3636bcc32 drm/tegra: Fix a possible null pointer dereference 23134a522758 drm/tegra: Assign plane type before registration 9ec447c23753 drm/etnaviv: Protect the scheduler's pending list with its lock 6d7b814c527c drm/cirrus-qemu: Fix pitch programming 66f122e67261 drm/ast: Fix comment on modeset lock bf2c1643abc3 scsi: megaraid_sas: Fix invalid node index 42cf4f016173 HID: wacom: fix kobject reference count leak f531651c394e HID: wacom: fix memory leak on sysfs attribute creation failure 33acbeeb5ad6 HID: wacom: fix memory leak on kobject creation failure f0ffc8076d39 HID: lenovo: Restrict F7/9/11 mode to compact keyboards only 8a89e9c27b77 net: libwx: fix the creation of page_pool 9052c7bca391 btrfs: update superblock's device bytes_used when dropping chunk aeeae8feeaae btrfs: fix a race between renames and directory logging 6ad80378f928 dm-raid: fix variable in journal device check e395e34b0652 Bluetooth: L2CAP: Fix L2CAP MTU negotiation f90d78d65ccc serial: imx: Restore original RXTL for console to fix data loss 40f62f8cf854 dt-bindings: serial: 8250: Make clocks and clock-frequency exclusive f89c40520fa1 staging: rtl8723bs: Avoid memset() in aes_cipher() and aes_decipher() e5e6a5aa3915 EDAC/amd64: Fix size calculation for Non-Power-of-Two DIMMs c82c7041258d smb: client: fix potential deadlock when reconnecting channels ced8eff11a4f drm/bridge: ti-sn65dsi86: Add HPD for DisplayPort connector type 1c9a8a84c5a8 drm/bridge: ti-sn65dsi86: make use of debugfs_init callback ee800ff711c9 drm/i915: fix build error some more 0804d77fd6e6 net: selftests: fix TCP packet checksum 5b63793da82a ALSA: hda/realtek: Fix built-in mic on ASUS VivoBook X507UAR cabed6ba92a9 atm: Release atm_dev_mutex after removing procfs in atm_dev_deregister(). 63528d60673a net: enetc: Correct endianness handling in _enetc_rd_reg64 ad9c4941d32e libbpf: Fix possible use-after-free for externs c61e284d72d6 um: ubd: Add missing error check in start_io_thread() 8f96a2ae16b5 vsock/uapi: fix linux/vm_sockets.h userspace compilation errors d58343f81354 af_unix: Don't set -ECONNRESET for consumed OOB skb. 86136c670569 wifi: mac80211: fix beacon interval calculation overflow 9b9a87f0bd18 libbpf: Fix null pointer dereference in btf_dump__free on allocation failure 591f79625702 attach_recursive_mnt(): do not lock the covering tree when sliding something under it 74fcb3852a2f ALSA: usb-audio: Fix out-of-bounds read in snd_usb_get_audioformat_uac3() 3c709dce1699 atm: clip: prevent NULL deref in clip_push() 64a99eff8dcf lib/group_cpus: fix NULL pointer dereference from group_cpus_evenly() 88f3869649ed s390/pkey: Prevent overflow in size calculation for memdup_user() db33aa6c5c93 ASoC: amd: yc: Add DMI quirk for Lenovo IdeaPad Slim 5 15 490a43d07f16 mm/damon/sysfs-schemes: free old damon_sysfs_scheme_filter->memcg_path on write c9036b6390af i2c: robotfuzz-osif: disable zero-length read messages 4841060d2e7a i2c: tiny-usb: disable zero-length read messages fad0a2c16062 af_unix: Don't leave consecutive consumed OOB skbs. aabb458c33d9 af_unix: Don't call skb_get() for OOB skb. 0919388ac44f af_unix: Define locking order for U_RECVQ_LOCK_EMBRYO in unix_collect_skb(). fd3af69c14ed af_unix: Define locking order for U_LOCK_SECOND in unix_state_double_lock(). b7904e2fccd0 af_unix: Define locking order for unix_table_double_lock(). 47847495a6ea platform/x86: ideapad-laptop: use usleep_range() for EC polling 6e7af3d4f67f platform/x86: ideapad-laptop: move ACPI helpers from header to source file f8761b11f1c0 platform/x86: ideapad-laptop: move ymc_trigger_ec from lenovo-ymc d19ae7b033b2 platform/x86: ideapad-laptop: introduce a generic notification chain b6b5bcae7aa5 dummycon: Trigger redraw when switching consoles with deferred takeover 8853bad7634f tty: vt: make consw::con_switch() return a bool e9ba8c528b8f tty: vt: sanitize arguments of consw::con_clear() 0b10b5ab7d1d tty: vt: make init parameter of consw::con_init() a bool 7bf946a284c3 PCI: apple: Set only available ports up b8704eef56c5 PCI: apple: Use helper function for_each_child_of_node_scoped() df1d7e879edd uio_hv_generic: Align ring size to system page ca0198894bf9 uio_hv_generic: Query the ringbuffer size for device ebba6cc0781c Drivers: hv: vmbus: Add utility function for querying ring size 3bc5abf8e75a f2fs: don't over-report free space or inodes in statvfs 9830ef1803a5 ASoC: codecs: wcd9335: Fix missing free of regulator supplies 28b6ef1ab65d ASoC: codec: wcd9335: Convert to GPIO descriptors 99d696842287 ASoC: codecs: wcd9335: Handle nicer probe deferral and simplify with dev_err_probe() 0c40fa81f850 jfs: validate AG parameters in dbMount() to prevent crashes 7747d3f9a506 fs/jfs: consolidate sanity checking in dbMount fc97a116dc49 btrfs: handle csum tree error with rescue=ibadroots correctly 2cbeb47ea983 ovl: Check for NULL d_inode() in ovl_dentry_upper() d120737a6da7 scsi: ufs: core: Don't perform UFS clkscaling during host async scan acc1d4cc47f1 ceph: fix possible integer overflow in ceph_zero_objects() f3465bb32050 ALSA: usb-audio: Add a quirk for Lenovo Thinkpad Thunderbolt 3 dock 789a3f63bd60 ALSA: hda: Add new pci id for AMD GPU display HD audio controller b8cd384c53ae ALSA: hda: Ignore unsol events for cards being shut down 23fe269bfab3 usb: typec: mux: do not return on EOPNOTSUPP in {mux, switch}_set 8851e4058701 usb: typec: displayport: Receive DP Status Update NAK request exit dp altmode 00626325dba7 usb: cdc-wdm: avoid setting WDM_READ for ZLP-s 433cb3e70dc9 usb: Add checks for snprintf() calls in usb_alloc_dev() 0aaf810416c9 usb: common: usb-conn-gpio: use a unique name for usb connector device 8e958d10dd0c tty: serial: uartlite: register uart driver in init a33f507f36d5 usb: potential integer overflow in usbg_make_tpg() a8d1b4f219e8 misc: tps6594-pfsm: Add NULL pointer check in tps6594_pfsm_probe() 1063c586a35c iio: adc: ad_sigma_delta: Fix use of uninitialized status_pos 41732f9febdc usb: dwc2: also exit clock_gating when stopping udc while suspended 8217fa7d92f0 coresight: Only check bottom two claim bits 8dbc01f09cad um: use proper care when taking mmap lock during segfault 265ca1741075 um: Add cmpxchg8b_emu and checksum functions to asm-prototypes.h 462215a2a3f4 iio: pressure: zpa2326: Use aligned_s64 for the timestamp c5734f9bab6f drm/scheduler: signal scheduled fence when kill job 553f560e0a74 bcache: fix NULL pointer in cache_set_flush() 9d578589e3ec amd/amdkfd: fix a kfd_process ref leak 2fb2470bc683 md/md-bitmap: fix dm-raid max_write_behind setting aaef4f1f44b3 PCI: apple: Fix missing OF node reference in apple_pcie_setup_port 969c9646f0d0 PCI: dwc: Make link training more robust by setting PORT_LOGIC_LINK_WIDTH to one lane 7d942dbcd155 dmaengine: xilinx_dma: Set dma_device directions e0051a3daa8b dmaengine: idxd: Check availability of workqueue allocated by idxd wq driver before using c765f592adc7 rust: module: place cleanup_module() in .exit.text section efe5db9d98b1 ksmbd: provide zero as a unique ID to the Mac client f72093f270ea ksmbd: allow a filename to contain special characters on SMB3.1.1 posix extension ad804e3648d3 hwmon: (pmbus/max34440) Fix support for max34451 2d8b3898caf5 NFSv4: xattr handlers should check for absent nfs filehandles 9d90ab45d3d3 cxl/region: Add a dev_err() on missing target list entries 96715eb1a120 fuse: fix race between concurrent setattrs from multiple nodes a13b2634dd66 leds: multicolor: Fix intensity setting while SW blinking c3616dfddf1d sunrpc: don't immediately retransmit on seqno miss f0ba7e6d06f2 mfd: max14577: Fix wakeup source leaks on device unbind 35cda8619d97 mailbox: Not protect module_put with spin_lock_irqsave 7d03b140af33 NFSv4.2: fix listxattr to return selinux security label cad6f283f6a6 NFSv4: Always set NLINK even if the server doesn't support it 670c1c546cda cifs: Fix encoding of SMB1 Session Setup NTLMSSP Request in non-UNICODE mode 0e7f0e6e14ba cifs: Fix cifs_query_path_info() for Windows NT servers 4a6499ffc84c cifs: Correctly set SMB1 SessionKey field in Session Setup Request 3f5b4c104b7d Linux 6.6.95 218c3629fb8f cifs: Remove duplicate fattr->cf_dtype assignment from wsl_to_fattr() function 6b4311f78a13 gpio: mlxbf3: only get IRQ for device instance 0 f6071c3cfe3a perf evsel: Missed close() when probing hybrid core PMUs 2a673aca82fe RISC-V: KVM: Don't treat SBI HFENCE calls as NOPs e20f0f44ec59 RISC-V: KVM: Fix the size parameter check in SBI SFENCE calls a77d0a14ed47 scsi: elx: efct: Fix memory leak in efct_hw_parse_filter() 21da6d3561f3 arm64/ptrace: Fix stack-out-of-bounds read in regs_get_kernel_stack_nth() 7c631e5cd38e perf/core: Fix WARN in perf_cgroup_switch() bddec730501b perf: Fix cgroup state vs ERROR 2ee6044a6937 perf: Fix sample vs do_exit() 4ca4f418b761 s390/pci: Fix __pcilg_mio_inuser() inline assembly d7094ad35104 platform/loongarch: laptop: Add backlight power control support 7b47919aff63 smb: client: fix first command failure during re-negotiation cc77844d61f7 Revert "cpufreq: tegra186: Share policy per cluster" eb74c6f1b209 ARM: dts: am335x-bone-common: Increase MDIO reset deassert delay to 50ms 94ec33e9600b ARM: dts: am335x-bone-common: Increase MDIO reset deassert time 2f38986e93d3 platform/x86: ideapad-laptop: add missing Ideapad Pro 5 fn keys e9a011fc6b04 serial: sh-sci: Increment the runtime usage counter for the earlycon device cfa7fa02078d net: make for_each_netdev_dump() a little more bug-proof b8ced2b9a23a smb: Log an error when close_all_cached_dirs fails aaaa689aa29d dt-bindings: i2c: nvidia,tegra20-i2c: Specify the required properties 6377977485f7 EDAC/amd64: Correct number of UMCs for family 19h models 70h-7fh a5e3a1442688 net: atm: fix /proc/net/atm/lec handling dffd03422ae6 net: atm: add lec_mutex bde8833eb075 calipso: Fix null-ptr-deref in calipso_req_{set,del}attr(). 3162d8235c8c ublk: santizize the arguments from userspace when adding a device 66bba1fd5bad net: lan743x: fix potential out-of-bounds write in lan743x_ptp_io_event_clock_get() 7382b6f7d102 net: microchip: lan743x: Reduce PTP timeout on HW failure 235aa081e2d9 tcp: fix passive TFO socket having invalid NAPI ID d3dfe821dfe0 tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer 9d0ddfb574a2 tcp: fix tcp_packet_delayed() for tcp_is_non_sack_preventing_reopen() behavior 3261c017a7c5 atm: atmtcp: Free invalid length skb in atmtcp_c_send(). a06078164001 mpls: Use rcu_dereference_rtnl() in mpls_route_input_rcu(). 4e9ab5c48ad5 wifi: carl9170: do not ping device which has failed to load firmware 43e3433a48c3 ptp: allow reading of currently dialed frequency to succeed on free-running clocks a8c669bbc831 ptp: fix breakage after ptp_vclock_in_use() rework aaef8e3a54b9 e1000e: set fixed clock frequency indication for Nahum 11 and Nahum 13 f4c19a8e51ee net: ice: Perform accurate aRFS flow match 8662ac79a634 aoe: clean device rq_list in aoedev_downdev() 9311d6d1a54f pldmfw: Select CRC32 when PLDMFW is selected 4c8f5b0483ac hwmon: (occ) fix unaligned accesses 1312d9bf88be hwmon: (occ) Rework attribute registration for stack usage ff3dcf7f8184 drm/i915/pmu: Fix build error with GCOV and AutoFDO enabled af2f5f21599a drm/nouveau/bl: increase buffer size to avoid truncate warning b599b310380a ionic: Prevent driver/fw getting out of sync on devcmd(s) 002aa3ed19f3 drm/msm/dsi/dsi_phy_10nm: Fix missing initial VCO rate 77087a79779c drm/msm/disp: Correct porch timing for SDM845 7e6980c225c1 smb: fix secondary channel creation issue with kerberos by populating hostname when adding channels 599c489eea79 sunrpc: handle SVC_GARBAGE during svc auth processing as auth error 5e5d2ad9765a erofs: remove unused trace event erofs_destroy_inode 2536810df13f bpf: Fix L4 csum update on IPv6 in CHECKSUM_COMPLETE f6393e5cb913 net: Fix checksum update for ILA adj-transport 3977946f61cd mm/huge_memory: fix dereferencing invalid pmd migration entry af6cfcd0efb7 mm/hugetlb: unshare page tables during VMA split, not before 39c86833f973 iio: accel: fxls8962af: Fix temperature calculation 3d849cc3dfd3 ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged f80e551050e4 ALSA: hda/intel: Add Thinkpad E15 to PM deny list d61975567d9d ALSA: usb-audio: Rename ALSA kcontrol PCM and PCM1 for the KTMicro sound card 6562806f3200 arm64: Restrict pagetable teardown to avoid false warning 66bde385a1d3 wifi: rtw89: pci: use DBI function for 8852AE/8852BE/8851BE eeacfbab9842 wifi: cfg80211: init wiphy_work before allocating rfkill fails 6d60d822809b Input: sparcspkr - avoid unannotated fall-through 3902205eadf3 atm: Revert atm_account_tx() if copy_from_iter_full() fails. c1a2081f0347 platform/x86/intel-uncore-freq: Fail module load when plat_info is NULL 2753481c40af selinux: fix selinux_xfrm_alloc_user() to set correct ctx_len 0902625a24ee ksmbd: fix null pointer dereference in destroy_previous_session 2a03531c00b2 selftests/x86: Add a test to detect infinite SIGTRAP handler loop 372b511e9345 udmabuf: use sgtable-based scatterlist wrappers bfa4d86e130a net: clear the dst when changing skb protocol 0357da9149ea net_sched: sch_sfq: reject invalid perturb period bb9d4ffff6d8 scsi: s390: zfcp: Ensure synchronous unit_add 8d60df50e62f scsi: storvsc: Increase the timeouts to storvsc_timeout a504536c2923 smb: improve directory cache reuse for readdir operations 202d7e838967 cifs: do not disable interface polling on failure 58021a32f25e cifs: serialize other channels when query server interfaces is pending b530c44e1f38 cifs: deal with the channel loading lag while picking channels cd42ddddd70a jffs2: check jffs2_prealloc_raw_node_refs() result in few other places 3f46644a5131 jffs2: check that raw node were preallocated before writing summary b427d98d5521 LoongArch: Fix panic caused by NULL-PMD in huge_pte_offset() 099cfcb98fb4 LoongArch: Avoid using $r0/$r1 as "mask" for csrxchg 782baee5d917 platform/loongarch: laptop: Unregister generic_sub_drivers on exit 3bce9e6be030 platform/loongarch: laptop: Get brightness setting from EC on probe 1921781ec4a8 drivers/rapidio/rio_cm.c: prevent possible heap overwrite 675d90ee874c io_uring: fix task leak issue in io_wq_create() 3c3c7c66bdfa Revert "x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2" on v6.6 and older af4ed5262d30 powerpc/eeh: Fix missing PE bridge reconfiguration during VFIO EEH recovery a7f3cfc1eb99 powerpc/vdso: Fix build of VDSO32 with pcrel dd95b3e00346 platform/x86: dell_rbu: Stop overwriting data buffer f3b840fb1508 platform/x86: dell_rbu: Fix list usage 523e2f8a7f83 platform/x86/amd: pmc: Clear metrics table at start of cycle 7d71ba5b0a01 fs/xattr.c: fix simple_xattr_list() 897e6d88f0e3 Revert "bus: ti-sysc: Probe for l4_wkup and l4_cfg interconnect devices first" cdc1b9b47bc5 tee: Prevent size calculation wraparound on 32-bit kernels 59b7304d0dff ARM: OMAP2+: Fix l4ls clk domain handling in STANDBY bca6fe52bd95 bus: fsl-mc: increase MC_CMD_COMPLETION_TIMEOUT_MS value c85311a73d74 watchdog: da9052_wdt: respect TWDMIN 519ba75728ee fbcon: Make sure modelist not set on unregistered console 8df53ee74cac wifi: ath12k: Pass correct values of center freq1 and center freq2 for 160 MHz 2304e2b5e470 wifi: ath12k: fix incorrect CE addresses 9db1bf90147c wifi: ath12k: fix link valid field initialization in the monitor Rx 6bd0f2e71b15 wifi: ath11k: determine PM policy based on machine model 42d0bfbe0296 octeontx2-pf: Add error log forcn10k_map_unmap_rq_policer() a37888a435b0 net: ethernet: cortina: Use TOE/TSO on all TCP 38c4106cb4e9 bpf, sockmap: Fix data lost during EAGAIN retries bdb4da9e1921 f2fs: fix to set atomic write status more clear a3c32f17acbf usbnet: asix AX88772: leave the carrier control to phylink e036d648773c ice: fix check for existing switch rule 8cde755f5616 i40e: fix MMIO write access to an invalid page in i40e_clear_hw 52a16bafda0e sock: Correct error checking condition for (assign|release)_proto_idx() 34c0a670556b scsi: lpfc: Use memcpy() for BIOS version 79dc5e78d13d wifi: ath12k: fix failed to set mhi state error during reboot with hardware grouping 5cf32cef3a38 pinctrl: mcp23s08: Reset all pins to input at probe f9397cf7bfb6 software node: Correct a OOB check in software_node_get_reference_args() 03545901ec09 net: ethernet: ti: am65-cpsw: handle -EPROBE_DEFER c0d8c14d9bf2 vxlan: Do not treat dst cache initialization errors as fatal b4c83b37490d net: bridge: mcast: re-implement br_multicast_{enable, disable}_port functions cd97899361bc net: bridge: mcast: update multicast contex when vlan state is changed a0ab9e9148dd wifi: iwlwifi: Add missing MODULE_FIRMWARE for Qu-c0-jf-b0 172d1e4a6804 wifi: mac80211: VLAN traffic in multicast path 4fc2b3c0657b wifi: mac80211_hwsim: Prevent tsf from setting if beacon is disabled 2077cef44d33 wifi: iwlwifi: pcie: make sure to lock rxq->read 920fcc7adc73 iommu/amd: Ensure GA log notifier callbacks finish running before module unload 32f25633f366 scsi: lpfc: Fix lpfc_check_sli_ndlp() handling for GEN_REQUEST64 commands c697dac96937 libbpf: Add identical pointer detection to btf_dedup_is_equiv() f11cfb48f2d2 clk: rockchip: rk3036: mark ddrphy as critical dfec43c50376 wifi: mac80211: do not offer a mesh path if forwarding is disabled efa7997ce846 wireless: purelifi: plfxlc: fix memory leak in plfxlc_usb_wreq_asyn() 187829fb0c35 net: vertexcom: mse102x: Return code for mse102x_rx_pkt_spi 84d34bd55d6a net: mlx4: add SOF_TIMESTAMPING_TX_SOFTWARE flag when getting ts info ae48bc0b8be8 pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get() 8a15a5438c58 pinctrl: armada-37xx: propagate error from armada_37xx_pmx_gpio_set_direction() 02c966a8869b pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get_direction() 14a26f669206 pinctrl: armada-37xx: propagate error from armada_37xx_pmx_set_by_name() 79f3e44df6e6 net: atlantic: generate software timestamp just before the doorbell 9121c2ddd177 ipv4/route: Use this_cpu_inc() for stats on PREEMPT_RT 62b62a2a6dc5 x86/sgx: Prevent attempts to reclaim poisoned pages c1025a54289b tcp: fix initial tp->rcvq_space.space value for passive TS enabled flows 156b6bac7645 tcp: always seek for minimal rtt in tcp_rcv_rtt_update() 969d61aa168c wifi: rtw89: leave idle mode when setting WEP encryption for AP mode f11520c6174c wifi: ath11k: Fix QMI memory reuse logic dcf7bb4397de wifi: ath12k: fix a possible dead lock caused by ab->base_lock 7c4b6d8bd72d wifi: ath12k: fix macro definition HAL_RX_MSDU_PKT_LENGTH_GET 6f79eb2e6816 net: dlink: add synchronization for stats update 04fa1bef29d5 i2c: npcm: Add clock toggle recovery be5f6a65509c i2c: tegra: check msg length in SMBUS block read 762325441e3a cpufreq: scmi: Skip SCMI devices that aren't used by the CPUs a620f66675e5 sctp: Do not wake readers in __sctp_write_space() a0b91fa813d4 wifi: mt76: mt7921: add 160 MHz AP for mt7922 device bf3dcb53ba32 wifi: mt76: mt76x2: Add support for LiteOn WN4516R,WN4519R 2c1a2d863b24 emulex/benet: correct command version selection in be_cmd_get_stats() 24900688ee47 wifi: mt76: mt7996: drop fragments with multicast or broadcast RA 775fdb4042b2 i2c: designware: Invoke runtime suspend on quick slave re-registration 7bf4461f1c97 bpf: Check rcu_read_lock_trace_held() in bpf_map_lookup_percpu_elem() 61fc32485d64 f2fs: use vmalloc instead of kvmalloc in .init_{,de}compress_ctx 92dbc2a2e2ec tipc: use kfree_sensitive() for aead cleanup 088279ff18cd net: lan743x: Modify the EEPROM and OTP size for PCI1xxxx devices d2a25ca4134c net: macb: Check return value of dma_set_mask_and_coherent() c148af1f398b ACPI: battery: negate current when discharging 6635356483b8 PM: runtime: fix denying of auto suspend in pm_suspend_timer_fn() 6a7c583f56b9 gpiolib: of: Add polarity quirk for s5m8767 5505ec191f77 ASoC: tegra210_ahub: Add check to of_device_get_match_data() cf961a38e450 ACPICA: utilities: Fix overflow check in vsnprintf() 558ba4afdfe5 power: supply: bq27xxx: Retrieve again when busy 1fee4324b566 ACPICA: fix acpi parse and parseext cache leaks 8621fbeb4db9 ACPI: Add missing prototype for non CONFIG_SUSPEND/CONFIG_X86 case 0ab90839bf6c ACPI: bus: Bail out if acpi_kobj registration fails 7d346ca11a6e ASoC: tas2770: Power cycle amp on ISENSE/VSENSE change 30e11a8cff73 ACPICA: Avoid sequence overread in call to strncmp() 58cf7ba36b94 mmc: Add quirk to disable DDR50 tuning 74f765e85d4b power: supply: collie: Fix wakeup source leaks on device unbind 1c24a738971c clocksource: Fix the CPUs' choice in the watchdog per CPU verification 28ecaebbed55 ASoC: amd: yc: Add quirk for Lenovo Yoga Pro 7 14ASP9 755a8006b767 ACPICA: fix acpi operand cache leak in dswstate.c 3175377e8ee1 iio: adc: ad7606_spi: fix reg write value mask f6a5b84f450b iio: imu: inv_icm42600: Fix temperature calculation fe684290418e mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race 6a860536306e iio: accel: fxls8962af: Fix temperature scan element sign a9f6c1ad6c93 PCI: dw-rockchip: Fix PHY function call sequence in rockchip_pcie_phy_deinit() 0b522796a80f PCI: Fix lock symmetry in pci_slot_unlock() 7f6a2d378425 PCI: Add ACS quirk for Loongson PCIe 9895f9d9b515 PCI: cadence-ep: Correct PBA offset in .set_msix() callback 7ca06d696a2f uio_hv_generic: Use correct size for interrupt and monitor pages 6f824cdd8209 Drivers: hv: Allocate interrupt and monitor pages aligned to system page boundary 37166d63e42c smb: client: add NULL check in automount_fullpath 39ff3774693f cifs: dns resolution is needed only for primary channel 5713127da855 cifs: update dstaddr whenever channel iface is updated 9d80e1d37e85 cifs: reset connections for all channels when reconnect requested 3ee979709e16 remoteproc: core: Release rproc->clean_table after rproc_attach() fails 9515d74c9d1a remoteproc: core: Cleanup acquired resources when rproc_handle_resources() fails in rproc_attach() a4df96e2e81c regulator: max14577: Add error check for max14577_read_reg() 231f6a1de15b mips: Add -std= flag specified in KBUILD_CFLAGS to vdso CFLAGS dfa9ef978d9c staging: iio: ad5933: Correct settling cycles encoding per datasheet cc3cc41ed670 video: screen_info: Relocate framebuffers behind PCI bridges fa2118e9e233 KVM: s390: rename PROT_NONE to PROT_TYPE_DUMMY 6bd2569d0b2f net: ch9200: fix uninitialised access during mii_nway_restart b1bf167f46dd phy: fsl-imx8mq-usb: fix phy_tx_vboost_level_from_property() 83a692a9792a ftrace: Fix UAF when lookup kallsym after ftrace disabled 6737c4551d2b mtd: rawnand: qcom: Fix read len for onfi param page df4918c0bb49 dm-verity: fix a memory leak if some arguments are specified multiple times 61850a1b2673 dm-mirror: fix a tiny race condition fe0ff7d801fb KVM: VMX: Flush shadow VMCS on emergency reboot 0d7a2ea4351b KVM: SVM: Clear current_vmcb during vCPU free for all *possible* CPUs 7775ab2d53b3 mtd: nand: sunxi: Add randomizer configuration before randomizer enable e06a1dadc481 mtd: rawnand: sunxi: Add randomizer configuration in sunxi_nfc_hw_ecc_write_chunk d3abf0066b5e mm: fix ratelimit_pages update error in dirty_ratio_handler() 23a707bbcbea RDMA/iwcm: Fix use-after-free of work objects after cm_id destruction 442e80dcf6fe watchdog: fix watchdog may detect false positive of softlockup 5180561afff8 ipc: fix to protect IPCS lookups using RCU f24d42245239 clk: meson-g12a: add missing fclk_div2 to spicc ebb8060561d5 parisc: fix building with gcc-15 2f4040a5855a vgacon: Add check for vc_origin address range in vgacon_scroll() 7f27859721ae parisc/unaligned: Fix hex output to show 8 hex chars 3ca78032a388 fbdev: Fix fb_set_var to prevent null-ptr-deref in fb_videomode_to_var e32a40db6796 EDAC/altera: Use correct write width with the INTTEST register 0909b2b49c45 fbdev: Fix do_register_framebuffer to prevent null-ptr-deref in fb_videomode_to_var 061a5dd66608 net: ftgmac100: select FIXED_PHY 8c5713ce1ced net/sched: fix use-after-free in taprio_dev_notifier a8acc7080ad5 NFC: nci: uart: Set tty->disc_data only in success path d95d87841d2a hwmon: (ftsteutates) Fix TOCTOU race in fts_read() 79ef8a6c4ec5 f2fs: fix to do sanity check on sit_bitmap_size a87cbcc909cc f2fs: prevent kernel warning due to negative i_nlink from corrupted image aaddc6c696bd f2fs: fix to do sanity check on ino and xnid 0f7100e8d9f0 Input: gpio-keys - fix possible concurrent access in gpio_keys_irq_timer() 17474a56acf7 Input: ims-pcu - check record size in ims_pcu_flash_firmware() cf6a4c4ac7b6 ext4: only dirty folios when data journaling regular files 3e8a5163bcd3 ext4: ensure i_size is smaller than maxbytes 68cea04f1fb2 ext4: factor out ext4_get_maxbytes() 223091c9897c ext4: fix calculation of credits for extent tree modification 26e09d18599d ext4: inline: fix len overflow in ext4_prepare_inline_data 55995f172598 bus: fsl-mc: fix GET/SET_TAILDROP command ids 1e474b5fab51 bus: fsl-mc: do not add a device-link for the UAPI used DPMCP device 8edfed4439b1 ata: pata_via: Force PIO for ATAPI devices on VT6415/VT6330 48f35a32947b cgroup,freezer: fix incomplete freezing when attaching tasks 96707ff5818f ceph: set superblock s_magic for IMA fsmagic matching 636391e8c98c can: tcan4x5x: fix power regulator retrieval during probe d5d4be47e06c bus: mhi: host: Fix conflict between power_up and SYSERR 44b9620e82bb bus: mhi: ep: Update read pointer only after buffer is written 838d63de34a9 ARM: omap: pmic-cpcap: do not mess around without CPCAP or OMAP4 c592d3ceca1a ARM: 9447/1: arm/memremap: fix arch_memremap_can_ram_remap() 12cffd5bd1da arm64/mm: Close theoretical race where stale TLB entry remains valid a31dce9b561d media: uvcvideo: Fix deferred probing error c51c0a0be239 media: uvcvideo: Send control events for partial succeeds d314f99b6f19 media: uvcvideo: Return the number of processed controls ec26be7d6355 media: imx-jpeg: Cleanup after an allocation error 20a6db0ef356 media: imx-jpeg: Reset slot data pointers when freed 683a1db6800e media: imx-jpeg: Move mxc_jpeg_free_slot_data() ahead 350d4af0493a media: imx-jpeg: Drop the first error frames f6b1b0f8ba0b media: vivid: Change the siize of the composing 9824e1732a16 media: vidtv: Terminating the subsequent process of initialization failure 17cb043ea133 media: videobuf2: use sgtable-based scatterlist wrappers 36318ff3d6bf media: venus: Fix probe error handling ae7b143e05b3 media: v4l2-dev: fix error handling in __video_register_device() dfb2add0baa7 media: omap3isp: use sgtable-based scatterlist wrappers ac3a8e37cb8e media: mediatek: vcodec: Correct vsi_core framebuffer size 025a943c49c7 media: gspca: Add error handling for stv06xx_read_sensor() ec5c328606ba media: davinci: vpif: Fix memory leak in probe error path 04354c529c82 media: cxusb: no longer judge rbuf when the write fails 4425db511b9d media: ccs-pll: Check for too high VT PLL multiplier in dual PLL case 1e4b3f166795 media: ccs-pll: Correct the upper limit of maximum op_pre_pll_clk_div b9e314231ffc media: ccs-pll: Start OP pre-PLL multiplier search from correct value ae2fe6606511 media: ccs-pll: Start VT pre-PLL multiplier search from correct value eb7a4ea0a18c media: i2c: ds90ub913: Fix returned fmt from .set_fmt() ecaf904a55c1 media: nxp: imx8-isi: better handle the m2m usage_count 585acb354977 media: ov5675: suppress probe deferral errors ce4a5a34a2bf media: ov8856: suppress probe deferral errors aaf516bb732c wifi: rtlwifi: disable ASPM for RTL8723BE with subsystem ID 11ad:1723 d4356ce8f826 wifi: rtw88: usb: Reduce control message timeout to 500 ms 2e7c64d7a92c jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata() 1eeecd9be9fe wifi: ath12k: fix ring-buffer corruption 14f5549ad163 fs/nfs/read: fix double-unlock bug in nfs_return_empty_folio() 5ee9a07b456d SUNRPC: Prevent hang on NFS mount with xprtsec=[m]tls 5060e1a5fef1 nfsd: Initialize ssc before laundromat_work to prevent NULL dereference e7e943ddd1c6 nfsd: nfsd4_spo_must_allow() must check this is a v4 compound request f08689fe3153 wifi: ath11k: fix ring-buffer corruption 68b29235778b wifi: ath11k: fix rx completion meta data corruption 0e4dc150423b wifi: p54: prevent buffer-overflow in p54_rx_eeprom_readback() 782b3aff6763 net/mlx5: Add error handling in mlx5_query_nic_vport_node_guid() 477e4319c371 net/mlx5_core: Add error handling inmlx5_query_nic_vport_qkey_viol_cntr() 278a92b87463 regulator: max20086: Change enable gpio to optional 420f6942f109 regulator: max20086: Fix MAX200086 chip id bf70b3c3df5f powerpc/pseries/msi: Avoid reading PCI device registers in reduced power states 0257c26bbca5 io_uring/kbuf: account ring io_buffer_list memory a8b5ef355477 io_uring: account drain memory to cgroup abf80985f4d6 ASoC: meson: meson-card-utils: use of_property_present() for DT parsing 3895a7590e6e ASoC: qcom: sdm845: Add error handling in sdm845_slim_snd_hw_params() 40aefac870c1 gfs2: move msleep to sleepable context f5b9144715da crypto: marvell/cesa - Do not chain submitted requests 0df5e4c7de27 configfs: Do not override creating attribute file failure in populate_attrs()
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bruce Ashfield [Tue, 8 Jul 2025 14:40:30 +0000 (10:40 -0400)]
linux-yocto/6.6: update to v6.6.93
Updating linux-yocto/6.6 to the latest korg -stable release that comprises
the following commits:
c2603c511feb4 Linux 6.6.93 c78abb646ff82 ksmbd: use list_first_entry_or_null for opinfo_get_list() 106451492d74c net: ethernet: ti: am65-cpsw: Lower random mac address error print to info 513b27dbd126b platform/x86: thinkpad_acpi: Ignore battery threshold change event notification 871e44494f5d5 platform/x86: fujitsu-laptop: Support Lifebook S2110 hotkeys af7243148f2eb NFS: Avoid flushing data while holding directory locks in nfs_rename() f83097445b7ec nvme-pci: add NVME_QUIRK_NO_DEEPEST_PS quirk for SOLIDIGM P44 Pro e99de95033051 spi: spi-sun4i: fix early activation b8435b76971dc phy: starfive: jh7110-usb: Fix USB 2.0 host occasional detection failure eae121397e278 drm/amd/display: fix link_set_dpms_off multi-display MST corner case 4728d56dc56f0 um: let 'make clean' properly clean underlying SUBARCH as well af288d8e14058 platform/x86: thinkpad_acpi: Support also NEC Lavie X1475JAS 764f8cd8aadcd nfs: don't share pNFS DS connections between net namespaces 98f7c351a11a1 HID: quirks: Add ADATA XPG alpha wireless mouse support 46a6ce4812555 dmaengine: idxd: cdev: Fix uninitialized use of sva in idxd_cdev_open cdb61a705f5f3 coredump: hand a pidfd to the usermode coredump helper 1846a7b92b863 coredump: fix error handling for replace_fd() 0ec1e98bf5366 perf/arm-cmn: Initialise cmn->cpu earlier 10778e2f49a2c perf/arm-cmn: Fix REQ2/SNP2 mixup 295f7c579b07b net_sched: hfsc: Address reentrant enqueue adding class to eltree twice ee1209b9f57ba arm64: dts: ti: k3-am68-sk: Fix regulator hierarchy cf27046208bd8 arm64: dts: qcom: sm8550: Add missing properties for cryptobam feadf31790331 arm64: dts: qcom: sm8450: Add missing properties for cryptobam 5dd982ff67d1e arm64: dts: qcom: sm8350: Fix typo in pil_camera_mem node abf3ffaeef603 arm64: dts: qcom: ipq9574: Add missing properties for cryptobam ea61eda1f4b45 af_unix: Fix uninit-value in __unix_walk_scc() ed14f8ae9bcf7 af_unix: Fix garbage collection of embryos carrying OOB with SCM_RIGHTS c0c8d419dade9 af_unix: Add dead flag to struct scm_fp_list. a288920ff9dab af_unix: Don't access successor in unix_del_edges() during GC. 3600729b7fc05 af_unix: Try not to hold unix_gc_lock during accept(). 7b1ffbd3b22e7 af_unix: Remove lock dance in unix_peek_fds(). de7921631ff32 af_unix: Replace garbage collection algorithm. 2c2d0c662d842 af_unix: Detect dead SCC. 324005012f65e af_unix: Assign a unique index to SCC. d23802221f675 af_unix: Avoid Tarjan's algorithm if unnecessary. cdaa3499a8519 af_unix: Skip GC if no cycle exists. e0e23fc499920 af_unix: Save O(n) setup of Tarjan's algo. 27a07364cefdf af_unix: Fix up unix_edge.successor for embryo socket. 36f924e4bf4e7 af_unix: Save listener for embryo socket. 3ee9b24bd6f70 af_unix: Detect Strongly Connected Components. 856aacbe2c520 af_unix: Iterate all vertices by DFS. 494accabb56e2 af_unix: Bulk update unix_tot_inflight/unix_inflight when queuing skb. d2d9f382e2db6 af_unix: Link struct unix_edge when queuing skb. 4fc7df1c6da14 af_unix: Allocate struct unix_edge for each inflight AF_UNIX fd. 9e98ba0c73529 af_unix: Allocate struct unix_vertex for each inflight AF_UNIX fd. 8eb55b667a0e2 af_unix: Remove CONFIG_UNIX_SCM. c0d56c028d90f af_unix: Remove io_uring code for GC. 36f1f6ac53889 af_unix: Replace BUG_ON() with WARN_ON_ONCE(). acc97866c1eae af_unix: Try to run GC async. 328840c93bd6a af_unix: Run GC on only one CPU. 4be073d59068e af_unix: Return struct unix_sock from unix_get_socket(). c7b1bd52a031a btrfs: check folio mapping after unlock in relocate_one_folio() 63815bef47ec2 hrtimers: Force migrate away hrtimers queued after CPUHP_AP_HRTIMERS_DYING 5a9c0d5cbd02d can: kvaser_pciefd: Force IRQ edge in case of nested IRQ f968f28cd14bb drm/gem: Internally test import_attach for imported objects 10aecdc1c30c7 x86/mm/init: Handle the special case of device private pages in add_pages(), to not increase max_pfn and trigger dma_addressing_limited() bounce buffers bounce buffers 367b8b91de2a0 i3c: master: svc: Fix implicit fallthrough in svc_i3c_master_ibi_work() 1f9170737480d pinctrl: tegra: Fix off by one in tegra_pinctrl_get_group() 4a5e6e798ec77 watchdog: aspeed: fix 64-bit division a9e4ee7f12886 serial: sh-sci: Save and restore more registers 517f928cc0c13 pds_core: Prevent possible adminq overflow/stuck condition 77192e9cfe1b3 highmem: add folio_test_partial_kmap() bc133e43cb565 x86/boot: Compile boot code with -std=gnu11 too 5cdce62dd929a spi: spi-fsl-dspi: Reset SR flags before sending a new message 7cf42e5f406a5 spi: spi-fsl-dspi: Halt the module after a new message transfer 9df00bd4769a0 spi: spi-fsl-dspi: restrict register range for regmap access 0e7efc9acbb56 ksmbd: fix stream write failure fa68d5c14a70d Revert "arm64: dts: allwinner: h6: Use RSB for AXP805 PMIC connection" f391043332e38 mm/page_alloc.c: avoid infinite retries caused by cpuset race 363fd868d7a71 memcg: always call cond_resched() after fn() f33001a7c1e8f Input: xpad - add more controllers ed7d24b0c375f Revert "drm/amd: Keep display off while going into S4" bee465c0c464b smb: client: Reset all search buffer pointers when releasing buffer 17d096c485b89 arm64: dts: marvell: uDPU: define pinctrl state for alarm LEDs 73cadde98f67f smb: client: Fix use-after-free in cifs_fill_dirent 7227fc0692d53 drm/edid: fixed the bug that hdr metadata was not reset 7093887a11fe4 thermal: intel: x86_pkg_temp_thermal: Fix bogus trip temperature f86465626917d platform/x86: dell-wmi-sysman: Avoid buffer overflow in current_password_store() dde5400dad7e7 can: kvaser_pciefd: Continue parsing DMA buf after dropped RX 4cfe30f681a3d llc: fix data loss when reading from a socket in llc_ui_recvmsg() 6764329675f94 ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14ASP10 74d90875f3d43 ALSA: pcm: Fix race of buffer access at PCM OSS layer b5bada85c181f ASoC: SOF: ipc4-pcm: Delay reporting is only supported for playback direction 1beb8c26b1fb1 ASoc: SOF: topology: connect DAI to a single DAI link e8be784d30b44 ASoC: SOF: ipc4-control: Use SOF_CTRL_CMD_BINARY as numid for bytes_ext 1f912f8484e9c can: bcm: add missing rcu read protection for procfs content 76c84c3728178 can: bcm: add locking for bcm_op runtime updates e80f4f9c64b0f can: slcan: allow reception of short error messages 584a729615fa9 padata: do not leak refcount in reorder_work 134daaba93193 crypto: algif_hash - fix double free in hash_accept 0c605de7edd68 clk: s2mps11: initialise clk_hw_onecell_data::num before accessing ::hws[] in probe() 35016086ae593 octeontx2-af: Fix APR entry mapping based on APR_LMT_CFG cc797adde644d octeontx2-af: Set LMT_ENA bit for APR table entries b19fc1d0be3c3 net/tipc: fix slab-use-after-free Read in tipc_aead_encrypt_done a3d24e4a835cb octeontx2-pf: Add AF_XDP non-zero copy support 93c276942e75d sch_hfsc: Fix qlen accounting bug when using peek in hfsc_enqueue() c844ace5b88d0 io_uring: fix overflow resched cqe reordering dbcd0909a1e2c net: lan743x: Restore SGMII CTRL register on resume 0b4cde7284869 net: dwmac-sun8i: Use parsed internal PHY address instead of 1 52b2e5579266f pinctrl: qcom: switch to devm_register_sys_off_handler() 78b70388ca0ec pinctrl: qcom/msm: Convert to platform remove callback returning void df941e11772b3 ice: Fix LACP bonds without SRIOV environment c8a1a805e6d27 ice: fix vf->num_mac count with port representors fa942824b9f4a bridge: netfilter: Fix forwarding of fragmented packets feb6bde1a3241 Bluetooth: btusb: use skb_pull to avoid unsafe access in QCA dump handling c331a616a0b10 Bluetooth: L2CAP: Fix not checking l2cap_chan security level 2b82d8e483bf0 dmaengine: fsl-edma: Fix return code for unhandled interrupts 55f3c97fcba84 dmaengine: idxd: Fix ->poll() return value dcdc1aca6880d xfrm: Sanitize marks before insert a1fad2da94f00 clk: sunxi-ng: d1: Add missing divider for MMC mod clocks c2b52d947c3dd remoteproc: qcom_wcnss: Fix on platforms without fallback regulators 5ff1a234fa4ee kernel/fork: only call untrack_pfn_clear() on VMAs duplicated for fork() 1b388afe88163 dmaengine: idxd: Fix allowing write() from different address spaces 05298c30b7d9f dmaengine: idxd: add wq driver name support for accel-config user tool b58a295d10065 espintcp: remove encap socket caching to avoid reference leak 3cf3d4f11254e soundwire: bus: Fix race on the creation of the IRQ domain d8ece4ced3b05 __legitimize_mnt(): check for MNT_SYNC_UMOUNT should be under mount_lock e6d703b693b4c xenbus: Allow PVH dom0 a non-local xenstore 85d12487d90ab wifi: iwlwifi: add support for Killer on MTL 4e3401aa6e447 tools: ynl-gen: validate 0 len strings from kernel 50d0de59f66cb btrfs: avoid NULL pointer dereference if no valid csum tree 7a97f961a568a btrfs: correct the order of prelim_ref arguments in btrfs__prelim_ref 225cc549ed23f cifs: Fix changing times and read-only attr over SMB1 smb_set_file_info() function fc460c12cd1e9 cifs: Fix and improve cifs_query_path_info() and cifs_query_file_info() b72952c8c3668 io_uring/fdinfo: annotate racy sq/cq head/tail reads 3a982ada411b8 nvmet-tcp: don't restore null sk_state_change a7a2315d8d0dc nvme-pci: add quirks for WDC Blue SN550 15b7:5009 0a3f5efd1c545 nvme-pci: add quirks for device 126f:1001 1c0d7792cfc71 ALSA: hda/realtek: Add quirk for HP Spectre x360 15-df1xxx dbb47cbdbe2ad ASoC: Intel: bytcr_rt5640: Add DMI quirk for Acer Aspire SW3-013 4c017ff3d73dd ASoC: cs42l43: Disable headphone clamps during type detection 0ab50f622f202 pinctrl: meson: define the pull up/down resistor value as 60 kOhm 534794c719231 book3s64/radix: Fix compile errors when CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP=n 442a247361f8b ASoC: imx-card: Adjust over allocation of memory in imx_card_parse_of() fe4a7145f048c drm: Add valid clones check 1c58b332bc435 drm/panel-edp: Add Starry 116KHD024006 e585f4f44a102 drm/atomic: clarify the rules around drm_atomic_state->allow_modeset 5d4951bad74bf drm: bridge: adv7511: fill stream capabilities a7e7cf538939d wifi: ath12k: Fix end offset bit definition in monitor ring descriptor 2dbcaddcf8eab wifi: ath9k: return by of_get_mac_address a21971b4be60f accel/qaic: Mask out SR-IOV PCI resources fbdf410d3bd2e wifi: ath12k: fix ath12k_hal_tx_cmd_ext_desc_setup() info1 override b658e144a0922 regulator: ad5398: Add device tree support df76df11fd8be spi: zynqmp-gqspi: Always acknowledge interrupts ccf4a818d8c31 wifi: rtw89: add wiphy_lock() to work that isn't held wiphy_lock() yet 5e479af4999b0 wifi: rtw88: Don't use static local variable in rtw8822b_set_tx_power_index_by_rate ee71c34d4f415 wifi: rtl8xxxu: retry firmware download on error 419988f4d0efb perf/amd/ibs: Fix ->config to sample period calculation for OP PMU 0cb6a1292aaef perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt 9610a67963506 firmware: arm_scmi: Relax duplicate name constraint across protocol ids 38d906f1c54b9 bpftool: Fix readlink usage in get_fd_type 0e8eb91a4950f drm/ast: Find VBIOS mode from regular display size e190ed2c12e77 ASoC: rt722-sdca: Add some missing readable registers 48c78cf634dba ASoC: codecs: pcm3168a: Allow for 24-bit in provider mode 123ac614e5b34 arm64: zynqmp: add clock-output-names property in clock nodes 23b0b86ad1db2 HID: usbkbd: Fix the bit shift number for LED_KANA c317b0694a6eb wifi: ath12k: Avoid napi_sync() before napi_enable() 32bcf54138acf scsi: st: Restore some drive settings after reset 1960bb56a9c83 scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector() fails 3dfeee957aaf3 scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine c34ab75adde53 net/mana: fix warning in the writer of client oob 1d10624a42437 ice: count combined queues using Rx/Tx count 948664b92e571 perf: Avoid the read if the count is already updated f47d605c5e2a6 rcu: fix header guard for rcu_all_qs() 9abec90c85b22 rcu: handle unstable rdp in rcu_read_unlock_strict() 4a36d93a01758 rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y cae56998162cc ice: treat dyn_allowed only as suggestion 9ed3c1b11d7ef bridge: mdb: Allow replace of a host-joined group 961ee132104b0 r8169: don't scan PHY addresses > 0 2cb57a887a435 ipv4: ip_gre: Fix set but not used warning in ipgre_err() if IPv4-only 13cba3f837903 vxlan: Annotate FDB data races 090c0ba179eaf net/mlx5e: Avoid WARN_ON when configuring MQPRIO with HTB offload enabled f312bd5cf2067 media: qcom: camss: csid: Only add TPG v4l2 ctrl if TPG hardware is available 6fed5e23d2a92 f2fs: introduce f2fs_base_attr for global sysfs entries 9af429febfedf hwmon: (xgene-hwmon) use appropriate type for the latency value 70e7df6f69073 clk: qcom: camcc-sm8250: Use clk_rcg2_shared_ops for some RCGs ba02bb3a01328 wifi: rtw88: Fix __rtw_download_firmware() for RTL8814AU 0b660a7f296b5 wifi: rtw88: Fix download_firmware_validate() for RTL8814AU 23fe8aa8cc1a8 ext4: remove writable userspace mappings before truncating page cache 73e7c65b21274 ext4: don't write back data before punch hole in nojournal mode 3648ddabcdc25 leds: trigger: netdev: Configure LED blink interval for HW offload 7ef54a11c199d pstore: Change kmsg_bytes storage size to u32 09c3a82664d8f r8152: add vendor/device ID pair for Dell Alienware AW1022z cc1d408e7c9e2 ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure(). 22ee8dabec1a2 arch/powerpc/perf: Check the instruction type before creating sample with perf_mem_data_src fa5d374f6bacb powerpc/pseries/iommu: memory notifier incorrectly adds TCEs for pmemory 6758d09763f62 net: fec: Refactor MAC reset to function 2caf52c072059 wifi: mac80211: remove misplaced drv_mgd_complete_tx() call bb1f9d63127e8 wifi: mac80211: don't unconditionally call drv_mgd_complete_tx() 9ef9ecabc6b55 drm/v3d: Add clock handling 76016797e7f96 net/mlx5e: reduce the max log mpwrq sz for ECPF and reps dce57841d93de net/mlx5e: reduce rep rxq depth to 256 for ECPF 9411c965e4e6a net/mlx5e: set the tx_queue_len for pfifo_fast c31e839649547 net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB 353cd6804ea85 scsi: target: spc: Fix loop traversal in spc_rsoc_get_descr() 991970293ff8a drm/amd/display/dm: drop hw_support check in amdgpu_dm_i2c_xfer() 26b6548dc7417 drm/amdgpu: enlarge the VBIOS binary size limit de67e80ab48f1 drm/amd/display: Increase block_sequence array size 16c26a6404454 drm/amd/display: Initial psr_version with correct setting c59c96b850ea6 drm/amd/display: Update CR AUX RD interval interpretation af2d36316a193 drm/amdgpu: reset psp->cmd to NULL after releasing the buffer 6881a3a58852f drm/amd/display: Don't try AUX transactions on disconnected link ab83ed96f7587 drm/amdgpu: Set snoop bit for SDMA for MI series 929cda8e4b75d soundwire: amd: change the soundwire wake enable/disable sequence 6a7b7e98fec0a phy: core: don't require set_mode() callback for phy_get_mode() to work 3bf3eae909914 serial: sh-sci: Update the suspend/resume support e9bed533ec803 sched: Reduce the default slice to avoid tasks getting an extra tick 5024d8e58a080 x86/traps: Cleanup and robustify decode_bug() cc50c7c1a9898 clk: qcom: clk-alpha-pll: Do not use random stack value for recalc rate fba6e5d44fb8d clk: qcom: ipq5018: allow it to be bulid on arm32 d655dbd82b555 net/mlx4_core: Avoid impossible mlx4_db_alloc() order value f8a9f45f75ab3 media: v4l: Memset argument to 0 before calling get_mbus_config pad op 0b9d2468c3d88 media: i2c: imx219: Correct the minimum vblanking value 868c3d8cfcff6 kunit: tool: Use qboot on QEMU x86_64 3d6d13540f776 smack: Revert "smackfs: Added check catlen" e30f31434e9c3 smack: recognize ipv4 CIPSO w/o categories de4332d7a5f6f pinctrl: devicetree: do not goto err when probing hogs in pinctrl_dt_to_map b3d2a8809ef07 ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot() 35160eda61e74 ASoC: tas2764: Power up/down amp on mute ops c1045e770256c ASoC: tas2764: Mark SW_RESET as volatile 7ac84ee5eec85 ASoC: tas2764: Add reg defaults for TAS2764_INT_CLK_CFG 9dcce3f40d54d ASoC: ops: Enforce platform maximum on initial value 3da8088afd13a firmware: arm_ffa: Reject higher major version as incompatible 3ec539f1e9195 net/mlx5: Apply rate-limiting to high temperature warning 69f453ccb9e47 net/mlx5: Modify LSB bitmask in temperature event to include only the first bit a9b2bb8a4f25b media: test-drivers: vivid: don't call schedule in loop ddddd806ba7de vxlan: Join / leave MC group after remote changes d97c38275d12c ACPI: HED: Always initialize before evged 0d398ed850df9 PCI: Fix old_size lower bound in calculate_iosize() too d8afc25580735 eth: mlx4: don't try to complete XDP frames in netpoll 242272c953e3b bpf: don't do clean_live_states when state->loop_entry->branches > 0 00e59d1495fba can: c_can: Use of_property_present() to test existence of DT property ef7ee9b815345 pmdomain: imx: gpcv2: use proper helper for property detection 7c5e73608302a RDMA/core: Fix best page size finding when it can cross SG entries c504c11b94d6e serial: mctrl_gpio: split disable_ms into sync and no_sync APIs df8970a270add drm/amd/display: Add support for disconnected eDP streams 671fea645a71b i3c: master: svc: Flush FIFO before sending Dynamic Address Assignment(DAA) 398351dcdb631 EDAC/ie31200: work around false positive build warning c81c2ee1c3b05 net: pktgen: fix access outside of user given buffer in pktgen_thread_write() 35434d1c93c73 wifi: rtw89: fw: propagate error code from rtw89_h2c_tx() 5ce1f780a3bce wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31 1b1daafd2e974 wifi: rtw88: Fix rtw_init_ht_cap() for RTL8814AU a95813193ab78 wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU f38a1b35c8f4e scsi: mpt3sas: Send a diag reset if target reset fails 06abee685cc97 clocksource: mips-gic-timer: Enable counter when CPUs start 2e1b3650f5691 MIPS: pm-cps: Use per-CPU variables as per-CPU, not per-core ba41e4e627db5 genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of iommu_cookie 2ed497f369b2e MIPS: Use arch specific syscall name match function b2ea189a958a6 crypto: skcipher - Zap type in crypto_alloc_sync_skcipher 3a0c8429ab1e4 crypto: ahash - Set default reqsize from ahash_alg b1d1b09698e99 x86/kaslr: Reduce KASLR entropy on most x86 systems b0556ba85a0f3 net/mlx5: Change POOL_NEXT_SIZE define value and make it global 52aa28f7b1708 dm: fix unconditional IO throttle caused by REQ_PREFLUSH ecd205a5241df libbpf: Fix out-of-bound read e17a6ba07929b media: tc358746: improve calculation of the D-PHY timing registers ca9f3ab612c62 media: adv7180: Disable test-pattern control on adv7180 3cd2aa93674ee cpuidle: menu: Avoid discarding useful information 48fd80f7d7b48 vdpa/mlx5: Fix mlx5_vdpa_get_config() endianness on big-endian machines f5121d5ba7ce4 vhost-scsi: Return queue full for page alloc failures during copy de4469a90075b x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() 01768d1564650 ASoC: mediatek: mt8188: Add reference for dmic clocks 6dadc66f6cf3e ASoC: mediatek: mt8188: Treat DMIC_GAINx_CUR as non-volatile ec6f764ab7009 drm/amd/display: handle max_downscale_src_width fail check 7472e0da47716 x86/build: Fix broken copy command in genimage.sh when making isoimage f32344bf957b4 Octeontx2-af: RPM: Register driver with PCI subsys IDs 3314310b3f3e6 soc: ti: k3-socinfo: Do not use syscon helper to build regmap f4e35b2c5f5cc wifi: ath12k: Improve BSS discovery with hidden SSID in 6 GHz band fed3038a80bbc bonding: report duplicate MAC address in all situations 7819a7dcf0412 net: xgene-v2: remove incorrect ACPI_PTR annotation 7b8fe48cc86b6 net: ethernet: mtk_ppe_offload: Allow QinQ, double ETH_P_8021Q only ff01e0d0a61e4 leds: pwm-multicolor: Add check for fwnode_property_read_u32 2059e6ea11c0d drm/amdkfd: KFD release_work possible circular locking 0759d154654a8 selftests/net: have `gro.sh -t` return a correct exit code b3c8449484848 net/mlx5: Avoid report two health errors on same syndrome e2de76c34a8a9 firmware: arm_ffa: Set dma_mask for ffa devices a1a5e783d7cab PCI: brcmstb: Add a softdep to MIP MSI-X driver 1f27e708e36ea PCI: brcmstb: Expand inbound window size up to 64GB f6dfaf5905ad6 wifi: ath12k: Report proper tx completion status to mac80211 c7c729d7a85a9 soc: apple: rtkit: Implement OSLog buffers properly 78b6b2fe17a2e soc: apple: rtkit: Use high prio work queue 1ae981c91dc26 perf: arm_pmuv3: Call kvm_vcpu_pmu_resync_el0() before enabling counters 372ed2171031d fpga: altera-cvp: Increase credit timeout 7b851d6a02da0 drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence d8e57904dc269 ARM: at91: pm: fix at91_suspend_finish for ZQ calibration a9dd5d748c87d hwmon: (gpio-fan) Add missing mutex locks 7adb96687ce88 x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2 ca16d144d1f0a clk: imx8mp: inform CCF of maximum frequency of clocks 032f3bf6471cd media: uvcvideo: Handle uvc menu translation inside uvc_get_le_value faa24692f7041 media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map 9459abd770107 drm/rockchip: vop2: Add uv swap for cluster window 9778a91827272 ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config(). 2be4a7d53261b ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7 30ae895966221 perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type 2a9a7d2f19cca net: pktgen: fix mpls maximum labels list parsing cf81dae86bf6b net: ethernet: ti: cpsw_new: populate netdev of_node 2cbe6d551b4a9 pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned" 5c9eca180a423 media: cx231xx: set device_caps for 417 a7b8f0addf84f drm/amd/display: Skip checking FRL_MODE bit for PCON BW determination 3af9db78423c5 drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c fef1e1487dea8 remoteproc: qcom_wcnss: Handle platforms with only single power domain c5b23df98a925 net: phylink: use pl->link_interface in phylink_expects_phy() b27be76f35010 drm/gem: Test for imported GEM buffers with helper 121f0335d91e4 orangefs: Do not truncate file size 3986ef4a9b6a0 dm cache: prevent BUG_ON by blocking retries on failed device resumes d5f8c8ec1e783 media: c8sectpfe: Call of_node_put(i2c_bus) only once in c8sectpfe_probe() 74eea50b7afa1 ARM: tegra: Switch DSI-B clock parent to PLLD on Tegra114 da74e11cedd1e ieee802154: ca8210: Use proper setters and getters for bitwise types c0acbeac2b287 rtc: ds1307: stop disabling alarms on probe fb69189023279 tcp: bring back NUMA dispersion in inet_ehash_locks_alloc() 8c1a16d612ef7 ALSA: seq: Improve data consistency at polling 7b1bb4d40dab8 powerpc/prom_init: Fixup missing #size-cells on PowerBook6,7 d0e3e19564f03 arm64: tegra: Resize aperture for the IGX PCIe C5 slot 988770bf312cf arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator ab13c8a5f777b drm/amdkfd: Set per-process flags only once cik/vi 0acdc4d6e679b crypto: lzo - Fix compression buffer overrun ab4545a2540b7 watchdog: aspeed: Update bootstatus handling ac64f0e893ff3 cpufreq: tegra186: Share policy per cluster 3123b3d445d16 iommu/amd/pgtbl_v2: Improve error handling 8c305588bab71 ASoC: qcom: sm8250: explicitly set format in sm8250_be_hw_params_fixup() 5b518c452ff58 auxdisplay: charlcd: Partially revert "Move hwidth and bwidth to struct hd44780_common" 769d1bccd1cac gfs2: Check for empty queue in run_queue 2e37d331c00c0 drm/amd/display: Fix incorrect DPCD configs while Replay/PSR switch 1da3dc73724bb drm/amd/display: calculate the remain segments for all pipes 4c2a348875646 drm/amd/display: remove minimum Dispclk and apply oem panel timing. 8ebf2709fe4dc ipv6: save dontfrag in cork 2b790fe67ed48 wifi: iwlwifi: fix debug actions order 386a1a0d558d7 printk: Check CON_SUSPEND when unblanking a console 8a7f2e84f85ad hwmon: (dell-smm) Increment the number of fans def5f5bc83ee7 usb: xhci: Don't change the status of stalled TDs on failed Stop EP 903c4a0c2aff4 mmc: sdhci: Disable SD card clock before changing parameters 5ae75245939c6 mmc: dw_mmc: add exynos7870 DW MMC support 110f701e60f98 arm64/mm: Check PUD_TYPE_TABLE in pud_bad() 89947eea8ff91 netfilter: conntrack: Bound nf_conntrack sysctl writes da36c3ad7c177 timer_list: Don't use %pK through printk() 6df3855868eb8 posix-timers: Add cond_resched() to posix_timer_add() search loop 1bef1811651bc RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject() ba841627308a3 ext4: do not convert the unwritten extents if data writeback fails d7f3c874ea707 ext4: reject the 'data_err=abort' option in nojournal mode baf667f23f609 ASoC: sun4i-codec: support hp-det-gpios property f8d946034765a drm/amdgpu: Update SRIOV video codec caps 2e290e9cf6a17 mfd: tps65219: Remove TPS65219_REG_TI_DEV_ID check aa97ea576a3f2 pinctrl-tegra: Restore SFSEL bit when freeing pins 0fb6c439d265f xen: Add support for XenServer 6.1 platform device 3ecfb92c019f2 net/smc: use the correct ndev to find pnetid by pnetid table ba8354a613a57 dm: restrict dm device size to 2^63-512 bytes 44a82d2495e36 crypto: octeontx2 - suppress auth failure screaming due to negative tests 3edb08b6c21ef kbuild: fix argument parsing in scripts/config bc8023ef3b114 bpf: Allow pre-ordering for bpf cgroup progs aed5bd3a84e87 ASoC: mediatek: mt6359: Add stub for mt6359_accdet_enable_jack_detect bf9cfc7fbe742 thunderbolt: Do not add non-active NVM if NVM upgrade is disabled for retimer 4beb1e55f6b08 objtool: Fix error handling inconsistencies in check() 72d9ccdcfce24 rtc: rv3032: fix EERD location a7b7bc510e9ea tcp: reorganize tcp_in_ack_event() and tcp_count_delivered() ed88717950ba9 jbd2: do not try to recover wiped journal 5741b9d7bb873 bpf: Return prog btf_id without capable check 743bb753255d3 vfio/pci: Handle INTx IRQ_NOTCONNECTED 9f51fa1971239 scsi: st: ERASE does not change tape location 01195aa1d694b scsi: st: Tighten the page format heuristics with MODE SELECT 3011cdc5cb46c hypfs_create_cpu_files(): add missing check for hypfs_mkdir() failure 4eda8a85d4d01 ext4: reorder capability check last 57a2882cd4f35 um: Update min_low_pfn to match changes in uml_reserved 7638182277867 um: Store full CSGSFS and SS register from mcontext 61225b3395c21 dlm: make tcp still work in multi-link env 0541822045ae0 i3c: master: svc: Fix missing STOP for master request 398c541ed0495 drm/amd/display: Guard against setting dispclk low for dcn31x 3192d59fb7b78 btrfs: send: return -ENAMETOOLONG when attempting a path that is too long a7f1c5fb7dd90 btrfs: get zone unusable bytes while holding lock at btrfs_reclaim_bgs_work() 4dc7dcb919f36 btrfs: fix non-empty delayed iputs list on unmount due to async workers de635f9bba32e btrfs: run btrfs_error_commit_super() early 1a012fd4eb9d0 btrfs: avoid linker error in btrfs_find_create_tree_block() 4e74f91a6f70a btrfs: make btrfs_discard_workfn() block_group ref explicit a4666a812792d i2c: pxa: fix call balance of i2c->clk handling routines 4fc8e3fb8efa8 i2c: qup: Vote for interconnect bandwidth to DRAM bffd5f2815c52 x86/mm: Check return value from memblock_phys_alloc_range() 7124a9b6824e1 x86/stackprotector/64: Only export __ref_stack_chk_guard on CONFIG_SMP 1752ceaa72d37 wifi: mt76: mt7996: revise TXS size d9776ce1733c7 wifi: mt76: only mark tx-status-failed frames as ACKed on mt76x0/2 17e3ab067dfb6 mmc: host: Wait for Vdd to settle on card power off ea3d95e05e97e libnvdimm/labels: Fix divide error in nd_label_data_init() f29eb4c63bf4e ext4: on a remount, only log the ro or r/w state when it has changed 44acbc14ea28d PCI: vmd: Disable MSI remapping bypass under Xen aa59ccacf8f33 pNFS/flexfiles: Report ENETDOWN as a connection error ec59dfbc1ba2f tools/build: Don't pass test log files to linker e4510552c297c PCI: dwc: ep: Ensure proper iteration over outbound map windows a74286d17e751 objtool: Properly disable uaccess validation 454a770aea9fd lockdep: Fix wait context check on softirq for PREEMPT_RT 0c2aa72f4f352 dql: Fix dql->limit value when reset. 3854f4e98ef22 thermal/drivers/qoriq: Power down TMU on system suspend 4a120221661fc spi-rockchip: Fix register out of bounds access 4a8ebc45f2021 SUNRPC: rpcbind should never reset the port to the value '0' 3ef02a05c86b4 SUNRPC: rpc_clnt_set_transport() must not change the autobind setting 6b8beb8104d73 NFSv4: Treat ENETUNREACH errors as fatal for state recovery ee68e068cf92f cifs: Fix establishing NetBIOS session for SMB2+ connection 89bcd83f67d22 cifs: add validation check for the fields in smb_aces 88bf6295f065a fbdev: core: tileblit: Implement missing margin clearing for tileblit 1714afc14dbe6 fbcon: Use correct erase colour for clearing in fbcon 7f370b7e6fa03 fbdev: fsl-diu-fb: add missing device_remove_file() bbf3bb6ddea47 riscv: Allow NOMMU kernels to access all of RAM 09096ead92f39 mailbox: use error ret code of of_parse_phandle_with_args() 5641f6b3a4cd5 mailbox: pcc: Use acpi_os_ioremap() instead of ioremap() 7d5b227875fb7 ACPI: PNP: Add Intel OC Watchdog IDs to non-PNP device list c1ab9f008ed40 tracing: Mark binary printing functions with __printf() attribute 50702e7b47ed7 arm64: Add support for HIP09 Spectre-BHB mitigation e0b05cd9ece6e SUNRPC: Don't allow waiting for exiting tasks c72826efbb5eb NFS: Don't allow waiting for exiting tasks a81dd69f859b6 NFSv4: Check for delegation validity in nfs_start_delegation_return_locked() 2371143e41735 fuse: Return EPERM rather than ENOSYS from link() 209a4da04a27d smb: client: Store original IO parameters and prevent zero IO sizes 5194597b9cde7 cifs: Fix negotiate retry functionality d50f7ce2fc32a cifs: Fix querying and creating MF symlinks over SMB1 18066188eb90c cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES f08641cd2152d s390/vfio-ap: Fix no AP queue sharing allowed message written to kernel log a6f24a41ef527 kconfig: merge_config: use an empty file as initfile adbb39eca39d1 samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora 38aa3cf1545f3 bpf: fix possible endless loop in BPF map iteration f5f169cd90769 selftests/bpf: Mitigate sockmap_ktls disconnect_after_delete failure f7292fbb41840 drm/amdgpu: Allow P2P access through XGMI 722a6972defd8 ima: process_measurement() needlessly takes inode_lock() on MAY_READ 91ba964a752bb net: enetc: refactor bulk flipping of RX buffers to separate function c36f5f659ad9c scsi: mpi3mr: Add level check to control event logging ca85c2d0db5f8 vhost-scsi: protect vq->log_used with vq->mutex 20fb292ab5d5d cgroup: Fix compilation issue due to cgroup_mutex not being exported c15dc980ffc5a dma-mapping: avoid potential unused data compilation warning 2cab5ea2f5ab6 intel_th: avoid using deprecated page->mapping, index fields b49b5132e4c73 virtio_ring: Fix data race by tagging event_triggered as racy for KCSAN 42d15918da268 scsi: ufs: Introduce quirk to extend PA_HIBERN8TIME for UFS devices fe8421e853ef2 scsi: target: iscsi: Fix timeout on deleted connection beb6382add07a nvmem: qfprom: switch to 4-byte aligned reads 35d77c8d887e1 nvmem: core: update raw_len if the bit reading is required 497f19cacb3f8 nvmem: core: verify cell's raw_len 04c81ac33a607 nvmem: rockchip-otp: add rk3576 variant data 266e5f4813808 nvmem: rockchip-otp: Move read-offset into variant-data b3145041e990a cpufreq: Add SM8650 to cpufreq-dt-platdev blocklist 1efbe2c7a0f44 phy: renesas: rcar-gen3-usb2: Assert PLL reset on PHY power off cf60d19721bc4 phy: renesas: rcar-gen3-usb2: Lock around hardware registers and driver data e992f2581b794 phy: renesas: rcar-gen3-usb2: Move IRQ request in probe eb4fdee1d6303 phy: renesas: rcar-gen3-usb2: Add support to initialize the bus e668cbeb9590a i2c: designware: Fix an error handling path in i2c_dw_pci_probe() ad40588df1820 i2c: designware: Use temporary variable for struct device 0ef9396a7da7a i2c: designware: Remove ->disable() callback 33378973d843b i2c: designware: Uniform initialization flow for polling mode d1954e7aa1313 gpio: pca953x: fix IRQ storm on system wake up 58e34598436f8 gpio: pca953x: Simplify code with cleanup helpers 475d6ebc91a24 gpio: pca953x: Split pca953x_restore_context() and pca953x_save_context()
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
urllib3 is a user-friendly HTTP client library for Python. Prior to
2.5.0, it is possible to disable redirects for all requests by
instantiating a PoolManager and specifying retries in a way that
disable redirects. By default, requests and botocore users are not
affected. An application attempting to mitigate SSRF or open redirect
vulnerabilities by disabling redirects at the PoolManager level will
remain vulnerable. This issue has been patched in version 2.5.0.
Changqing Li [Mon, 7 Jul 2025 09:07:28 +0000 (17:07 +0800)]
icu: fix CVE-2025-5222
CVE-2025-5222:
A stack buffer overflow was found in Internationl components for unicode
(ICU ). While running the genrb binary, the 'subtag' struct overflowed
at the SRBRoot::addTag function. This issue may lead to memory
corruption and local arbitrary code execution.
A flaw was found in the RandR extension, where the RRChangeProviderProperty function
does not properly validate input. This issue leads to an integer overflow when
computing the total size to allocate.
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in the X Record extension. The RecordSanityCheckRegisterClients
function does not check for an integer overflow when computing request length,
which allows a client to bypass length checks.
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in the X server's request handling. Non-zero 'bytes to ignore'
in a client's request can cause the server to skip processing another client's
request, potentially leading to a denial of service.
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in the XFIXES extension. The XFixesSetClientDisconnectMode handler
does not validate the request length, allowing a client to read unintended memory
from previous requests
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in the Big Requests extension. The request length is multiplied
by 4 before checking against the maximum allowed size, potentially causing an
integer overflow and bypassing the size check.
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in the X Rendering extension's handling of animated cursors.
If a client provides no cursors, the server assumes at least one is present,
leading to an out-of-bounds read and potential crash.
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
A vulnerability has been identified in the libarchive library. This flaw can be triggered whe
n file streams are piped into bsdtar, potentially allowing for reading past the end of the fi
le. This out-of-bounds read can lead to unintended consequences, including unpredictable prog
ram behavior, memory corruption, or a denial-of-service condition.
CVE-2025-5918-0001 is the dependent commit and CVE-2025-5918-0002 is the actual CVE fix.
A vulnerability has been identified in the libarchive library. This flaw involves an 'off-by-
one' miscalculation when handling prefixes and suffixes for file names. This can lead to a 1-
byte write overflow. While seemingly small, such an overflow can corrupt adjacent memory, lea
ding to unpredictable program behavior, crashes, or in specific circumstances, could be lever
aged as a building block for more sophisticated exploitation.
A vulnerability has been identified in the libarchive library. This flaw
involves an integer overflow that can be triggered when processing a Web
Archive (WARC) file that claims to have more than INT64_MAX - 4 content
bytes. An attacker could craft a malicious WARC archive to induce this
overflow, potentially leading to unpredictable program behavior, memory
corruption, or a denial-of-service condition within applications that
process such archives using libarchive.
A vulnerability has been identified in the libarchive library. This flaw can lead to a heap b
uffer over-read due to the size of a filter block potentially exceeding the Lempel-Ziv-Storer
-Schieber (LZSS) window. This means the library may attempt to read beyond the allocated memo
ry buffer, which can result in unpredictable program behavior, crashes (denial of service), o
r the disclosure of sensitive information from adjacent memory regions.
A vulnerability has been identified in the libarchive library, specifically within the archiv
e_read_format_rar_seek_data() function. This flaw involves an integer overflow that can ultim
ately lead to a double-free condition. Exploiting a double-free vulnerability can result in m
emory corruption, enabling an attacker to execute arbitrary code or cause a denial-of-service
condition.
When assembling all of the various filenames that are installed/deployed
from u-boot, we have been including the PV and PR in the filenames. This
change introduces a single variable to replace these two in the
filenames.
This change should not be disruptive since the default value for the new
UBOOT_VERSION variable is "${PV}-${PR}".
In one case (UBOOT_EXTLINUX_SYMLINK [1]), PR was used without PV, this
patch assumes this was a mistake and corrects it as PR would not be of
much use alone.
Daniel Turull [Thu, 19 Jun 2025 08:47:35 +0000 (10:47 +0200)]
package: export debugsources in PKGDESTWORK as json
The source information used during packaging can be use from other tasks to
have more detailed information on the files used during the compilation and
improve SPDX accuracy.
Source files used during compilation are store as compressed zstd json in
pkgdata/debugsources/$PN-debugsources.json.zstd
Format:
{ binary1: [src1, src2, ...], binary2: [src1, src2, ...] }
I checked the sstate size, and it slightly increases using core-image-full-cmdline:
without patch: 2456792 KB sstate-cache/
with patch: 2460028 KB sstate-cache/
(4236 KB or 0.17%)
Preeti Sachan [Tue, 24 Jun 2025 03:27:27 +0000 (08:57 +0530)]
ltp: backport patch to fix compilation error for x86_64
When the input compiler enables AVX, stack realignment requirements
causes gcc to fail to omit %rbp use, due to which the test fails to
clobber %rbp in inline asm. Disable AVX to build the test on x86_64 so
that the test continues working.
Fix compilation with gcc v13.4+. Cherry picked from oe-core, master branch.
Signed-off-by: Preeti Sachan <preeti.sachan@intel.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Victor Giraud <vgiraud.opensource@witekio.com> Signed-off-by: Bruno Vernay <bruno.vernay@se.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Moritz Haase [Fri, 20 Jun 2025 06:37:41 +0000 (08:37 +0200)]
cmake: Correctly handle cost data of tests with arbitrary chars in name
ctest automatically optimizes the order of (parallel) test execution based on
historic test case runtime via the COST property (see [0]), which can have a
significant impact on overall test run times. Sadly this feature is broken in
CMake < 4.0.0 for test cases that have spaces in their name (see [1]).
This commit is a backport of f24178f3 (which itself backports the upstream fix).
The patch was adapted slightly to apply cleanly to the older CMake version in
scarthgap. As repeated test runs are expected to mainly take place inside the
SDK, the patch is only applied to 'nativesdk' builds.
Reported-By: John Drouhard <john@drouhard.dev> Signed-off-by: Moritz Haase <Moritz.Haase@bmw.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Peter Marko [Tue, 17 Jun 2025 21:11:48 +0000 (23:11 +0200)]
glibc: stable 2.39 branch updates
$ git log --oneline 3463100f2d47f2897a24ba8023a5c7aaf2d26550..06a70769fd0b2e1f2a3085ad50ab620282bd77b3 06a70769fd ppc64le: Revert "powerpc: Optimized strcmp for power10" (CVE-2025-5702) 3875045da5 ppc64le: Revert "powerpc : Add optimized memchr for POWER10" (Bug 33059) c6240a11f7 ppc64le: Revert "powerpc: Fix performance issues of strcmp power10" (CVE-2025-5702) 2caef2827f elf: Fix subprocess status handling for tst-dlopen-sgid (bug 32987) 9e25c0f445 x86_64: Fix typo in ifunc-impl-list.c. ca99d55315 elf: Test case for bug 32976 (CVE-2025-4802) 71ddb11ccd support: Add support_record_failure_barrier abdeb4b520 support: Use const char * argument in support_capture_subprogram_self_sgid 147bed0a71 elf: Keep using minimal malloc after early DTV resize (bug 32412) 4e5ee49a43 sysdeps/unix/sysv/linux/x86_64/Makefile: Add the end marker 37b30b6a68 sysdeps/x86_64/Makefile (tests): Add the end marker 9fe51d34bb sort-makefile-lines.py: Allow '_' in name and "^# name" 14ec225d85 libio: Correctly link tst-popen-fork against libpthread 1dcfb9479d libio: Fix a deadlock after fork in popen e31ac9a639 libio: Sort test variables in Makefile 68f3f1a1d0 Linux: Switch back to assembly syscall wrapper for prctl (bug 29770) d33d10642f nptl: PTHREAD_COND_INITIALIZER compatibility with pre-2.41 versions (bug 32786) b1eb369aee nptl: Use all of g1_start and g_signals ac5da3c0e4 nptl: rename __condvar_quiesce_and_switch_g1 2fdc0afd07 nptl: Fix indentation 582c99b2c0 nptl: Use a single loop in pthread_cond_wait instaed of a nested loop fc2a25417d nptl: Remove g_refs from condition variables 6f5ba03968 nptl: Remove unnecessary quadruple check in pthread_cond_wait d0da34ad30 nptl: Remove unnecessary catch-all-wake in condvar group switch ea13a35e37 nptl: Update comments and indentation for new condvar implementation 2451ef5c4a pthreads NPTL: lost wakeup fix 2
test results:
Before After Diff
FAIL 207 207 0
PASS 4912 4915 +3
UNSUPPORTED 230 230 0
XFAIL 16 16 0
XPASS 4 4 0
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Poonam Jadhav [Mon, 16 Jun 2025 04:46:04 +0000 (10:16 +0530)]
libpng: Add ptest
Install libpng test-suite to run it as a ptest.
As the test-suite takes more than 30 seconds to run,
add libpng-ptest to PTESTS_SLOW in ptest-packagelists.inc
Signed-off-by: Poonam Jadhav <poonam.jadhav@kpit.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Peter Marko [Sun, 8 Jun 2025 21:47:17 +0000 (23:47 +0200)]
testimage: get real os-release file
/etc/os-release is a symlink to /usr/lib.
Symlink is retrieved as a dead link which points to nowhere if also the
original file is not accompanying it.
Fetch the real file in addition to this link.
Alternative could be to use "tar -h" (supported also by busybox tar),
however that could lose some important information if links are relevant
for failure analysis.
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Andrew Fernandes [Thu, 13 Jun 2024 19:54:27 +0000 (12:54 -0700)]
gtk+: add missing libdrm dependency
Fixes [YOCTO #15513]
When built without the wayland feature, gtk4 does not
build due to a missing explicit dependency on libdrm.
Signed-off-by: Andrew Fernandes <andrew@fernandes.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b32290d9bbcfccc9b85fa5acbeaee5d32d9a9091) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Python 3.12.10 is the latest maintenance release of Python 3.12, and
the last full maintenance release. Subsequent releases of 3.12 will be
security-fixes only.
Security content in this release
* gh-135034: [CVE 2024-12718] [CVE 2025-4138] [CVE 2025-4330]
[CVE 2025-4435] [CVE 2025-4517] Fixes multiple issues that allowed
tarfile extraction filters (filter="data" and filter="tar") to be
bypassed using crafted symlinks and hard links.
* gh-133767: Fix use-after-free in the “unicode-escape” decoder with a
non-“strict” error handler.
* gh-128840: Short-circuit the processing of long IPv6 addresses early
in ipaddress to prevent excessive memory consumption and a minor
denial-of-service.
gh-133767 got meawhile CVE-2025-4516 assigned.
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Divya Chellam [Thu, 5 Jun 2025 11:01:00 +0000 (16:31 +0530)]
screen: fix CVE-2025-46804
A minor information leak when running Screen with setuid-root
privileges allosw unprivileged users to deduce information
about a path that would otherwise not be available.
Affected are older Screen versions, as well as version 5.0.0.
PR32858 ld segfault on fuzzed object
We missed one place where it is necessary to check for empty groups.
Backport a patch from upstream to fix CVE-2025-5244
Upstream-Status: Backport [https://sourceware.org/git/?p=binutils-gdb.git;a=patch;h=d1458933830456e54223d9fc61f0d9b3a19256f5]
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
PR32829, SEGV on objdump function debug_type_samep
u.kenum is always non-NULL, see debug_make_enum_type.
Backport a patch from upstream to fix CVE-2025-5245
Upstream-Status: Backport [https://sourceware.org/git/?p=binutils-gdb.git;a=patch;h=6c3458a8b7ee7d39f070c7b2350851cb2110c65a]
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changqing Li [Tue, 3 Jun 2025 09:21:05 +0000 (17:21 +0800)]
libsoup-2.4: fix do_compile failure
Remove test code for fixing do_compile failure:
../libsoup-2.74.3/tests/auth-test.c:1554:39: error: unknown type name 'SoupServerMessage'; did you mean 'SoupServerClass'?
1554 | SoupServerMessage *msg,
|
Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Richard Purdie [Wed, 28 May 2025 18:39:59 +0000 (19:39 +0100)]
sstatetests: Switch to new CDN
The project is switching the way handle our CDN provision of sstate objects,
update the URL accordingly.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fea96974f1ee6ae6dceb39e3ca8157797d81586c) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Wang Mingyu [Mon, 12 May 2025 09:02:58 +0000 (17:02 +0800)]
ghostscript: upgrade 10.05.0 -> 10.05.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit cc9ba7005fb155f4d5f2be9b23c12d14362a306b) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bruce Ashfield [Thu, 29 May 2025 16:57:53 +0000 (12:57 -0400)]
linux-yocto/6.6: update to v6.6.91
Updating linux-yocto/6.6 to the latest korg -stable release that comprises
the following commits:
615b9e10e337 Linux 6.6.91 772934d9062a x86/its: FineIBT-paranoid vs ITS 9f69fe3888f6 x86/its: Fix build errors when CONFIG_MODULES=n 3b2234cd50a9 x86/its: Use dynamic thunks for indirect branches 6699bf27a471 x86/ibt: Keep IBT disabled during alternative patching 9e7364c32c6c x86/its: Align RETs in BHB clear sequence to avoid thunking ba1d70362658 x86/its: Add support for RSB stuffing mitigation 61bed1ddb212 x86/its: Add "vmexit" option to skip mitigation on some CPUs f7ef7f6ccf2b x86/its: Enable Indirect Target Selection mitigation 4754e29f43c6 x86/its: Add support for ITS-safe return thunk c5a5d8075231 x86/its: Add support for ITS-safe indirect thunk 195579752c23 x86/its: Enumerate Indirect Target Selection (ITS) bug c6c1319d19fc Documentation: x86/bugs/its: Add ITS documentation a42e9162314f x86/speculation: Remove the extra #ifdef around CALL_NOSPEC 0a90b50ebf24 x86/speculation: Add a conditional CS prefix to CALL_NOSPEC 2eecf5cf21cb x86/speculation: Simplify and make CALL_NOSPEC consistent a8a8826bf655 x86/bhi: Do not set BHI_DIS_S in 32-bit mode a0ff7f679b5d x86/bpf: Add IBHF call at end of classic BPF 1afebfeaf1eb x86/bpf: Call branch history clearing sequence on exit ca8a5626ca0c arm64: proton-pack: Add new CPUs 'k' values for branch mitigation 80251f62028f arm64: bpf: Only mitigate cBPF programs loaded by unprivileged users 42a20cf51011 arm64: bpf: Add BHB mitigation to the epilogue for cBPF programs 73591041a551 arm64: proton-pack: Expose whether the branchy loop k value 854da0ed0671 arm64: proton-pack: Expose whether the platform is mitigated by firmware 054fc98d691a arm64: insn: Add support for encoding DSB 746e7d285dcb io_uring: ensure deferred completions are posted for multishot 51f1389b5fe1 io_uring: always arm linked timeouts prior to issue 00f0dd1a0166 do_umount(): add missing barrier before refcount checks in sync case eba09f42393a nvme: unblock ctrl state transition for firmware update f5a7d616a547 drm/panel: simple: Update timings for AUO G101EVN010 1c0620213f37 MIPS: Fix MAX_REG_OFFSET 66c4ec15e329 iio: adc: dln2: Use aligned_s64 for timestamp 8b5273051b61 iio: accel: adxl355: Make timestamp 64-bit aligned using aligned_s64 9519771908fc types: Complement the aligned types with signed 64-bit one 85d430aef40a iio: temp: maxim-thermocouple: Fix potential lack of DMA safe buffer. 2b58e7c1e4b2 iio: accel: adxl367: fix setting odr for activity time update 37a55b692d42 usb: usbtmc: Fix erroneous generic_read ioctl return 1991ed796d9a usb: usbtmc: Fix erroneous wait_srq ioctl return e96be8bd53ab usb: usbtmc: Fix erroneous get_stb ioctl error returns e2fef620e5e0 USB: usbtmc: use interruptible sleep in usbtmc_read 14f298c52188 usb: typec: ucsi: displayport: Fix NULL pointer access c9d8b0932e2b usb: typec: tcpm: delay SNK_TRY_WAIT_DEBOUNCE to SRC_TRYWAIT transition 2d44ee69e6f5 usb: host: tegra: Prevent host controller crash when OTG port is used 9b09b99a9510 usb: gadget: Use get_status callback to set remote wakeup capability 0b32d03e79c1 usb: gadget: tegra-xudc: ACK ST_RC after clearing CTRL_RUN dffa51cf2d3f usb: gadget: f_ecm: Add get_status callback 1981926eb34a usb: cdnsp: fix L1 resume issue for RTL_REVISION_NEW_LPM version d84603122591 usb: cdnsp: Fix issue with resuming from L1 8c133a08524a ocfs2: stop quota recovery before disabling quotas cc335d4f4e4f ocfs2: implement handshaking with ocfs2 recovery thread c7441aa8d078 ocfs2: switch osb->disable_recovery to enum cbd5108119d7 x86/microcode: Consolidate the loader enablement checking faa9059631d3 module: ensure that kobject_put() is safe for module type kobjects 7e1c7748404b clocksource/i8253: Use raw_spinlock_irqsave() in clockevent_i8253_disable() cbfaf46b88a4 xenbus: Use kref to track req lifetime ffa14d4dc779 xen: swiotlb: Use swiotlb bouncing if kmalloc allocation demands it 2ed98e89ebc2 smb: client: Avoid race in open_cached_dir with lease breaks 671c05434d91 usb: uhci-platform: Make the clock really optional 03f108a718a7 drm/amdgpu/hdp6: use memcfg register to post the write for HDP flush 1824e914e291 drm/amdgpu/hdp5: use memcfg register to post the write for HDP flush 7133ff3bedf3 drm/amdgpu/hdp5.2: use memcfg register to post the write for HDP flush 05340a423c92 drm/amdgpu/hdp4: use memcfg register to post the write for HDP flush f647ce6d9b5d drm/amd/display: Copy AUX read reply data whenever length > 0 79d982ae2f61 drm/amd/display: Fix wrong handling for AUX_DEFER case 89850f11bb7c drm/amd/display: Remove incorrect checking in dmub aux handler cee6856fbf1c drm/amd/display: Fix the checking condition in dmub aux handling c8a91debb020 drm/amd/display: more liberal vmin/vmax update for freesync 12125f7d9c15 drm/v3d: Add job to pending list if the reset was skipped 9ce662851380 iio: imu: st_lsm6dsx: fix possible lockup in st_lsm6dsx_read_tagged_fifo da33c4167b9c iio: imu: st_lsm6dsx: fix possible lockup in st_lsm6dsx_read_fifo 3413b87a9e17 iio: adis16201: Correct inclinometer channel resolution 7748b1b27fbf iio: adc: rockchip: Fix clock initialization sequence badda05d6b99 iio: adc: ad7606: fix serial register access b229fa0d093c drm/amd/display: Shift DMUB AUX reply command if necessary d41072906abe x86/mm: Eliminate window where TLB flushes may be inadvertently skipped 0f2b18c07604 staging: axis-fifo: Correct handling of tx_fifo_depth for size validation f4d6b9f413cb staging: axis-fifo: Remove hardware resets for user errors 90db122533d2 staging: iio: adc: ad7816: Correct conditional logic for store mode f7adc4943853 Input: synaptics - enable InterTouch on TUXEDO InfinityBook Pro 14 v5 85961bb7e494 Input: synaptics - enable SMBus for HP Elitebook 850 G1 cbd085c424db Input: synaptics - enable InterTouch on Dell Precision M3800 82b02402eee1 Input: synaptics - enable InterTouch on Dynabook Portege X30L-G c321045f088c Input: synaptics - enable InterTouch on Dynabook Portege X30-D 2d9d6a4cd3be Input: xpad - fix two controller table values 56b4e8b62124 Input: xpad - add support for 8BitDo Ultimate 2 Wireless Controller cbc82e7db16d Input: xpad - fix Share button on Xbox One controllers 90fa6015ff83 Input: mtk-pmic-keys - fix possible null pointer dereference f72f0172079c Input: cyttsp5 - fix power control issue on wakeup dadbe33fee36 Input: cyttsp5 - ensure minimum reset pulse width ce4e826dbfe7 net: dsa: b53: fix learning on VLAN unaware bridges b1c9c58d09ed net: dsa: b53: always rejoin default untagged VLAN on bridge leave ca071649e291 net: dsa: b53: fix VLAN ID for untagged vlan on bridge leave a143c39add81 net: dsa: b53: fix flushing old pvid VLAN on pvid change aa00a30a28c7 net: dsa: b53: fix clearing PVID of a port 0121c19ebd53 net: dsa: b53: allow leaky reserved multicast 355b0526336c bpf: Scrub packet on bpf_redirect_peer a3dfec485401 netfilter: ipset: fix region locking in hash types adbc8cc11629 ipvs: fix uninit-value for saddr in do_output_route4 42b7a7c962b2 can: gw: fix RCU/BH usage in cgw_create_job() 3455e6394fef can: mcp251xfd: fix TDC setting for low data bit rates 68f29bb97a0e net: ethernet: mtk_eth_soc: reset all TX queues on DMA free 370635397b62 netdevice: add netdev_tx_reset_subqueue() shorthand fa1fe9f3ddb9 gre: Fix again IPv6 link-local address generation. 31ff70ad3948 sch_htb: make htb_deactivate() idempotent af9e2d4732a5 ksmbd: fix memory leak in parse_lease_state() 0236742bd959 openvswitch: Fix unsafe attribute parsing in output_userspace() fec1f9e9a650 ksmbd: Fix UAF in __close_file_table_ids 04c8a38c6034 ksmbd: prevent out-of-bounds stream writes by validating *pos 6ee551672c8c ksmbd: prevent rename with empty string 3482037d0f66 can: mcp251xfd: mcp251xfd_remove(): fix order of unregistration calls 73dde269a1a4 wifi: cfg80211: fix out-of-bounds access during multi-link element defragmentation d2520dc79c2a can: mcan: m_can_class_unregister(): fix order of unregistration calls 0efe9965680b arm64: dts: imx8mm-verdin: Link reg_usdhc2_vqmmc to usdhc2 38433aa31b43 dm: add missing unlock on in dm_keyslot_evict() 9c2dd8954dad Linux 6.6.90 ed3248a40374 dm: fix copying after src array boundaries fe465003bb63 xhci: fix possible null pointer dereference at secondary interrupter removal 3efb29f6a78d usb: xhci: Check for xhci->interrupters being allocated in xhci_mem_clearup() bbc66abcd297 drm/amd/display: Fix slab-use-after-free in hdcp 97a918755a4c drm/amd/display: Add scoped mutexes for amdgpu_dm_dhcp 4306dbd7676e iommu/arm-smmu-v3: Fix iommu_device_probe bug due to duplicated stream ids 3dc33f145a8a iommu/arm-smmu-v3: Use the new rb tree helpers 8f2451ebaf5b drivers: base: handle module_kobject creation ace531f2fea1 kernel: globalize lookup_or_create_module_kobject() 0ecbb45e30ab kernel: param: rename locate_module_kobject baa3ebbad80f xhci: Limit time spent with xHC interrupts disabled during bus resume ebb7195dac40 xhci: support setting interrupt moderation IMOD for secondary interrupters cc64775afb27 usb: xhci: check if 'requested segments' exceeds ERST capacity 3733697cb7dd xhci: Add helper to set an interrupters interrupt moderation interval bcd191d7bab2 xhci: add support to allocate several interrupters ff0a51339a3b xhci: split free interrupter into separate remove and free parts 3f6e8ad65b1e xhci: Clean up stale comment on ERST_SIZE macro f377434945f5 xhci: Use more than one Event Ring segment 6299fb6190fe xhci: Set DESI bits in ERDP register correctly 5e8c311318fa Revert "drm/meson: vclk: fix calculation of 59.94 fractional rates" f129d8aea8b1 arm64: dts: st: Use 128kB size for aliased GIC400 register access on stm32mp25 SoCs ce2fa5bc0158 arm64: dts: st: Adjust interrupt-controller for stm32mp25 SoCs fabe73032383 ARM: dts: opos6ul: add ksz8081 phy properties f68f93c9d043 firmware: arm_ffa: Skip Rx buffer ownership release if not acquired 2fbf6c9695ad firmware: arm_scmi: Balance device refcount when destroying devices e762ec4c7b34 sch_ets: make est_qlen_notify() idempotent 36269156033f sch_qfq: make qfq_qlen_notify() idempotent 9030a91235ae sch_hfsc: make hfsc_qlen_notify() idempotent 077e355dae44 sch_drr: make drr_qlen_notify() idempotent bbbf5e0f8707 sch_htb: make htb_qlen_notify() idempotent b9ded1fb298b riscv: Pass patch_text() the length in bytes 85484bc61138 ASoC: soc-core: Stop using of_property_read_bool() for non-boolean properties 54583776e416 ASoC: Use of_property_read_bool() 29ea1abc7d4f net: vertexcom: mse102x: Fix RX error handling 6ac8ec92f53f net: vertexcom: mse102x: Add range check for CMD_RTS 04d9c3407986 net: vertexcom: mse102x: Fix LEN_MASK e1301580bf0b net: vertexcom: mse102x: Fix possible stuck of SPI interrupt cb5922f74b40 net: hns3: defer calling ptp_clock_register() accb5a8ef129 net: hns3: fixed debugfs tm_qset size c1b1d3b0d8e4 net: hns3: fix an interrupt residual problem 67d587bfa349 net: hns3: store rx VLAN tag offload state for VF 7e1ca1bed3f6 octeon_ep: Fix host hang issue during device reboot 0e32cbcbc4cb net: fec: ERR007885 Workaround for conventional TX dae1ce27ceae net: lan743x: Fix memleak issue when GSO enabled ec00ea56450e nvme-tcp: fix premature queue removal and I/O failover 252a5a67adc7 bnxt_en: Fix ethtool -d byte order for 32-bit values 4d69864915a3 bnxt_en: Fix out-of-bound memcpy() during ethtool -w 3facfd720055 bnxt_en: Fix coredump logic to free allocated buffer e0272844995a net: ipv6: fix UDPv6 GSO segmentation with NAT 8acf08b1e4ec net: dsa: felix: fix broken taprio gate states after clock jump cb625f783f70 net: ethernet: mtk_eth_soc: fix SER panic with 4GB+ RAM 683ad6d7f489 igc: fix lock order in igc_ptp_reset 2399d1a75033 net: mdio: mux-meson-gxl: set reversed bit when using internal phy 1bbbdfc247f4 net: dlink: Correct endianness handling of led_mode 012a413b28e1 nvme-pci: fix queue unquiesce check on slot_reset ce4f77bef276 ALSA: ump: Fix buffer overflow at UMP SysEx message conversion eae60cfe25d0 ice: Check VF VSI Pointer Value in ice_vc_add_fdir_fltr() a43783119e01 net_sched: qfq: Fix double list add in class with netem as child qdisc 72c3da7e6ceb net_sched: ets: Fix double list add in class with netem as child qdisc 6082a87af4c5 net_sched: hfsc: Fix a UAF vulnerability in class with netem as child qdisc db205b92dfe0 net_sched: drr: Fix double list add in class with netem as child qdisc 9b467c5bcdb4 pds_core: remove write-after-free of client_id 0861fccd43b8 pds_core: specify auxiliary_device to be created da23d7edb215 pds_core: make pdsc_auxbus_dev_del() void 452fa190dd2e pds_core: delete VF dev on reset 5e51c0b51b25 pds_core: check health in devcmd wait 5ba9380f79f2 net: ethernet: mtk-star-emac: rearm interrupts in rx_poll only when advised 7cb10f17bddc net: ethernet: mtk-star-emac: fix spinlock recursion issues on rx/tx poll a74777bb1827 net: mscc: ocelot: delete PVID VLAN when readding it as non-PVID dc7ffe02adda net: mscc: ocelot: treat 802.1ad tagged traffic as 802.1Q-untagged 8c7bfb6198a7 Bluetooth: L2CAP: copy RX timestamp to new fragments 8dde02229b3c net: Rename mono_delivery_time to tstamp_type for scalabilty 2e8d44ebaa7b Bluetooth: btusb: avoid NULL pointer dereference in skb_dequeue() dd20a33a0db0 net/mlx5: E-switch, Fix error handling for enabling roce bab395c89127 net/mlx5: E-Switch, Initialize MAC Address for Default GID 3576e9a80b6c vxlan: vnifilter: Fix unlocked deletion of default FDB entry 029f11349ec9 powerpc/boot: Fix dash warning 36a9a2647810 wifi: plfxlc: Remove erroneous assert in plfxlc_mac_release c5a5de348c05 drm/i915/pxp: fix undefined reference to `intel_pxp_gsccs_is_ready_for_sessions' 27a1efe21f9e powerpc/boot: Check for ld-option support 9a8d4d7072d4 book3s64/radix : Align section vmemmap start address to PAGE_SIZE 8890eeae5c82 ASoC: soc-pcm: Fix hw_params() and DAPM widget sequence a6dbcf69d4c4 iommu: Handle race with default domain setup a1723e9c53fe KVM: x86: Load DR6 with guest value only before entering .vcpu_run() loop 46acbfbcc0e2 PCI: imx6: Skip controller_id generation logic for i.MX7D 28cfd94980bb Revert "PCI: imx6: Skip controller_id generation logic for i.MX7D" 47e24c86cb20 selftests/bpf: extend changes_pkt_data with cases w/o subprograms 3a467d938da2 bpf: fix null dereference when computing changes_pkt_data of prog w/o subprogs b7c0d2d4ef13 selftests/bpf: validate that tail call invalidates packet pointers f1692ee23dca bpf: consider that tail calls invalidate packet pointers 70234fbfa266 selftests/bpf: freplace tests for tracking of changes_packet_data 7197fc4acdf2 bpf: check changes_pkt_data property for extension programs 85a30a46396a selftests/bpf: test for changing packet data from global functions 79751e9227a5 bpf: track changes_pkt_data property for global functions 3d496a1eaaec bpf: refactor bpf_helper_changes_pkt_data to use helper number f0b56f1d2fcc bpf: add find_containing_subprog() utility function 056ebbddb8fa tracing: Fix oob write in trace_seq_to_buffer() 25687fd19633 cpufreq: Fix setting policy limits when frequency tables are used cbd54987db25 cpufreq: Avoid using inconsistent policy->min and policy->max e76948644ec7 smb: client: fix zero length for mkdir POSIX create context b44746356223 ksmbd: fix use-after-free in kerberos authentication a45445b6093d platform/x86/intel-uncore-freq: Fix missing uncore sysfs during CPU hotplug 3a868a7f8da4 platform/x86/amd: pmc: Require at least 2.5 seconds between HW sleep cycles f39493cf7023 iommu/vt-d: Apply quirk_iommu_igfx for 8086:0044 (QM57/QS57) 13d67528e1ae iommu/amd: Fix potential buffer overflow in parse_ivrs_acpihid 64e95bb37916 dm: always update the array size in realloc_argv on success ecc7f159d17e dm-integrity: fix a warning on invalid table line c8c83052283b dm-bufio: don't schedule in atomic context 08424a0922fb wifi: brcm80211: fmac: Add error handling for brcmf_usb_dl_writeimage() 8daa71c694b3 tracing: Do not take trace_event_sem in print_event_fields() 75fda0e59168 spi: tegra114: Don't fail set_cs_timing when delays are zero 3aa4aff158ea mmc: renesas_sdhi: Fix error handling in renesas_sdhi_probe 4d1a2d136356 mm/memblock: repeat setting reserved region nid if array is doubled c0fabecd6510 mm/memblock: pass size instead of end to memblock_set_node() dfbaecf7e38f irqchip/qcom-mpm: Prevent crash when trying to handle non-wake GPIOs e51dd7126693 amd-xgbe: Fix to ensure dependent features are toggled with RX checksum offload 34b6fa11431a perf/x86/intel: KVM: Mask PEBS_ENABLE loaded for guest with vCPU's value. 6a098c51d18e parisc: Fix double SIGFPE crash 3821cae9bd5a arm64: errata: Add missing sentinels to Spectre-BHB MIDR arrays ddf4e7f0f509 i2c: imx-lpi2c: Fix clock count when probe defers 78cf306f7214 EDAC/altera: Set DDR and SDMMC interrupt mask before registration 726641633413 EDAC/altera: Test the correct error reg offset 126f5c6e0cb8 drm/nouveau: Fix WARN_ON in nouveau_fence_context_kill() 94808275aa6c drm/fdinfo: Protect against driver unbind b364ee98aca9 btrfs: fix COW handling in run_delalloc_nocow() 3ac18e0a94c1 ALSA: usb-audio: Add second USB ID for Jabra Evolve 65 headset f73ecbfa78ce ALSA: usb-audio: Add retry on -EPROTO from usb_set_interface() fd1aeef3e9c7 Revert "rndis_host: Flag RNDIS modems as WWAN devices" 6a5b2ed82152 ARM: dts: am335x-bone-common: Increase MDIO reset deassert time ceb5fadbf450 Revert "v6.6 -stable -rt merge fixup" 1c2962a164ff v6.6 -stable -rt merge fixup 18abb2787b53 x86/syscall: Mark exit[_group] syscall handlers __noreturn 2879d995e569 pnmtologo: sync with 6.6 43ea1c5e6eb3 lib/build_OID_registry: take -stable reproducibility changes 35046aea43c8 bpftool: Fix undefined bpf macro for unix socket 9a558d4b8621 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e503 bpftool: Query only cgroup-related attach types f71bb11887ba cpu/amd: inhibit SMP check for qemux86 c31365597a17 powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d kselftest: Add a ksft_perror() helper 06644f0d7193 drm/tilcdc: Set preferred depth ff7ae7b32324 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701 x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c79 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6 qemux86: add configuration symbol to select values 630c33229e6d sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6 clear_warn_once: add a clear_warn_once= boot parameter 46934791b902 clear_warn_once: bind a timer to written reset value cdee9e38ff32 clear_warn_once: expand debugfs to include read support 82b562b81841 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b libbpf: Fix build warning on ref_ctr_off 9e3e1fe20982 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65 perf: x86-32: explicitly include <errno.h> 7b57ddd89565 perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7 perf: fix bench numa compilation 98bc2815fade perf: add SLANG_INC for slang.h 17209a70b9b3 perf: add sgidefs.h to for mips builds 9cd4258d910a perf: change --root to --prefix for python install 8110a4f26628 perf: add 'libperl not found' warning bc89d5e08f77 perf: force include of <stdbool.h> 4f6c760cc876 fat: Replace prandom_u32() with get_random_u32() bc53117b12b2 fat: don't use obsolete random32 call in namei_vfat 30b2236ab378 FAT: Added FAT_NO_83NAME cef98d22b4ed FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084 aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf2 aufs6: fix magic.mk include path 35266bc2dc81 aufs6: adapt to v6.6 8edede4e98be aufs6: core 712248233ebe aufs6: standalone 3b71a8a848d8 aufs6: mmap 3e2924871f37 aufs6: base 7f4907a93101 aufs6: kbuild d2f7b03e4aa7 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa0 yaffs2: v6.5 fixups cc615704b5f5 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf91 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d3 yaffs2: replace bdevname call with sprintf 395b01cdc39d yaffs2: convert read_page -> readfolio d98b07e43ba6 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090 yaffs: include blkdev.h dbd44252cd59 yaffs: fix misplaced variable declaration c223a10b1ac0 yaffs2: v5.6 build fixups 90f6007cfbf4 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea1 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6 yaffs: repair yaffs_get_mtd_device fb98f65a466a yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea2 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0 yaffs: Avoid setting any ACL releated xattr ff4130a9c376 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67c fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba9056 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4 yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8 initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4 pnmtologo: use relocatable file name 664a6a0a484b tools: use basename to identify file in gen-mach-types 9de64bc0c185 lib/build_OID_registry: fix reproducibility issues ae9b80797295 vt/conmakehash: improve reproducibility a972323151bd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc0198 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b19 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffc defconfigs: drop obselete options 00fe4152df31 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf linux-yocto: Handle /bin/awk issues 3d55d299f23a uvesafb: provide option to specify timeout for task completion 23c068c080be uvesafb: print error message when task timeout occurs edbfc939266e compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19a vmware: include jiffies.h 572d84d928c8 Resolve jiffies wrapping about arp fdcd47cac843 nfs: Allow default io size to be configured. 927d48801098 check console device file on fs when booting 57cc27f821dd mount_root: clarify error messages for when no rootfs found 1b53d82a8152 mconf: fix output of cflags and libraries 1811da09f42c menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f modpost: mask trivial warnings 6de673039484 kbuild: exclude meta directory from distclean processing 6decd32815f5 powerpc: serialize image targets f6b683b38318 arm: serialize build targets e798b09ebf57 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f8 x86_64_defconfig: Fix warnings 68491e5f72b6 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce3004 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b1 powerpc: kexec fix for powerpc64 da6871c62c37 powerpc: Add unwind information for SPE registers of E500 core f161c880c11d mips: make current_cpu_data preempt safe 5e94a8247ce7 mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7 mips: Kconfig: add QEMUMIPS64 option e2e537db3cbd 4kc cache tlb hazard: tlbp cache coherency aee9870611e5 malta uhci quirks: make allowance for slow 4k(e)c 881948cd1517 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7 arm64: defconfig: cleanup config options f1727c537ba8 vexpress: Pass LOADADDR to Makefile 4474c32dc24a arm: ARM EABI socketcall 75e31a2b70fd ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bruce Ashfield [Thu, 29 May 2025 16:57:52 +0000 (12:57 -0400)]
linux-yocto/6.6: update to v6.6.89
Updating linux-yocto/6.6 to the latest korg -stable release that comprises
the following commits:
71e4ec9b2abc Linux 6.6.89 20bab4eb1c7c objtool: Silence more KCOV warnings, part 2 014a761be083 objtool: Ignore end-of-section jumps for KCOV/GCOV 26084aa1a143 nvme: fixup scan failure for non-ANA multipath controllers 17d41d0f3a26 MIPS: cm: Fix warning if MIPS_CM is disabled eee19a803731 net: dsa: mv88e6xxx: enable STU methods for 6320 family cd17c8638d21 net: dsa: mv88e6xxx: enable .port_set_policy() for 6320 family 13685484072a net: dsa: mv88e6xxx: enable PVT for 6321 switch bfbd730e100b net: dsa: mv88e6xxx: fix atu_move_port_mask for 6341 family 551667f99bcf ext4: goto right label 'out_mmap_sem' in ext4_setattr() ffe79cc6c71d comedi: jr3_pci: Fix synchronous deletion of timer c4312c4d244a vmxnet3: Fix malformed packet sizing in vmxnet3_process_xdp abe56be73eb1 driver core: fix potential NULL pointer dereference in dev_uevent() a55111066205 driver core: introduce device_set_driver() helper d29c2d53357f Revert "drivers: core: synchronize really_probe() and dev_uevent()" 0fd13033d4e7 x86/pvh: Call C code via the kernel virtual mapping 2b4479eb462e spi: spi-imx: Add check for spi_imx_setupxfer() 459098685edf md/raid1: Add check for missing source disk in process_checks() 41866aa93d2e x86/cpu: Add CPU model number for Bartlett Lake CPUs with Raptor Cove cores aa0cf04b6959 ubsan: Fix panic from test_ubsan_out_of_bounds 96ae4c19ed71 spi: tegra210-quad: add rate limiting and simplify timeout error message 0134e326abc3 spi: tegra210-quad: use WARN_ON_ONCE instead of WARN_ON for timeouts 6c2e136ffd05 loop: aio inherit the ioprio of original request f0209397ed2c riscv: Provide all alternative macros all the time ce7e04d26a35 iomap: skip unnecessary ifs_block_is_uptodate check bb7878cca969 x86/i8253: Call clockevent_i8253_disable() with interrupts disabled a862d24e1fc3 scsi: pm80xx: Set phy_attached to zero when device is gone 4cdb02e9f963 scsi: ufs: exynos: Ensure pre_link() executes before exynos_ufs_phy_init() fa99f1886e0a scsi: hisi_sas: Fix I/O errors caused by hardware port ID changes a8550ac19d46 ext4: make block validity check resistent to sb bh corruption ea92c93887f5 cifs: Fix querying of WSL CHR and BLK reparse points over SMB1 dc18c5b1301a timekeeping: Add a lockdep override in tick_freeze() e5208da73954 cifs: Fix encoding of SMB1 Session Setup Kerberos Request in non-UNICODE mode f444c139e820 nvmet-fc: put ref when assoc->del_work is already scheduled e45e8f0dd324 nvmet-fc: take tgtport reference only once 0cad1849e903 x86/bugs: Don't fill RSB on context switch with eIBRS b73c62b1ca43 x86/bugs: Don't fill RSB on VMEXIT with eIBRS+retpoline 19160ed5e5fa x86/bugs: Use SBPB in write_ibpb() if applicable 84b52a6cd012 selftests/mincore: Allow read-ahead pages to reach the end of the file 4978a798a38d gpiolib: of: Move Atmel HSMCI quirk up out of the regulator comment 18082da6ce0e objtool: Stop UNRET validation on UD2 0cf5fd802452 nvme: multipath: fix return value of nvme_available_path 60ed102378a3 nvme: re-read ANA log page after ns scan completes 4c97ba1b0b98 ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls fcf524eaff20 ACPI: EC: Set ec_no_wakeup for Lenovo Go S fe063491e90d nvme: requeue namespace scan on missed AENs 892fcde9941d xen: Change xen-acpi-processor dom0 dependency 1fe9b92eede3 perf/core: Fix WARN_ON(!ctx) in __free_event() for partial init eee189ccd46b selftests: ublk: fix test_stripe_04 b2ff4e9c599b udmabuf: fix a buf size overflow issue during udmabuf creation 6234a3c72784 KVM: s390: Don't use %pK through debug printing 1b2c45697f43 KVM: s390: Don't use %pK through tracepoints b205d02726b3 sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP c5d4d103005d io_uring: always do atomic put from iowq 7e9b836182c1 rtc: pcf85063: do a SW reset if POR failed a68768e280b7 9p/net: fix improper handling of bogus negative read/write replies 04ebabdbe99d ntb_hw_amd: Add NTB PCI ID for new gen CPU 27f6ee168c00 ntb: reduce stack usage in idt_scan_mws 5d53e88d8370 qibfs: fix _another_ leak db437e985469 objtool, lkdtm: Obfuscate the do_nothing() pointer 11c16b644934 objtool, regulator: rk808: Remove potential undefined behavior in rk806_set_mode_dcdc() 547695db502c objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler() 4ab980b5c309 objtool, panic: Disable SMAP in __stack_chk_fail() 97f70d27bee2 objtool: Silence more KCOV warnings d5ada7bf3dc8 thunderbolt: Scan retimers after device router has been enumerated e59fc484d424 usb: host: xhci-plat: mvebu: use ->quirks instead of ->init_quirk() func cfa7984f6935 usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev() 8b26eb1d8bb2 usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running 2c6a11eaec65 dmaengine: dmatest: Fix dmatest waiting less when interrupted 5be9407b41ea sound/virtio: Fix cancel_sync warnings on uninitialized work_structs a7f9991e4e3c usb: dwc3: gadget: Avoid using reserved endpoints on Intel Merrifield e5aabc76d101 usb: dwc3: gadget: Refactor loop to avoid NULL endpoints db56636beb3e fs/ntfs3: Fix WARNING in ntfs_extend_initialized_size 46a150788e16 usb: host: max3421-hcd: Add missing spi_device_id table 1a0a2d8c6d77 mailbox: pcc: Always clear the platform ack interrupt first a6e3026e0ad6 mailbox: pcc: Fix the possible race in updation of chan_in_use flag 10cf3135c6dc bpf: Reject attaching fexit/fmod_ret to __noreturn functions 4ed42d1a4a5b bpf: Only fails the busy counter check in bpf_cgrp_storage_get if it creates storage c487fcc632e7 bpf: bpftool: Setting error code in do_loader() 7f30987294b7 s390/tty: Fix a potential memory leak bug 28e5a867aa54 s390/sclp: Add check for get_zeroed_page() 96eab3c96a24 parisc: PDT: Fix missing prototype warning 51ae5b7aa96c clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec() b5a528a34e1f bpf: Fix deadlock between rcu_tasks_trace and event_mutex. 1b66a5920b7f crypto: null - Use spin lock instead of mutex d999b11302c4 crypto: ccp - Add support for PCI device 0x1134 02f53b8f2ffc MIPS: cm: Detect CM quirks from device tree 979ba0d694ea pinctrl: renesas: rza2: Fix potential NULL pointer dereference 9c97886f8085 USB: wdm: add annotation 4b0369c53088 USB: wdm: wdm_wwan_port_tx_complete mutex in atomic context 54f7f8978af1 USB: wdm: close race between wdm_open and wdm_wwan_port_stop 8312053acc99 USB: wdm: handle IO errors in wdm_wwan_port_start e455bf315eee USB: VLI disk crashes if LPM is used 097d3c27f871 usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 Flash Drive 57beab8ea4ff usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive 127b6aba32d8 usb: dwc3: xilinx: Prevent spike in reset signal c4d80e41cb42 usb: dwc3: gadget: check that event count does not exceed event buffer length 6a91a198cd30 USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) 23d4bb3b0698 usb: chipidea: ci_hdrc_imx: implement usb_phy_init() error handling 15120673da69 usb: chipidea: ci_hdrc_imx: fix call balance of regulator routines 121e9f80ea54 usb: chipidea: ci_hdrc_imx: fix usbmisc handling 48a62deb857f usb: cdns3: Fix deadlock when using NCM gadget 142273a49f2c usb: xhci: Fix invalid pointer dereference in Etron workaround 01eeddf93a8a USB: serial: simple: add OWON HDS200 series oscilloscope support 51d4b23ae5e6 USB: serial: option: add Sierra Wireless EM9291 c6dc3b71bd4b USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe 3b377f805e97 serial: sifive: lock port in startup()/shutdown() callbacks c2af265beab7 serial: msm: Configure correct working mode before starting earlycon 5d5e8a880c48 misc: microchip: pci1xxxx: Fix incorrect IRQ status handling during ack 62957f58ab3a misc: microchip: pci1xxxx: Fix Kernel panic during IRQ handler registration 5f253cc40e8d char: misc: register chrdev region with all possible minors 3481fd96d801 KVM: x86: Reset IRTE to host control if *new* route isn't postable 9514202882a0 KVM: x86: Explicitly treat routing entry type changes as changes ac0fe095ac21 mei: me: add panther lake H DID 164bc7e26d89 scsi: Improve CDL control 4c2de359b1a2 USB: storage: quirk for ADATA Portable HDD CH94 ff733a91a06b ata: libata-scsi: Fix ata_msense_control_ata_feature() f0a1b054871f ata: libata-scsi: Fix ata_mselect_control_ata_feature() return type f92d5d7134d1 ata: libata-scsi: Improve CDL control 96838eb1836f mcb: fix a double free bug in chameleon_parse_gdd() 406ca74adea0 cxl/core/regs.c: Skip Memory Space Enable check for RCD and RCH Ports ff826d60d9a8 KVM: SVM: Allocate IR data using atomic allocation b675b4c863f1 io_uring: fix 'sync' handling of io_fallback_tw() 20a3f73dd424 LoongArch: Remove a bogus reference to ZONE_DMA 2ca9380b1271 LoongArch: Return NULL from huge_pte_offset() for invalid PMD 2f2803e4b5e4 irqchip/gic-v2m: Prevent use after free of gicv2m_get_fwnode() 3d36fae38312 drm/amd/display: Force full update in gpu reset 253827297c4d drm/amd/display: Fix gpu reset in multidisplay config 689d5be94faa net: phy: microchip: force IRQ polling mode for lan88xx a7b8358eb403 net: selftests: initialize TCP header and skb payload with zero cefd8a2e2de4 xen-netfront: handle NULL returned by xdp_convert_buff_to_frame() 284db2f35b39 crypto: atmel-sha204a - Set hwrng quality to lowest possible ad787442af7b virtio_console: fix missing byte order handling for cols and rows b74fb07153dc LoongArch: Make do_xyz() exception handlers more robust eaa0849818eb LoongArch: Make regs_irqs_disabled() more clear 5767f4ac6428 LoongArch: Select ARCH_USE_MEMTEST cd5970e001f7 perf/x86: Fix non-sampling (counting) events on certain x86 platforms 9e0d94a29222 splice: remove duplicate noinline from pipe_clear_nowait 415f3481ca76 iommu/amd: Return an error if vCPU affinity is set for non-vCPU IRTE 1d7c4b2b0bbf pds_core: make wait_context part of q_info c918ce100d17 pds_core: Remove unnecessary check in pds_client_adminq_cmd() cdd784c96fe2 pds_core: handle unsupported PDS_CORE_CMD_FW_CONTROL result 49083dc3cbb3 net: dsa: mt7530: sync driver-specific behavior of MT7531 variants 76c4c22c2437 net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too 3aa852e36050 net_sched: hfsc: Fix a UAF vulnerability in class handling 4f435c1f4c48 fix a couple of races in MNT_TREE_BENEATH handling by do_move_mount() e9f67da07753 net: ethernet: mtk_eth_soc: net: revise NETSYSv3 hardware configuration dd6cb0a8575b tipc: fix NULL pointer dereference in tipc_mon_reinit_self() 618541a6cc15 net: phy: leds: fix memory leak d5093d6486d7 net: lwtunnel: disable BHs when required 4d6919dd7c69 scsi: core: Clear flags for scsi_cmnd that did not complete 4a1b61f91078 btrfs: avoid page_lockend underflow in btrfs_punch_hole_lock_range() 1845e03ea787 cpufreq: cppc: Fix invalid return value in .get() callback d6979fabe812 scsi: ufs: mcq: Add NULL check in ufshcd_mcq_abort() 19e0eaa62e88 cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() ea834c90aa7c cpufreq: scmi: Fix null-ptr-deref in scmi_cpufreq_get_rate() 1053dcf8a504 cpufreq: apple-soc: Fix null-ptr-deref in apple_soc_cpufreq_get_rate() 92d55d705183 dma/contiguous: avoid warning about unused size_bytes f55e7f8abbd3 ceph: Fix incorrect flush end position calculation d70c078c26c0 cpufreq/sched: Explicitly synchronize limits_changed flag handling ada8d7fa0ad4 sched/cpufreq: Rework schedutil governor performance estimation 7fc781ca938f sched/topology: Consolidate and clean up access to a CPU's max compute capacity 485104cd6353 scsi: ufs: qcom: fix dev reference leaked through of_qcom_ice_get bd2a352a0d72 PCI: Fix reference leak in pci_register_host_bridge() 81435b85b2eb of: resolver: Fix device node refcount leakage in of_resolve_phandles() f549a4d2e029 of: resolver: Simplify of_resolve_phandles() using __free() 9549391bb64b clk: renesas: r9a07g043: Fix HP clock source for RZ/Five 3b6f9b555d5b clk: renesas: r9a07g04[34]: Fix typo for sel_shdi variable d56be1857909 clk: renesas: r9a07g04[34]: Use SEL_SDHI1_STS status configuration for SD1 mux a15ff92d5f06 clk: renesas: rzg2l: Refactor SD mux driver 1b9daac2383e clk: renesas: rzg2l: Remove CPG_SDHI_DSEL from generic header 2e1162149b39 clk: renesas: rzg2l: Add struct clk_hw_data aa487374d7f6 clk: renesas: rzg2l: Use u32 for flag and mux_flags e56acd53a91a arm64: tegra: Remove the Orin NX/Nano suspend key 6f21dfc4fadb iio: adc: ad7768-1: Fix conversion result sign 28aadcb759cf iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check 8df02691d09e ASoC: q6apm-dai: make use of q6apm_get_hw_pointer 175cb0c28aea ASoC: qcom: Fix trivial code style issues 9f5d3022d8ca ASoC: qcom: lpass: Make asoc_qcom_lpass_cpu_platform_remove() return void 0addfbfd605b ASoC: q6apm-dai: schedule all available frames to avoid dsp under-runs 860c028415d9 ASoC: qcom: q6apm-dai: drop unused 'q6apm_dai_rtd' fields 9973c8192e07 net: dsa: mv88e6xxx: fix VTU methods for 6320 family 70d2b16cdd12 net: dsa: mv88e6xxx: fix internal PHYs for 6320 family 83c12c052cf5 auxdisplay: hd44780: Fix an API misuse in hd44780.c ab239a12fdb2 auxdisplay: hd44780: Convert to platform remove callback returning void 880b1c98d1b4 mmc: sdhci-msm: fix dev reference leaked through of_qcom_ice_get d4f5f29c26a1 soc: qcom: ice: introduce devm_of_qcom_ice_get a505075730d2 media: vimc: skip .s_stream() for stopped entities a64a102e01eb media: subdev: Add v4l2_subdev_is_streaming() 2b3dc697a465 media: subdev: Improve v4l2_subdev_enable/disable_streams_fallback beeeea11ee2a media: subdev: Fix use of sd->enabled_streams in call_s_stream() 4d11fac941d8 tracing: Verify event formats that have "%*p.." e13358c4884d tracing: Add __print_dynamic_array() helper 896e30f76840 tracing: Add __string_len() example 5724654a084f x86/mce: use is_copy_from_user() to determine copy-from-user context 415620362062 x86/extable: Remove unused fixup type EX_TYPE_COPY 247395cbec42 module: sign with sha512 instead of sha1 by default 6a5b2ed82152 ARM: dts: am335x-bone-common: Increase MDIO reset deassert time ceb5fadbf450 Revert "v6.6 -stable -rt merge fixup" 1c2962a164ff v6.6 -stable -rt merge fixup 18abb2787b53 x86/syscall: Mark exit[_group] syscall handlers __noreturn 2879d995e569 pnmtologo: sync with 6.6 43ea1c5e6eb3 lib/build_OID_registry: take -stable reproducibility changes 35046aea43c8 bpftool: Fix undefined bpf macro for unix socket 9a558d4b8621 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e503 bpftool: Query only cgroup-related attach types f71bb11887ba cpu/amd: inhibit SMP check for qemux86 c31365597a17 powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d kselftest: Add a ksft_perror() helper 06644f0d7193 drm/tilcdc: Set preferred depth ff7ae7b32324 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701 x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c79 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6 qemux86: add configuration symbol to select values 630c33229e6d sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6 clear_warn_once: add a clear_warn_once= boot parameter 46934791b902 clear_warn_once: bind a timer to written reset value cdee9e38ff32 clear_warn_once: expand debugfs to include read support 82b562b81841 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b libbpf: Fix build warning on ref_ctr_off 9e3e1fe20982 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65 perf: x86-32: explicitly include <errno.h> 7b57ddd89565 perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7 perf: fix bench numa compilation 98bc2815fade perf: add SLANG_INC for slang.h 17209a70b9b3 perf: add sgidefs.h to for mips builds 9cd4258d910a perf: change --root to --prefix for python install 8110a4f26628 perf: add 'libperl not found' warning bc89d5e08f77 perf: force include of <stdbool.h> 4f6c760cc876 fat: Replace prandom_u32() with get_random_u32() bc53117b12b2 fat: don't use obsolete random32 call in namei_vfat 30b2236ab378 FAT: Added FAT_NO_83NAME cef98d22b4ed FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084 aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf2 aufs6: fix magic.mk include path 35266bc2dc81 aufs6: adapt to v6.6 8edede4e98be aufs6: core 712248233ebe aufs6: standalone 3b71a8a848d8 aufs6: mmap 3e2924871f37 aufs6: base 7f4907a93101 aufs6: kbuild d2f7b03e4aa7 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa0 yaffs2: v6.5 fixups cc615704b5f5 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf91 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d3 yaffs2: replace bdevname call with sprintf 395b01cdc39d yaffs2: convert read_page -> readfolio d98b07e43ba6 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090 yaffs: include blkdev.h dbd44252cd59 yaffs: fix misplaced variable declaration c223a10b1ac0 yaffs2: v5.6 build fixups 90f6007cfbf4 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea1 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6 yaffs: repair yaffs_get_mtd_device fb98f65a466a yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea2 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0 yaffs: Avoid setting any ACL releated xattr ff4130a9c376 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67c fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba9056 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4 yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8 initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4 pnmtologo: use relocatable file name 664a6a0a484b tools: use basename to identify file in gen-mach-types 9de64bc0c185 lib/build_OID_registry: fix reproducibility issues ae9b80797295 vt/conmakehash: improve reproducibility a972323151bd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc0198 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b19 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffc defconfigs: drop obselete options 00fe4152df31 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf linux-yocto: Handle /bin/awk issues 3d55d299f23a uvesafb: provide option to specify timeout for task completion 23c068c080be uvesafb: print error message when task timeout occurs edbfc939266e compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19a vmware: include jiffies.h 572d84d928c8 Resolve jiffies wrapping about arp fdcd47cac843 nfs: Allow default io size to be configured. 927d48801098 check console device file on fs when booting 57cc27f821dd mount_root: clarify error messages for when no rootfs found 1b53d82a8152 mconf: fix output of cflags and libraries 1811da09f42c menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f modpost: mask trivial warnings 6de673039484 kbuild: exclude meta directory from distclean processing 6decd32815f5 powerpc: serialize image targets f6b683b38318 arm: serialize build targets e798b09ebf57 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f8 x86_64_defconfig: Fix warnings 68491e5f72b6 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce3004 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b1 powerpc: kexec fix for powerpc64 da6871c62c37 powerpc: Add unwind information for SPE registers of E500 core f161c880c11d mips: make current_cpu_data preempt safe 5e94a8247ce7 mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7 mips: Kconfig: add QEMUMIPS64 option e2e537db3cbd 4kc cache tlb hazard: tlbp cache coherency aee9870611e5 malta uhci quirks: make allowance for slow 4k(e)c 881948cd1517 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7 arm64: defconfig: cleanup config options f1727c537ba8 vexpress: Pass LOADADDR to Makefile 4474c32dc24a arm: ARM EABI socketcall 75e31a2b70fd ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Bruce Ashfield [Thu, 29 May 2025 16:57:50 +0000 (12:57 -0400)]
linux-yocto/6.6: update to v6.6.87
Updating linux-yocto/6.6 to the latest korg -stable release that comprises
the following commits:
:ddddddddddddddddddddddddddddddddddddddddddddd bbbbbbbbbbbbbbbbbbbbbb 814637ca257f Linux 6.6.87 47ee832819f4 tracing: Do not use PERF enums when perf is not defined 661f09d39a59 NFSD: Skip sending CB_RECALL_ANY when the backchannel isn't up 9a81cde8c7ce nfsd: put dl_stid if fail to queue dl_recall 15483afb930f media: streamzap: fix race between device disconnection and urb callback 753a620a7f8e exec: fix the racy usage of fs_struct->in_exec 72a3b5c3d16e jfs: add index corruption check to DT_GETPAGE() a8c31808925b jfs: fix slab-out-of-bounds read in ea_get() 52a5509ab19a ext4: fix OOB read when checking dotdot dir d12a6016281a ext4: don't over-report free space or inodes in statvfs 617a4b0084a5 arm64: Don't call NULL in do_compat_alignment_fixup() 77029c613fac tracing/osnoise: Fix possible recursive locking for cpus_read_lock() fad52c9ae5bd tracing: Fix synth event printk format for str fields fc128e85cfc4 tracing: Ensure module defining synth event cannot be unloaded while tracing 099ef3385800 tracing: Fix use-after-free in print_graph_function_flags during tracer switching 0e36a3e080d6 ksmbd: validate zero num_subauth before sub_auth is accessed 3980770cb147 ksmbd: fix session use-after-free in multichannel connection a8a8ae303a83 ksmbd: fix use-after-free in ksmbd_sessions_deregister() 60b7207893a8 ksmbd: add bounds check for create lease context 8d4848c45943 ksmbd: add bounds check for durable handle context 68d64f7329a5 mmc: sdhci-omap: Disable MMC_CAP_AGGRESSIVE_PM for eMMC/SD d8d7b50586ec mmc: sdhci-pxav3: set NEED_RSP_BUSY capability 261f51775ef5 mmc: omap: Fix memory leak in mmc_omap_new_slot 90bcdefe220a ACPI: resource: Skip IRQ override on ASUS Vivobook 14 X1404VAP c90402d2a226 acpi: nfit: fix narrowing conversion in acpi_nfit_ctl 7085895c59e4 x86/mm: Fix flush_tlb_range() when used for zapping normal PMDs e329d137b076 x86/tsc: Always save/restore TSC sched_clock() on suspend/resume 67e4ca7ddc67 btrfs: handle errors from btrfs_dec_ref() properly 99ddb9c58511 kunit/overflow: Fix UB in overflow_allocation_test e7f6922c8a5b perf/x86/intel: Avoid disable PMU if !cpuc->enabled in sample read 79159fbd13f6 perf/x86/intel: Apply static call for drain_pebs 2e6df032a0b6 ntb_perf: Delete duplicate dmaengine_unmap_put() call in perf_copy_chunk() 3820d20d51fd platform/x86: ISST: Correct command storage data length b1a673850c58 ACPI: x86: Extend Lenovo Yoga Tab 3 quirk with skip GPIO event-handlers 763f4d638f71 x86/microcode/AMD: Fix __apply_microcode_amd()'s return value 10edc4cecad4 x86/hyperv: Fix check of return value from snp_set_vmsa() 7cf8fe2b2bcc LoongArch: BPF: Use move_addr() for BPF_PSEUDO_FUNC 7df2696256a0 LoongArch: BPF: Don't override subprog's return value b3ffad2f02db LoongArch: BPF: Fix off-by-one error in build_prologue() 279ec25c2df4 LoongArch: Increase ARCH_DMA_MINALIGN up to 16 acacd48a37b5 usbnet:fix NPE during rx_complete 032c5407a608 drm/amd/display: Check link_index before accessing dc->links[] 41a2c7abc339 tracing: Correct the refcount if the hist/hist_debug file fails to open d24e5e631849 tracing/hist: Support POLLPRI event for poll on histogram 13edaf997904 tracing/hist: Add poll(POLLIN) support on hist file 77b7dbd3420e tracing: Switch trace_events_hist.c code over to use guard() f568fbe8c603 tracing: Allow creating instances with specified system events 1913adb58b84 perf/core: Fix child_total_time_enabled accounting bug at task exit 40316f29b043 drm/amdgpu/gfx11: fix num_mec 1e458c292f4c net: ibmveth: make veth_pool_store stop hanging ececf8eff6c2 arcnet: Add NULL check in com20020pci_probe() fa2f9fc35f56 ipv6: Do not consider link down nexthops in path selection 21f678f672dc ipv6: Start path selection from the first nexthop 5a2976cc4d9c net: fix geneve_opt length integer overflow 0ae509b075b2 net: dsa: mv88e6xxx: propperly shutdown PPU re-enable timer on destroy fbab7bbf7204 ipv6: fix omitted netlink attributes when using RTEXT_FILTER_SKIP_STATS 28d88ee1e1cc netfilter: nft_tunnel: fix geneve_opt type confusion addition ccc331fd5bca net: decrease cached dst counters in dst_release 858695324644 tunnels: Accept PACKET_HOST in skb_tunnel_check_pmtu(). b0a1055e0a9e vsock: avoid timeout during connect() if the socket is closing aeef6456692c udp: Fix memory accounting leak. 5b0ae1723a7d net: mvpp2: Prevent parser TCAM memory corruption 864ca690ff13 net_sched: skbprio: Remove overly strict queue assertions 1927d0bcd5b8 netlabel: Fix NULL pointer exception caused by CALIPSO on IPv4 sockets 6134d1ea1e14 netfilter: nf_tables: don't unregister hook when table is dormant 073b04796c07 netfilter: nft_set_hash: GC reaps elements with conncount for dynamic sets only aff1860507ea e1000e: change k1 configuration on MTP and later platforms e283a5bf4337 ASoC: imx-card: Add NULL check in imx_card_probe() 8db65e4432b2 riscv: Fix hugetlb retrieval of number of ptes in case of !present pte 992678427eff ASoC: codecs: rt5665: Fix some error handling paths in rt5665_probe() a59594c370cd x86/uaccess: Improve performance by aligning writes to 8 bytes in copy_user_generic(), on non-FSRM/ERMS CPUs f7a53d32cc60 RISC-V: errata: Use medany for relocatable builds b52e13bfd69c ALSA: hda/realtek: Fix built-in mic breakage on ASUS VivoBook X515JA c37616f1521d firmware: cs_dsp: Ensure cs_dsp_load[_coeff]() returns 0 on success 830169a5ceeb ntb: intel: Fix using link status DB's c61a3f2df162 ntb_hw_switchtec: Fix shift-out-of-bounds in switchtec_ntb_mw_set_trans 2174fa133dcc riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra 239ea3c34673 spufs: fix a leak in spufs_create_context() 324f280806aa spufs: fix gang directory lifetimes 90d1b276d1b1 spufs: fix a leak on spufs_new_file() failure 6e75137ac8de hwmon: (nct6775-core) Fix out of bounds access for NCT679{8,9} aaf534ad0720 memory: omap-gpmc: drop no compatible check 68adc6f17a36 can: statistics: use atomic access in hot path 2a435a8cb891 ALSA: hda/realtek: Add mute LED quirk for HP Pavilion x360 14-dy1xxx 05413508bc35 drm/amd: Keep display off while going into S4 5272e986ea96 nvme-pci: fix stuck reset on concurrent DPC and HP d276f4050067 x86/sgx: Warn explicitly if X86_FEATURE_SGX_LC is not enabled 83fa62a06e40 x86/hyperv: Fix output argument to hypercall that changes page visibility e7d8c5703238 locking/semaphore: Use wake_q to wake up processes outside lock critical section e87b8f209cb2 wifi: mac80211: flush the station before moving it to UN-AUTHORIZED state c0863207c012 x86/hyperv/vtl: Stop kernel from probing VTL0 low memory 0ada80483275 sched/deadline: Use online cpus for validating runtime 264f9a797c18 ALSA: hda/realtek: Add support for ASUS Zenbook UM3406KA Laptops using CS35L41 HDA b9fa3901b612 ALSA: hda/realtek: Add support for ASUS ROG Strix G614 Laptops using CS35L41 HDA 4c8865331899 HID: i2c-hid: improve i2c_hid_get_report error message 64f974466183 platform/x86/intel/vsec: Add Diamond Rapids support 84d6da6738ba platform/x86: intel-hid: fix volume buttons on Microsoft Surface Go 4 tablet fa19b53716f9 cifs: fix incorrect validation for num_aces field of smb_acl 68ee6f71a2a9 perf/core: Fix perf_pmu_register() vs. perf_init_event() 11e2ae4fe025 ALSA: hda: Fix speakers on ASUS EXPERTBOOK P5405CSA 1.0 fc424138592a ALSA: hda/realtek: Fix Asus Z13 2025 audio 54fd5a5b7583 affs: don't write overlarge OFS data block size fields 9fcab9c72142 affs: generate OFS sequence numbers starting at 1 ec7315e68d88 wifi: brcmfmac: keep power during suspend if board requires it d9189555fbe5 nvme-pci: skip CMB blocks incompatible with PCI P2P DMA a74dad107e52 nvme-pci: clean up CMBMSC when registering CMB fails 9ca8c6f6a227 nvme-tcp: fix possible UAF in nvme_tcp_poll 60856e6cdb3e wifi: iwlwifi: mvm: use the right version of the rate API aadb8a9a90c0 wifi: iwlwifi: fw: allocate chained SG tables for dump a3160e7f6d90 rcu-tasks: Always inline rcu_irq_work_resched() 0a0813d1277e context_tracking: Always inline ct_{nmi,irq}_{enter,exit}() 698243234d63 sched/smt: Always inline sched_smt_active() 7ae00d2903ee objtool: Fix verbose disassembly if CROSS_COMPILE isn't set 08796bd2389a octeontx2-af: Free NIX_AF_INT_VEC_GEN irq aa042c453227 octeontx2-af: Fix mbox INTR handler when num VFs > 64 f9b61f837eb7 ACPI: processor: idle: Return an error if both P_LVL{2,3} idle states are invalid d32f20470c9e LoongArch: Rework the arch_kgdb_breakpoint() implementation 37319d6d8540 LoongArch: Fix help text of CMDLINE_EXTEND in Kconfig 8f77c286d5e0 objtool: Fix segfault in ignore_unreachable_insn() de37b82be68d ring-buffer: Fix bytes_dropped calculation issue 17e3c520aeef net/mlx5e: SHAMPO, Make reserved size independent of page size 4790bcb269e5 ksmbd: fix r_count dec/increment mismatch a32086cc6444 ksmbd: fix multichannel connection failure 1de7fec4d301 ksmbd: use aead_request_free to match aead_request_alloc 8857aadaecef rndis_host: Flag RNDIS modems as WWAN devices 15f150771e0e rtnetlink: Allocate vfinfo size for VF GUIDs when supported af089264d108 exfat: fix the infinite loop in exfat_find_last_cluster() c6b6b8dcef4a smb: client: Fix netns refcount imbalance causing leaks and use-after-free d7ca0969bf87 NFS: Shut down the nfs_client only after all the superblocks 75b42dfe8765 objtool, media: dib8000: Prevent divide-by-zero in dib8000_set_dds() f2dc3c3b1b85 perf tools: annotate asm_pure_loop.S e6fe7f82f3b9 fs/procfs: fix the comment above proc_pid_wchan() 0a3bf3bc3444 tty: n_tty: use uint for space returned by tty_write_room() 357c1a3deb1f staging: rtl8723bs: select CONFIG_CRYPTO_LIB_AES 769a0f187ba2 perf python: Check if there is space to copy all the event 88f5dd0002f4 perf python: Don't keep a raw_data pointer to consumed ring buffer space 6bc0c3e7582c perf python: Decrement the refcount of just created event on failure b8e2e2cfa319 perf python: Fixup description of sample.id event member 9c764db1794e i3c: master: svc: Fix missing the IBI rules 4ee8160c47e0 um: hostfs: avoid issues on inode number reuse by host c9a6cf3fe680 um: remove copy_from_kernel_nofault_allowed 5e06e6412a73 selftests/mm/cow: fix the incorrect error handling db75d49a4107 fuse: fix dax truncate/punch_hole fault path 4e2a03d766f1 NFSv4: Don't trigger uneccessary scans for return-on-close delegations d03ce46090f6 arch/powerpc: drop GENERIC_PTDUMP from mpc885_ads_defconfig 3d012ba4404a ocfs2: validate l_tree_depth to avoid out-of-bounds access 8c69e83028bf kexec: initialize ELF lowest address to ULONG_MAX 4159cb408f8c kernel/events/uprobes: handle device-exclusive entries correctly in __replace_page() fa55abb99de9 perf units: Fix insufficient array space 8a832ed0f6d6 perf evlist: Add success path to evlist__create_syswide_maps 1f562f8efa72 iio: adc: ad7124: Fix comparison of channel configs a2ae5afa0837 iio: adc: ad4130: Fix comparison of channel setups cb7687e37735 dmaengine: fsl-edma: cleanup chan after dma_async_device_unregister f6d44b1aa46d fs/ntfs3: Prevent integer overflow in hdr_first_de() 0dfe700fbd35 fs/ntfs3: Fix a couple integer overflows on 32bit systems 0566a11d5e65 usb: xhci: correct debug message page size calculation fe2ada4ed436 perf bench: Fix perf bench syscall loop count 31ebc5701a82 perf arm-spe: Fix load-store operation checking d3f0bad2c43e iio: accel: msa311: Fix failure to release runtime pm if direct mode claim fails. 2d8c171e6212 iio: accel: mma8452: Ensure error return on failure to matching oversampling ratio 1287c788f33b ucsi_ccg: Don't show failed to get FW build information error d2b1ee18c1d3 perf pmu: Don't double count common sysfs and json events a8b3879b2e3b coresight-etm4x: add isb() before reading the TRCSTATR 2b34bdc42df0 vhost-scsi: Fix handling of multiple calls to vhost_scsi_set_endpoint 01592ce19138 coresight: catu: Fix number of pages while using 64k pages b302c4d3f42a soundwire: slave: fix an OF node reference leak in soundwire slave device 98fa452d0cf2 isofs: fix KMSAN uninit-value bug in do_isofs_readdir() 6258b8ac583b perf stat: Fix find_stat for mixed legacy/non-legacy events a7bae9f76636 clk: qcom: mmcc-sdm660: fix stuck video_subcore0 clock f2176ab4b30f pinctrl: intel: Fix wrong bypass assignment in intel_pinctrl_probe_pwm() 75f095daf623 crypto: hisilicon/sec2 - fix for aead auth key length b6fc1fdd3e71 x86/dumpstack: Fix inaccurate unwinding from exception stacks due to misplaced assignment 966fdfc45373 leds: Fix LED_OFF brightness race d6f517e8d866 mfd: sm501: Switch to BIT() to mitigate integer overflows 7d8e0ac233d7 pinctrl: renesas: rzv2m: Fix missing of_node_put() call 7c51a6964b45 RDMA/mlx5: Fix mlx5_poll_one() cur_qp update flow c4db297e8896 crypto: nx - Fix uninitialised hv_nxc on error a278a4164bde power: supply: max77693: Fix wrong conversion of charge input threshold value 02586692acdb x86/entry: Fix ORC unwinder for PUSH_REGS with save_ret=1 3d39022704e0 clk: amlogic: g12a: fix mmc A peripheral clock c6f63ae9b51b clk: clk-imx8mp-audiomix: fix dsp/ocram_a clock parents 48e5f4fdadd7 selftests/bpf: Select NUMA_NO_NODE to create map 7061afacc89d clk: amlogic: gxbb: drop non existing 32k clock parent b36254e8f865 clk: amlogic: g12b: fix cluster A parent data 4dc225623804 pinctrl: tegra: Set SFIO mode to Mux Register 5fa3bfd3d025 IB/mad: Check available slots before posting receive WRs 1b2641d16167 remoteproc: qcom_q6v5_mss: Handle platforms with one power domain 667a628ab67d RDMA/erdma: Prevent use-after-free in erdma_accept_newconn() 68438629de34 RDMA/mlx5: Fix calculation of total invalidated pages 0cf80f924aec RDMA/core: Don't expose hw_counters outside of init net namespace 02527e62d7ee clk: rockchip: rk3328: fix wrong clk_ref_usb3otg parent 622d52c99a91 pinctrl: renesas: rzg2l: Fix missing of_node_put() call 182ae87e1435 pinctrl: renesas: rza2: Fix missing of_node_put() call 77461377d3be lib: 842: Improve error handling in sw842_compress() 43681d603ff0 bpf: Use preempt_count() directly in bpf_send_signal_common() 8e3e21129cfe remoteproc: qcom_q6v5_pas: Use resource with CX PD for MSM8226 b32da6cf9d4e RDMA/mana_ib: Ensure variable err is initialized db6f0b88d772 clk: qcom: gcc-msm8953: fix stuck venus0_core0 clock 4d29a6dcb51e clk: samsung: Fix UBSAN panic in samsung_clk_init() b07398e8a5da x86/mm/pat: Fix VM_PAT handling when fork() fails in copy_page_range() 22280deb312f selftests/bpf: Fix string read in strncmp benchmark b55c47027511 libbpf: Fix hypothetical STT_SECTION extern NULL deref case 5db897802c39 remoteproc: qcom_q6v5_pas: Make single-PD handling more robust ba1a885c9012 of: property: Increase NR_FWNODE_REFERENCE_ARGS 7c6bb82a6f3d remoteproc: core: Clear table_sz when rproc_shutdown 8594bbffc266 crypto: hisilicon/sec2 - fix for sec spec check 0aafd0ec5101 crypto: hisilicon/sec2 - fix for aead authsize alignment 2ff09de2c8ff clk: amlogic: gxbb: drop incorrect flag on 32k clock ce88afbc0934 fbdev: sm501fb: Add some geometry checks. 6ed70f3dc68f mdacon: rework dependency list 88ebc63d6a67 fbdev: au1100fb: Move a variable assignment behind a null pointer check f6c1a08e9163 PCI: pciehp: Don't enable HPIE when resuming in poll mode cbcb02cc0e2f PCI: histb: Fix an error handling path in histb_pcie_probe() b3a93a2407ad drm/amd/display: avoid NPD when ASIC does not support DMUB 390304035b32 drm/mediatek: dsi: fix error codes in mtk_dsi_host_transfer() 13ec849fd2ea drm/mediatek: dp: drm_err => dev_err in HPD path to avoid NULL ptr 48b5e31bc354 PCI: xilinx-cpm: Fix IRQ domain leak in error path of probe 745783303c41 PCI: Remove stray put_device() in pci_register_host_bridge() d5563f120575 drm/amd/display: fix type mismatch in CalculateDynamicMetadataParameters() 431f51068a0c PCI: Avoid reset when disabled via sysfs 0aad0d291690 PCI/portdrv: Only disable pciehp interrupts early when needed eeeac24b42e6 PCI: brcmstb: Fix potential premature regulator disabling eedd05483493 PCI: brcmstb: Fix error path after a call to regulator_bulk_get() 8b2853fd6ef8 PCI: brcmstb: Use internal register to change link capability 17a37367d032 PCI: cadence-ep: Fix the driver to send MSG TLP for INTx without data payload 0f88894aa628 drm/amdkfd: Fix Circular Locking Dependency in 'svm_range_cpu_invalidate_pagetables' a984e6108c9c drm/msm/dsi: Set PHY usescase (and mode) before registering DSI host 7570e5693092 drm/msm/dsi: Use existing per-interface slice count in DSC timing 45e03341d2b1 drm/msm/dpu: don't use active in atomic_check() 8b930ddc2044 PCI/ASPM: Fix link state exit during switch upstream function removal 9c44e29cfd76 drm/mediatek: mtk_hdmi: Fix typo for aud_sampe_size member 34c1720a3830 drm/mediatek: mtk_hdmi: Unregister audio platform device on failure 347641b02fbe PCI: Use downstream bridges for distributing resources 561fc0c5cf41 drm/vkms: Fix use after free and double free on init error e2b310717382 drm: xlnx: zynqmp: Fix max dma segment size d360c02cdedb drm/bridge: it6505: fix HDCP V match check is not performed correctly c3b8e7c6809a drm/dp_mst: Fix drm RAD print 8830a2a324c4 drm/bridge: ti-sn65dsi86: Fix multiple instances 1b5f3dc474cb ASoC: ti: j721e-evm: Fix clock configuration for ti,j7200-cpb-audio compatible a589f15d4014 ALSA: hda/realtek: Always honor no_shutup_pins f8e2e91bae08 dt-bindings: vendor-prefixes: add GOcontroll ba65e56f717a HID: remove superfluous (and wrong) Makefile entry for CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER 20bbf66ab4e2 ASoC: cs35l41: check the return value from spi_setup() 756945c13fbb platform/x86: dell-ddv: Fix temperature calculation 693b38ee7c2f media: platform: allgro-dvt: unregister v4l2_device on the error path 57e257d9744c media: verisilicon: HEVC: Initialize start_bit field 63a0b0d052b3 x86/fpu/xstate: Fix inconsistencies in guest FPU xfeatures 4c94efdc5140 x86/traps: Make exc_double_fault() consistently noreturn 36aee8100e8b perf/ring_buffer: Allow the EPOLLRDNORM flag for poll 477b6882f18b lockdep: Don't disable interrupts on RT in disable_irq_nosync_lockdep.*() 01c5ab292477 PM: sleep: Fix handling devices with direct_complete set on errors ac2eb7378319 thermal: int340x: Add NULL check for adev 12c5e76acf55 EDAC/ie31200: Fix the error path order of ie31200_init() 9ca0c34ac1f5 EDAC/ie31200: Fix the DIMM size mask for several SoCs a26d5a100ae0 EDAC/ie31200: Fix the size of EDAC_MC_LAYER_CHIP_SELECT layer 06ca76e7e353 selinux: Chain up tool resolving errors in install_policy.sh b9ad6385ca4d RISC-V: KVM: Disable the kernel perf counter during configure 3c64a5bacb6b PM: sleep: Adjust check before setting power.must_resume 913b739cd2bf lockdep/mm: Fix might_fault() lockdep check of current->mm->mmap_lock 71fc439af51a x86/sev: Add missing RIP_REL_REF() invocations during sme_enable() 7c376f91f2e1 x86/platform: Only allow CONFIG_EISA for 32-bit 2541b0d1ced5 x86/fpu: Avoid copying dynamic FP state from init_task in arch_dup_task_struct() b58c6545db04 x86/fpu: Fix guest FPU state buffer allocation size f2d51d45a507 EDAC/{skx_common,i10nm}: Fix some missing error reports on Emerald Rapids 62173b2fc2ed cpufreq: governor: Fix negative 'idle_time' handling in dbs_update() f7a1e1c2d6de smack: dont compile ipv6 code unless ipv6 is configured e4b3585ad908 cpufreq: scpi: compare kHz instead of Hz b8db5776f042 x86/mm/pat: cpa-test: fix length for CPA_ARRAY test 6dafa2776418 watch_queue: fix pipe accounting mismatch 6a5b2ed82152 ARM: dts: am335x-bone-common: Increase MDIO reset deassert time ceb5fadbf450 Revert "v6.6 -stable -rt merge fixup" 1c2962a164ff v6.6 -stable -rt merge fixup 18abb2787b53 x86/syscall: Mark exit[_group] syscall handlers __noreturn 2879d995e569 pnmtologo: sync with 6.6 43ea1c5e6eb3 lib/build_OID_registry: take -stable reproducibility changes 35046aea43c8 bpftool: Fix undefined bpf macro for unix socket 9a558d4b8621 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e503 bpftool: Query only cgroup-related attach types f71bb11887ba cpu/amd: inhibit SMP check for qemux86 c31365597a17 powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d kselftest: Add a ksft_perror() helper 06644f0d7193 drm/tilcdc: Set preferred depth ff7ae7b32324 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701 x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c79 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6 qemux86: add configuration symbol to select values 630c33229e6d sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6 clear_warn_once: add a clear_warn_once= boot parameter 46934791b902 clear_warn_once: bind a timer to written reset value cdee9e38ff32 clear_warn_once: expand debugfs to include read support 82b562b81841 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b libbpf: Fix build warning on ref_ctr_off 9e3e1fe20982 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65 perf: x86-32: explicitly include <errno.h> 7b57ddd89565 perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7 perf: fix bench numa compilation 98bc2815fade perf: add SLANG_INC for slang.h 17209a70b9b3 perf: add sgidefs.h to for mips builds 9cd4258d910a perf: change --root to --prefix for python install 8110a4f26628 perf: add 'libperl not found' warning bc89d5e08f77 perf: force include of <stdbool.h> 4f6c760cc876 fat: Replace prandom_u32() with get_random_u32() bc53117b12b2 fat: don't use obsolete random32 call in namei_vfat 30b2236ab378 FAT: Added FAT_NO_83NAME cef98d22b4ed FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084 aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf2 aufs6: fix magic.mk include path 35266bc2dc81 aufs6: adapt to v6.6 8edede4e98be aufs6: core 712248233ebe aufs6: standalone 3b71a8a848d8 aufs6: mmap 3e2924871f37 aufs6: base 7f4907a93101 aufs6: kbuild d2f7b03e4aa7 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa0 yaffs2: v6.5 fixups cc615704b5f5 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf91 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d3 yaffs2: replace bdevname call with sprintf 395b01cdc39d yaffs2: convert read_page -> readfolio d98b07e43ba6 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090 yaffs: include blkdev.h dbd44252cd59 yaffs: fix misplaced variable declaration c223a10b1ac0 yaffs2: v5.6 build fixups 90f6007cfbf4 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea1 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6 yaffs: repair yaffs_get_mtd_device fb98f65a466a yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea2 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0 yaffs: Avoid setting any ACL releated xattr ff4130a9c376 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67c fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba9056 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4 yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8 initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4 pnmtologo: use relocatable file name 664a6a0a484b tools: use basename to identify file in gen-mach-types 9de64bc0c185 lib/build_OID_registry: fix reproducibility issues ae9b80797295 vt/conmakehash: improve reproducibility a972323151bd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc0198 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b19 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffc defconfigs: drop obselete options 00fe4152df31 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf linux-yocto: Handle /bin/awk issues 3d55d299f23a uvesafb: provide option to specify timeout for task completion 23c068c080be uvesafb: print error message when task timeout occurs edbfc939266e compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19a vmware: include jiffies.h 572d84d928c8 Resolve jiffies wrapping about arp fdcd47cac843 nfs: Allow default io size to be configured. 927d48801098 check console device file on fs when booting 57cc27f821dd mount_root: clarify error messages for when no rootfs found 1b53d82a8152 mconf: fix output of cflags and libraries 1811da09f42c menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f modpost: mask trivial warnings 6de673039484 kbuild: exclude meta directory from distclean processing 6decd32815f5 powerpc: serialize image targets f6b683b38318 arm: serialize build targets e798b09ebf57 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f8 x86_64_defconfig: Fix warnings 68491e5f72b6 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce3004 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b1 powerpc: kexec fix for powerpc64 da6871c62c37 powerpc: Add unwind information for SPE registers of E500 core f161c880c11d mips: make current_cpu_data preempt safe 5e94a8247ce7 mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7 mips: Kconfig: add QEMUMIPS64 option e2e537db3cbd 4kc cache tlb hazard: tlbp cache coherency aee9870611e5 malta uhci quirks: make allowance for slow 4k(e)c 881948cd1517 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7 arm64: defconfig: cleanup config options f1727c537ba8 vexpress: Pass LOADADDR to Makefile 4474c32dc24a arm: ARM EABI socketcall 75e31a2b70fd ARM: LPAE: Invalidate the TLB for module addresses during translation fault
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>