Pick commit mentioned in NVD report.
(From OE-Core rev: af4a1f0140fc7739b1bd6e39be1df28681628312)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is fixed in v4.7.0, however cve_check cannot match it as NVD says
"Up to (excluding) 2024-08-11".
(From OE-Core rev: 17a71c67a8a9242e5ae8985a9ebcc51bfa112c3d)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Pick commit mentioned in NVD report
(From OE-Core rev: 09a9653c51ac3eae545deeaa004fbbff8c00c827)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Pick commit mentioned in NVD report.
(From OE-Core rev: cd732eb0cf1f4dc4fbfd64c7cc67125736480b37)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This issue is specific to the peimage module that Ubuntu add, and is not
an upstream issue.
(From OE-Core rev: 8d2fe3f403e6435e1ffe122a6776381090752d8a)
(From OE-Core rev: 37c224f51817a948f2558f78eec23a3b1df1cb24)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
As per the linked ticket, this issue is related to an Ubuntu-specific
patch that we don't have.
(From OE-Core rev: dc81fdc6bdf8ab39b7f2fd994d50256430c36558)
(From OE-Core rev: 72e63e44a0c6ad5a408c4dc59a24288c36463439)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
These CVEs were fixed in last upgrade.
See commit message for 340b182d5fc972175f1d2a89127f807073c10255
(From OE-Core rev: 20dd654a8e66ffb1cac97958547f54a52ebd587d)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This patch is taken from the upstream bug, and is used by Apple in their
build of WebKit.
(From OE-Core rev: 2fd2384df66dc41b12d6fa481fbc2814141c54d1)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 19122ccb05282e9b8803c4d1aaf06b61c22a1bab)
Signed-off-by: Jeroen Hofstee <jhofstee@victronenergy.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
curl's websocket code did not update the 32 bit mask pattern
for each new outgoing frame as the specification says. Instead
it used a fixed mask that persisted and was used throughout
the entire connection.
A predictable mask pattern allows for a malicious server to induce
traffic between the two communicating parties that could be
interpreted by an involved proxy (configured or transparent) as
genuine, real, HTTP traffic with content and thereby poison its
cache. That cached poisoned content could then be served to all
users of that proxy.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2025-10148
Upstream patch:
https://github.com/curl/curl/commit/84db7a9eae8468c0445b15aa806fa
(From OE-Core rev: 83420a408551688ebb298b88b16d2e384e9b7bfd)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
1, A cookie is set using the secure keyword for https://target
2, curl is redirected to or otherwise made to speak with http://target
(same hostname, but using clear text HTTP) using the same cookie set
3, The same cookie name is set - but with just a slash as path (path="/").
Since this site is not secure, the cookie should just be ignored.
4, A bug in the path comparison logic makes curl read outside a heap buffer boundary
The bug either causes a crash or it potentially makes the comparison come to
the wrong conclusion and lets the clear-text site override the contents of
the secure cookie, contrary to expectations and depending on the memory contents
immediately following the single-byte allocation that holds the path.
The presumed and correct behavior would be to plainly ignore the second set of
the cookie since it was already set as secure on a secure host so overriding
it on an insecure host should not be okay.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2025-9086
Upstream patch:
https://github.com/curl/curl/commit/c6ae07c6a541e0e96d0040afb6
(From OE-Core rev: 95ab3c3e3745e7e0ca74760683e42ae7531b4199)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
We encountered an issue when running python scripts provided by
python3-fail2ban. The shebang '#!/usr/bin/env python3' was replaced by
'#!python', which caused these scripts to fail to run.
For example:
$ head -n 1 /usr/bin/fail2ban-testcases
#!python
$ /usr/bin/fail2ban-testcases
-sh: /usr/bin/fail2ban-testcases: cannot execute: required file not found
This issue was introduced by commit[1] in python3-setuptools 75.3.2. See
the upstream issue report[2] for more information.
Backport patches from [3] to fix this issue.
[1] c71266345c
[2] https://github.com/pypa/setuptools/issues/4934
[3] https://github.com/pypa/distutils/pull/358
(From OE-Core rev: d728ec95291f05cbfb436eabe8717ebe9a0dc11d)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Needed for multiprocessing module in bb used in the next commit.
It was added to bitbake in 62be9113d98fccb347c6aa0a10d5c4ee2857f8b6
which was backported to 2.12 branch and tagged as 2.12.1
(From OE-Core rev: fcfc3056b0b8d0c63fddd0a7624622aee9a1c2f1)
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
no ids found, dumping:
f6cf124428f51 Linux 6.12.47
766424cef1e6b x86/vmscape: Add old Intel CPUs to affected list
8d675611b96a6 x86/vmscape: Warn when STIBP is disabled with SMT
28504e31029b1 x86/bugs: Move cpu_bugs_smt_update() down
459274c77b37a x86/vmscape: Enable the mitigation
d7ddc93392e4a x86/vmscape: Add conditional IBPB mitigation
7c62c442b6eb9 x86/vmscape: Enumerate VMSCAPE bug
4c6fbb4dba3fc Documentation/hw-vuln: Add VMSCAPE documentation
d497f0738df95 Linux 6.12.46
cf3c7fd1c466b dmaengine: mediatek: Fix a flag reuse error in mtk_cqdma_tx_status()
fd0333fe3cb17 md/raid1: fix data lost for writemostly rdev
8352fdfc04db3 riscv, bpf: use lw when reading int cpu in bpf_get_smp_processor_id
1a1e84c284169 riscv, bpf: use lw when reading int cpu in BPF_MOV64_PERCPU_REG
fecd903917861 riscv: use lw when reading int cpu in asm_per_cpu
8d164de928aa3 riscv: use lw when reading int cpu in new_vmalloc_check
489be48ea1059 riscv: Only allow LTO with CMODEL_MEDANY
fce8d4599b8c7 ACPI: RISC-V: Fix FFH_CPPC_CSR error handling
514600ed8d85b md: prevent incorrect update of resync/recovery offset
1affb649e221d tools: gpio: remove the include directory on make clean
e9998d65bca2c drm/amd/amdgpu: Fix missing error return on kzalloc failure
203719d82999b perf bpf-utils: Harden get_bpf_prog_info_linear
150101bbe24ab perf bpf-utils: Constify bpil_array_desc
25eac390c4af3 perf bpf-event: Fix use-after-free in synthesis
beec8f807ecc2 drm/bridge: ti-sn65dsi86: fix REFCLK setting
d0f379279cd84 spi: spi-fsl-lpspi: Clear status register after disabling the module
15d3ab4858797 spi: spi-fsl-lpspi: Reset FIFO and disable module on transfer abort
8d981d2230e90 spi: spi-fsl-lpspi: Set correct chip-select polarity bit
ed635ec0b5458 spi: spi-fsl-lpspi: Fix transmissions when using CONT
a5760d3fb6e35 scsi: sr: Reinstate rotational media flag
0073c41d4b99f block: add a queue_limits_commit_update_frozen helper
2ec315207ccb8 hwmon: mlxreg-fan: Prevent fans from getting stuck at 0 RPM
212e17721839d platform/x86/intel: power-domains: Use topology_logical_package_id() for package ID
ee1df9ba388bd platform/x86: asus-wmi: Remove extra keys from ignore_key_wlan quirk
289b58f8ff319 pcmcia: Add error handling for add_interval() in do_validate_mem()
278842aca27e4 pcmcia: omap: Add missing check for platform_get_resource
2a7cf13dd6740 Revert "drm/amdgpu: Avoid extra evict-restore process."
c5e6e56f2ce37 ALSA: hda/realtek: Fix headset mic for TongFang X6[AF]R5xxY
ebdf11cf294aa ALSA: hda/hdmi: Add pin fix for another HP EliteDesk 800 G4 model
17cab7b45f4db rust: support Rust >= 1.91.0 target spec
585a593ad5e8b dmaengine: mediatek: Fix a possible deadlock error in mtk_cqdma_tx_status()
523aefb90b593 thermal/drivers/mediatek/lvts: Disable low offset IRQ for minimum threshold
1ee0e14814b88 mm: fix accounting of memmap pages
a7f7d4223ff05 kunit: kasan_test: disable fortify string checker on kasan_strings() test
607b2bf5708fe nouveau: fix disabling the nonstall irq due to storm code
dda6ec365ab04 mm/slub: avoid accessing metadata when pointer is invalid in object_err()
9cd3206f0126d mm, slab: cleanup slab_bug() parameters
d06b739f41dcc mm: slub: call WARN() when detecting a slab corruption
20a54a8db4dd8 mm: slub: Print the broken data before restoring them
60196f92bbc79 md/md-bitmap: fix wrong bitmap_limit for clustermd when write sb
59599bce44af3 net: fix NULL pointer dereference in l3mdev_l3_rcv
fa4abd439f275 wifi: ath11k: update channel list in worker when wait flag is set
26618c039b78a wifi: ath11k: update channel list in reg notifier instead reg worker
eddca44ddf810 ext4: avoid journaling sb update on error if journal is destroying
c868e9306ea6f ext4: define ext4_journal_destroy wrapper
2c46c14fd386a md/raid1,raid10: strip REQ_NOWAIT from member bios
ed6aac13dd9d6 md/raid1,raid10: don't handle IO error for REQ_RAHEAD and REQ_NOWAIT
73506e581c0b1 md/raid1,raid10: don't ignore IO flags
3fbe3f4c57fda net: dsa: b53: do not enable EEE on bcm63xx
b765b9ee4e5a8 net: dsa: b53/bcm_sf2: implement .support_eee() method
cda6c5c095e19 net: dsa: provide implementation of .support_eee()
f7976772b16a7 net: dsa: add hook to determine whether EEE is supported
6482c3dccbfb8 fs/fhandle.c: fix a race in call of has_locked_children()
b9290581d2ecf microchip: lan865x: Fix LAN8651 autoloading
fe03df84e19ef microchip: lan865x: Fix module autoloading
bb8fd694ba6b4 net: pcs: rzn1-miic: Correct MODCTRL register offset
b370f7b1f470a e1000e: fix heap overflow in e1000_set_eeprom
1f797f062b5cf cifs: prevent NULL pointer dereference in UTF16 conversion
20080709457bc batman-adv: fix OOB read/write in network-coding decode
367cb5ffd8a8a scsi: lpfc: Fix buffer free/clear order in deferred receive path
cc5911dc2f989 platform/x86/amd/pmc: Add TUXEDO IB Pro Gen10 AMD to spurious 8042 quirks list
274668efe1a26 drm/amd/display: Clear the CUR_ENABLE register on DCN314 w/out DPP PG
608a015c65cc9 drm/amdgpu: drop hw access in non-DC audio fini
3573291c7901a net: ethernet: oa_tc6: Handle failure of spi_setup
089fd41902ee6 wifi: mt76: mt7925: fix the wrong bss cleanup for SAP
eefa2ad9009b2 wifi: mt76: mt7996: Initialize hdr before passing to skb_put_data()
a001c2f6a40c1 wifi: mt76: mt7925u: use connac3 tx aggr check in tx complete
06616410a3e5e wifi: mwifiex: Initialize the chan_stats array to zero
2fae927c25bbf soc: qcom: mdt_loader: Deal with zero e_shentsize
c2daa6eb47407 of_numa: fix uninitialized memory nodes causing kernel panic
3eebe856d09b6 proc: fix missing pde_set_flags() for net proc files
f4a917e6cd6c7 ocfs2: prevent release journal inode after journal shutdown
28ef61701e298 kasan: fix GCC mem-intrinsic prefix with sw tags
b3ec50cc5eb5c sched: Fix sched_numa_find_nth_cpu() if mask offline
243b705a90ed8 mm: slub: avoid wake up kswapd in set_track_prepare
cd0236550cf80 mm: fix possible deadlock in kmemleak
4f7537772011f mm: move page table sync declarations to linux/pgtable.h
b051f70701896 mm/userfaultfd: fix kmap_local LIFO ordering for CONFIG_HIGHPTE
b7f4051dd3388 x86/mm/64: define ARCH_PAGE_TABLE_SYNC_MASK and arch_sync_kernel_mappings()
094ba14a471cc io_uring/msg_ring: ensure io_kiocb freeing is deferred for RCU
fafa7450075f4 pcmcia: Fix a NULL pointer dereference in __iodyn_find_io_region()
650c14abe3031 arm64: ftrace: fix unreachable PLT for ftrace_caller in init_module with CONFIG_DYNAMIC_FTRACE
d2b18756dbbba ACPI/IORT: Fix memory leak in iort_rmr_alloc_sids()
54c49eca38dbd accel/ivpu: Prevent recovery work from being queued during device removal
47c72af327270 ALSA: usb-audio: Add mute TLV for playback volumes on some devices
594a8a74e02b1 phy: mscc: Stop taking ts_lock for tx_queue and use its own lock
3ed0d6a7b3220 selftest: net: Fix weird setsockopt() in bind_bhash.c.
631fc8ab5beb9 ppp: fix memory leak in pad_compress_skb
d0ecda6fdd840 net: xilinx: axienet: Add error handling for RX metadata pointer retrieval
4a5633b22fc72 net: atm: fix memory leak in atm_register_sysfs when device_register fail
89064cf534bea ax25: properly unshare skbs in ax25_kiss_rcv()
5ad5be90414dc mctp: return -ENOPROTOOPT for unknown getsockopt options
b3bab397a377e net/smc: Remove validation of reserved bits in CLC Decline message
8b3e9f5567433 ipv4: Fix NULL vs error pointer check in inet_blackhole_dev_init()
ae9459f2acb35 net: thunder_bgx: decrement cleanup index before use
2a12c6d58de0a net: thunder_bgx: add a missing of_node_put
31229145e6ba5 wifi: cfg80211: sme: cap SSID length in __cfg80211_connect_result()
92bedee7168d4 wifi: libertas: cap SSID len in lbs_associate()
cedbbba8a8e82 wifi: cw1200: cap SSID length in cw1200_do_join()
e211e3f4199ac vxlan: Fix NPD in {arp,neigh}_reduce() when using nexthop objects
317122c53d5f2 vxlan: Rename FDB Tx lookup function
02bebe7d0483d vxlan: Add RCU read-side critical sections in the Tx path
9238419f6de35 vxlan: Avoid unnecessary updates to FDB 'used' time
300b4e8ff890a vxlan: Refresh FDB 'updated' time upon 'NTF_USE'
c1ce8ee5d7c6a net: vxlan: rename SKB_DROP_REASON_VXLAN_NO_REMOTE
6fa0469be9cf5 net: vxlan: use kfree_skb_reason() in vxlan_mdb_xmit()
da1178c6e9bb4 net: vxlan: use kfree_skb_reason() in vxlan_xmit()
e89198454fb62 net: vxlan: make vxlan_set_mac() return drop reasons
4ff4f3104da65 vxlan: Fix NPD when refreshing an FDB entry with a nexthop object
5cf22915f2c37 net: vxlan: make vxlan_snoop() return drop reasons
b186fb3bb3cd0 net: vxlan: add skb drop reasons to vxlan_rcv()
74872113f895d net: tunnel: add pskb_inet_may_pull_reason() helper
14f0d3c704b92 net: skb: add pskb_network_may_pull_reason() helper
f8b4b6f7c2bbf net: ethernet: mtk_eth_soc: fix tx vlan tag for llc packets
46d33c878fc0b net/tcp: Fix socket memory leak in TCP-AO failure handling for IPv6
609a8ffff5a0d wifi: ath11k: fix group data packet drops during rekey
682105ab63826 ixgbe: fix incorrect map used in eee linkmode
66e7cdbda74ee i40e: Fix potential invalid access when MAC list is empty
70d3dad7d5ad0 i40e: remove read access to debugfs files
b862a132b43ec idpf: set mac type when adding and removing MAC filters
2cde98a02da95 ice: fix NULL access of tx->in_use in ice_ll_ts_intr
18cdfd7f699b9 net: mctp: mctp_fraq_queue should take ownership of passed skb
eb929910bd4b4 net/smc: fix one NULL pointer dereference in smc_ib_is_sg_need_sync()
0925c3c0c6d05 macsec: read MACSEC_SA_ATTR_PN with nla_get_uint
7db8aa3fc4ed0 net: macb: Fix tx_ptr_lock locking
f3d761e527c55 icmp: fix icmp_ndo_send address translation for reply direction
dd70cd6a44f5c bnxt_en: fix incorrect page count in RX aggr ring log
29b58eedbc5ac selftests: drv-net: csum: fix interface name for remote host
349f7dbe3b5ab mISDN: Fix memory leak in dsp_hwec_enable()
63480696b872a xirc2ps_cs: fix register access when enabling FullDuplex
a22ec2ee824be net_sched: gen_estimator: fix est_timer() vs CONFIG_PREEMPT_RT=y
e7a903c429e5c netfilter: nft_flowtable.sh: re-run with random mtu sizes
306b0991413b4 Bluetooth: Fix use-after-free in l2cap_sock_cleanup_listen()
1503756fffe76 Bluetooth: vhci: Prevent use-after-free by removing debugfs files early
c2e32ac3f107e wifi: iwlwifi: uefi: check DSM item validity
7614b00f16e53 netfilter: conntrack: helper: Replace -EEXIST by -EBUSY
c47ca77fee907 netfilter: br_netfilter: do not check confirmed bit in br_nf_local_in() after confirm
e4d5a5fc61fdc wifi: mt76: fix linked list corruption
2aef3667e6b0f wifi: mt76: free pending offchannel tx frames on wcid cleanup
1fb26fd3f6015 wifi: mt76: prevent non-offchannel mgmt tx during scan/roc
d9f2fb6a2ac83 wifi: mt76: mt7925: fix locking in mt7925_change_vif_links()
3e789f8475f6c wifi: brcmfmac: fix use-after-free when rescheduling brcmf_btcoex_info work
5b7ae04969f82 wifi: cfg80211: fix use-after-free in cmp_bss()
863443b02837d mmc: sdhci-of-arasan: Ensure CD logic stabilization before power-up
b32990fb5738f mmc: sdhci-of-arasan: Support for emmc hardware reset
1ec1b0d5e2758 LoongArch: vDSO: Remove -nostdlib complier flag
0a97a654a26a7 LoongArch: vDSO: Remove --hash-style=sysv
ed6a4c0ca7c53 net: usb: qmi_wwan: add Telit Cinterion FN990A w/audio composition
9c111e6e31e88 net: usb: qmi_wwan: fix Telit Cinterion FE990A name
67ffb6a337b1d net: usb: qmi_wwan: fix Telit Cinterion FN990A name
d3b504146c111 HID: core: Harden s32ton() against conversion to 0 bits
d6cfa97a4d6f3 HID: stop exporting hid_snto32()
7a7ba33110698 HID: simplify snto32()
a905edfec7447 arm64: dts: imx8mp: Fix missing microSD slot vqmmc on Data Modul i.MX8M Plus eDM SBC
12fa00b401c0e arm64: dts: imx8mp: Fix missing microSD slot vqmmc on DH electronics i.MX8M Plus DHCOM
b9e9092995aae arm64: dts: imx8mp-tqma8mpql: fix LDO5 power off
606ae71e158d3 tee: optee: ffa: fix a typo of "optee_ffa_api_is_compatible"
02a90ca443676 arm64: dts: rockchip: Add vcc-supply to SPI flash on rk3399-pinebook-pro
3f3d54180accf tee: fix memory leak in tee_dyn_shm_alloc_helper
963fca19fe34c tee: fix NULL pointer dereference in tee_shm_put
e63052921f1b2 fs: writeback: fix use-after-free in __mark_inode_dirty()
6839108b660b4 btrfs: zoned: skip ZONE FINISH of conventional zones
70a6e89b338bb Bluetooth: hci_sync: Avoid adding default advertising on startup
e04e08c2c3878 cpupower: Fix a bug where the -t option of the set subcommand was not working.
5817d249d3cc0 drm/amd/display: Don't warn when missing DCE encoder caps
d619c55d7455e cdc_ncm: Flag Intel OEM version of Fibocom L850-GL as WWAN
8e504a5ad6d98 LoongArch: Save LBT before FPU in setup_sigcontext()
8446ff5a8377c btrfs: avoid load/store tearing races when checking if an inode was logged
3d9c5e1512422 btrfs: fix race between setting last_dir_index_offset and inode logging
37c491006e539 btrfs: fix race between logging inode and checking if it was logged before
41688d1fc5d16 bpf: Fix oob access in cgroup local storage
f1f241ee13403 bpf: Move cgroup iterator helpers to bpf.h
f13441c171d56 bpf: Move bpf map owner out of common struct
963e79f6bdac5 bpf: Add cookie object to bpf maps
b0c51e95f54e5 Linux 6.12.45
9a7141d4808dc thermal/drivers/mediatek/lvts_thermal: Add mt7988 lvts commands
739229eb4d5cd thermal/drivers/mediatek/lvts_thermal: Add lvts commands and their sizes to driver data
d1f4b09d9bb99 thermal/drivers/mediatek/lvts_thermal: Change lvts commands array to static const
79f6a6460ef30 Revert "drm/dp: Change AUX DPCD probe address from DPCD_REV to LANE0_1_STATUS"
7259d9d6f0ae7 PCI: dwc: Ensure that dw_pcie_wait_for_link() waits 100 ms after link up
72fdedb69cad9 PCI: Rename PCIE_RESET_CONFIG_DEVICE_WAIT_MS to PCIE_RESET_CONFIG_WAIT_MS
1d9c73561c581 net: rose: fix a typo in rose_clear_routes()
56f376507b1a0 drm/amd/amdgpu: disable hwmon power1_cap* for gfx 11.0.3 on vf mode
31ce7c089b50c drm/mediatek: Fix device/node reference count leaks in mtk_drm_get_all_drm_priv
c5e42567724ee drm/nouveau: fix error path in nvkm_gsp_fwsec_v2
2de53596eeb20 drm/nouveau/disp: Always accept linear modifier
c8277d229c784 drm/xe/vm: Clear the scratch_pt pointer on error
dcdf36f1b6788 xfs: do not propagate ENODATA disk errors into xattr code
806fdb4422128 smb3 client: fix return code mapping of remap_file_range
6c1f8cef93dbd net: usb: qmi_wwan: add Telit Cinterion LE910C4-WWX new compositions
4735f5991f514 fs/smb: Fix inconsistent refcnt update
23d7325151d43 dma/pool: Ensure DMA_DIRECT_REMAP allocations are decrypted
c50747a963c49 blk-zoned: Fix a lockdep complaint about recursive locking
07b367f7ebb14 Revert "drm/amdgpu: fix incorrect vm flags to map bo"
98520a9a3d69a HID: hid-ntrig: fix unable to handle page fault in ntrig_report_version()
82e721413565d HID: wacom: Add a new Art Pen 2
64eb2737fa351 HID: logitech: Add ids for G PRO 2 LIGHTSPEED
14dfac42f5334 HID: quirks: add support for Legion Go dual dinput modes
3055309821dd3 HID: multitouch: fix slab out-of-bounds access in mt_report_fixup()
c0d77e3441a92 HID: asus: fix UAF via HID_CLAIMED_INPUT validation
44bce62994fa2 x86/cpu/topology: Use initial APIC ID from XTOPOLOGY leaf on AMD/HYGON
43be33b8a2f2b x86/microcode/AMD: Handle the case of no BIOS microcode
c76bf8359188a RISC-V: KVM: fix stack overrun when loading vlenb
67a05679621b7 KVM: x86: use array_index_nospec with indices that come from guest
7b6b76e3f0790 net: macb: Disable clocks once
c2925cd620707 efivarfs: Fix slab-out-of-bounds in efivarfs_d_compare
7aab65c62a8a8 fbnic: Move phylink resume out of service_task and into open/close
d2d08fc3577f1 l2tp: do not use sock_hold() in pppol2tp_session_get_sock()
1bbc0c02aea1f sctp: initialize more fields in sctp_v6_from_sk()
d7563b456ed44 net: rose: include node references in rose_neigh refcount
0085b250fcc79 net: rose: convert 'use' field to refcount_t
8e88504a28743 net: rose: split remove and free operations in rose_remove_neigh()
e98884092a53c net: hv_netvsc: fix loss of early receive events from host during channel open.
22b6f45719672 hv_netvsc: Link queues to NAPIs
6037d6f243c18 net: stmmac: Set CIC bit only for TX queues with COE
62c8b75da2d70 net: stmmac: xgmac: Correct supported speed modes
160a7e072a0ce net: stmmac: xgmac: Do not enable RX FIFO Overflow interrupts
fe67f30b41f13 net/mlx5e: Set local Xoff after FW update
628df4d5d8e09 net/mlx5e: Update and set Xon/Xoff upon port speed set
1f5f18acd8dd8 net/mlx5e: Update and set Xon/Xoff upon MTU set
bde946b2a06d3 net/mlx5: Nack sync reset when SFs are present
0c87dba9ccd38 net/mlx5: Fix lockdep assertion on sync reset unload event
00a098e960454 net/mlx5: Reload auxiliary drivers on fw_activate
17209bada19e9 bnxt_en: Fix stats context reservation logic
35e129b060444 bnxt_en: Adjust TX rings if reservation is less than requested
d00e98977ef51 bnxt_en: Fix memory corruption when FW resources change during ifdown
3d6a89fecf41d phy: mscc: Fix when PTP clock is register and unregister
2c697970da492 drm/xe: Don't trigger rebind on initial dma-buf validation
83f94a04074e2 drm/xe/xe_sync: avoid race during ufence signaling
77ff27ff0e452 efi: stmm: Fix incorrect buffer allocation method
ee8c2f7d8f653 net: dlink: fix multicast stats being counted incorrectly
c1cd3cede22e2 dt-bindings: display/msm: qcom,mdp5: drop lut clock
32c8031015d2f ice: fix incorrect counter for buffer allocation failures
e8b97c7cda142 ice: use fixed adapter index for E825C embedded devices
5ff0860d1f618 ice: don't leave device non-functional if Tx scheduler config fails
43f72994e4dda drm/nouveau: remove unused memory target test
0d70a166dec65 drm/nouveau: remove unused increment in gm200_flcn_pio_imem_wr
33f9e6dc66b32 atm: atmtcp: Prevent arbitrary write in atmtcp_recv_control().
2651657f57e77 Bluetooth: hci_sync: fix set_local_name race condition
7c3df1b8a3a9f Bluetooth: hci_event: Detect if HCI_EV_NUM_COMP_PKTS is unbalanced
d1f4364d84059 Bluetooth: hci_event: Mark connection as closed during suspend disconnect
aacecaee1b454 Bluetooth: hci_event: Treat UNKNOWN_CONN_ID on disconnect as success
ff0d3bad32108 net: macb: fix unregister_netdev call order in macb_remove()
8ac194ad5254b HID: input: report battery status changes immediately
e2cf56faa25f1 HID: input: rename hidinput_set_battery_charge_status()
eb7eafbfd1a27 powerpc/kvm: Fix ifdef to remove build warning
7d5cc22efa44e drm/mediatek: Add error handling for old state CRTC in atomic_disable
469a026cac4a2 drm/msm: update the high bitfield of certain DSI registers
bc0aff1e703fd drm/msm/kms: move snapshot init earlier in KMS init
46efab01648a0 of: reserved_mem: Restructure call site for dma_contiguous_early_fixup()
7536b29903344 drm/msm: Defer fd_install in SUBMIT ioctl
81ff76c1b0882 net: ipv4: fix regression in local-broadcast routes
cbc00a76a5ff9 vhost/net: Protect ubufs with rcu read lock in vhost_net_ubuf_put()
f5da8116cd52e ACPI: EC: Add device to acpi_ec_no_wakeup[] qurik list
cc2ec79a6cb14 erofs: fix atomic context detection when !CONFIG_DEBUG_LOCK_ALLOC
cd79a25f451e9 ASoC: codecs: tx-macro: correct tx_macro_component_drv name
c9991af5e0992 smb: client: fix race with concurrent opens in rename(2)
c2c9d0ae69714 smb: client: fix race with concurrent opens in unlink(2)
ba884ba29cc94 scsi: core: sysfs: Correct sysfs attributes access rights
7bab8fb51d3b1 vhost: Fix ioctl # for VHOST_[GS]ET_FORK_FROM_OWNER
2e6e208825bf9 perf symbol-minimal: Fix ehdr reading in filename__read_build_id
ced94e137e6cd ftrace: Fix potential warning in trace_printk_seq during ftrace_dump
0d3471ab7186c of: dynamic: Fix use after free in of_changeset_add_prop_helper()
76c872066d75f mips: lantiq: xway: sysctrl: rename the etop node
41534a4790620 mips: dts: lantiq: danube: add missing burst length property
f945cb27fea12 pinctrl: STMFX: add missing HAS_IOMEM dependency
9362d520b2b44 of: dynamic: Fix memleak when of_pci_add_properties() failed
2a2deb9f8df70 trace/fgraph: Fix the warning caused by missing unregister notifier
f471b3e24d1ec rtla: Check pkg-config install
9903b4afd70f3 tools/latency-collector: Check pkg-config install
(From OE-Core rev: b71c028e7adc1bd80ea259e4e6833f8b2728d8c0)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 0d67510cdd9b55af82797eb6f624513868fd7dd5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backport an algorithmic change to grub_crypto_memcmp() so that it
completes in constant time and thus isn't susceptible to side-channel
attacks.
(From OE-Core rev: 30a1cc225a2bd5d044bf608d863a67df3f9c03be)
(From OE-Core rev: f346b4e49a20023028238a810e0597b1c9f38d62)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When Bash runs with 'set -u' (nounset), accessing an unset variable
directly (e.g. [ -z "$SSL_CERT_FILE" ]) causes a fatal "unbound variable"
error. As a result, the fallback logic to set SSL_CERT_FILE/SSL_CERT_DIR
is never triggered and the script aborts.
The current code assumes these variables may be unset or empty, but does
not guard against 'set -u'. This breaks builds in stricter shell
environments or when users explicitly enable 'set -u'.
Fix this by using parameter expansion with a default value, e.g.
"${SSL_CERT_FILE:-}", so that unset variables are treated as empty
strings. This preserves the intended logic (respect host env first, then
CAFILE/CAPATH, then buildtools defaults) and makes the script robust
under 'set -u'.
(From OE-Core rev: 3d161e94ad532f660d4a0259a32e26a32ea0c75d)
Signed-off-by: Haixiao Yan <haixiao.yan.cn@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4d880c2eccd534133a2a4e6579d955605c0956ec)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Fix the bug in runqemu that happens when the file path contains
the specific words such as 'vmlinux', e.g. /home/frank/vmlinux.
runqemu - ERROR - wic doesn't need kernel
(From OE-Core rev: f37a74369e82b1d129d6d8a5f0f3c18fafe07d10)
Signed-off-by: Libo Chen <libo.chen.cn@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3c186fe7741adecb0887e36c8a9164a58fc16437)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
After the switch from using a systemctl written in Python to using the
official version of systemctl from the systemd project, the
systemd_postinst function has effectively not been executed during the
rootfs creation. The reason is that systemctl provided by
systemctl-native fails if run without arguments (as systemd_postinst
does):
Failed to connect to system scope bus via local transport: Operation
not permitted (consider using --machine=<user>@.host --user to connect
to bus of other user)
This is not seen in the logs since stderr is sent to /dev/null, and the
only way to tell that there is a problem is because systemd services
that are expected to be enabled aren't running.
The reason this has gone unnoticed is because systemd_handle_machine_id
in rootfs-postcommands.bbclass will call systemctl preset-all, which in
most cases will create the missing links to enable the systemd services.
This change effectively reverts commit
a52e66762c0c51918b1ba3d4622759637b6e920a (systemd.bbclass: update
command to check systemctl available) and instead only runs systemctl
without arguments (to determine that it can communicate with systemd)
when executed on target.
(From OE-Core rev: 6cb4239b412dc782f66728e47753c1a82cccf759)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
It is needed when support for both systemd and sysvinit are enabled.
This also adds a patch for systemctl to call systemd-sysv-install
without a hardcoded path and instead relies on finding it in $PATH. This
is needed when calling systemctl from a recipe sysroot.
(From OE-Core rev: 8d0eb4ff49801aabb73e4fa28ffe12ab10beb32b)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There is no reason to use EXTRA_OEMESON:append when += will do.
(From OE-Core rev: d3c754dae42dcd68274711c9da3def3621d55634)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
For /usr/lib/rpm/macros, Yocto explicitly set OECMAKE_FIND_ROOT_PATH_MODE_PROGRAM
= "ONLY" [1][2] to search tools from CMAKE_FIND_ROOT_PATH [5] which locates in
native recipe sysroot or HOSTTOOLS_DIR. If found in native recipe sysroot or
HOSTTOOLS_DIR, the sed operation removed leading `/'
root@qemux86-64:~# vi /usr/lib/rpm/macros
...
%__xz usr/bin/xz
%__make usr/bin/make
%__zstd usr/bin/zstd
%__quilt usr/bin/quilt
%__patch usr/bin/patch
...
root@qemux86-64:~# rpm --eval "%{__xz} %{__make} %{__zstd} %{__quilt} %{__patch}"
usr/bin/xz usr/bin/make usr/bin/zstd usr/bin/quilt usr/bin/patch
This commit keeps leading `/' from sed operation, and similar reason for
/usr/lib/cmake/rpm/rpm-targets.cmake
After applying this commit:
root@qemux86-64:~# rpm --eval "%{__xz} %{__make} %{__zstd} %{__quilt} %{__patch}"
/usr/bin/xz /usr/bin/make /usr/bin/zstd /usr/bin/quilt /usr/bin/patch
[1] https://git.openembedded.org/openembedded-core/commit/?id=f4ea12f6635125ee793f4dd801c538c0186f9dc3
[2] https://cmake.org/cmake/help/latest/variable/CMAKE_FIND_ROOT_PATH_MODE_PROGRAM.html
(From OE-Core rev: 32486bb4c5401b0a59470a37505f60f71da6c2c7)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(master rev: 0d0773879ab9520c475c4a8c930b2e663de0e032)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
While no usrmerge in sysvinit, some tools defined in rpm macro have wrong path
$ echo 'INIT_MANAGER="sysvinit"' >> conf/local.conf
$ echo 'IMAGE_INSTALL:append = " rpm busybox"' >> conf/local.conf
$ bitbake core-image-minimal
$ runqemu tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.qemuboot.conf
root@qemux86-64:~# which sed tar rm mkdir cp cat chown chmod gzip grep mv
/bin/sed
/bin/tar
/bin/rm
/bin/mkdir
/bin/cp
/bin/cat
/bin/chown
/bin/chmod
/bin/gzip
/bin/grep
/bin/mv
root@qemux86-64:~# rpm --eval "%{__sed} %{__tar} %{__rm} %{__mkdir} %{__cp} %{__cat} %{__chown} %{__chmod} %{__gzip} %{__grep} %{__mv}"
/usr/bin/sed /usr/bin/tar /usr/bin/rm /usr/bin/mkdir /usr/bin/cp /usr/bin/cat /usr/bin/chown /usr/bin/chmod /usr/bin/gzip /usr/bin/grep /usr/bin/mv
Here to explain how __rm was set in rpm during build. The build system
of rpm is cmake. Take rpm rpm-4.19.x for example:
The '__RM rm' is defected by findutil [1], and function findutil
calls find_program to search for tool, if not found on host, then
hardcode with "/usr/bin" prefix [2]
Yocto explicitly set OECMAKE_FIND_ROOT_PATH_MODE_PROGRAM = "ONLY" [3][4]
to search tools from CMAKE_FIND_ROOT_PATH [5] which locates in recipe sysroot,
if not found in recipe sysroot, hardcode with "/usr/bin" prefix
If "${base_bindir}" != "${bindir}, explicitly correct tools in rpm
macros, use ${base_bindir} to instead original ${bindir}. Only do the
operation for target, it is not necessary for native and nativesdk,
because most host distribution supports usrmerge
After applying this commit, on target:
root@qemux86-64:~# rpm --eval "%{__sed} %{__tar} %{__rm} %{__mkdir} %{__cp} %{__cat} %{__chown} %{__chmod} %{__gzip} %{__grep} %{__mv}"
/bin/sed /bin/tar /bin/rm /bin/mkdir /bin/cp /bin/cat /bin/chown /bin/chmod /bin/gzip /bin/grep /bin/mv
root@qemux86-64:~# ls /bin/sed /bin/tar /bin/rm /bin/mkdir /bin/cp /bin/cat /bin/chown /bin/chmod /bin/gzip /bin/grep /bin/mv
/bin/cat /bin/chmod /bin/chown /bin/cp /bin/grep /bin/gzip /bin/mkdir /bin/mv /bin/rm /bin/sed /bin/tar
In order to save size, this commit does not add these tools to
runtime depends, user should explicitly add them if necessary
(such as use rpm to build packages)
[1] https://github.com/rpm-software-management/rpm/blob/rpm-4.19.x/CMakeLists.txt#L121
[2] https://github.com/rpm-software-management/rpm/blob/rpm-4.19.x/CMakeLists.txt#L59
[3] https://git.openembedded.org/openembedded-core/commit/?id=f4ea12f6635125ee793f4dd801c538c0186f9dc3
[4] https://cmake.org/cmake/help/latest/variable/CMAKE_FIND_ROOT_PATH_MODE_PROGRAM.html
[5] https://git.openembedded.org/openembedded-core/tree/meta/classes-recipe/cmake.bbclass?id=f4ea12f6635125ee793f4dd801c538c0186f9dc3#n123
(From OE-Core rev: 3958989d976fb429c84b12427bab3db0bc0d5d16)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(master rev: c89c7177be2df5d2be44478a6ac43b35ad46db9e)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
no ids found, dumping:
11a24528d080 Linux 6.12.44
4edaeba45bcc alloc_fdtable(): change calling conventions.
51e8531371f9 netfilter: nf_reject: don't leak dst refcount for loopback packets
e133ea6dd6a7 s390/hypfs: Enable limited access during lockdown
782a7d2ddbf2 s390/hypfs: Avoid unnecessary ioctl registration in debugfs
ba1e8eab16d2 ALSA: usb-audio: Use correct sub-type for UAC3 feature unit validation
66d25bb8ab0e net/mlx5e: Preserve shared buffer capacity during headroom updates
3ef5a3a68b8f net/mlx5e: Query FW for buffer ownership
892fe7bf7390 net/mlx5: Add IFC bits and enums for buf_ownership
736dab2783ba net/mlx5: Relocate function declarations from port.h to mlx5_core.h
cacc591fb03e net/mlx5: Base ECVF devlink port attrs from 0
b510ba91ad4f Octeontx2-af: Skip overlap check for SPI field
69c849660633 bonding: send LACPDUs periodically in passive mode after receiving partner's LACPDU
dc17f43d9666 bonding: update LACP activity flag after setting lacp_active
34327b362ce2 ALSA: timer: fix ida_free call while not allocated
23ff73c9495d net/sched: Remove unnecessary WARNING condition for empty child qdisc in htb_activate
ff57186b2cc3 net/sched: Make cake_enqueue return NET_XMIT_CN when past buffer_limit
9bbf16b649b0 net: dsa: microchip: Fix KSZ9477 HSR port setup issue
9b136c1e442b igc: fix disabling L1.2 PCI-E link substate on I226 on init
e6e7966c3203 ixgbe: xsk: resolve the negative overflow of budget in ixgbe_xmit_zc
30bf5728bb21 s390/mm: Do not map lowcore with identity mapping
e94cdb9fb279 LoongArch: Optimize module load time by optimizing PLT/GOT counting
995889c25886 microchip: lan865x: fix missing Timer Increment config for Rev.B0/B1
71f6b75f1f4d microchip: lan865x: fix missing netif_start_queue() call on device open
2e765ba0ee0e net/smc: fix UAF on smcsk after smc_listen_out()
a7efffeecb88 gve: prevent ethtool ops after shutdown
22042ffedd8c net: usb: asix_devices: Fix PHY address mask in MDIO bus initialization
78ba077e323f phy: mscc: Fix timestamping for vsc8584
4931fe2dbe1c cifs: Fix oops due to uninitialised variable
1b7862974266 net: ti: icssg-prueth: Fix HSR and switch offload Enablement during firwmare reload.
94731cc551e2 ppp: fix race conditions in ppp_fill_forward_path
b6be9f91c61c net: ethernet: mtk_ppe: add RCU lock around dev_fill_forward_path
53aee4fc347c ipv6: sr: validate HMAC algorithm ID in seg6_hmac_info_add
041e2f945f82 net: gso: Forbid IPv6 TSO with extensions on devices with only IPV6_CSUM
af9742effde6 drm/amd/display: Don't print errors for nonexistent connectors
97fc94c5fd3c drm/amd/display: Add null pointer check in mod_hdcp_hdcp1_create_session()
9d9b04562628 ALSA: usb-audio: Fix size validation in convert_chmap_v3()
a4f1b9c57092 drm/hisilicon/hibmc: fix the hibmc loaded failed bug
d85331542e98 drm/hisilicon/hibmc: fix the i2c device resource leak when vdac init failed
c8029abe45c5 drm/hisilicon/hibmc: refactored struct hibmc_drm_private
a0d2e6f9d34a rust: alloc: fix `rusttest` by providing `Cmalloc::aligned_layout` too
bce19c62ed00 mlxsw: spectrum: Forward packets with an IPv4 link-local source IP
975e2590a72e Bluetooth: hci_conn: do return error from hci_enhanced_setup_sync()
dcb367e70770 Bluetooth: hci_event: fix MTU for BN == 0 in CIS Established
369518d9f713 Bluetooth: hci_sync: Prevent unintended PA sync when SID is 0xFF
3313f062338a Bluetooth: btmtk: Fix wait_on_bit_timeout interruption during shutdown
0d340bbb8d49 Bluetooth: hci_sync: Fix scan state after PA Sync has been established
4bdb0f78bddb iommu/amd: Avoid stack buffer overflow from kernel cmdline
f1424c830d6c scsi: qla4xxx: Prevent a potential error pointer dereference
313f2c85f64d rtase: Fix Rx descriptor CRC error bit definition
bdb19cd0de73 net: bridge: fix soft lockup in br_multicast_query_expired()
87c36bef9e0f net: xilinx: axienet: Fix RX skb ring management in DMAengine mode
8d2bf2ec20a6 RDMA/hns: Fix dip entries leak on devices newer than hip09
17ed810811ec RDMA/bnxt_re: Fix to initialize the PBL array
f884c7b15ebd RDMA/bnxt_re: Fix a possible memory leak in the driver
948577ad2876 RDMA/bnxt_re: Fix to remove workload check in SRQ limit path
d43f27aa9e3c RDMA/bnxt_re: Fix to do SRQ armena by default
89053e3f0c2d RDMA/hns: Fix querying wrong SCC context for DIP algorithm
ed4f1d589168 RDMA/erdma: Fix ignored return value of init_kernel_qp
60a56f5a54f5 rust: alloc: replace aligned_size() with Kmalloc::aligned_layout()
846bda1478b1 iosys-map: Fix undefined behavior in iosys_map_clear()
6bfa361d7278 drm/tests: Fix drm_test_fb_xrgb8888_to_xrgb2101010() on big-endian
46d9ebf9fd82 drm/tests: Do not use drm_fb_blit() in format-helper tests
f7798cb62de9 drm/format-helper: Add generic conversion to 32-bit formats
845687312b68 drm/format-helper: Move helpers for pixel conversion to header file
d218e87db084 drm/format-helper: Add conversion from XRGB8888 to BGR888
268a5b682a18 drm/panic: Move drawing functions to drm_draw
8b9c53f8edd4 drm/tests: Fix endian warning
7a60c21384c8 cgroup/cpuset: Fix a partition error with CPU hotplug
68da1fac48f0 cgroup/cpuset: Use static_branch_enable_cpuslocked() on cpusets_insane_config_key
cabcb52d76d3 drm/nouveau/nvif: Fix potential memory leak in nvif_vmm_ctor().
aa2b0dc33258 spi: spi-fsl-lpspi: Clamp too high speed_hz
a9e5924daa95 x86/cpu/hygon: Add missing resctrl_cpu_detect() in bsp_init helper
f860000c1f5e iio: imu: inv_icm42600: change invalid data error to -EBUSY
06230d6dec21 iio: imu: inv_icm42600: Convert to uXX and sXX integer types
78de165b61b1 iio: imu: inv_icm42600: use = { } instead of memset()
4bd0edbd83b6 iio: imu: inv_icm42600: switch timestamp type from int64_t __aligned(8) to aligned_s64
3439c15ae91a tls: fix handling of zero-length records on the rx_list
e42ac65e257b powerpc/boot: Fix build with gcc 15
9c4afcaf8275 ovl: use I_MUTEX_PARENT when locking parent in ovl_create_temp()
f483319e1f9b drm/i915/icl+/tc: Cache the max lane count value
51ffbf14e261 compiler: remove __ADDRESSABLE_ASM{_STR,}() again
ae94295132b8 drm/i915/icl+/tc: Convert AUX powered WARN to a debug message
d0c68045b8b0 tracing: Limit access to parser->buffer when trace_get_user failed
e1fdc506c315 tracing: Remove unneeded goto out logic
c456108605f5 iio: temperature: maxim_thermocouple: use DMA-safe buffer for spi_read()
cce55ca4e7a2 iio: light: as73211: Ensure buffer holes are zeroed
1856de52e0f4 iio: light: Use aligned_s64 instead of open coding alignment.
8e64b52bc895 usb: dwc3: pci: add support for the Intel Wildcat Lake
f49697dfba29 usb: dwc3: Remove WARN_ON for device endpoint command timeouts
900fdc733f84 usb: dwc3: Ignore late xferNotReady event to prevent halt timeout
2f7fc6ec5a11 usb: xhci: Fix slot_id resource race conflict
adeb6ccc145f usb: typec: maxim_contaminant: re-enable cc toggle if cc is open and port is clean
b21f9560a970 usb: typec: maxim_contaminant: disable low power mode when reading comparator values
b93f5d439d74 USB: storage: Ignore driver CD mode for Realtek multi-mode Wi-Fi dongles
d6f3ec41c60b usb: storage: realtek_cr: Use correct byte order for bcs->Residue
ad105db0a264 USB: storage: Add unusual-devs entry for Novatek NTK96550-based camera
5bbe1e67fc67 usb: renesas-xhci: Fix External ROM access timeouts
b0cdcacd9174 usb: core: hcd: fix accessing unmapped memory in SINGLE_STEP_SET_FEATURE test
f3b0c9ec5473 comedi: Fix use of uninitialized memory in do_insn_ioctl() and do_insnlist_ioctl()
a3cfcd0c78c8 comedi: pcl726: Prevent invalid irq number
92352ed2f9ac comedi: Make insn_rw_emulate_bits() do insn->n samples
33bfc3a4cce3 usb: quirks: Add DELAY_INIT quick for another SanDisk 3.2Gen1 Flash Drive
5ed0465d7c11 cdx: Fix off-by-one error in cdx_rpmsg_probe()
f42e2149f2a1 kcov, usb: Don't disable interrupts in kcov_remote_start_usb_softirq()
4e0c0771bd3e most: core: Drop device reference after usage in get_channel()
993e0cadd807 iio: proximity: isl29501: fix buffered read on big-endian systems
88818b5288a6 iio: pressure: bmp280: Use IS_ERR() in bmp280_common_probe()
c591ba1acd08 ftrace: Also allocate and copy hash for reading of filter files
598e1e4f392e fpga: zynq_fpga: Fix the wrong usage of dma_map_sgtable()
baa11a683d11 mmc: sdhci_am654: Disable HS400 for AM62P SR1.0 and SR1.1
3c778a98bee1 drm/dp: Change AUX DPCD probe address from DPCD_REV to LANE0_1_STATUS
87dca4c6a672 cpuidle: governors: menu: Avoid selecting states with too much latency
b39b62075ab4 cpuidle: menu: Remove iowait influence
d133154ca39c use uniform permission checks for all mount propagation changes
042cf48ecf67 fs/buffer: fix use-after-free when call bh_read() helper
003e6a315029 smb: server: split ksmbd_rdma_stop_listening() out of ksmbd_rdma_destroy()
3adec7077192 debugfs: fix mount options not being applied
a3888a24131a arm64: dts: ti: k3-am62*: Move eMMC pinmux to top level board file
4627b6c718eb arm64: dts: ti: k3-am6*: Remove disable-wp for eMMC
b926a5860696 arm64: dts: ti: k3-am62*: Add non-removable flag for eMMC
cb2e511b92c1 arm64: dts: ti: k3-am6*: Add boot phase flag to support MMC boot
3d61136945a7 btrfs: subpage: keep TOWRITE tag until folio is cleaned
74482f0005fa ext4: preserve SB_I_VERSION on remount
f02d8e200cb5 scsi: mpi3mr: Serialize admin queue BAR writes on 32-bit systems
95ba8440f72d scsi: mpi3mr: Drop unnecessary volatile from __iomem pointers
8b419b1d6f0f iio: adc: ad7173: fix setting ODR in probe
22e29e843c88 PCI: rockchip: Set Target Link Speed to 5.0 GT/s before retraining
4905709a195e PCI: rockchip: Use standard PCIe definitions
32559a9ae496 PCI: imx6: Add IMX8MQ_EP third 64-bit BAR in epc_features
d9126b98c70a PCI: imx6: Add i.MX8Q PCIe Endpoint (EP) support
ec22f927327d Mark xe driver as BROKEN if kernel page size is not 4kB
92d6b3747b49 mptcp: disable add_addr retransmission when timeout is 0
43ffe59d1666 mptcp: remove duplicate sk_reset_timer call
782470d0aa8b soc: qcom: mdt_loader: Fix error return values in mdt_header_valid()
12e7df89a0c7 scsi: core: Fix command pass through retry regression
6b124585a5d1 drm/amd/display: Fill display clock and vblank time in dce110_fill_display_configs
1fa5189ab6d3 drm/amd/display: Find first CRTC and its line time in dce110_fill_display_configs
1b7e7c371b47 drm/amd/display: Fix DP audio DTO1 clock source on DCE 6.
34f2e0bb85c2 drm/amd/display: Fix Xorg desktop unresponsive on Replay panel
88d5d27264ef drm/amd/display: Fix fractional fb divider in set_pixel_clock_v3
dae271ef2b89 drm/amd/display: Don't overclock DCE 6 by 15%
f653dd30839e drm/amd/display: Avoid a NULL pointer dereference
be68ddbf23ff drm/amdgpu/swm14: Update power limit logic
1414220d5b5e accel/habanalabs/gaudi2: Use kvfree() for memory allocated with kvcalloc()
b1fbf1b68bbf kvm: retry nx_huge_page_recovery_thread creation
0a61c9bcab64 platform/x86/intel-uncore-freq: Check write blocked for ELC
61605c847599 s390/sclp: Fix SCCB present check
732d4bd7b78a RDMA/rxe: Flush delayed SKBs while releasing RXE resources
570507f08f0c ALSA: hda/realtek: Add support for HP EliteBook x360 830 G6 and EliteBook 830 G6
8e2b8a30791b mm/memory-failure: fix infinite UCE for VM_PFNMAP pfn
61a9f2e5c49f mm/debug_vm_pgtable: clear page table entries at destroy_args()
0b7f6d02d490 squashfs: fix memory leak in squashfs_fill_super
92278ae36935 NFS: Fix a race when updating an existing write
a9f726bd1044 mmc: sdhci-pci-gli: GL9763e: Rename the gli_set_gl9763e() for consistency
2911c2e05c35 mmc: sdhci-pci-gli: GL9763e: Mask the replay timer timeout of AER
9fccdc9f3dc9 memstick: Fix deadlock by moving removing flag earlier
d7dfbda8eefb mmc: sdhci-pci-gli: Add a new function to simplify the code
9efa1a429cc2 iommu/arm-smmu-v3: Fix smmu_domain->nr_ats_masters decrement
4652d0b6f7e6 iov_iter: iterate_folioq: fix handling of offset >= folio size
d9f93172820a io_uring/futex: ensure io_futex_wait() cleans up properly on failure
eb0abacdd3fc Revert "can: ti_hecc: fix -Woverflow compiler warning"
3c06e9ad0bea sched_ext: initialize built-in idle state before ops.init()
3c0d35b3caf5 ata: libata-scsi: Return aborted command when missing sense and result TF
fe9da1812f86 io_uring/net: commit partial buffers on retry
f08c80af3c9a netfs: Fix unbuffered write error handling
06eb8b95cbc3 btrfs: send: make fs_path_len() inline and constify its argument
7386d3e3dd2c btrfs: send: use fallocate for hole punching with send stream v2
039d05430ecf btrfs: send: avoid path allocation for the current inode when issuing commands
a4eac4fd1b6c btrfs: send: keep the current inode's path cached
eb38777ad10e btrfs: send: add and use helper to rename current inode when processing refs
a7920a7ea65b btrfs: send: only use boolean variables at process_recorded_refs()
efb8eb976ab5 btrfs: send: factor out common logic when sending xattrs
404dd9617257 xfs: fully decouple XFS_IBULK* flags from XFS_IWALK* flags
4cb852e43f56 btrfs: zoned: requeue to unused block group list if zone finish failed
e663071ae9b9 btrfs: codify pattern for adding block_group to bg_list
9a20e95694cf btrfs: explicitly ref count block_group on new_bgs list
da2124719f38 btrfs: abort transaction on unexpected eb generation at btrfs_copy_root()
cd2bce7d8438 btrfs: always abort transaction on failure to add block group to free space tree
7eb547071cd6 btrfs: move transaction aborts to the error site in add_block_group_free_space()
dd0b28d877b2 btrfs: qgroup: fix race between quota disable and quota rescan ioctl
8efc2a4d2fad btrfs: qgroup: drop unused parameter fs_info from __del_qgroup_rb()
31c6235301c6 usb: typec: fusb302: cache PD RX state
c826250c492e USB: typec: Use str_enable_disable-like helpers
1c24f24f6b67 x86/sev: Ensure SVSM reserved fields in a page validation entry are initialized to zero
7c303fa1f311 mm/damon/ops-common: ignore migration request to invalid nodes
e35c822d6565 selftests: mptcp: pm: check flush doesn't reset limits
243d21f94751 mptcp: pm: kernel: flush: do not reset ADD_ADDR limit
6fa78478795f mptcp: drop skb if MPTCP skb extension allocation fails
b00219888c11 ACPI: pfr_update: Fix the driver update version check
b3967c493799 ipv6: sr: Fix MAC comparison to be constant-time
786f6314604b sched/ext: Fix invalid task state transitions on class switch
acd69b597bd3 net, hsr: reject HSR frame if skb can't hold tag
3575d22e94dc LoongArch: KVM: Make function kvm_own_lbt() robust
0a42692cdb8f drm/amd/display: Don't overwrite dce60_clk_mgr
0961673cc5f0 drm/amd/display: fix a Null pointer dereference vulnerability
de0780d26f6c drm/amd/display: Add primary plane to commits for correct VRR handling
96609a51e613 drm/amdkfd: Destroy KFD debugfs after destroy KFD wq
75a10c872cae drm/amdgpu: update mmhub 4.1.0 client id mappings
c56ef0e7d2de drm/amdgpu: update mmhub 3.0.1 client id mappings
20e97e9a2939 drm/amdgpu: Update external revid for GC v9.5.0
fc647f6c51bb drm/amdgpu: Initialize data to NULL in imu_v12_0_program_rlc_ram()
83cfdc2b018c drm/amdgpu: check if hubbub is NULL in debugfs/amdgpu_dm_capabilities
71598a5a7797 drm/amdgpu: Avoid extra evict-restore process.
1fc9d8f5a665 drm/amd: Restore cached power limit during resume
9225818539c7 drm/amdgpu/discovery: fix fw based ip discovery
daaea1706de5 media: venus: venc: Clamp param smaller than 1fps and bigger than 240
d63a2d93e8d2 media: venus: vdec: Clamp param smaller than 1fps and bigger than 240.
639eb587f977 media: venus: protect against spurious interrupts during probe
24dd1536d43c media: venus: hfi: explicitly release IRQ during teardown
32798309540a media: venus: Fix MSM8998 frequency table
2d8cea8310a2 media: venus: Add a check for packet size after reading from shared memory
93775183e6f3 media: qcom: camss: cleanup media device allocated resource on error path
639f5b33fcd7 media: ivsc: Fix crash at shutdown due to missing mei_cldev_disable() calls
0d23b548d71e media: mt9m114: Fix deadlock in get_frame_interval/set_frame_interval
6b499ee04b30 media: ov2659: Fix memory leaks in ov2659_probe()
42c661c27ccb media: pisp_be: Fix pm_runtime underrun in probe
ed905fe7cba0 media: rainshadow-cec: fix TOCTOU race condition in rain_interrupt()
c3d75524e100 media: usbtv: Lock resolution while streaming
0ac47b860947 media: v4l2-ctrls: Don't reset handler's error in v4l2_ctrl_handler_free()
d4177e8874b2 media: verisilicon: Fix AV1 decoder clock frequency
5fd3269dfaaa media: vivid: fix wrong pixel_array control size
c851e2c89234 media: ipu6: isys: Use correct pads for xlate_streams()
a5c8984a5b77 media: imx: fix a potential memory leak in imx_media_csc_scaler_device_init()
5c54ef825c9e media: hi556: correct the test pattern configuration
7b15256361e6 media: gspca: Add bounds checking to firmware parser
35128d4c49ff parisc: Update comments in make_insert_tlb
98e2b6af0238 parisc: Try to fixup kernel exception in bad_area_nosemaphore path of do_page_fault()
bc0a24c24cee parisc: Revise gateway LWS calls to probe user read access
f410ef9a032c parisc: Revise __get_user() to probe user read access
1dc6244651ed parisc: Rename pte_needs_flush() to pte_needs_cache_flush() in cache.c
41d6a489cbe2 parisc: Makefile: explain that 64BIT requires both 32-bit and 64-bit compilers
8f8a07ad04da parisc: Drop WARN_ON_ONCE() from flush_cache_vmap
753bc5f5a3f5 parisc: Define and use set_pte_at()
537264f4b3dc parisc: Check region is readable by user in raw_copy_from_user()
a2513b82fe7a soc/tegra: pmc: Ensure power-domains are in a known state
033b3d0e4175 kbuild: userprogs: use correct linker when mixing clang and GNU ld
429d50cbaff4 jbd2: prevent softlockup in jbd2_log_do_checkpoint()
888aa660144b f2fs: fix to avoid out-of-boundary access in dnode page
539fa8a7f163 ASoC: SOF: amd: acp-loader: Use GFP_KERNEL for DMA allocations in resume context
9ef515e1714d amdgpu/amdgpu_discovery: increase timeout limit for IFWI init
e2f8f9d9252b phy: qcom: phy-qcom-m31: Update IPQ5332 M31 USB phy initialization sequence
21d9382c44a4 vhost/vsock: Avoid allocating arbitrarily-sized SKBs
faf332a10372 vsock/virtio: Validate length in packet header before skb_put()
7c001febe46a PCI: imx6: Delay link start until configfs 'start' written
90fa5884bc8f PCI: imx6: Remove apps_reset toggling from imx_pcie_{assert/deassert}_core_reset
0845e3bdb98f PCI: imx6: Add IMX8MM_EP and IMX8MP_EP fixed 256-byte BAR 4 in epc_features
74955851ad4c PCI: endpoint: Fix configfs group removal on driver teardown
6cf655055232 PCI: endpoint: Fix configfs group list head handling
365cc41d527f PCI/portdrv: Use is_pciehp instead of is_hotplug_bridge
72e849b5b16a readahead: fix return value of page_cache_next_miss() when no hole is found
617a8d148d92 mtd: rawnand: renesas: Add missing check after DMA map
c74e7333b5a3 mtd: rawnand: fsmc: Add missing check after DMA map
2c2a6c4d1d5d mtd: spinand: propagate spinand_wait() errors from spinand_write_page()
264e99d50e88 mtd: spi-nor: Fix spi_nor_try_unlock_all()
52a14d291107 hwmon: (gsc-hwmon) fix fan pwm setpoint show functions
d10700cbd1f0 pwm: mediatek: Fix duty and period setting
6dff1cf891f5 pwm: mediatek: Handle hardware enable and clock enable separately
dea337456b69 pwm: imx-tpm: Reset counter if CMOD is 0
54299905bdc6 wifi: ath11k: fix dest ring-buffer corruption when ring is full
c2c67e8ffd89 wifi: ath11k: fix source ring-buffer corruption
654f9eba7e88 wifi: ath11k: fix dest ring-buffer corruption
e4f5abdf5b25 wifi: ath12k: fix dest ring-buffer corruption when ring is full
34606f060a7e wifi: ath12k: fix source ring-buffer corruption
06af1f72e081 wifi: ath12k: fix dest ring-buffer corruption
e8d817bb9ada wifi: brcmsmac: Remove const from tbl_ptr parameter in wlc_lcnphy_common_read_table()
e0d68d52a300 iio: adc: ad_sigma_delta: change to buffer predisable
4808ca3aa30a iio: imu: bno055: fix OOB access of hw_xlate array
b7a840afe31f zynq_fpga: use sgtable-based scatterlist wrappers
87bfabb3b2f4 soc: qcom: mdt_loader: Ensure we don't read past the ELF header
12e65070d23c ata: libata-scsi: Fix CDL control
47bf4ef2d03a scsi: ufs: ufs-pci: Fix default runtime and system PM levels
6dc4a6eb5e7a scsi: ufs: ufs-pci: Fix hibernate state transition for Intel MTL-like host controllers
c7c56473410b ata: libata-scsi: Fix ata_to_sense_error() status handling
2c84f085d628 scsi: mpi3mr: Fix race between config read submit and interrupt completion
dc8fb963742f scsi: ufs: exynos: Fix programming of HCI_UTRL_NEXUS_TYPE
fee4b9e1b2f5 scsi: dt-bindings: mediatek,ufs: Add ufs-disable-mcq flag for UFS host
19ef81195c52 dt-bindings: display: sprd,sharkl3-dsi-host: Fix missing clocks constraints
2faccb81e3c4 dt-bindings: display: sprd,sharkl3-dpu: Fix missing clocks constraints
785e79e1d3d7 apparmor: Fix 8-byte alignment for initial dfa blob streams
1187dc67b931 arm64: dts: ti: k3-am62-verdin: Enable pull-ups on I2C buses
4c02f4cd92fa arm64: dts: ti: k3-am62a7-sk: fix pinmux for main_uart1
bc254ce9b4eb arm64: dts: exynos: gs101: ufs: add dma-coherent property
1e20a92593a7 arm64: dts: ti: k3-pinctrl: Enable Schmitt Trigger by default
7d90b80c2e57 arm64: dts: ti: k3-am62-main: Remove eMMC High Speed DDR support
0c2f2fd7dc6f btrfs: fix printing of mount info messages for NODATACOW/NODATASUM
7b16d89fdae4 btrfs: restore mount option info messages during mount
30776a735dea btrfs: fix incorrect log message for nobarrier mount option
5abf2cec45b9 btrfs: zoned: fix write time activation failure for metadata block group
275c88b797f2 ext4: fix hole length calculation overflow in non-extent inodes
e767e51caef3 ext4: use kmalloc_array() for array space allocation
48a6128a4a39 ext4: don't try to clear the orphan_present feature block device is r/o
0bbcd9434c56 ext4: fix reserved gdt blocks handling in fsmap
4fa1098957e0 ext4: fix fsmap end of range reporting with bigalloc
14cfb25eaf79 ext4: check fast symlink for ea_inode correctly
daf7938a205f tracing: fprobe-event: Sanitize wildcard for fprobe event name
d5ab785183ae ksmbd: extend the connection limiting mechanism to support IPv6
36e010bb865f ksmbd: fix refcount leak causing resource not released
25e39d8da1f9 Revert "vgacon: Add check for vc_origin address range in vgacon_scroll()"
90bc64329612 crypto: octeontx2 - Fix address alignment on CN10KB and CN10KA-B0
ee44c1e0ca68 crypto: octeontx2 - Fix address alignment on CN10K A0/A1 and OcteonTX2
dc2579cee57d crypto: octeontx2 - Fix address alignment issue on ucode loading
fe546f5c50fc crypto: qat - flush misc workqueue during device shutdown
f9534674ce53 crypto: caam - Prevent crash on suspend with iMX8QM / iMX8ULP
7cd656e25f20 crypto: qat - lower priority for skcipher and aead algorithms
c1f5a9d4f0ae lib/crypto: mips/chacha: Fix clang build and remove unneeded byteswap
e447303a2869 vt: defkeymap: Map keycodes above 127 to K_HOLE
2ee5eca08257 vt: keyboard: Don't process Unicode characters in K_OFF mode
2ec99b922f46 bus: mhi: host: Detect events pointing to unexpected TREs
58379e95599e bus: mhi: host: Fix endianness of BHI vector table
8b557259cb2d usb: dwc3: imx8mp: fix device leak at unbind
1d14af4aaab5 usb: dwc3: meson-g12a: fix device leaks at unbind
68aaf7b29230 usb: musb: omap2430: fix device leak at unbind
dd773c917edd usb: gadget: udc: renesas_usb3: fix device leak at unbind
ac5d7bfa5da3 usb: atm: cxacru: Merge cxacru_upload_firmware() into cxacru_heavy_init()
a8cd0f7f9c6c m68k: Fix lost column on framebuffer debug console
f0fc87ca5c44 dm: Check for forbidden splitting of zone write operations
8864616719b6 dm: dm-crypt: Do not partially accept write BIOs with zoned targets
2b6e3546fb94 PM: runtime: Take active children into account in pm_runtime_get_if_in_use()
14153500da34 platform/chrome: cros_ec: Unregister notifier in cros_ec_unregister()
3e1bb7397593 cpufreq: armada-8k: Fix off by one in armada_8k_cpufreq_free_table()
bf1d64092b0e ata: Fix SATA_MOBILE_LPM_POLICY description in Kconfig
8e2739478c16 serial: 8250: fix panic due to PSLVERR
9becd7c25c61 Linux 6.12.43
e67d015b3732 ACPI: Return -ENODEV from acpi_parse_spcr() when SPCR support is disabled
25ae311e322d PCI: Honor Max Link Speed when determining supported speeds
411950235485 dm: split write BIOs on zone boundaries when zone append is not emulated
b672daa89d1a rcu: Fix racy re-initialization of irq_work causing hangs
cf04cdc419b2 drm/amd/display: Allow DCN301 to clear update flags
ccc5a37e6370 firmware: arm_scmi: Convert to SYSTEM_SLEEP_PM_OPS
f5f8bf41ab17 io_uring/rw: cast rw->flags assignment to rwf_t
f170bc6fa429 ata: libata-sata: Add link_power_management_supported sysfs attribute
f6367a4d03b9 rust: workaround `rustdoc` target modifiers bug
fed5d8679b57 rust: kbuild: clean output before running `rustdoc`
231d783e0cf0 arm64: dts: ti: k3-j722s-evm: Fix USB gpio-hog level for Type-C
4a95cfc9a413 arm64: dts: ti: k3-j722s-evm: Fix USB2.0_MUX_SEL to select Type-C
272d619a5301 PCI/ACPI: Fix runtime PM ref imbalance on Hot-Plug Capable ports
18b88bbcbde6 PCI: Allow PCI bridges to go to D3Hot on all non-x86
47ecb8f8ec00 PCI: Store all PCIe Supported Link Speeds
5a9c80656775 smb: client: fix netns refcount leak after net_passive changes
4ceb0bd4ffd0 net: better track kernel sockets lifetime
2b260dc923e8 net: Add net_passive_inc() and net_passive_dec().
130362b4b39d mfd: cros_ec: Separate charge-control probing from USB-PD
dfa79be0b45b HID: apple: avoid setting up battery timer for devices without battery
16decac6ed8f tools/hv: fcopy: Fix irregularities with size of ring buffer
110821e5de82 wifi: mac80211: check basic rates validity in sta_link_apply_parameters
20d03830f037 HID: magicmouse: avoid setting up battery timer when not needed
673cf582fd78 RDMA/siw: Fix the sendmsg byte count in siw_tcp_sendpages
261757617c68 tools/nolibc: fix spelling of FD_SETBITMASK in FD_* macros
714d36077cb0 media: v4l2: Add support for NV12M tiled variants to v4l2_format_info()
4aa1c497a19c media: uvcvideo: Do not mark valid metadata as invalid
6f08bfb58056 media: venus: Fix OOB read due to missing payload bound check
cac702a43905 media: uvcvideo: Fix 1-byte out-of-bounds read in uvc_parse_format()
a0854de00ce2 mm/kmemleak: avoid deadlock by moving pr_warn() outside kmemleak_lock
8d2d22a55ffe mm/kmemleak: avoid soft lockup in __kmemleak_do_cleanup()
ff40839e018b mm/ptdump: take the memory hotplug lock inside ptdump_walk_pgd()
769682164de8 mm, slab: restore NUMA policy support for large kmalloc
bffedc06e27e parisc: Makefile: fix a typo in palo.conf
d03610494717 hv_netvsc: Fix panic during namespace deletion with VF
5b3b346bc4c2 net/sched: ets: use old 'nbands' while purging unused classes
ed9b8e501623 fbdev: Fix vmalloc out-of-bounds write in fast_imageblit
bb81c18dbd42 userfaultfd: fix a crash in UFFDIO_MOVE when PMD is a migration entry
579c5488fe6e xfs: fix scrub trace with null pointer in quotacheck
39a93e1c9dbf btrfs: do not allow relocation of partially dropped subvolumes
03880ebe47dd btrfs: fix iteration bug in __qgroup_excl_accounting()
c2972df789b3 btrfs: zoned: do not select metadata BG as finish target
58e66d83e1ac btrfs: error on missing block group when unaccounting log tree extent buffers
807c42274006 btrfs: fix log tree replay failure due to file with 0 links and extents
16c5f8907104 btrfs: clear dirty status from extent buffer on error at insert_new_root()
d115fc9e96c3 btrfs: don't skip remaining extrefs if dir not found during log replay
38bb34617bc7 btrfs: qgroup: fix qgroup create ioctl returning success after quotas disabled
f21928dba292 btrfs: populate otime when logging an inode item
acc48b70460c btrfs: fix ssd_spread overallocation
6c25acf3a0d1 btrfs: don't ignore inode missing when replaying log tree
3c87ae17b736 btrfs: qgroup: set quota enabled bit if quota disable fails flushing reservations
7e1dfc32452a btrfs: zoned: do not remove unwritten non-data block group
f044b8492836 btrfs: abort transaction during log replay if walk_log_tree() failed
eb2114b98ffb btrfs: zoned: use filesystem size not disk size for reclaim decision
2853aaad686a cdc-acm: fix race between initial clearing halt and open
fe8e2ea0797a thunderbolt: Fix copy+paste error in match_service_id()
017198079551 comedi: fix race between polling and detaching
c94bf0166539 usb: typec: ucsi: Update power_supply on power role change
c07be32ba33a misc: rtsx: usb: Ensure mmc child device is active when card is present
9512510cee7d usb: core: config: Prevent OOB read in SS endpoint companion parsing
a2bbe1fcd351 ext4: initialize superblock fields in the kballoc-test.c kunit tests
c0d7c9827239 ext4: fix largest free orders lists corruption on mb_optimize_scan switch
9dc75a54c0cd ext4: fix zombie groups in average fragment size lists
ebb6021560b9 iommufd: Prevent ALIGN() overflow
91b0eca73d2b iommufd: Report unmapped bytes in the error path of iopt_unmap_iova_range
c62963370627 iommu/arm-smmu-qcom: Add SM6115 MDSS compatible
fc5747575472 iommu/vt-d: Optimize iotlb_sync_map for non-caching/non-RWBF modes
83e6c09b0154 cifs: reset iface weights when we cannot find a candidate
f1c5c55fb6cd clk: qcom: gcc-ipq8074: fix broken freq table for nss_port6_tx_clk_src
d10bf66d9f93 dm: Always split write BIOs to zoned device limits
8263f32e1017 block: Introduce bio_needs_zone_write_plugging()
2214b5de0a93 mm/damon/core: commit damos->target_nid
cd54dc1fd7af drm/amdgpu: fix incorrect vm flags to map bo
0d086c85ecfa drm/amdgpu: fix vram reservation issue
ea1724dc0e2f cifs: Fix collect_sample() to handle any iterator type
a431bf3d3700 ASoC: fsl_sai: replace regmap_write with regmap_update_bits
7fdc6efef6a5 scsi: lpfc: Remove redundant assignment to avoid memory leak
6cb0d8587b96 rtc: ds1307: remove clear of oscillator stop flag (OSF) in probe
f0b2eee3fbba pNFS: Fix uninited ptr deref in block/scsi layout
2eb8d5323e7d pNFS: Handle RPC size limit for layoutcommits
ad466c09f4d0 pNFS: Fix disk addr range check in block/scsi layout
49fc5bea56e1 pNFS: Fix stripe mapping in block/scsi layout
46aa80ef4959 block: avoid possible overflow for chunk_sectors check in blk_stack_limits()
aaa447ae853a ASoC: Intel: avs: Fix uninitialized pointer error in probe()
c583f968daed net: phy: smsc: add proper reset flags for LAN8710A
21e91cc3184f ALSA: hda/realtek: add LG gram 16Z90R-A to alc269 fixup table
ed30c38d1e00 lib/sbitmap: convert shallow_depth from one word to the whole sbitmap
4191feb410a0 smb: client: don't call init_waitqueue_head(&info->conn_wait) twice in _smbd_get_connection
da649d9da68d tools/power turbostat: Handle cap_get_proc() ENOSYS
6c31faeb3209 tools/power turbostat: Fix build with musl
8a0c86474f9a tools/power turbostat: Handle non-root legacy-uncore sysfs permissions
85344872609d ipmi: Fix strcpy source and destination the same
33f423bddba0 kconfig: lxdialog: fix 'space' to (de)select options
43ffed87f8bd kconfig: gconf: fix potential memory leak in renderer_edited()
96f4083f9ec3 kconfig: gconf: avoid hardcoding model2 in on_treeview2_cursor_changed()
7aa22b064069 ipmi: Use dev_warn_ratelimited() for incorrect message warnings
410e89981111 vfio/mlx5: fix possible overflow in tracking max message size
955b05d79091 scsi: aacraid: Stop using PCI_IRQ_AFFINITY
8561dc1d5dcc scsi: target: core: Generate correct identifiers for PR OUT transport IDs
ec602b3928f9 scsi: Fix sas_user_scan() to handle wildcard and multi-channel scans
2bcc768365fc kconfig: nconf: Ensure null termination where strncpy is used
bcbad21fe9be vfio/type1: conditional rescheduling while pinning
d850808db603 kconfig: lxdialog: replace strcpy() with strncpy() in inputbox.c
6d85a25c1bfe printk: nbcon: Allow reacquire during panic
a50e10af2fc5 f2fs: check the generic conditions first
aa8fe7b7b73d exfat: add cluster chain loop check for dir
ab0a2713fd42 i2c: Force DLL0945 touchpad i2c freq to 100khz
6614194456be apparmor: fix x_table_lookup when stacking is not the first entry
3692877bea89 apparmor: use the condition in AA_BUG_FMT even with debug disabled
c80c1b09074f dm-table: fix checking for rq stackable devices
bffa4056686a dm-mpath: don't print the "loaded" message if registering fails
c6801a87179f i3c: master: Initialize ret in i3c_i2c_notifier_call()
3d2262c9aa7a i3c: don't fail if GETHDRCAP is unsupported
cbc395f3bad9 apparmor: shift ouid when mediating hard links in userns
ae03a28e12a7 rtc: ds1307: handle oscillator stop flag (OSF) for ds1341
22fd8485b148 i3c: add missing include to internal header
3276f657a4bc module: Prevent silent truncation of module name in delete_module(2)
167f7ba3a0b3 md: dm-zoned-target: Initialize return variable r to avoid uninitialized use
f8a9411ef145 soundwire: Move handle_nested_irq outside of sdw_dev_lock
c2b1ae54b557 soundwire: amd: cancel pending slave status handling workqueue during remove sequence
2f0163f1cab2 soundwire: amd: serialize amd manager resume sequence during pm_prepare
0daced27470a clk: renesas: rzg2l: Postpone updating priv->clks[]
62d24beb848e crypto: ccp - Add missing bootloader info reg for pspv6
404da09310fb crypto: octeontx2 - add timeout for load_fvc completion poll
55dc87dc2ac1 media: uvcvideo: Fix bandwidth issue for Alcor camera
ea955d78bbc4 media: uvcvideo: Add quirk for HP Webcam HD 2300
f98132a59ccc media: dvb-frontends: w7090p: fix null-ptr-deref in w7090p_tuner_write_serpar and w7090p_tuner_read_serpar
0bb32863426a media: dvb-frontends: dib7090p: fix null-ptr-deref in dib7090p_rw_on_apb()
216ca748c7da media: usb: hdpvr: disable zero-length read messages
f25d566c5674 media: tc358743: Increase FIFO trigger level to 374
b42b107293b5 media: tc358743: Return an appropriate colorspace from tc358743_set_fmt
3e03ee3b65ba media: tc358743: Check I2C succeeded during probe
e6f36f58a8b4 pinctrl: stm32: Manage irq affinity settings
1540499b6630 scsi: mpi3mr: Correctly handle ATA device errors
ead8f9714710 scsi: mpt3sas: Correctly handle ATA device errors
90e0bd0f8f1a power: supply: qcom_battmgr: Add lithium-polymer entry
571617f171f7 scsi: lpfc: Check for hdwq null ptr when cleaning up lpfc_vport structure
64d853788fcb scsi: lpfc: Ensure HBA_SETUP flag is used only for SLI4 in dev_loss_tmo_callbk
699f86dbd9e4 RDMA/core: reduce stack using in nldev_stat_get_doit()
9b05e91afe94 RDMA: hfi1: fix possible divide-by-zero in find_hw_thread_mask()
4d463b4876fb dmaengine: stm32-dma: configure next sg only if there are more than 2 sgs
944c8bd67413 leds: leds-lp50xx: Handle reg to get correct multi_index
4e6339ca7c9a media: v4l2-common: Reduce warnings about missing V4L2_CID_LINK_FREQ control
dd0ec0f2368d media: ipu-bridge: Add _HID for OV5670
154a8f62169d clk: thead: Mark essential bus clocks as CLK_IGNORE_UNUSED
1e9079ff83ea MIPS: lantiq: falcon: sysctrl: fix request memory check logic
82d140f6aab5 MIPS: Don't crash in stack_top() for tasks without ABI or vDSO
86974d140faf crypto: jitter - fix intermediary handling
7fa59a1816b2 RDMA/bnxt_re: Fix size of uverbs_copy_to() in BNXT_RE_METHOD_GET_TOGGLE_MEM
d41111bb4606 media: hi556: Fix reset GPIO timings
c8ca21a28369 jfs: upper bound check of tree index in dbAllocAG
00462be586b3 jfs: Regular file corruption check
df3fd8daf278 jfs: truncate good inode pages when hard link is 0
13f613228cf3 scsi: bfa: Double-free fix
e843852eccef watchdog: iTCO_wdt: Report error if timeout configuration fails
8520c843d9a2 MIPS: vpe-mt: add missing prototypes for vpe_{alloc,start,stop,free}
d2030aaa50a5 clk: qcom: ipq5018: keep XO clock always on
ce7cd22c04a2 hwmon: (emc2305) Set initial PWM minimum value during probe based on thermal state
d006f8cbecc7 watchdog: dw_wdt: Fix default timeout
62b4f6c6abe4 fs/orangefs: use snprintf() instead of sprintf()
35782c32528d scsi: libiscsi: Initialize iscsi_conn->dd_data only if memory is allocated
8dd761d63bcb phy: rockchip-pcie: Properly disable TEST_WRITE strobe signal
37ed0eeadb0b mfd: axp20x: Set explicit ID for AXP313 regulator
f60c4943cbff clk: tegra: periph: Fix error handling and resolve unsigned compare warning
81e7e2e7ba07 ext4: do not BUG when INLINE_DATA_FL lacks system.data xattr
57d73888202a crypto: hisilicon/hpre - fix dma unmap sequence
806f85bdd3a6 fbdev: fix potential buffer overflow in do_register_framebuffer()
ec12068f10c1 cifs: Fix calling CIFSFindFirst() for root path without msearch
188265ece138 watchdog: sbsa: Adjust keepalive timeout to avoid MediaTek WS0 race condition
5ea8e53d2db7 drm/amd/display: Disable dsc_power_gate for dcn314 by default
0a0097e2b900 drm/amd/display: Avoid configuring PSR granularity if PSR-SU not supported
d2b6f313ac00 drm/amd/display: Only finalize atomic_obj if it was initialized
a1a63d8a442d vhost: fail early when __vhost_add_used() fails
680c7d9d9197 vsock/virtio: Resize receive buffers so that each SKB fits in a 4K page
394bd12d1f93 net: dsa: b53: fix IP_MULTICAST_CTRL on BCM5325
1cfa244f7198 rcu: Fix rcu_read_unlock() deadloop due to IRQ work
f6eaa8ba86d7 drm/ttm: Respect the shrinker core free target
bd821df9cc41 drm/amd/display: Avoid trying AUX transactions on disconnected ports
0793ce8b0dc6 drm/amd/display: Update DMCUB loading sequence for DCN3.5
811068726e2a selftests/bpf: Fix a user_ringbuf failure with arm64 64KB page size
e49253b5046c selftests/bpf: Fix ringbuf/ringbuf_write test failure with arm64 64KB page size
c14bf7f87346 bpf: Make reg_not_null() true for CONST_PTR_TO_MAP
3aaa339f64d9 uapi: in6: restore visibility of most IPv6 socket options
5c196b3c1222 drm/ttm: Should to return the evict error
d7458645c40c drm: renesas: rz-du: mipi_dsi: Add min check for VCLK range
0b96747667c3 net: ncsi: Fix buffer overflow in fetching version id
b17fcce70733 drm/xe: Make dma-fences compliant with the safe access rules
3ea9509cb82a ionic: clean dbpage in de-init
262db48ef07e wifi: rtlwifi: fix possible skb memory leak in _rtl_pci_init_one_rxdesc()
5643cd6c0302 wifi: rtw89: scan abort when assign/unassign_vif
74bfb1b61a72 ptp: Use ratelimite for freerun error message
45218b8b2269 bpftool: Fix JSON writer resource leak in version command
f16f96ccfe56 net: dsa: b53: prevent SWITCH_CTRL access on BCM5325
9f45e4858f80 net: dsa: b53: prevent DIS_LEARNING access on BCM5325
15cf46cc6ecc net: dsa: b53: prevent GMII_PORT_OVERRIDE_CTRL access on BCM5325
757955c80663 net: dsa: b53: fix b53_imp_vlan_setup for BCM5325
0d250ad617a0 net: dsa: b53: ensure BCM5325 PHYs are enabled
d40d53c6bb06 gve: Return error for unknown admin queue command
db7e926a15a5 net: vlan: Replace BUG() with WARN_ON_ONCE() in vlan_dev_* stubs
4311d06ab643 net: vlan: Make is_vlan_dev() a stub when VLAN is not configured
c086fbbfc9f2 drm/amd: Allow printing VanGogh OD SCLK levels without setting dpm to manual
5e683397f1d2 dpaa_eth: don't use fixed_phy_change_carrier
8ec37adfb678 neighbour: add support for NUD_PERMANENT proxy entries
d86996dc1afc wifi: iwlegacy: Check rate_idx range after addition
a2bdd6e3e5ab arm64: stacktrace: Check kretprobe_find_ret_addr() return value
c500a13fd6cf netmem: fix skb_frag_address_safe with unreadable skbs
8f2d0a7d993d powerpc: floppy: Add missing checks after DMA map
7c3e99fd4a66 wifi: ath12k: Decrement TID on RX peer frag setup error handling
3b5e5185881e wifi: ath12k: Enable REO queue lookup table feature on QCN9274 hw2.0
a529809063c4 wifi: rtlwifi: fix possible skb memory leak in `_rtl_pci_rx_interrupt()`.
99322e24247a wifi: mac80211: update radar_required in channel context after channel switch
8c2a46aafe08 drm/amd/display: Initialize mode_select to 0
c9298c19377f drm/amd/display: Fix 'failed to blank crtc!'
d838d5a3f2ee wifi: iwlwifi: fw: Fix possible memory leak in iwl_fw_dbg_collect
a07ab4a265fc wifi: iwlwifi: dvm: fix potential overflow in rs_fill_link_cmd()
18dbc182a97f lib: packing: Include necessary headers
6246776e35b8 wifi: ath12k: Fix station association with MBSSID Non-TX BSS
3cf181b44cd4 wifi: ath12k: Add memset and update default rate value in wmi tx completion
201c9b4485ed wifi: ath10k: shutdown driver when hardware is unreliable
3a1f6b418c34 drm/amd/display: Separate set_gsl from set_gsl_source_select
fc5ec93e7f8a net: fec: allow disable coalescing
3d3d1b57bf4f net: ieee8021q: fix insufficient table-size assertion
dd10a7109991 ACPI: Suppress misleading SPCR console message when SPCR table is absent
2131852573e3 net: atlantic: add set_power to fw_ops for atl2 to fix wol
2fc5b54368a1 xfrm: Duplicate SPI Handling
40e78d186d06 net: thunderbolt: Fix the parameter passing of tb_xdomain_enable_paths()/tb_xdomain_disable_paths()
a262d4296cd7 net: thunderbolt: Enable end-to-end flow control also in transmit
3f53761181a1 drm/xe/xe_query: Use separate iterator while filling GT list
5fc69bf3294d kselftest/arm64: Specify SVE data when testing VL set in sve-ptrace
125701019c9f wifi: mt76: mt7915: mcu: re-init MCU before loading FW patch
7fd46ccab6e6 wifi: rtw89: Fix rtw89_mac_power_switch() for USB
df4d27f56c61 drm/imagination: Clear runtime PM errors while resetting the GPU
280f6011ba9f perf/arm: Add missing .suppress_bind_attrs
53dc780c1e94 drm/msm: Add error handling for krealloc in metadata setup
20406ace80ad drm/msm: use trylock for debugfs
574fb734ac3d wifi: mac80211: fix rx link assignment for non-MLO stations
cce3d027227c rcu/nocb: Fix possible invalid rdp's->nocb_cb_kthread pointer access
347b94ee253e ipv6: mcast: Check inet6_dev->dead under idev->mc_lock in __ipv6_dev_mc_inc().
43c0e1c11bea (powerpc/512) Fix possible `dma_unmap_single()` on uninitialized pointer
419733db212d s390/early: Copy last breaking event address to pt_regs
18ca0c91dc51 wifi: mac80211: avoid weird state in error path
c46f3f0da978 wifi: mac80211: don't complete management TX on SAE commit
fc4289233e4b sched/fair: Bump sd->max_newidle_lb_cost when newidle balance fails
302debf01d52 net: phy: bcm54811: PHY initialization
c999814d0b9f s390/stp: Remove udelay from stp_sync_clock()
56cabce6229a wifi: iwlwifi: mvm: fix scan request validation
0cfcc16ecd02 um: Re-evaluate thread flags repeatedly
0c7b57f9fd9c wifi: iwlwifi: mvm: set gtk id also in older FWs
f01e06930444 bpf: Forget ranges when refining tnum after JSET
1b9f54ac0bbc sched/deadline: Fix accounting after global limits change
98761837889b perf/cxlpmu: Remove unintended newline from IRQ name format string
027de6f3937d net: phy: micrel: Add ksz9131_resume()
f19c83141bdc net: thunderx: Fix format-truncation warning in bgx_acpi_match_id()
010ec8daeed8 net: ipv4: fix incorrect MTU in broadcast routes
433a3592014b wifi: mac80211: don't unreserve never reserved chanctx
89649d700772 wifi: cfg80211: Fix interface type validation
1b1a54308465 net: mctp: Prevent duplicate binds
1da38b70d90f can: ti_hecc: fix -Woverflow compiler warning
f602c62c923f drm/amd/display: limit clear_update_flags to dcn32 and above
e35e711c78c8 rcu: Protect ->defer_qs_iw_pending from data race
a83ffafd02a7 drm/amd/pm: fix null pointer access
3d03c85f850b arm64: Mark kernel as tainted on SAE and SError panic
6547f890bd4e net: pcs: xpcs: mask readl() return value to 16 bits
ae4053eefb0e net/mlx5e: Properly access RCU protected qdisc_sleeping variable
31dcbba40eba net: ag71xx: Add missing check after DMA map
2fddd59597eb et131x: Add missing check after DMA map
29fe6bb14f20 wifi: rtw89: Lower the timeout in rtw89_fw_read_c2h_reg() for USB
c673277d5761 wifi: rtw89: wow: Add Basic Rate IE to probe request in scheduled scan mode
bd80fbf3ed25 idpf: preserve coalescing settings across resets
9ea8fb379fdf libbpf: Verify that arena map exists when adding arena relocations
efaa18e467e2 be2net: Use correct byte order and format string for TCP seq and ack_seq
decbacd6a9c5 s390/time: Use monotonic clock in get_cycles()
8ab6e67ae524 wifi: cfg80211: reject HTC bit for management frames
1d325fed242d ktest.pl: Prevent recursion of default variable options
2ef17d1476ab wifi: ath12k: Correct tid cleanup when tid setup fails
82d399f5841f net: usb: cdc-ncm: check for filtering capability
0c51db51c3ad wifi: iwlwifi: mvm: avoid outdated reorder buffer head_sn
1706904ef005 xen/netfront: Fix TX response spurious interrupts
76c26460f53c Bluetooth: hci_sock: Reset cookie to zero in hci_sock_free_cookie()
e2b990cfeb04 Bluetooth: btusb: Add new VID/PID 0489/e14e for MT7925
281d3fbe51fd powerpc/thp: tracing: Hide hugepage events under CONFIG_PPC_BOOK3S_64
52f238dc6730 selftests: netfilter: Enable CONFIG_INET_SCTP_DIAG
5376403f2714 netfilter: nft_set_pipapo: prefer kvmalloc for scratch maps
9314cd0fb179 ASoC: qcom: use drvdata instead of component to keep id
73a1a77630be ASoC: codecs: rt5640: Retry DEVICE_ID verification
f1d285ed4b05 iio: adc: ad7768-1: Ensure SYNC_IN pulse minimum timing requirement
91364d70f847 ALSA: usb-audio: Avoid precedence issues in mixer_quirks macros
f301c878d08d ALSA: pcm: Rewrite recalculate_boundary() to avoid costly loop
417407cdf587 ALSA: hda/ca0132: Fix buffer overflow in add_tuning_control
55d2bc82f241 platform/chrome: cros_ec_typec: Defer probe on missing EC parent
d1b0d93bfcaa platform/x86: thinkpad_acpi: Handle KCOV __init vs inline mismatches
ed2089fe9359 soc: qcom: mdt_loader: Actually use the e_phoff
add2219de2c8 imx8m-blk-ctrl: set ISI panic write hurry level
e6601bb3cb94 pm: cpupower: Fix the snapshot-order of tsc,mperf, clock in mperf_stop()
1dfeedf1d40e usb: core: usb_submit_urb: downgrade type check
6254a6689366 usb: typec: intel_pmc_mux: Defer probe if SCU IPC isn't present
2fce20decc6a ASoC: core: Check for rtd == NULL in snd_soc_remove_pcm_runtime()
06db21c02c7a tty: serial: fix print format specifiers
e0f748ef3799 ASoC: SOF: topology: Parse the dapm_widget_tokens in case of DSPless mode
5b317a5f24ba ALSA: intel8x0: Fix incorrect codec index usage in mixer for ICH4
7c0a62604c3f ASoC: hdac_hdmi: Rate limit logging on connection and disconnection
24e7957e16c7 x86/bugs: Avoid warning when overriding return thunk
37676c45c162 ALSA: hda: Disable jack polling at shutdown
b2d9ff960a83 ALSA: hda: Handle the jack polling always via a work
908d50aa38b2 platform/chrome: cros_ec_sensorhub: Retries when a sensor is not ready
af34cc8c5ebf mmc: rtsx_usb_sdmmc: Fix error-path in sd_set_power_mode()
612c8d21ce6e mei: bus: Check for still connected devices in mei_cl_bus_dev_release()
8152499f09eb char: misc: Fix improper and inaccurate error code returned by misc_init()
e285cdb9d2e4 reset: brcmstb: Enable reset drivers for ARCH_BCM2835
5a96b1e9e9a5 pps: clients: gpio: fix interrupt handling order in remove path
ae12c0666a07 selftests: vDSO: vdso_test_getrandom: Always print TAP header
bdf159a29403 ACPI: APEI: GHES: add TAINT_MACHINE_CHECK on GHES panic path
6f38d9ae4b6c mmc: sdhci-msm: Ensure SD card power isn't ON when card removed
de12d2c69b5d ACPI: processor: fix acpi_object initialization
9725102fb2a4 PM: sleep: console: Fix the black screen issue
e90a4edb7e6a thermal: sysfs: Return ENODATA instead of EAGAIN for reads
bf30f947c2d3 PM: runtime: Clear power.needs_force_resume in pm_runtime_reinit()
de52cc040d90 firmware: tegra: Fix IVC dependency problems
6c7e2caa35fc firmware: arm_scmi: power_control: Ensure SCMI_SYSPOWER_IDLE is set early during resume
e20cc295149a ACPI: PRM: Reduce unnecessary printing to avoid user confusion
fbfcc443c225 selftests: tracing: Use mutex_unlock for testing glob filter
124e2ef3df71 tools/build: Fix s390(x) cross-compilation with clang
9b0b3b5e5cae ARM: tegra: Use I/O memcpy to write to IRAM
5c2390401841 gpio: tps65912: check the return value of regmap_update_bits()
c0d5054684f0 iio: adc: ad_sigma_delta: don't overallocate scan buffer
c8db5c7a00b1 tools/nolibc: define time_t in terms of __kernel_old_time_t
f740ee4a0713 thermal/drivers/qcom-spmi-temp-alarm: Enable stage 2 shutdown when required
db8c915a0335 ASoC: soc-dapm: set bias_level if snd_soc_dapm_set_bias_level() was successed
694cd8ac4a59 EDAC/synopsys: Clear the ECC counters on init
398961058303 PM / devfreq: governor: Replace sscanf() with kstrtoul() in set_freq_store()
0223a3683d50 ARM: rockchip: fix kernel hang during smp initialization
2cbf5564beeb cpufreq: intel_pstate: Add Granite Rapids support in no-HWP mode
bd5cd23c7ae4 cpufreq: Exit governor when failed to start old governor
50d210e1ff32 gpio: wcd934x: check the return value of regmap_update_bits()
ecfe4ae9cb83 pmdomain: ti: Select PM_GENERIC_DOMAINS
58383ea1b20a usb: typec: tcpm/tcpci_maxim: fix irq wake usage
02e184dadb3d remoteproc: imx_rproc: skip clock enable when M-core is managed by the SCU
cfc9bc15bda6 ACPI: APEI: send SIGBUS to current task if synchronous memory error not recovered
97f503498981 soc: qcom: rpmh-rsc: Add RSC version 4 support
0dd2456bb92f usb: xhci: Avoid showing errors during surprise removal
a4f53e2ed5ae usb: xhci: Set avg_trb_len = 8 for EP0 during Address Device Command
84430ce1f23a usb: xhci: Avoid showing warnings for dying controller
1070a3355fcb usb: typec: ucsi: psy: Set current max to 100mA for BC 1.2 and Default
1dd5bb380525 selftests/futex: Define SYS_futex on 32-bit architectures with 64-bit time_t
31c0205923d9 cpufreq: CPPC: Mark driver with NEED_UPDATE_LIMITS flag
a0560f861ad3 platform/x86/amd: pmc: Add Lenovo Yoga 6 13ALC6 to pmc quirk list
83fc5d725729 usb: xhci: print xhci->xhc_state when queue_command failed
c51db71fc143 tracefs: Add d_delete to remove negative dentries
a24ed0e8ce7d securityfs: don't pin dentries twice, once is enough...
136994f74e8f fix locking in efi_secret_unlink()
c8e09674007b ext2: Handle fiemap on empty files to prevent EINVAL
a482e56b2a73 pidfs: raise SB_I_NODEV and SB_I_NOEXEC
e1b58b475981 fs/ntfs3: correctly create symlink for relative path
2ac47f738ddf fs/ntfs3: Add sanity check for file name
caf7f7c1a050 ata: libata-sata: Disallow changing LPM state if not supported
86cc6d907200 ata: ahci: Disable DIPM if host lacks support
aa078896e331 ata: ahci: Disallow LPM policy control if not supported
afa5ceab9d23 better lockdep annotations for simple_recursive_removal()
01e20eb22d1d hfs: fix not erasing deleted b-tree node issue
7d483ad300fc drbd: add missing kref_get in handle_write_conflicts
699b30248309 udf: Verify partition map count
139a000d20f2 loop: Avoid updating block size under exclusive owner
9d9b053f7f9c gfs2: Set .migrate_folio in gfs2_{rgrp,meta}_aops
53a0249d68a2 gfs2: Validate i_depth for exhash directories
b37768e48785 nvme-tcp: log TLS handshake failures at error level
552e1a93b315 md/raid10: set chunk_sectors limit
fc26f6f2e651 dm-stripe: limit chunk_sectors to the stripe size
bc255fec6fd7 nvme-pci: try function level reset on init failure
814cfdb6358d smb/server: avoid deadlock when linking with ReplaceIfExists
58c364238177 firmware: arm_ffa: Change initcall level of ffa_init() to rootfs_initcall
cd47a512e033 arm64: Handle KCOV __init vs inline mismatches
1bb8da27ff15 hfsplus: don't use BUG_ON() in hfsplus_create_attributes_file()
f7534cbfac0a hfsplus: fix slab-out-of-bounds read in hfsplus_uni2asc()
475d770c1992 hfsplus: fix slab-out-of-bounds in hfsplus_bnode_read()
efc095b35b23 hfs: fix slab-out-of-bounds in hfs_bnode_read()
5d8b24952736 hfs: fix general protection fault in hfs_find_init()
c0bffbc92a1c net: kcm: Fix race condition in kcm_unattach()
eb0336f213fe tls: handle data disappearing from under the TLS ULP
54f8f98665cc ptp: prevent possible ABBA deadlock in ptp_clock_freerun()
1e25d8051bb6 cpuidle: governors: menu: Avoid using invalid recent intervals data
a8df217c1415 intel_idle: Allow loading ACPI tables for any family
7d757f17bc2e sctp: linearize cloned gso packets in sctp_rcv
e9165b79a10d net: ti: icss-iep: Fix incorrect type for return value in extts_enable()
8153bce470af net: ti: icssg-prueth: Fix emac link speed handling
a2cb4df7872d netfilter: ctnetlink: fix refcount leak on table dump
5e95347bf4ca udp: also consider secpath when evaluating ipsec use for checksumming
2a1f36639741 mm/smaps: fix race between smaps_hugetlb_range and migration
c07886761fd6 habanalabs: fix UAF in export_dmabuf()
7ea3763d3a2c KVM: VMX: Preserve host's DEBUGCTLMSR_FREEZE_IN_SMM while running the guest
a8db75995ada KVM: VMX: Wrap all accesses to IA32_DEBUGCTL with getter/setter APIs
73a8e77bb5dd KVM: nVMX: Check vmcs12->guest_ia32_debugctl on nested VM-Enter
6c6a7c69a006 KVM: VMX: Extract checking of guest's DEBUGCTL into helper
56eb5c57e32c KVM: VMX: Allow guest to set DEBUGCTL.RTM_DEBUG if RTM is supported
d1a530a22440 KVM: x86: Drop kvm_x86_ops.set_dr6() in favor of a new KVM_RUN flag
1fc1d9b85408 KVM: x86: Convert vcpu_run()'s immediate exit param into a generic bitmap
a831c3e679d4 smb: client: don't wait for info->send_pending == 0 on error
65969af6dd5a smb: client: let send_done() cleanup before calling smbd_disconnect_rdma_connection()
89237dd4c8c4 mm/memory-tier: fix abstract distance calculation overflow
05ea5b2f5147 block: Make REQ_OP_ZONE_FINISH a write operation
bf2809541497 ACPI: processor: perflib: Move problematic pr->performance check
8cc2020d910f ACPI: processor: perflib: Fix initial _PPC limit application
dba5701ed65f Documentation: ACPI: Fix parent device references
7a2125962c42 eventpoll: Fix semi-unbounded recursion
d4f9351243c1 fs: Prevent file descriptor table allocations exceeding INT_MAX
cfe27f8aff2e fscrypt: Don't use problematic non-inline crypto engines
a12df9e57922 clk: samsung: gs101: fix alternate mout_hsi0_usb20_ref parent clock
fc4c256883f5 clk: samsung: gs101: fix CLK_DOUT_CMU_G3D_BUSD
bc3c149be8ea clk: samsung: exynos850: fix a comment
0bd77a08d592 sunvdc: Balance device refcount in vdc_port_mpgroup_check
facc69f43502 LoongArch: Avoid in-place string operation on FDT content
17bac5a345a2 LoongArch: Make relocate_new_kernel_size be a .quad value
92ccdef6e441 LoongArch: Don't use %pK through printk() in unwinder
f83d469e16bb LoongArch: BPF: Fix jump offset calculation in tailcall
154bfe9acbdb PCI: Extend isolated function probing to LoongArch
816a6f60c2c2 NFS: Fix the setting of capabilities when automounting a new filesystem
944ec8c77544 NFSD: detect mismatch of file handle and delegation stateid in OPEN op
74ad36ed60df nfsd: handle get_client_locked() failure in nfsd4_setclientid_confirm()
ee2cd40b0bb4 net: usb: asix_devices: add phy_mask for ax88772 mdio bus
e6ec7aa021d3 net: dpaa: fix device leak when querying time stamp info
400177f147ab net: ti: icss-iep: fix device and OF node leaks at probe
8de5f47f34f2 net: mtk_eth_soc: fix device leak at probe
3328ff844e13 net: enetc: fix device and OF node leak at probe
744d9cf898f3 net: gianfar: fix device leak when querying time stamp info
ae59ec969c07 net: ftgmac100: fix potential NULL pointer access in ftgmac100_phy_disconnect
e6269d987835 net: phy: micrel: fix KSZ8081/KSZ8091 cable test
44ddd7b1ae0b netlink: avoid infinite retry looping in netlink_unicast()
cb9bb872366e Revert "leds: trigger: netdev: Configure LED blink interval for HW offload"
12c4d55dd0bd leds: flash: leds-qcom-flash: Fix registry access after re-bind
f3a2d068e05c gpio: mlxbf3: use platform_get_irq_optional()
1ce6f627a314 Revert "gpio: mlxbf3: only get IRQ for device instance 0"
78b086e110ed gpio: mlxbf2: use platform_get_irq_optional()
5d6c696da5f0 gpio: virtio: Fix config space reading.
b3f7932c8eb4 smb: client: remove redundant lstrp update in negotiate protocol
8de33d4d72e8 smb3: fix for slab out of bounds on mount to ksmbd
33eb2d87e069 ALSA: hda/realtek: Add Framework Laptop 13 (AMD Ryzen AI 300) to quirks
fc7fd29b284c ALSA: hda/realtek: Fix headset mic on HONOR BRB-X
ae17b3b5e753 ALSA: usb-audio: Validate UAC3 cluster segment descriptors
cd08d390d15b ALSA: usb-audio: Validate UAC3 power domain descriptors, too
ecc39c79d913 io_uring: don't use int for ABI
(From OE-Core rev: bbc21b51406f7c7cc6e4447c99844414df0f170c)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ef3703035bdf29f679f31260e82ab6ef0927d5ac)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
no ids found, dumping:
880e4ff5d6c8 Linux 6.12.42
5f06ee9f9a36 usb: gadget : fix use-after-free in composite_dev_cleanup()
0ab3ae768c48 USB: gadget: f_hid: Fix memory leak in hidg_bind error path
ba08cc6801ec HID: apple: validate feature-report field count to prevent NULL pointer dereference
68e5579f4de1 media: ti: j721e-csi2rx: fix list_del corruption
efee62c5fc8c perf/arm-ni: Set initial IRQ affinity
91b370800b3f mm: swap: fix potential buffer overflow in setup_clusters()
f7c75406b7e6 mm: swap: correctly use maxpages in swapon syscall to avoid potential deadloop
b85fe4c7403f mm/hmm: move pmd_to_hmm_pfn_flags() to the respective #ifdeffery
1beca07bd954 MIPS: mm: tlb-r4k: Uniquify TLB entries on init
082a639b1c67 s390/mm: Remove possible false-positive warning in pte_free_defer()
296742ab73c2 x86/fpu: Delay instruction pointer fixup until after warning
860d93bd6a21 platform/x86/intel/pmt: fix a crashlog NULL pointer access
76563060ec75 ALSA: hda/realtek - Fix mute LED for HP Victus 16-d1xxx (MB 8A26)
9fb7f010eb2e ALSA: hda/realtek - Fix mute LED for HP Victus 16-s0xxx
0e1c67e9b8bb ALSA: hda/realtek - Fix mute LED for HP Victus 16-r1xxx
e1c508818cba ALSA: scarlett2: Add retry on -EPROTO from scarlett2_usb_tx()
0f158abad0ce ALSA: intel_hdmi: Fix off-by-one error in __hdmi_lpe_audio_probe()
aed15fc08f15 x86/sev: Evict cache lines during SNP memory validation
c884cab3bb60 net: usbnet: Fix the wrong netif_carrier_on() call
d68a867d7401 net: usbnet: Avoid potential RCU stall on LINK_CHANGE event
8c2b840c5443 Bluetooth: btusb: Add USB ID 3625:010b for TP-LINK Archer TX10UB Nano
1331e908f2f4 PCI/ASPM: Fix L1SS saving
78b3007eb08b PCI/ASPM: Save parent L1SS config in pci_save_aspm_l1ss_state()
8d2026704a79 USB: serial: option: add Foxconn T99W709
f54eef9be3cf smb: server: Fix extension string in ksmbd_extract_shortname()
7e5d91d3e6c6 ksmbd: limit repeated connections from clients with the same IP
68300f2738e0 ksmbd: fix corrupted mtime and ctime in smb2_open
edeecc7871e8 ksmbd: fix Preauh_HashValue race condition
2a30ed6428ce ksmbd: fix null pointer dereference error in generate_encryptionkey
7384e0637fa8 drm/i915/ddi: only call shutdown hooks for valid encoders
4a764acf4ab3 drm/i915/display: add intel_encoder_is_hdmi()
428434769e45 drm/i915/ddi: gracefully handle errors from intel_ddi_init_hdmi_connector()
743de353a434 drm/i915/hdmi: add error handling in g4x_hdmi_init()
7edff90dc154 drm/i915/hdmi: propagate errors from intel_hdmi_init_connector()
5913410e4962 drm/i915/ddi: change intel_ddi_init_{dp, hdmi}_connector() return type
acd6f757f66c selftests/bpf: Fix build error with llvm 19
01d1f298ba86 selftests/bpf: Add a test for arena range tree algorithm
22d89925e37e ice/ptp: fix crosstimestamp reporting
43a27836ac98 Revert "bcache: remove heap-related macros and switch to generic min_heap"
be8a5602b05b accel/ivpu: Fix reset_engine debugfs file logic
32950b190791 vsock: Do not allow binding to VMADDR_PORT_ANY
f2e8fcfd2b1b net/packet: fix a race in packet_set_ring() and packet_notifier()
15a77e9cb924 selftests/perf_events: Add a mmap() correctness test
e529888b7e80 perf/core: Prevent VMA split of buffer mappings
92043120a2e9 perf/core: Exit early on perf_mmap() fail
8c67899a5295 perf/core: Don't leak AUX buffer refcount on allocation failure
25bb3647d30a sunrpc: fix handling of server side tls alerts
39f8e0cf1798 smb: client: return an error if rdma_connect does not return within 5 seconds
8cb7f685af10 pptp: fix pptp_xmit() error path
7d0f3072f999 nvmet: exit debugfs after discovery subsystem exits
8c221b55d0c2 smb: client: let recv_done() avoid touching data_transfer after cleanup/move
c5b3ce5cc7f6 smb: client: let recv_done() cleanup before notifying the callers.
501eed35cac6 smb: client: make sure we call ib_dma_unmap_single() only if we called ib_dma_map_single already
d6917b434919 smb: client: remove separate empty_packet_queue
0d6d86b0a575 smb: server: let recv_done() avoid touching data_transfer after cleanup/move
3d970a2f2472 smb: server: let recv_done() consistently call put_recvmsg/smb_direct_disconnect_rdma_connection
896af4c26100 smb: server: make sure we call ib_dma_unmap_single() only if we called ib_dma_map_single already
17d675f6390b smb: server: remove separate empty_recvmsg_queue
b9a8a3f60b9c ALSA: hda/ca0132: Fix missing error handling in ca0132_alt_select_out()
02541f9d5c58 irqchip: Build IMX_MU_MSI only on ARM
04d5f4dbef26 eth: fbnic: remove the debugging trick of super high page bias
9432bcabeeee s390/mm: Allocate page table with PAGE_SIZE granularity
d00e4125680f net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing
0ddfe8b127ef benet: fix BUG when creating VFs
788c5e28cf48 x86/irq: Plug vector setup race
c36b2fbd60e8 sunrpc: fix client side handling of tls alerts
034d210f9d56 net/sched: taprio: enforce minimum value for picos_per_byte
c0ec2e47f1e9 net: drop UFO packets in udp_rcv_segment()
714b84653841 net: mdio: mdio-bcm-unimac: Correct rate fallback logic
5489e7fc6f8b ipv6: reject malicious packets in ipv6_gso_segment()
15c0847df624 net/mlx5: Correctly set gso_segs when LRO is used
674328102baa spi: cs42l43: Property entry should be a null-terminated array
e1e15033dfba ASoC: tas2781: Fix the wrong step for TLV on tas2781
0257dc08a404 block: ensure discard_granularity is zero when discard is not supported
3ff8fe9194a7 block: Fix default IO priority if there is no IO context
495cb1e8ec8a netlink: specs: ethtool: fix module EEPROM input/output arguments
7175bf8a2af5 s390/ap: Unmask SLCF bit in card and queue ap functions sysfs
929aa980dacf nvmet: initialize discovery subsys after debugfs is initialized
ea99b88b1999 pptp: ensure minimal skb length in pptp_xmit()
39468480b321 net: ipa: add IPA v5.1 and v5.5 to ipa_version_string()
e56e1842289d phy: mscc: Fix parsing of unicast frames
75b59af723c4 netpoll: prevent hanging NAPI when netcons gets enabled
1f3a7f53874a md/md-cluster: handle REMOVE message earlier
b6f47385e457 NFS: Fixup allocation flags for nfsiod's __GFP_NORETRY
d4ebe94673b3 NFSv4.2: another fix for listxattr
2ad40b7992aa NFS: Fix filehandle bounds checking in nfs_fh_to_dentry()
bb96d6dbd005 NFS: Fix wakeup of __nfs_lookup_revalidate() in unblock_revalidate()
ac9a6b863827 sched: Add test_and_clear_wake_up_bit() and atomic_dec_and_wake_up()
531914fd74e8 pNFS/flexfiles: don't attempt pnfs on fatal DS errors
48c6935a3498 PCI: pnv_php: Fix surprise plug detection and recovery
d2c60a8a387e powerpc/eeh: Make EEH driver device hotplug safe
5ea0d23aa954 powerpc/eeh: Export eeh_unfreeze_pe()
11fa01706a4f PCI: pnv_php: Work around switches with broken presence detection
28aa3cfce124 PCI: pnv_php: Clean up allocated IRQs on unplug
3df959fd51d6 sched/psi: Fix psi_seq initialization
c4a0d62bbe99 kconfig: qconf: fix ConfigList::updateListAllforAll()
74b3fedc57d1 scsi: sd: Make sd shutdown issue START STOP UNIT appropriately
d710ed68c54a scsi: ufs: core: Use link recovery when h8 exit fails during runtime resume
13a501f95e22 scsi: Revert "scsi: iscsi: Fix HW conn removal use after free"
13510a36a22f scsi: mpt3sas: Fix a fw_event memory leak
fa1607f943f4 vfio/pci: Separate SR-IOV VF dev_set
1df8150ab4cc vfio/pds: Fix missing detach_ioas op
12964e77c8c1 vfio: Prevent open_count decrement to negative
7b2db63ad836 vfio: Fix unbalanced vfio_df_close call in no-iommu mode
89efd90ec672 i2c: muxes: mule: Fix an error handling path in mule_i2c_mux_probe()
6038537c4a26 exfat: fdatasync flag should be same like generic_write_sync()
82765ce5c7a5 f2fs: fix to trigger foreground gc during f2fs_map_blocks() in lfs mode
4b069ec86c33 f2fs: fix to calculate dirty data during has_not_enough_free_secs()
3908f15df598 f2fs: fix to update upper_p in __get_secs_required() correctly
0fe7976b6254 f2fs: vm_unmap_ram() may be called from an invalid context
70849d33130a f2fs: fix to avoid out-of-boundary access in devs.path
97df495d7541 f2fs: fix to avoid panic in f2fs_evict_inode
dea243f58a83 f2fs: fix to avoid UAF in f2fs_sync_inode_meta()
09a8915e0fcc f2fs: doc: fix wrong quota mount option description
ca525a64bb92 f2fs: fix to check upper boundary for gc_no_zoned_gc_percent
1f1efc11132a f2fs: fix to check upper boundary for gc_valid_thresh_ratio
46f24b1fbf6b f2fs: fix to check upper boundary for value of gc_boost_zoned_gc_percent
44a79437309e f2fs: fix KMSAN uninit-value in extent_info usage
334afc40c41c f2fs: fix bio memleak when committing super block
8b1f1f83e377 f2fs: turn off one_time when forcibly set to foreground GC
b0002acbec11 rtc: rv3028: fix incorrect maximum clock rate handling
b6612b05de8e rtc: pcf8563: fix incorrect maximum clock rate handling
b82c5074f6fc rtc: pcf85063: fix incorrect maximum clock rate handling
e57edc34bcf7 rtc: nct3018y: fix incorrect maximum clock rate handling
189ddb44f88c rtc: hym8563: fix incorrect maximum clock rate handling
6ccd7f451e0e rtc: ds1307: fix incorrect maximum clock rate handling
a721da19eac7 ucount: fix atomic_long_inc_below() argument type
db38ade47be4 module: Restore the moduleparam prefix length check
ff24854e8547 apparmor: Fix unaligned memory accesses in KUnit test
277bb68f6576 apparmor: fix loop detection used in conflicting attachment resolution
991a32f71538 apparmor: ensure WB_HISTORY_SIZE value is a power of 2
258d42024fad bpf: Check netfilter ctx accesses are aligned
eb2035c1adeb bpf: Check flow_dissector ctx accesses are aligned
b2a3018e8325 vhost: Reintroduce kthread API and add mode selection
3c8a15f2229d vdpa: Fix IDR memory leak in VDUSE module exit
37f26b9013b4 vdpa/mlx5: Fix release of uninitialized resources on error path
8ed657604bfd vhost-scsi: Fix log flooding with target does not exist errors
65c9eeff9308 vdpa/mlx5: Fix needs_teardown flag calculation
966460bace9e perf record: Cache build-ID of hit DSOs only
0a98771d1e50 selftests: ALSA: fix memory leak in utimer test
6f7ac9c5ad75 drm/xe/vf: Disable CSC support on VF
81b117f4a5a3 mtd: rawnand: atmel: set pmecc data setup time
2529fc0a1873 mtd: rawnand: rockchip: Add missing check after DMA map
3e2d8d39a328 mtd: rawnand: atmel: Fix dma_mapping_error() address
3406bd02dee3 jfs: fix metapage reference count leak in dbAllocCtl
40f0a51f6c54 fbdev: imxfb: Check fb_add_videomode to prevent null-ptr-deref
a434ce6643de crypto: qat - fix seq_file position update in adf_ring_next()
71c31562d23b crypto: qat - fix DMA direction for compression on GEN2 devices
309b23f7b5bc perf tools: Remove libtraceevent in .gitignore
112ed94f2a45 sh: Do not use hyphen in exported variable name
32b106dc4622 ASoC: fsl_xcvr: get channel status data when PHY is not exists
a5f147a934ef dmaengine: nbpfaxi: Add missing check after DMA map
2c0b57e55d89 dmaengine: mv_xor: Fix missing check after DMA map and missing unmap
39c4454ed669 fs/orangefs: Allow 2 more characters in do_c_string()
e3d729db128d remoteproc: xlnx: Disable unsupported features
c1dead8bb303 clk: imx95-blk-ctl: Fix synchronous abort
875bdd2f9bbc PCI: endpoint: pci-epf-vntb: Fix the incorrect usage of __iomem attribute
9cf0d1dbfa44 soundwire: stream: restore params when prepare ports fail
a510a9869d21 crypto: qat - disable ZUC-256 capability for QAT GEN5
bcd9cdc74974 crypto: img-hash - Fix dma_unmap_sg() nents value
44b07ee87c4f crypto: keembay - Fix dma_unmap_sg() nents value
f63bd615e58f hwrng: mtk - handle devm_pm_runtime_enable errors
1a43f53b0e9e clk: at91: sam9x7: update pll clk ranges
b2e294216bf1 ext4: Make sure BH_New bit is cleared in ->write_end handler
0a844a32e07a watchdog: ziirave_wdt: check record length in ziirave_firm_verify()
7aa077df2357 scsi: isci: Fix dma_unmap_sg() nents value
ef42bea6c105 scsi: mvsas: Fix dma_unmap_sg() nents value
ad1fbfab0dcf scsi: elx: efct: Fix dma_unmap_sg() nents value
6a9f573ebdb6 scsi: ibmvscsi_tgt: Fix dma_unmap_sg() nents value
49a6266113f0 clk: sunxi-ng: v3s: Fix de clock definition
ea11b0d213cc clk: thead: th1520-ap: Correctly refer the parent of osc_12m
87be3d8ca00b RDMA/mana_ib: Fix DSCP value in modify QP
c149e3475cac perf tests bp_account: Fix leaked file descriptor
9ea3f6b9a67b pinmux: fix race causing mux_owner NULL with active mux_usecount
fc1072d934f6 proc: use the same treatment to check proc_lseek as ones for proc_read_iter et.al
ec437d015968 kernel: trace: preemptirq_delay_test: use offstack cpu mask
5f3c0301540b RDMA/hns: Fix -Wframe-larger-than issue
81c0bdb09cfa RDMA/hns: Drop GFP_NOWARN
bb8899d40600 RDMA/hns: Fix accessing uninitialized resources
1209e33fe3af RDMA/hns: Get message length of ack_req from FW
9dea08eac4f6 crypto: ccp - Fix crash when rebind ccp device for ccp.ko
c88a902cc5d3 crypto: inside-secure - Fix `dma_unmap_sg()` nents value
155c1d4c4907 crypto: ccp - Fix locking on alloc failure handling
88d4191073a5 RDMA/hns: Fix HW configurations not cleared in error flow
dab173bae330 RDMA/hns: Fix double destruction of rsv_qp
ffc3c00a0e83 perf sched: Fix memory leaks in 'perf sched latency'
f7786e6a4f9c perf sched: Use RC_CHK_EQUAL() to compare pointers
f34d54d2c276 perf sched: Fix memory leaks for evsel->priv in timehist
31a549b3a294 perf sched: Fix memory leaks in 'perf sched map'
4b3ab5f3639e perf sched: Free thread->priv using priv_destructor
5c42686e56fc perf sched: Make sure it frees the usage string
c2e061c2a5ec mtd: spi-nor: spansion: Fixup params->set_4byte_addr_mode for SEMPER
ea90bb43be7c perf dso: Add missed dso__put to dso__load_kcore
e9136a4afe3b perf tools: Fix use-after-free in help_unknown_cmd()
16ab43828c48 Fix dma_unmap_sg() nents value
40fd96ce4e60 clk: clk-axi-clkgen: fix fpfd_max frequency for zynq
de07e1183139 fanotify: sanitize handle_type values when reporting fid
faa05c6d5ae1 phy: qualcomm: phy-qcom-eusb2-repeater: Don't zero-out registers
e7d11d7da5e0 dmaengine: mmp: Fix again Wvoid-pointer-to-enum-cast warning
b2b740a884eb pinctrl: berlin: fix memory leak in berlin_pinctrl_build_state()
230b23da10d5 pinctrl: sunxi: Fix memory leak on krealloc failure
c63ca4d3870c PCI: endpoint: pci-epf-vntb: Return -ENOENT if pci_epc_get_next_free_bar() fails
0e29430d700a crypto: arm/aes-neonbs - work around gcc-15 warning
99490f243390 power: supply: max14577: Handle NULL pdata when CONFIG_OF is not set
f642500aa7ed power: supply: cpcap-charger: Fix null check for power_supply_get_by_name
f1a1be99d5ae clk: xilinx: vcu: unregister pll_post only if registered correctly
1ff541ea9e0c media: v4l2-ctrls: Fix H264 SEPARATE_COLOUR_PLANE check
7943ed1f05f5 clk: davinci: Add NULL check in davinci_lpsc_clk_register()
a508da16feac mtd: fix possible integer overflow in erase_xfer()
55ece6d9c370 crypto: qat - fix state restore for banks with exceptions
a32cd73f66b7 crypto: qat - allow enabling VFs in the absence of IOMMU
bfd78c42f0d7 crypto: marvell/cesa - Fix engine load inaccuracy
e555e28232b3 crypto: qat - use unmanaged allocation for dc_data
beea9197b2e9 crypto: sun8i-ce - fix nents passed to dma_unmap_sg()
e3992ee81eba clk: renesas: rzv2h: Fix missing CLK_SET_RATE_PARENT flag for ddiv clocks
a0acd38f75de PCI: rockchip-host: Fix "Unexpected Completion" log message
5f176b9ea18c fortify: Fix incorrect reporting of read buffer size
3d672fe065aa staging: media: atomisp: Fix stack buffer overflow in gmin_get_var_int()
0dbef493cae7 bpf, arm64: Fix fp initialization for exception boundary
87b34d935109 bpf/preload: Don't select USERMODE_DRIVER
0c58f74f8aa9 ipv6: annotate data-races around rt->fib6_nsiblings
db65739d406c ipv6: fix possible infinite loop in fib6_info_uses_dev()
cd8d8bbd9ced ipv6: prevent infinite loop in rt6_nlmsg_size()
c2241478d248 vrf: Drop existing dst reference in vrf_ip6_input_dst
f4f5a1a751aa selftests: rtnetlink.sh: remove esp4_offload after test
77b05e7a2d66 stmmac: xsk: fix negative overflow of budget in zerocopy mode
5d761dc79f4a net: dsa: microchip: Fix wrong rx drop MIB counter for KSZ8863
781a0bbf3774 net/mlx5e: Remove skb secpath if xfrm state is not found
c04bc84aa5e9 net/mlx5e: Clear Read-Only port buffer size in PBMC before update
7c1ae471da69 netfilter: xt_nfacct: don't assume acct name is null-terminated
bd5908c1f60d can: kvaser_usb: Assign netdev.dev_port based on device channel index
4bee385bc330 can: kvaser_pciefd: Store device channel index
f2880c9cf1ed can: peak_usb: fix USB FD devices potential malfunction
176784dc75ae selftests: drv-net: Fix remote command checking in require_cmd()
208040490a4f tools/rv: Do not skip idle in trace
62f6175d145e bpf: Disable migration in nf_hook_run_bpf().
cca34a0a767f Bluetooth: hci_event: Mask data status from LE ext adv reports
16852eccbdfa Bluetooth: hci_sync: fix double free in 'hci_discovery_filter_clear()'
f15d94491094 memcg_slabinfo: Fix use of PG_slab
1e30043ee358 kcsan: test: Initialize dummy variable
5763daf5ca4f ring-buffer: Remove ring_buffer_read_prepare_sync()
24bf1d10a04a wifi: nl80211: Set num_sub_specs before looping through sub_specs
471a7904f82f wifi: mac80211: Write cnt before copying in ieee80211_copy_rnr_beacon()
27244ed7403c wifi: brcmfmac: fix P2P discovery failure in P2P peer due to missing P2P IE
0c5c0c898314 wifi: ath12k: fix endianness handling while accessing wmi service bit
f0a0bc39fc52 Reapply "wifi: mac80211: Update skb's control block key in ieee80211_tx_dequeue()"
01aa86f93e70 wifi: mac80211: Check 802.11 encaps offloading in ieee80211_tx_h_select_key()
f92ad4f8ecb9 wifi: mac80211: Don't call fq_flow_idx() for management frames
eadf83a687fd wifi: mac80211: Do not schedule stopped TXQs
ad1c484f1b81 wifi: plfxlc: Fix error handling in usb driver probe
af72badd5ee4 wifi: mac80211: reject TDLS operations when station is not associated
c200ecdd820f rcu: Fix delayed execution of hurry callbacks
f14341cf874e iommu/amd: Fix geometry.aperture_end for V2 tables
39dfbf77c6e4 drm/amdgpu/gfx10: fix kiq locking in KCQ reset
6db9f958b43f drm/amdgpu/gfx9.4.3: fix kiq locking in KCQ reset
b9f5d112e5e3 drm/amdgpu/gfx9: fix kiq locking in KCQ reset
9c0e3144924c wifi: ath11k: fix sleeping-in-atomic in ath11k_mac_op_set_bitrate_mask()
da4d3fd5920a mwl8k: Add missing check after DMA map
4db9ac2246a7 wifi: rtw88: Fix macid assigned to TDLS station
2bc4c07394cb wifi: rtl8xxxu: Fix RX skb size for aggregation disabled
e9c3ae88e4f4 tcp: call tcp_measure_rcv_mss() for ooo packets
81990ac1d1f0 xen/gntdev: remove struct gntdev_copy_batch from stack
e59078852604 xen: fix UAF in dmabuf_exp_from_pages()
19c262401e12 RDMA/mlx5: Fix UMR modifying of mkey page size
bdb956891c9c net_sched: act_ctinfo: use atomic64_t for three counters
795cb393e389 net/sched: Restrict conditions for adding duplicating netems to qdisc tree
6aa95f56a6a7 iommu/amd: Enable PASID and ATS capabilities in the correct order
67925d8b0d63 um: rtc: Avoid shadowing err in uml_rtc_start()
fe6345dbae40 arch: powerpc: defconfig: Drop obsolete CONFIG_NET_CLS_TCINDEX
a9ca56ca4f19 netfilter: nf_tables: adjust lockdep assertions handling
765eeb44b1a3 netfilter: nf_tables: Drop dead code from fill_*_info routines
69be0a3c4e5b fbcon: Fix outdated registered_fb reference in comment
c1cbee3aae2a sched/psi: Optimize psi_group_change() cpu_clock() usage
82f2cd70222c drm/amd/pm/powerplay/hwmgr/smu_helper: fix order of mask and value
08cfbe7acac0 refscale: Check that nreaders and loops multiplication doesn't overflow
ac984f610628 m68k: Don't unregister boot console needlessly
d89943d1e3a0 drm/msm/dpu: Fill in min_prefill_lines for SC8180X
6434ca4429eb bpf: Ensure RCU lock is held around bpf_prog_ksym_find
7989a6056c7e kselftest/arm64: Fix check for setting new VLs in sve-ptrace
939135ddeae2 net: dst: annotate data-races around dst->output
002bb5722d7e net: dst: annotate data-races around dst->input
4249f1307932 net/mlx5: Check device memory pointer before usage
bfb595e79319 tcp: fix tcp_ofo_queue() to avoid including too much DUP SACK range
72a48be1f539 wifi: ath11k: clear initialized flag for deinit-ed srng lists
7dd6350307af iwlwifi: Add missing check for alloc_ordered_workqueue
a84858649b32 wifi: iwlwifi: Fix memory leak in iwl_mvm_init()
7858a95566f4 wifi: rtl818x: Kill URBs before clearing tx status queue
77a7a48f87d6 wifi: rtw89: avoid NULL dereference when RX problematic packet on unsupported 6 GHz band
1b8397c2d14e caif: reduce stack size, again
3f91bec30811 powerpc/pseries/dlpar: Search DRC index from ibm,drc-indexes for IO add
c9c7b91bc1a0 bpftool: Fix memory leak in dump_xx_nlmsg on realloc failure
bcdd7499bdef drm/amdgpu: Remove nbiov7.9 replay count reporting
b56acee24e33 drm/vmwgfx: Fix Host-Backed userspace on Guest-Backed kernel
94927ae3d5c1 net: ipv6: ip6mr: Fix in/out netdev to pass to the FORWARD chain
443430e67868 selftests/bpf: Fix unintentional switch case fall through
274bf55fcd3f selftests/bpf: fix signedness bug in redir_partial()
ee03766d79de bpf, ktls: Fix data corruption when using bpf_msg_pop_data() in ktls
538b19886ca0 bpf, sockmap: Fix psock incorrectly pointing to sk
66d64d42d297 drm/panthor: Add missing explicit padding in drm_panthor_gpu_info
de7834d100f2 drm/panfrost: Fix panfrost device variable name in devfreq
439b30af0ea9 drm/rockchip: cleanup fb when drm_gem_fb_afbc_init failed
33cb946a8c73 selftests/tracing: Fix false failure of subsystem event test
e7d59358a7e3 staging: nvec: Fix incorrect null termination of battery manufacturer
c458492e2ab8 bus: mhi: host: pci_generic: Fix the modem name of Foxconn T99W640
7d4f49b9141a interconnect: qcom: sc8180x: specify num_nodes
3f693357f551 interconnect: qcom: sc8280xp: specify num_links for qnm_a1noc_cfg
8eaeb8df9159 soc: qcom: pmic_glink: fix OF node leak
4c80835f6af4 samples: mei: Fix building on musl libc
c2f05fc69f4a staging: greybus: gbphy: fix up const issue with the match callback
8e4b38710dd4 cpufreq: Init policy->rwsem before it may be possibly used
494c213792f3 cpufreq: Initialize cpufreq-based frequency-invariance later
667eb5aeecd2 cpufreq: intel_pstate: Always use HWP_DESIRED_PERF in passive mode
7db3a7b2e413 PM / devfreq: Fix a index typo in trans_stat
d5632359dbc4 PM / devfreq: Check governor before using governor->name
a7d23e71a66e arm64: dts: imx8mn-beacon: Fix HS400 USDHC clock speed
6e6c9e2d29b5 arm64: dts: imx8mm-beacon: Fix HS400 USDHC clock speed
6d5a85e3bb67 ARM: dts: imx6ul-kontron-bl-common: Fix RTS polarity for RS485 interface
11be9a6e3483 selftests: breakpoints: use suspend_stats to reliably check suspend success
bed9fa51068f arm64: dts: st: fix timer used for ticks
e2a57054e999 soc/tegra: cbb: Clear ERR_FORCE register with ERR_STATUS
bf8d808f77b9 arm: dts: ti: omap: Fixup pinheader typo
cd865df971c6 usb: early: xhci-dbc: Fix early_ioremap leak
8374ac7d69a5 powercap: dtpm_cpu: Fix NULL pointer dereference in get_pd_power_uw()
3e3ebf358cda Revert "vmci: Prevent the dispatching of uninitialized payloads"
576fc220fb6c selftests: vDSO: chacha: Correctly skip test if necessary
6ee761012d1a pps: fix poll support
87f8f8654e55 vmci: Prevent the dispatching of uninitialized payloads
a3177955f8da staging: fbtft: fix potential memory leak in fbtft_framebuffer_alloc()
a7645815edf4 spi: stm32: Check for cfg availability in stm32_spi_probe
5786ccbd317c mei: vsc: Unset the event callback on remove and probe errors
173a7f17103c mei: vsc: Event notifier fixes
4a958702b7cc mei: vsc: Destroy mutex after freeing the IRQ
ae77ebdc4822 usb: typec: ucsi: yoga-c630: fix error and remove paths
7101b26f7e96 firmware: arm_scmi: Fix up turbo frequencies selection
e579ab62fefd cpufreq: armada-8k: make both cpu masks static
1de0e54aaf49 arm64: dts: ti: k3-am62p-j722s: fix pinctrl-single size
ac0f8fca09f2 arm64: dts: ti: k3-am642-phyboard-electra: Fix PRU-ICSSG Ethernet ports
8209fc45b04e usb: misc: apple-mfi-fastcharge: Make power supply names unique
1d88e8e66b68 usb: host: xhci-plat: fix incorrect type for of_match variable in xhci_plat_probe()
d9632823a400 ARM: dts: vfxxx: Correctly use two tuples for timer address
e7e370264098 arm64: dts: qcom: msm8976: Make blsp_dma controlled-remotely
cac895bcbcf2 arm64: dts: qcom: sa8775p: Correct the interrupt for remoteproc
0f35f4df0590 arm64: dts: exynos: gs101: Add 'local-timer-stop' to cpuidle nodes
72ee9c7b7c61 arm64: dts: qcom: sc7180: Expand IMEM region
db9d963622d9 arm64: dts: qcom: sdm845: Expand IMEM region
04e7717dddc0 soc: qcom: QMI encoding/decoding for big endian
90040a48030e selftests: Fix errno checking in syscall_user_dispatch test
c814023c82ae arm64: dts: freescale: imx93-tqma9352: Limit BUCK2 to 600mV
3b13b5a4f29e ASoC: mediatek: use reserved memory or enable buffer pre-allocation
a9d00b7f374b ASoC: ops: dynamically allocate struct snd_ctl_elem_value
2d9ee65b6d84 ASoC: soc-dai: tidyup return value of snd_soc_xlate_tdm_slot_mask()
cd89d86dd1d5 io_uring: fix breakage in EXPERT menu
f5426ffbec97 gfs2: No more self recovery
b356ee013a79 Revert "fs/ntfs3: Replace inode_trylock with inode_lock"
5055b7db9411 hfsplus: remove mutex_lock check in hfsplus_free_extents
b53a10073f28 hfs: make splice write available again
248d605319fe hfsplus: make splice write available again
0e5c17c2376b ublk: use vmalloc for ublk_device's __queues
3ed2cc6a6e93 fs/ntfs3: cancle set bad inode after removing name fails
47706f9acfee fs_context: fix parameter name in infofc() macro
bb80f7618832 parse_longname(): strrchr() expects NUL-terminated string
2f6c33b9fab0 audit,module: restore audit logging in load failure case
6b4b30b863ee ASoC: amd: yc: add DMI quirk for ASUS M6501RM
362ea99022c9 ASoC: Intel: fix SND_SOC_SOF dependencies
9b25e1643cc7 ALSA: hda/cs35l56: Workaround bad dev-index on Lenovo Yoga Book 9i GenX
bf0d05941955 ASoC: amd: yc: Add DMI entries to support HP 15-fb1xxx
f13486ac6b5b ethernet: intel: fix building with large NR_CPUS
60291de0c56c ASoC: amd: yc: Add DMI quirk for HP Laptop 17 cp-2033dx
(From OE-Core rev: 5199b8677f4964d6a4ec4f5c1fac3eacd3b1a489)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 940556e3d828e80af9b9cc8c56357c6bf0adfc83)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
no ids found, dumping:
8f5ff9784f32 Linux 6.12.41
c0c21293d0c2 mm: khugepaged: fix call hpage_collapse_scan_file() for anonymous vma
c60f5156e62d KVM: x86: Free vCPUs before freeing VM state
d8b3dfd4d36c Revert "drm/xe/forcewake: Add a helper xe_force_wake_ref_has_domain()"
ffbedb4ad984 Revert "drm/xe/devcoredump: Update handling of xe_force_wake_get return"
5a276d341c8e Revert "drm/xe/tests/mocs: Update xe_force_wake_get() return handling"
c72303e7eb49 Revert "drm/xe/gt: Update handling of xe_force_wake_get return"
69fbb3f1740b drm/i915/dp: Fix 2.7 Gbps DP_LINK_BW value on g4x
bc9abdf6bce8 ALSA: hda: Add missing NVIDIA HDA codec IDs
beb314a55e1e ALSA: hda/tegra: Add Tegra264 support
c7f864d34529 Drivers: hv: Make the sysfs node size for the ring buffer dynamic
beddf74e4064 ARM: 9448/1: Use an absolute path to unified.h in KBUILD_AFLAGS
90d5cd64f46d iio: hid-sensor-prox: Fix incorrect OFFSET calculation
05847477ff8a iio: hid-sensor-prox: Restore lost scale assignments
86dca1cb4804 wifi: mt76: mt7925: adjust rm BSS flow to prevent next connection failure
b63eb95856c0 Revert "wifi: mt76: mt7925: Update mt7925_mcu_uni_[tx,rx]_ba for MLO"
98937588ff9c arm64: dts: qcom: x1-crd: Fix vreg_l2j_1p2 voltage
3d12349ade54 x86/hyperv: Fix APIC ID and VP index confusion in hv_snp_boot_ap()
f1b3ad11ec11 KVM: x86/hyper-v: Skip non-canonical addresses during PV TLB flush
d483bf624f22 KVM: x86: model canonical checks more precisely
c0c82c2adc22 KVM: x86: Add X86EMUL_F_MSR and X86EMUL_F_DT_LOAD to aid canonical checks
62dd9132a458 KVM: x86: Route non-canonical checks in emulator through emulate_ops
94620f95f6cd KVM: x86: drop x86.h include from cpuid.h
a4d60ba277ec ext4: fix out of bounds punch offset
51492e99894a ext4: correct the error handle in ext4_fallocate()
85defb9933f6 ext4: fix incorrect punch max_end
35bd33e3ef09 ext4: move out common parts into ext4_fallocate()
8a98313caa3a ext4: move out inode_lock into ext4_fallocate()
1697ca500a84 ext4: factor out ext4_do_fallocate()
2cbc4d640d40 ext4: refactor ext4_insert_range()
8bb93d988212 ext4: refactor ext4_collapse_range()
db1fcf7fd51c ext4: refactor ext4_zero_range()
33f61ecabb10 ext4: refactor ext4_punch_hole()
d9116d28538a ext4: don't explicit update times in ext4_fallocate()
a5ae7fa30cd9 erofs: fix large fragment handling
41485d7c637b erofs: clean up header parsing for ztailpacking and fragments
f9b2cb6fff33 erofs: simplify tail inline pcluster handling
516fabf34173 erofs: use Z_EROFS_LCLUSTER_TYPE_MAX to simplify switches
9a84e212e334 erofs: refine z_erofs_get_extent_compressedlen()
4d0f12dc8335 erofs: simplify z_erofs_load_compact_lcluster()
1e5a88732ace arm64: dts: qcom: x1e78100-t14s: mark l12b and l15b always-on
4a7b64ba0cca mtd: rawnand: qcom: Fix last codeword read in qcom_param_page_type_exec()
a1bc9a394a27 crypto: powerpc/poly1305 - add depends on BROKEN for now
b49b543f4e0b comedi: comedi_test: Fix possible deletion of uninitialized timers
28419a4f3a1e jfs: reject on-disk inodes of an unsupported type
3ad50c7c66cc x86/bugs: Fix use of possibly uninit value in amd_check_tsa_microcode()
b85815675fc5 spi: cadence-quadspi: fix cleanup of rx_chan on failure paths
a7c6de9f8467 usb: typec: tcpm: apply vbus before data bringup in tcpm_src_attach
27e423886a7a usb: typec: tcpm: allow switching to mode accessory to mux properly
a9a1eb410f35 usb: typec: tcpm: allow to use sink in accessory mode
77a4a907cc53 selftests/bpf: Add tests with stack ptr register in conditional jmp
bafb375c4606 rust: give Clippy the minimum supported Rust version
4c8f15e770fb mm/zsmalloc: do not pass __GFP_MOVABLE if CONFIG_COMPACTION=n
656eaddbc952 mm/vmscan: fix hwpoisoned large folio handling in shrink_folio_list
140edd5adf6d selftests: mptcp: connect: also cover checksum
219c4eb6c3f0 selftests: mptcp: connect: also cover alt modes
1bff28ea4b11 resource: fix false warning in __request_region()
79663a15a1c7 nilfs2: reject invalid file types when reading inodes
27e740614df8 kasan: use vmalloc_dump_obj() for vmalloc error reports
0fde7dccbf4c ice: Fix a null pointer dereference in ice_copy_and_init_pkg()
44af78621c09 gve: Fix stuck TX queue for DQ queue format
50c61f55b6b9 e1000e: ignore uninitialized checksum word on tgp
78328fad6c49 e1000e: disregard NVM checksum on tgp when valid checksum bit is not set
a3bba0205830 dpaa2-switch: Fix device reference count leak in MAC endpoint handling
4dd56cabfbe5 dpaa2-eth: Fix device reference count leak in MAC endpoint handling
708fd522b86d arm64/entry: Mask DAIF in cpu_switch_to(), call_on_irq_stack()
060a28e39053 ALSA: hda/realtek - Add mute LED support for HP Victus 15-fa0xxx
d3f60054b6a0 ALSA: hda/realtek - Add mute LED support for HP Pavilion 15-eg0xxx
ba8e8a8a2e19 sprintf.h requires stdarg.h
cf8e62f6e1b2 bus: fsl-mc: Fix potential double device reference in fsl_mc_get_endpoint()
5b8d6cb9a03d i2c: virtio: Avoid hang by using interruptible completion wait
5622108c3041 i2c: tegra: Fix reset error handling with ACPI
42c4471b30fa i2c: qup: jump out of the loop in case of timeout
9ea8a9ebbea8 timekeeping: Zero initialize system_counterval when querying time from phc drivers
6ed79cf1183a ARM: 9450/1: Fix allowing linker DCE with binutils < 2.36
f7ff03247600 mm/ksm: fix -Wsometimes-uninitialized from clang-21 in advisor_mode_show()
f5ee8a39f03e drm/sched: Remove optimization that causes hang when killing dependent jobs
198604687f19 drm/amdgpu: Reset the clear flag in buddy during resume
d2a6a3543fd2 platform/x86: ideapad-laptop: Fix kbd backlight not remembered among boots
616ca3c4d11e platform/x86: ideapad-laptop: Fix FnLock not remembered among boots
4de81eb46284 net: hns3: default enable tx bounce buffer when smmu enabled
68494b2ca295 net: hns3: fixed vf get max channels bug
952cd60f695b net: hns3: disable interrupt when ptp init failed
7676d652801c net: hns3: fix concurrent setting vlan filter issue
1194ad0d44d6 s390/ism: fix concurrency management in ism_cmd()
de5aaea0384c selftests: drv-net: wait for iperf client to stop sending
61baf2a43d45 ALSA: hda/realtek: Fix mute LED mask on HP OMEN 16 laptop
5c25b4f2769e drm/bridge: ti-sn65dsi86: Remove extra semicolon in ti_sn_bridge_probe()
0ca816a96fdc can: netlink: can_changelink(): fix NULL pointer deref of struct can_priv::do_set_mode
11a2eadf0bd2 net/sched: sch_qfq: Avoid triggering might_sleep in atomic context in qfq_delete_class
5f02ea0f63dd net: appletalk: Fix use-after-free in AARP proxy probe
18617f4063e5 i40e: When removing VF MAC filters, only check PF-set MAC
dc08e1772566 i40e: report VF tx_dropped with tx_errors instead of tx_discards
ebd24581e055 net/mlx5: E-Switch, Fix peer miss rules to use peer eswitch
6b1f7194d02c net/mlx5: Fix memory leak in cmd_exec()
07759e28a3b5 net: ti: icssg-prueth: Fix buffer allocation for ICSSG
1dc0ed16cfbc ASoC: mediatek: mt8365-dai-i2s: pass correct size to mt8365_dai_set_priv
5918c3f4800a xfrm: interface: fix use-after-free after changing collect_md xfrm interface
07ab45902446 xfrm: Set transport header to fix UDP GRO handling
085f24f0be55 xfrm: state: use a consistent pcpu_id in xfrm_state_find
6bf2daafc51b xfrm: state: initialize state_ptrs earlier in xfrm_state_find
80d66be8a04f staging: vchiq_arm: Make vchiq_shutdown never fail
0fb8478fb0ea platform/x86: Fix initialization order for firmware_attributes_class
9128b2dbe510 x86/hyperv: Fix usage of cpu_online_mask to get valid cpu
ef3bee8d1da1 tools/hv: fcopy: Fix incorrect file path conversion
8a1fbb642b74 platform/mellanox: mlxbf-pmc: Use kstrtobool() to check 0/1 input
d38e1e0a64a9 platform/mellanox: mlxbf-pmc: Validate event/enable input
f0580af3d3ec platform/mellanox: mlxbf-pmc: Remove newline char from event name input
1b102d2cc4bc regmap: fix potential memory leak of regmap_bus
be4f30f7c178 iio: adc: ad7949: use spi_is_bpw_supported()
5aa9a2d57899 interconnect: qcom: sc7280: Add missing num_links to xm_pcie3_1 node
3fd782ceabea RDMA/core: Rate limit GID cache warning messages
96876f6e859e platform/x86: asus-nb-wmi: add DMI quirk for ASUS Zenbook Duo UX8406CA
5d4261dbb333 regulator: core: fix NULL dereference on unbind due to stale coupling data
bf812206f2d0 virtio_ring: Fix error reporting in virtqueue_resize
30ce52f1616e virtio_net: Enforce minimum TX ring size for reliability
a7b79db25846 Input: gpio-keys - fix a sleep while atomic with PREEMPT_RT
2bf554c820f1 x86/traps: Initialize DR7 by writing its architectural reset value
(From OE-Core rev: 8f1e1b571dac3bf16147b3e2283d22cae4ab9431)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 97e62663b3f94fbe6429ce6f40a84974aac81471)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
d90ecb2b1308 Linux 6.12.40
fd627ac8a5cf KVM: x86/xen: Fix cleanup logic in emulation of Xen schedop poll hypercalls
ff7ccaadb0bf iommu/vt-d: Fix misplaced domain_attached assignment
e82d8825f712 smb: client: let smbd_post_send_iter() respect the peers max_send_size and transmit all data
11f430b8f5fc drm/xe: Move page fault init after topology init
ce7585324b20 drm/xe/mocs: Initialize MOCS index early
8fc25d3055ba sched,freezer: Remove unnecessary warning in __thaw_task
7258b437d55d i2c: omap: fix deprecated of_property_read_bool() use
f701716812cb i2c: omap: Handle omap_i2c_init() errors in omap_i2c_probe()
ba35cc0598f3 i2c: omap: Fix an error handling path in omap_i2c_probe()
c1a786faa6ec i2c: omap: Add support for setting mux
35fdf1093109 selftests/bpf: Set test path for token/obj_priv_implicit_token_envvar
d9ebd928288b rust: use `#[used(compiler)]` to fix build and `modpost` with Rust >= 1.89.0
affb46db59f9 net: libwx: fix multicast packets received count
75747e25beca usb: dwc3: qcom: Don't leave BCR asserted
c45b48b4f4c0 usb: hub: Don't try to recover devices lost during warm reset.
bf71baa3cfe7 usb: hub: Fix flushing of delayed work used for post resume purposes
e11359640090 usb: hub: Fix flushing and scheduling of delayed work that tunes runtime pm
aec11e5f9c45 usb: hub: fix detection of high tier USB3 devices behind suspended hubs
ee56da95f896 btrfs: fix block group refcount race in btrfs_create_pending_block_groups()
e77078e52fbf clone_private_mnt(): make sure that caller has CAP_SYS_ADMIN in the right userns
7fc808d98215 sched: Change nr_uninterruptible type to unsigned long
816d36973467 efivarfs: Fix memory leak of efivarfs_fs_info in fs_context error paths
44e73241b8be libbpf: Fix handling of BPF arena relocations
f0de9702f9b2 drm/mediatek: only announce AFBC if really supported
40b5b4ba8ed8 drm/mediatek: Add wait_event_timeout when disabling plane
b04fb2628b28 Revert "cgroup_freezer: cgroup_freezing: Check if not frozen"
d7c1098787a6 rxrpc: Fix transmission of an abort in response to an abort
839fe96c1520 rxrpc: Fix recv-recv race of completed call
e5c480dc62a3 net/sched: Return NULL when htb_lookup_leaf encounters an empty rbtree
71f435f846b0 net: bridge: Do not offload IGMP/MLD messages
8984bcbd1edf net: vlan: fix VLAN 0 refcount imbalance of toggling filtering during runtime
cdb767915fc9 tls: always refresh the queue when reading sock
4e7c46362550 virtio-net: fix recursived rtnl_lock() during probe()
1a71bf5c91ab hv_netvsc: Set VF priv_flags to IFF_NO_ADDRCONF before open to prevent IPv6 addrconf
5db93cbd7d50 Bluetooth: L2CAP: Fix attempting to adjust outgoing MTU
1259b780e7b9 drm/xe/pf: Prepare to stop SR-IOV support prior GT reset
be77ce6b3a6b drm/xe/pf: Move VFs reprovisioning to worker
abe59c53b626 drm/xe/pf: Sanitize VF scratch registers on FLR
fc38c249c622 netfilter: nf_conntrack: fix crash due to removal of uninitialised entry
7c532f222361 net: fix segmentation after TCP/UDP fraglist GRO
7929d27c747e ipv6: mcast: Delay put pmc->idev in mld_del_delrec()
35b501a2393a net/mlx5: Correctly set gso_size when LRO is used
f47400547a95 Bluetooth: btusb: QCA: Fix downloading wrong NVM for WCN6855 GF variant without board ID
f5a40e54cd6c Bluetooth: hci_core: add missing braces when using macro parameters
db386fc5fa65 Bluetooth: SMP: Fix using HCI_ERROR_REMOTE_USER_TERM on timeout
6c586fcb880a Bluetooth: SMP: If an unallowed command is received consider it a failure
05ab8da312ec Bluetooth: hci_sync: fix connectable extended advertising when using static random address
b97be7ee8a1c Bluetooth: Fix null-ptr-deref in l2cap_sock_resume_cb()
95a13b0a6b04 riscv: traps_misaligned: properly sign extend value in misaligned load handler
32b14e757404 riscv: Enable interrupt during exception handling
efad4e2a0fa7 loop: use kiocb helpers to fix lockdep warning
65c666aff44e usb: net: sierra: check for no status endpoint
cd469b173d14 ice: check correct pointer in fwlog debugfs
5a5d64f0eec8 ice: add NULL check in eswitch lag check
3c4bdc8a852e hwmon: (corsair-cpro) Validate the size of the received input buffer
dcf0f03d7f74 selftests: net: increase inter-packet timeout in udpgro.sh
33711db90bd5 can: tcan4x5x: fix reset gpio usage during probe
d587e6929b7c can: tcan4x5x: add option for selecting nWKRQ voltage
d57dda2056fa wifi: cfg80211: remove scan request n_channels counted_by
6a466ac72fd4 nvmet-tcp: fix callback lock for TLS handshake
f9a90478207a nvme: fix misaccounting of nvme-mpath inflight I/O
fd6493533af9 net: phy: Don't register LEDs for genphy
5b02e397929e smc: Fix various oops due to inet_sock type confusion.
124765c20603 nvme: fix endianness of command word prints in nvme_log_err_passthru()
8184ee3c667d nvme: fix inconsistent RCU list manipulation in nvme_ns_add_to_ctrl_list()
9a7de97b915a fix a leak in fcntl_dirnotify()
09bce2138a30 smb: client: fix use-after-free in cifs_oplock_break
06ec83b6c792 rpl: Fix use-after-free in rpl_do_srh_inline().
a6d735100f60 net/sched: sch_qfq: Fix race condition on qfq_aggregate
e8767b89cd82 block: fix kobject leak in blk_unregister_queue
20648ff4a203 net: emaclite: Fix missing pointer increment in aligned_read()
894780d6dd3e cachefiles: Fix the incorrect return value in __cachefiles_write()
dc05051dd10d selftests/sched_ext: Fix exit selftest hang on UP
6952aeace93f bpf: Reject %p% format string in bprintf-like helpers
e80692789679 arm64: dts: imx95: Correct the DMA interrupter number of pcie0_ep
6353bf36f56b soundwire: amd: fix for clearing command status register
a6e232ee0f86 soundwire: amd: fix for handling slave alerts after link is down
8814cbbddcaf arm64: dts: rockchip: Add cd-gpios for sdcard detect on Cool Pi 4B
6cb38e5d359a arm64: dts: rockchip: Add cd-gpios for sdcard detect on Cool Pi CM5
c42116dc70af comedi: Fix initialization of data for instructions that write to subdevice
2af1e7d389c2 comedi: Fix use of uninitialized data in insn_rw_emulate_bits()
8c20a5cb9879 comedi: Fix some signed shift left operations
992d600f284e comedi: Fail COMEDI_INSNLIST ioctl if n_insns is too large
3eab654f5d19 comedi: das6402: Fix bit shift out of bounds
076b13ee60eb comedi: das16m1: Fix bit shift out of bounds
e0f3c0867d7d comedi: aio_iiro_16: Fix bit shift out of bounds
a27e27eee313 comedi: pcl812: Fix bit shift out of bounds
610615c96680 iio: common: st_sensors: Fix use of uninitialize device structs
6eea9f7648dd iio: backend: fix out-of-bound write
404b1d0fe0c6 iio: adc: stm32-adc: Fix race in installing chained IRQ handler
07c9a0617d9a iio: adc: max1363: Reorder mode_list[] entries
0ceb2893d360 iio: adc: max1363: Fix MAX1363_4X_CHANS/MAX1363_8X_CHANS[]
086a76474121 iio: adc: axp20x_adc: Add missing sentinel to AXP717 ADC channel maps
bfcda3e10157 iio: accel: fxls8962af: Fix use after free in fxls8962af_fifo_flush
b361598b7352 soc: aspeed: lpc-snoop: Don't disable channels that aren't enabled
855d4da5f270 soc: aspeed: lpc-snoop: Cleanup resources in stack-order
2a76bc2b24ed smb: client: fix use-after-free in crypt_message when using async crypto
d5629d1af060 s390/bpf: Fix bpf_arch_text_poke() with new_addr == NULL again
11c19d42d3a7 pmdomain: governor: Consider CPU latency tolerance from pm_domain_cpu_gov
10e27b2a6ebe net: libwx: properly reset Rx ring descriptor
ba7c793f96c1 net: libwx: fix the using of Rx buffer DMA
08d18bda0d03 net: libwx: remove duplicate page_pool_put_full_page()
74cb0f102d4b net: stmmac: intel: populate entire system_counterval_t in get_time_fn() callback
516cd0943a22 mmc: sdhci_am654: Workaround for Errata i2312
5280e0b8bc69 mmc: sdhci-pci: Quirk for broken command queuing on Intel GLK-based Positivo models
6198bfe1af77 mmc: bcm2835: Fix dma_unmap_sg() nents value
a25ebc337022 memstick: core: Zero initialize id_reg in h_memstick_read_dev_id()
2594d5ffc081 isofs: Verify inode mode when loading from disk
122160289adf dmaengine: nbpfaxi: Fix memory corruption in probe()
573f1e59024c cpuidle: psci: Fix cpuhotplug routine with PREEMPT_RT=y
9e11e0db4e27 Bluetooth: btintel: Check if controller is ISO capable on btintel_classify_pkt_type
1ddedbd8087d af_packet: fix soft lockup issue caused by tpacket_snd()
fa0796cd62c2 af_packet: fix the SO_SNDTIMEO constraint not effective on tpacked_snd()
0e9c4b36ad0c arm64: dts: rockchip: use cs-gpios for spi1 on ringneck
b0c7f2984356 arm64: dts: imx8mp-venice-gw73xx: fix TPM SPI frequency
9650e49db619 arm64: dts: imx8mp-venice-gw72xx: fix TPM SPI frequency
a3964e87cf15 arm64: dts: imx8mp-venice-gw71xx: fix TPM SPI frequency
1a54317f3868 arm64: dts: freescale: imx8mm-verdin: Keep LDO5 always on
a86ea423dc13 arm64: dts: add big-endian property back into watchdog node
c70000779432 arm64: dts: imx8mp-venice-gw74xx: fix TPM SPI frequency
5419adaef571 net/mlx5: Update the list of the PCI supported devices
837a9631f180 phonet/pep: Move call to pn_skb_get_dst_sockaddr() earlier in pep_sock_accept()
938126995e64 mptcp: reset fallback status gracefully at disconnect() time
f81b6fbe13c7 mptcp: plug races between subflow fail and subflow creation
54999dea879f mptcp: make fallback action and fallback decision atomic
f28044a60506 io_uring/poll: fix POLLERR handling
134ec1ed468f ALSA: hda/realtek: Add quirk for ASUS ROG Strix G712LWS
61e867574444 ALSA: hda/realtek - Fix mute LED for HP Victus 16-r0xxx
084eb54b820f drm/amd/display: Free memory allocation
74162dda80e7 drm/amd/display: Disable CRTC degamma LUT for DCN401
62f2a58a4cb0 drm/amdgpu: Increase reset counter only on success
228ad2ab5b33 drm/amdgpu/gfx8: reset compute ring wptr on the GPU on resume
21e649b0bd1a objtool/rust: add one more `noreturn` Rust function for Rust 1.89.0
7bb9ea515cda tracing/osnoise: Fix crash in timerlat_dump_stack()
33e20747b47d tracing: Add down_write(trace_event_sem) when adding trace event
692cfff241f1 tracing/probes: Avoid using params uninitialized in parse_btf_arg()
d18f63e84884 HID: core: do not bypass hid_hw_raw_request
953af3c0814a HID: core: ensure __hid_request reserves the report ID as the first byte
a262370f385e HID: core: ensure the allocated report buffer can contain the reserved report ID
68860d1ade38 dm-bufio: fix sched in atomic context
0758f7ef402b spi: Add check for 8-bit transfer with 8 IO mode support
40f79e2bf6a4 pch_uart: Fix dma_sync_sg_for_device() nents value
9ecfed987bc8 Input: xpad - set correct controller type for Acer NGR200
c29a2328af96 nvmem: layouts: u-boot-env: remove crc32 endianness conversion
c85295f624db nvmem: imx-ocotp: fix MAC address byte length
ff628593ba7c Revert "staging: vchiq_arm: Create keep-alive thread during probe"
970635ed63da thunderbolt: Fix bit masking in tb_dp_port_set_hops()
17a6ea23890e thunderbolt: Fix wake on connect at runtime
1a1190b4ba7b i2c: stm32f7: unmap DMA mapped buffer
79b63523bfdc i2c: stm32: fix the device used for the DMA map
783ea37b237a usb: gadget: configfs: Fix OOB read on empty string write
032f22962bfc usb: dwc2: gadget: Fix enter to hibernation for UTMI+ PHY
231bf7e839a8 usb: musb: fix gadget state on disconnect
951dd99ac05a USB: serial: ftdi_sio: add support for NDI EMGUIDE GEMINI
8b8cb0c34c66 USB: serial: option: add Foxconn T99W640
ba1d8dc87ae7 USB: serial: option: add Telit Cinterion FE910C04 (ECM) composition
248ba00d13ff phy: tegra: xusb: Disable periodic tracking on Tegra234
2f2a375304b0 phy: tegra: xusb: Decouple CYA_TRK_CODE_UPDATE_ON_IDLE from trk_hw_mode
ec7f98ff05f0 phy: tegra: xusb: Fix unbalanced regulator disable in UTMI PHY mode
(From OE-Core rev: 842e271dcfaa2abaa5e2bd4fd474efd8bd0d204a)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a4a28bbc46597c95f76972d68b39591da77b1b59)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
cdf264c0a590 Linux 6.12.39
f3f9deccfc68 KVM: SVM: Set synthesized TSA CPUID flags
f004f58d18a2 rseq: Fix segfault on registration when rseq_cs is non-zero
f2133b849ff2 crypto: ecdsa - Harden against integer overflows in DIV_ROUND_UP()
59923d508bd2 arm64: Filter out SME hwcaps when FEAT_SME isn't implemented
815f1161d6db ksmbd: fix potential use-after-free in oplock/lease break ack
2d89dab1ea60 kasan: remove kasan_find_vm_area() to prevent possible deadlock
e1aec954583f net: wangxun: revert the adjustment of the IRQ vector sequence
5244536e650c erofs: fix rare pcluster memory leak after unmounting
5ea53aa71c2c selftests/bpf: adapt one more case in test_lru_map to the new target_free
7b4a02631352 HID: nintendo: avoid bluetooth suspend/resume stalls
c72536350e82 HID: quirks: Add quirk for 2 Chicony Electronics HP 5MP Cameras
716a0c8dedc6 HID: Add IGNORE quirk for SMARTLINKTECHNOLOGY
70685fb6216f riscv: vdso: Exclude .rodata from the PT_DYNAMIC segment
9ef5d4748dfe bpf: Adjust free target to avoid global starvation of LRU map
c23e0792b77d vt: add missing notification when switching back to text mode
0bcc14f36c7a btrfs: fix assertion when building free space tree
589b290d0935 net: mana: Record doorbell physical address in PF mode
921fffa1d8bc HID: lenovo: Add support for ThinkPad X1 Tablet Thin Keyboard Gen2
e46cf2943f91 driver: bluetooth: hci_qca:fix unable to load the BT driver
a9c357b08672 net: usb: qmi_wwan: add SIMCom 8230C composition
e55b2126961b ALSA: hda/realtek: Add quirks for some Clevo laptops
01b0312a4a3a ALSA: hda/realtek - Enable mute LED on HP Pavilion Laptop 15-eg100
72aad5cf5790 ASoC: amd: yc: add quirk for Acer Nitro ANV15-41 internal mic
383b2399d586 io_uring: make fallocate be hashed work
67be7e6c55a9 ALSA: hda/realtek: Add mic-mute LED setup for ASUS UM5606
68397fda2caa ASoC: SOF: Intel: hda: Use devm_kstrdup() to avoid memleak.
dd072fa64715 um: vector: Reduce stack usage in vector_eth_configure()
7df2295c036b atm: idt77252: Add missing `dma_map_error()`
25cab1b83d66 ublk: sanity check add_dev input for underflow
f154e41e1d9d bnxt_en: Set DMA unmap len correctly for XDP_REDIRECT
b4e7e3f4e9d2 bnxt_en: Fix DCB ETS validation
948ab36ed249 net: ll_temac: Fix missing tx_pending check in ethtools_set_ringparam()
bbd385b65f9e net/mlx5e: Add new prio for promiscuous mode
7581afc05154 net/mlx5e: Fix race between DIM disable and net_dim()
c4270235db92 can: m_can: m_can_handle_lost_msg(): downgrade msg lost in rx message to debug level
90d0d5a439f5 drm/xe/pm: Correct comment of xe_pm_set_vram_threshold()
ec4014566377 selftests: net: lib: fix shift count out of range
182c9f38c367 selftests: net: lib: Move logging from forwarding/lib.sh here
e3647c40bea2 net: phy: microchip: limit 100M workaround to link-down events on LAN88xx
b215e916336f net: phy: microchip: Use genphy_soft_reset() to purge stale LPA bits
4c934e0cac61 ibmvnic: Fix hardcoded NUM_RX_STATS/NUM_TX_STATS with dynamic sizeof
473f3eadfc73 net: appletalk: Fix device refcount leak in atrtr_create()
e0dd2e972966 netfilter: flowtable: account for Ethernet header in nf_flow_pppoe_proto()
fd67f52eea80 erofs: fix to add missing tracepoint in erofs_readahead()
ea2350dfa378 erofs: refine readahead tracepoint
9493b5f9ad07 erofs: tidy up zdata.c
71e4f033a90d erofs: get rid of `z_erofs_next_pcluster_t`
16396885c26a erofs: free pclusters if no cached folio is attached
ff4b8c9ade1b drm/xe/pf: Clear all LMTT pages on alloc
8586552df591 nbd: fix uaf in nbd_genl_connect() error path
1bbdf4213711 wifi: mt76: mt7925: Fix null-ptr-deref in mt7925_thermal_init()
fa7e9a15460a drm/nouveau/gsp: fix potential leak of memory used during acpi init
06c566371f8a wifi: rt2x00: fix remove callback type mismatch
d21eeb050599 wifi: mac80211: fix non-transmitted BSSID profile search
d4a7056ca9ab wifi: mac80211: correctly identify S1G short beacon
2941155d9a5a raid10: cleanup memleak at raid10_make_request
776e6186dc9e md/raid1: Fix stack memory use after return in raid1_reshape
a560de522374 drm/tegra: nvdec: Fix dma_alloc_coherent error check
fcd9c923b58e wifi: zd1211rw: Fix potential NULL pointer dereference in zd_mac_tx_to_dev()
c6625c21ea66 wifi: cfg80211: fix S1G beacon head validation in nl80211
8d4d00ea6038 netfs: Fix ref leak on inserted extra subreq in write retry
42baf997722c netlink: make sure we allow at least one dump skb
f98c4cec7504 netlink: Fix rmem check in netlink_broadcast_deliver().
cecc9146d244 ASoC: Intel: sof-function-topology-lib: Print out the unsupported dmic count
19ff875dc516 erofs: address D-cache aliasing
4745bfd34ae7 erofs: fix to add missing tracepoint in erofs_read_folio()
3b16c9b8ba71 ksmbd: fix a mount write count leak in ksmbd_vfs_kern_path_locked()
92c2c005a8ba smb: server: make use of rdma_destroy_qp()
1d219778281e clk: scmi: Handle case where child clocks are initialized before their parents
971da696abf0 x86/mm: Disable hugetlb page table sharing on 32-bit
a68b85855732 x86/rdrand: Disable RDSEED on AMD Cyan Skillfish
fcee75daecc5 clk: imx: Fix an out-of-bounds access in dispmix_csr_clk_dev_data
5d2d34f36724 rust: init: allow `dead_code` warnings for Rust >= 1.89.0
febc0b5dbabd lib/alloc_tag: do not acquire non-existent lock in alloc_tag_top_users()
4c39dfd13beb mm/vmalloc: leave lazy MMU mode on PTE mapping error
92ed107cd26d scripts/gdb: fix interrupts.py after maple tree conversion
62720dc3cfd9 scripts/gdb: de-reference per-CPU MCE interrupts
cb89f9bf6c3a scripts/gdb: fix interrupts display after MCP on x86
ee6c677ef318 mm: fix the inaccurate memory statistics issue for users
839d8682732e maple_tree: fix mt_destroy_walk() on root leaf node
92db42e201f4 kallsyms: fix build without execinfo
7dccd5eb5343 Revert "PCI/ACPI: Fix allocated memory release on error in pci_acpi_scan_root()"
e4172522d594 Revert "ACPI: battery: negate current when discharging"
ee6f6138d5f2 drm/xe: Allocate PF queue size on pow2 boundary
065bd940ee0a drm/framebuffer: Acquire internal references on GEM handles
9e4af87bd08d Revert "usb: gadget: u_serial: Add null pointer check in gs_start_io"
abf3620cba68 usb: gadget: u_serial: Fix race condition in TTY wakeup
48007d6e7bdb Revert "drm/xe/xe2: Enable Indirect Ring State support for Xe2"
57b7c27ef5e7 drm/xe/bmg: fix compressed VRAM handling
2d2f07a99487 drm/gem: Fix race in drm_gem_handle_create_tail()
38df1a5053bc drm/ttm: fix error handling in ttm_buffer_object_transfer
e2d6547dc8b9 drm/sched: Increment job count before swapping tail spsc queue
08480e285c6a drm/gem: Acquire references on GEM handles for framebuffers
e90ee15ce28c drm/amdkfd: Don't call mmput from MMU notifier callback
9f852d301f64 drm/imagination: Fix kernel crash when hard resetting the GPU
a7b2f250ffcd wifi: mt76: mt7925: fix invalid array index in ssid assignment during hw scan
fad0f6fcdae0 wifi: mt76: mt7925: fix the wrong config for tx interrupt
9b50874f297f wifi: mt76: mt7925: prevent NULL pointer dereference in mt7925_sta_set_decap_offload()
9639e54025f1 wifi: mt76: mt7921: prevent decap offload config before STA initialization
a963819a121f wifi: mwifiex: discard erroneous disassoc frames on STA interface
e01851f6e9a6 wifi: prevent A-MSDU attacks in mesh networks
373caeec3651 pwm: mediatek: Ensure to disable clocks in error path
d526e11ab274 pwm: Fix invalid state detection
275605a8b480 pinctrl: qcom: msm: mark certain pins as invalid for interrupts
3e0542701b37 md/md-bitmap: fix GPF in bitmap_get_stats()
9f260e16b297 net: ethernet: rtsn: Fix a null pointer dereference in rtsn_probe()
8f65277317a8 gre: Fix IPv6 multicast route creation.
199af064babb ASoC: fsl_sai: Force a software reset when starting in consumer mode
e14bffc90866 ALSA: ad1816a: Fix potential NULL pointer deref in snd_card_ad1816a_pnp()
d9bd1163c8d8 KVM: Allow CPU to reschedule while setting per-page memory attributes
fd044c99d831 KVM: SVM: Reject SEV{-ES} intra host migration if vCPU creation is in-flight
5cb498b20bff KVM: SVM: Add missing member in SNP_LAUNCH_START command structure
55f568521e0b KVM: x86/xen: Allow 'out of range' event channel ports in IRQ routing table.
291eff10b197 x86/mce: Make sure CMCI banks are cleared during shutdown on Intel
8ed7f3de93e1 x86/mce: Ensure user polling settings are honored when restarting timer
55ea884c0dce x86/mce: Don't remove sysfs if thresholding sysfs init fails
afcf4f4e7062 x86/mce/amd: Fix threshold limit reset
e01d5e33645d x86/mce/amd: Add default names for MCA banks and blocks
9e0d33e75c16 ipmi:msghandler: Fix potential memory corruption in ipmi_create_user()
d1ff5f9d2c54 rxrpc: Fix oops due to non-existence of prealloc backlog struct
5385ad53793d rxrpc: Fix bug due to prealloc collision
8ecd651ef24a net/sched: Abort __tc_modify_qdisc if parent class does not exist
fc2fffa2faca net: ethernet: ti: am65-cpsw-nuss: Fix skb size by accounting for skb_shared_info
34a09d6240a2 atm: clip: Fix NULL pointer dereference in vcc_sendmsg()
024876b247a8 atm: clip: Fix infinite recursive call of clip_push().
9f771816f14d atm: clip: Fix memory leak of struct clip_vcc.
36caab990b69 atm: clip: Fix potential null-ptr-deref in to_atmarpd().
4d5476fa3931 net: phy: smsc: Fix link failure in forced mode with Auto-MDIX
6fb4cd247cda net: phy: smsc: Force predictable MDI-X state on LAN87xx
850812bd2a15 net: phy: smsc: Fix Auto-MDIX configuration when disabled by strap
be8792c6702b net: stmmac: Fix interrupt handling for level-triggered mode in DWC_XGMAC2
41a741c476e1 vsock: Fix IOCTL_VM_SOCKETS_GET_LOCAL_CID to check also `transport_local`
ae2c712ba39c vsock: Fix transport_* TOCTOU
3734d78210cc vsock: Fix transport_{g2h,h2g} TOCTOU
62e6160cfb55 tcp: Correct signedness in skb remaining space calculation
50aa2d121bc2 tipc: Fix use-after-free in tipc_conn_close().
8fb2802a1654 vsock: fix `vsock_proto` declaration
4b8e18af7bea netlink: Fix wraparounds of sk->sk_rmem_alloc.
b90129445f50 net: phy: qcom: qca808x: Fix WoL issue by utilizing at8031_set_wol()
31db4223db33 net: phy: qcom: move the WoL function to shared library
778f4e173020 arm64: poe: Handle spurious Overlay faults
2e0cb0c74d96 bnxt_en: eliminate the compile warning in bnxt_request_irq due to CONFIG_RFS_ACCEL
0caba66f0073 sched/deadline: Fix dl_server runtime calculation formula
35bda158da39 fix proc_sys_compare() handling of in-lookup dentries
df1d6801f16a pinctrl: amd: Clear GPIO debounce for suspend
cdbcde935e72 Bluetooth: hci_event: Fix not marking Broadcast Sink BIS as connected
32fa1f92a40e Bluetooth: hci_sync: Fix not disabling advertising instance
0cd863ab4204 ASoC: cs35l56: probe() should fail if the device ID is not recognized
a0a8009083e5 perf: Revert to requiring CAP_SYS_ADMIN for uprobes
f7fe33f629bb sched/core: Fix migrate_swap() vs. hotplug
1207f57be07f irqchip/irq-msi-lib: Select CONFIG_GENERIC_MSI_IRQ
bc179aa79a20 perf/core: Fix the WARN_ON_ONCE is out of lock protected region
8f4c7131721a ASoC: Intel: soc-acpi: arl: Correct order of cs42l43 matches
cca47e6e1f78 ASoC: Intel: soc-acpi-intel-arl-match: set get_function_tplg_files ops
fc3a8a5e8f8e ASoC: Intel: add sof_sdw_get_tplg_files ops
36536435849b ASoC: soc-acpi: add get_function_tplg_files ops
06e0b070eb97 ASoC: Intel: soc-acpi: arl: Add match entries for new cs42l43 laptops
97d14c04610c ASoC: Intel: soc-acpi: arl: Correct naming of a cs35l56 address struct
724b93a6a694 ASoC: Intel: SND_SOC_INTEL_SOF_BOARD_HELPERS select SND_SOC_ACPI_INTEL_MATCH
d4f6a267cc07 ASoC: fsl_asrc: use internal measured ratio for non-ideal ratio mode
07ed75bfa7ed drm/amdgpu: Replace Mutex with Spinlock for RLCG register access to avoid Priority Inversion in SRIOV
56ea7746045a crypto: s390/sha - Fix uninitialized variable in SHA-1 and SHA-2
04513cf1581b drm/amdgpu/ip_discovery: add missing ip_discovery fw
39d6a607d531 drm/amdgpu/discovery: use specific ip_discovery.bin for legacy asics
e9d9b25f3767 drm/exynos: exynos7_drm_decon: add vblank check in IRQ handling
6dee745bd0ae eventpoll: don't decrement ep refcount while still holding the ep mutex
(From OE-Core rev: 7e6c84ab74dd8adf162ab998380829ee2319f749)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 25fd1e5999398cc81201379b51d676356e4d102b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There's a (second) overhead factor applied in images generated with Wic,
and this is already documented in the .wks reference. However, the
IMAGE_OVERHEAD_FACTOR entry does not mention it, and by looking at the
partition sizes (e.g. with parted) one may find it confusing that they
don't match with the expected rootfs size (e.g. in a scenario where the
extra space is "0" and IMAGE_OVERHEAD_FACTOR="1.0").
This second overhead is already documented, though:
https://docs.yoctoproject.org/ref-manual/kickstart.html#command-part-or-partition
Mention the '--overhead-factor' option in the glossary entry and add a
reference to the wks documentation.
(From yocto-docs rev: 987929b349a927d6b243d351aebebfd160d1b097)
Signed-off-by: Joao Marcos Costa <joaomarcos.costa@bootlin.com>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit b9040e20b015e9b02683ec3014e4ade5eb59d41a)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The filename is outdated as its version was already bumped and there are
also different files for different feed choices.
Use glob to match any available file.
Also the directory changed to CVE_CHECK2 meanwhile, so Update it, too.
(From yocto-docs rev: 1b4d559ad5489a34cec26f9aad2687d2cb3ecc0a)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit a2f18cb23183401d9d8e2fd4499d164ef8d86e44)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Python 3.14 changes the default multiprocessing context from "fork" to
"forkserver"; however bitbake heavily relies on "fork" to efficiently
pass data to the child processes. As such, make "fork" context in the bb
namespace and use it in place of the normal multiprocessing module.
Note that multiprocessing contexts were added in Python 3.4, so this
should be safe to use even before Python 3.14
[YOCTO #15858]
(Bitbake rev: 0d9d8d0863e82e986c33c08064ce9a99224a06d5)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The "has-elf-tls" option was removed by the commit
8e1614a906086fb46c5dd7b7f2dffab91194165c. However is should have been
renamed to "has-thread-local", since it was renamed and not removed in
rust by this commit.
391332c5d9
(From OE-Core rev: 575a4316f661392eb73d1d97300511e2bca24ada)
Signed-off-by: Per x Johansson <perxjoh@axis.com>
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Since pulseaudio-server requires the audio group, we explicitly add it.
When use useradd-staticids or do not use the default group in
base-passwd, an error will occur because the audio group is not defined.
NOTE: pulseaudio: Performing useradd with [--root
TOPDIR/tmp/work/cortexa72-poky-linux/pulseaudio/17.0/recipe-sysroot
--home-dir /var/run/pulse --gid 998 --groups audio,pulse
--no-create-home --system --shell /bin/false --uid 998 pulse]
useradd: group 'audio' does not exist
ERROR: pulseaudio: useradd command did not succeed.
(From OE-Core rev: 4fc918da4667eebbbdae3def8c38209a3d650f97)
Signed-off-by: Kyungjik Min <dpmin7@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The default CONNECTIVITY_CHECK_URIS uses "https://yoctoproject.org/connectivity.html"
which redirect to "https://www.yoctoproject.org/connectivity.html".
Some network configurations with proxies or restricted internet access
don't handle HTTP redirects properly during the sanity check phase,
causing build failures with:
ERROR: OE-core's config sanity checker detected a potential misconfiguration.
Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).
Following is the list of potential problems / advisories:
Fetcher failure for URL: 'https://yoctoproject.org/connectivity.html'. URL doesn't work.
Updated the default URL to use the final destination directly to avoid
redirect-related connectivity check failures.
Also updated SDK test cases in https.py to use the corrected URL for
consistency.
(From OE-Core rev: 894648f4173a8a0e489e720e2b543cd22e39a878)
Signed-off-by: Deepak Rathore <deeratho@cisco.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 60cdf960a3560f391babd559737f1afb31fb2c5c)
Signed-off-by: Deepak Rathore <deeratho@cisco.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A vulnerability classified as problematic was found in libtiff
4.6.0. This vulnerability affects the function PS_Lvl2page of
the file tools/tiff2ps.c of the component tiff2ps. The
manipulation leads to null pointer dereference. It is possible
to launch the attack on the local host. The complexity of an
attack is rather high. The exploitation appears to be difficult.
The exploit has been disclosed to the public and may be used.
The name of the patch is 6ba36f159fd396ad11bf6b7874554197736ecc8b.
It is recommended to apply a patch to fix this issue. One of the
maintainers explains, that "[t]his error only occurs if
DEFER_STRILE_LOAD (defer-strile-load:BOOL=ON) or TIFFOpen( .. "rD")
option is used."
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2025-8534
Upstream patch:
6ba36f159f
(From OE-Core rev: 6db99609f8aeca660fa01fc9e32008a2e37aae03)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Pick commit [1] mentioned in [2].
[1] e51fdff7d2
[2] https://nvd.nist.gov/vuln/detail/CVE-2025-8225
Testsuite did not show any changes in results:
=== binutils Summary ===
# of expected passes 310
# of unexpected failures 1
# of untested testcases 1
# of unsupported tests 9
(From OE-Core rev: 3d79514f90a6f731a5333417641500b8e52e410a)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This reverts commit 9296d038106aebfb66e3a76c4444597e2e1a2263.
Since this patch, it looks like qemuriscv64 doesn't boot in Walnascar.
(From OE-Core rev: 49f47169953b807d430461ca33f3a2b076119712)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Below list of CVEs are addressed in this release
CVE-2025-47183
CVE-2025-47219
CVE-2025-47806
CVE-2025-47807
CVE-2025-47808
(From OE-Core rev: 340b182d5fc972175f1d2a89127f807073c10255)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Handles CVE-2025-53905, CVE-2025-53906, CVE-2025-55157, CVE-2025-55158.
Changes between 9.1.1198 -> 9.1.1652
====================================
https://github.com/vim/vim/compare/v9.1.1198...v9.1.1652
Refresh patches.
Disable newly introduced wayland support (in patch version 1485).
To this belongs also adding recursion in delete command for dir auto
which was newly failing as there is wayland directory inside now.
If someone is interested, this can be probably enabled, but without
additional work it results in compilation error due to function
redefinition conflicts.
(From OE-Core rev: e87d427d928234ef0441f9ce1fe8631fbe471094)
(From OE-Core rev: 99e24ba524157ed70ad05b0b1a14fcca8df52246)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
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>
As of now, update of CVE DB from FKIE source (which is the defailt)
fails with following error:
File: '<build>/poky/meta/recipes-core/meta/cve-update-db-native.bb', lineno: 393, function: update_db_fkie
0389: [cveId, cveDesc, cvssv2, cvssv3, cvssv4, date, accessVector, vectorString]).close()
0390:
0391: for config in elt['configurations']:
0392: # This is suboptimal as it doesn't handle AND/OR and negate, but is better than nothing
*** 0393: for node in config["nodes"]:
0394: parse_node_and_insert(conn, node, cveId, False)
0395:
0396:def update_db(d, conn, jsondata):
0397: if (d.getVar("NVD_DB_VERSION") == "FKIE"):
Exception: KeyError: 'nodes'
Entry for new CVE-2025-32915 is broken.
(From OE-Core rev: 5bc27449381d2a53588dc7ad1fe2b78783d5c240)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Commit mentioned in CVE report is already included in current hash.
Can be verified by trying to cherry-pick.
(From OE-Core rev: c7297f46efa410a9204d3d386d307deada967bb6)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
linux-firmware-rtl8723 and linux-firmware-adsp-sst
contain symlinks to files that were previously
packaged only in the main linux-firmware package.
This caused both subpackages to inherit an unintended
RDEPENDS on the full package. This change resolves the
issue by ensuring all required files are correctly
included in their respective subpackages.
Thanks to Peter Kjellerstedt for figuring out the rootcause.
(From OE-Core rev: cf27c7d040e7a5f1bbc60fb36c98686704bd7dc5)
(From OE-Core rev: 4b785d2d416944a78bf4c09e85a508ae80e35ca4)
Signed-off-by: Patryk Seregiet <patryk.seregiet@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(master rev: cf27c7d040e7a5f1bbc60fb36c98686704bd7dc5)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* fixes builds on host with gcc-15:
http://errors.yoctoproject.org/Errors/Details/853016/
../../bash-5.2.37/builtins/mkbuiltins.c:268:29: error: too many arguments to function ‘xmalloc’; expected 0, have 1
268 | error_directory = xmalloc (2 + strlen (argv[arg_index]));
| ^~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
(From OE-Core rev: 0c09f4a449fc03e6f5dfb6e5961c0a0471a7816d)
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* on hosts with gcc-15 or whenever glib PACKAGECONFIG isn't enabled
and pkgconfig uses own old bundled glib
* fixes:
http://errors.yoctoproject.org/Errors/Details/853015/
../../../git/glib/glib/goption.c:169:14: error: two or more data types in declaration specifiers
169 | gboolean bool;
| ^~~~
../../../git/glib/glib/goption.c:169:18: warning: declaration does not declare anything
169 | gboolean bool;
| ^
(From OE-Core rev: 092ee1703d81b8aaed452189dd329320483087d3)
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In binutils 2.44, application names were changed from the gp- prefix
(e.g., gp-display-text, gp-archive) to the gprofng- prefix
(e.g., gprofng-display-text, gprofng-archive). Temporary gp-*
symlinks were added to maintain compatibility with the older
gprofng-gui.
However, these compatibility symlinks did not support cross-platform
toolchain prefixes, which resulted in broken gp-* symbolic links.
Support for cross-platform prefixes are added upstream in binutils 2.45,
so this change backports that fix to resolve broken symlinks issue.
Upstream-Status: Backport [https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=90803ffdcc4d8c3d17566bf8dccadbad312f07a9]
(From OE-Core rev: 55684a63904365d8a6ab2a8ce9e091f29b0b7df5)
Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Upgrade to latest 1.24.x release [1]:
$ git --no-pager log --oneline go1.24.5..go1.24.6
7f36edc26d [release-branch.go1.24] go1.24.6
83b4a5db24 [release-branch.go1.24] database/sql: avoid closing Rows while scan is in progress
0f5133b742 [release-branch.go1.24] os/exec: fix incorrect expansion of "", "." and ".." in LookPath
6e1c4529e4 [release-branch.go1.24] cmd/compile: for arm64 epilog, do SP increment with a single instruction
731de13dc3 [release-branch.go1.24] os/user: user random name for the test user account
390ffce7d6 [release-branch.go1.24] runtime: prevent unnecessary zeroing of large objects with pointers
b454859a8a [release-branch.go1.24] runtime: stash allpSnapshot on the M
Fixes CVE-2025-47906 and CVE-2025-47907 [2].
[1] https://github.com/golang/go/compare/go1.24.5...go1.24.6
[2] https://groups.google.com/g/golang-announce/c/x5MKroML2yM
(From OE-Core rev: a348c04d449c0ba36b2ef278bea08919f0e6d19f)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
(cherry picked from commit f3072c210ac0a1e4d8046d920c3ebc29f9916b72)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- remove backport patch
Overview of changes in GLib 2.84.1, 2025-04-03
==============================================
* Fix test failure when building against gobject-introspection ≥1.83.4 (#3634,
work by Philip Withnall)
* Bugs fixed:
- #3630 2.84.0 build failure on Linux: ../gio/gnetworkmonitornetlink.c:47:10:
fatal error: netlink/netlink_route.h: No such file or directory (Philip
Withnall)
- #3634 test failure with gobject-introspection 1.83.4: warning: element
doc:format from state 3 is unknown, ignoring (Philip Withnall)
- #3636 gio/trash does not handle special characters well
- #3642 `g_cancellable_connect()` documentation incorrect (Marco Trevisan
(Treviño))
- #3643 g_cancellable_connect(): is it safe to unref cancellable from
callback? (Marco Trevisan (Treviño))
- #3649 Crash with some registry key values in GWin32AppInfo (Philip Withnall)
- !4484 Memory sanitizer fixes
- !4489 gobject: Be consistent in using atomic logic to handle the
GParamSpecPool
- !4541 gsettings: Port docs to gi-docgen format, add missing annotations and
make various improvements
- !4544 tests: Don't install runner scripts without installed_tests
- !4545 Update French translation
- !4547 Update Catalan translation
- !4548 Update Turkish translation
- !4551 Updated Danish translation
- !4552 Update Persian translation
- !4553 docs: Document GSignalFlags members added after 2.0
- !4554 Update Indonesian translation
- !4555 tests: Add a test for g_object_freeze_notify() being called too often
- !4557 gfileinfo: Slightly expand docs for
g_file_info_get_attribute_as_string()
- !4558 gi: Dynamically set doc-format
- !4561 tests: Various fixes to create temporary files in /tmp rather than the
build directory
- !4562 gdbusnameowning: Convert docs to gi-docgen linking syntax
- !4563 giounix-private: Fix macro for checking for epoll_create1()
- !4565 Fix LGPL in header
- !4567 gutils: make documentation of g_set_prgname() clearer
- !4568 docs: Add some detail
- !4569 Update Romanian translation
- !4570 gspawn-win32: Fix potential integer overflows in argv handling
- !4571 gvarianttype: Improve docs on type validation
* Translation updates:
- Catalan (Jordi Mas)
- Danish (Ask Hjorth Larsen)
- French (Vincent Chatelain)
- Indonesian (Andika Triwidada)
- Persian (Danial Behzadi)
- Romanian (Antonio Marin)
- Turkish (Sabri Ünal)
(From OE-Core rev: 676b9acbe94f055a351da3bdcfbe457411e1877c)
(From OE-Core rev: d818b5952001bacd4dbb24ea475df33e50bc1b53)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This upgrade fixes CVE-2025-4056
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A vulnerability classified as problematic was found in GNU elfutils 0.192.
This vulnerability affects the function elf_strptr in the library /libelf/elf_strptr.c
of the component eu-strip. The manipulation leads to denial of service. It is possible
to launch the attack on the local host. The complexity of an attack is rather high. The
exploitation appears to be difficult. The exploit has been disclosed to the public and
may be used. The name of the patch is b16f441cca0a4841050e3215a9f120a6d8aea918. It is
recommended to apply a patch to fix this issue.
References:
https://nvd.nist.gov/vuln/detail/CVE-2025-1376https://ubuntu.com/security/CVE-2025-1376
Upstream patch:
https://sourceware.org/git/?p=elfutils.git;a=commit;h=b16f441cca0a4841050e3215a9f120a6d8aea918
(From OE-Core rev: 603881e34e3bbb7435f0ae91553036eef7f1cb06)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A vulnerability has been found in GNU elfutils 0.192 and classified as critical.
This vulnerability affects the function __libdw_thread_tail in the library
libdw_alloc.c of the component eu-readelf. The manipulation of the argument w
leads to memory corruption. The attack can be initiated remotely. The complexity
of an attack is rather high. The exploitation appears to be difficult. The exploit
has been disclosed to the public and may be used. The name of the patch is
2636426a091bd6c6f7f02e49ab20d4cdc6bfc753. It is recommended to apply a patch to
fix this issue.
References:
https://nvd.nist.gov/vuln/detail/CVE-2025-1352https://ubuntu.com/security/CVE-2025-1352
Upstream patch:
https://sourceware.org/git/?p=elfutils.git;a=2636426a091bd6c6f7f02e49ab20d4cdc6bfc753
(From OE-Core rev: 9f104c2005975c1dce6e67b23e34ab5a2e8f85ab)
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This class has been in OE-Core for a while but never documented in the
reference manual. Add some description for it and link to the existing
documentation on it.
(From yocto-docs rev: e664a70adb5bc19041b3b5f553fb90dcddff99d0)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 362a331255525fc853dab3af4ec905c417fabb0b)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This variable is part of uboot-sign but not documented.
(From yocto-docs rev: ce4a0ec193301ed5373bab02938355ba222d2804)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 05eb461cb1da76ad9cbaf634da7f47447b3f6765)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Update the distributions to match the list of workers on the
Autobuilder. This list was generated with the help of
yocto-autobuilder-helper/scripts/yocto-supported-distros.
Also:
- Sort the lists alphabetically.
- Decrease spacing between entries for readability.
(From yocto-docs rev: 378bceec8f5a57d4961df178c141f627e48f0235)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The original tarball URL is no longer valid, as it has been moved to an archive
location. This update points to the new location.
(From OE-Core rev: 69090e41eb0a8b92e0684d391966f9627bfe5195)
Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
$ git log --oneline 6e489c17f827317bcf8544efefa65f13b5a079dc..e7c419a2957590fb657900fc92a89708f41abd9d
e7c419a295 (origin/release/2.41/master, release/2.41/master) iconv: iconv -o should not create executable files (bug 33164)
1e16d0096d posix: Fix double-free after allocation failure in regcomp (bug 33185)
Add CVE-2025-8058 to CVE ignore list as this is (bug 33185) commit.
(From OE-Core rev: af3e5e432d9bf1e5811ea92f3e29c0874b6b9405)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There is a defect in the CPython “tarfile” module affecting the
“TarFile” extraction and entry enumeration APIs. The tar implementation
would process tar archives with negative offsets without error,
resulting in an infinite loop and deadlock during the parsing of
maliciously crafted tar archives. This vulnerability can be mitigated
by including the following patch after importing the “tarfile” module:
https://gist.github.com/sethmlarson/1716ac5b82b73dbcbf23ad2eff8b33e1
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2025-8194
Upstream-patch:
cdae923ffe
(From OE-Core rev: c0f1143ca3f189fc6346a445a381829aed78aae8)
Signed-off-by: Praveen Kumar <praveen.kumar@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The tar packaging format was removed some time ago. Also, add some
minor grammatical tweaking.
(From yocto-docs rev: d62599595f68b75e5bf885367ca1f01a6d63bb3d)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 8e9fd1ca232f3c1e8be51cb881a68b4745ee548a)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Quoting Alexander Kanavin [1]:
> 1. BB_HASHSERVE and BB_SIGNATURE_HANDLER do not set up or start a
> server, they set up the hash equivalence client built into bitbake.
>
> 2. The above client configuration (used by poky) also starts a private
> server that is specific to a particular build directory. So hash equiv
> information would not be shared between multiple build directories,
> and this will cause sstate mismatches (as reported in the bug), if
> sstate is shared.
This setup does not shed light on the potential of the hash equivalence
feature. So for now, remove this basic setup, and later rework the
concepts (or create a new) document that explains how to set up a hash
equivalence server shared between builds.
[1]: https://lore.kernel.org/r/CANNYZj_kvLsZG3sgH+nPu9B=pqWBU785w0SGHGdQqB4UW-DtmA@mail.gmail.com
Suggested-by: Alexander Kanavin <alex.kanavin@gmail.com>
(From yocto-docs rev: 71c8b839e2621a048361d5518104099fee0f9e52)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 231fc9e710ab34db60263f8ae01d4f5970579203)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When __USE_TIME64_REDIRECTS is defined, glibc redirects struct semid_ds
to a 64-bit time-safe version that omits the sem_otime_high and
sem_ctime_high fields. As a result, the case becomes invalid, leading to
incorrect behavior.
This patch adds a check to skip the test when __USE_TIME64_REDIRECTS is
defined, ensuring the test only runs when the semid_ds structurally
matches semid64_ds and the *_high fields are accessible.
(From OE-Core rev: 8bea495b4945e24b43398f40d634d7fdb73e981a)
Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Overview of changes in bind 9.20.11
==================================
Security Fixes:
1. Fix a possible assertion failure when stale-answer-client-timeout is set to 0.
2. In specific circumstances the named resolver process could exit with an
assertion failure when stale answers were enabled and the stale-answer-client-timeout
configuration option was set to 0. This has been fixed. (CVE-2025-40777) [GL #5372]
For additional feature changes and bug fixes, please see:
https://downloads.isc.org/isc/bind9/9.20.11/doc/arm/html/notes.html#notes-for-bind-9-20-11
(From OE-Core rev: 32920c292d96d3f66e50e5cd55bb05bd3adc01e8)
Signed-off-by: Praveen Kumar <praveen.kumar@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Git v2.49.1 Release Notes
=========================
This release merges up the fixes that appear in v2.43.7, v2.44.4,
v2.45.4, v2.46.4, v2.47.3, and v2.48.2 to address the following CVEs:
CVE-2025-27613, CVE-2025-27614, CVE-2025-46334, CVE-2025-46835,
CVE-2025-48384, CVE-2025-48385, and CVE-2025-48386. See the release
notes for v2.43.7 for details.
It also contains some updates to various CI bits to work around and/or
to adjust to the deprecation of use of Ubuntu 20.04 GitHub Actions CI,
updates to to Fedora base image.
(From OE-Core rev: e46903948f991eeec49567b585c7c31f3ece742a)
Signed-off-by: Praveen Kumar <praveen.kumar@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Update to the 5.2.2 release of the 5.2 series for buildtools
(From OE-Core rev: 9574617a89be544a855c3309e4fcedf34d689eaf)
Signed-off-by: Aleksandar Nikolic <aleksandar.nikolic@zeiss.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Pick commit referencing this CVE from 2.13 branch.
(From OE-Core rev: 1dab0ba31fd09911d4fa707c1318bb0e83f46cdd)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Running "time bitbake -pP idle" with a valid cache shows around 800,000
calls to enum creation from python's signal.py. We don't care about this
overhead and it adversely affects cache load time quite badly.
Try and use _signal directly, falling back to signal, which avoids
this overhead we don't need and makes cache loading much faster.
(Bitbake rev: 710f98844ae30416bdf6a01b655df398b49574ec)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ee5fce67ce35b025c68aa61e2e758903269ee346)
Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The rv32-cargo-rustix-0.38.38-fix.patch file contains a malformed hunk
header at line 83 (@ -71,10 +71,10 @@), where a single '@' is used
instead of the required '@@'. Due to this, the subsequent hunks are not
applied during patching.
This causes a compilation error in the rustix crate:
error[E0603]: constant import `FICLONE` is private
--> vendor/rustix-0.38.37/src/fs/ioctl.rs:82:57
|
82 | const OPCODE: ioctl::Opcode = ioctl::Opcode::old(c::FICLONE as ioctl::RawOpcode);
| ^^^^^^^ private constant import
Fixing the hunk header ensures the patch is applied correctly and
resolves the build issue.
(From OE-Core rev: 2e5234204922d08eba18812d297f469779d80c82)
Signed-off-by: Yash Shinde <Yash.Shinde@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Upgrade to latest 1.24.x release [1]:
$ git --no-pager log --oneline go1.24.4..go1.24.5
9d828e80fa (tag: go1.24.5) [release-branch.go1.24] go1.24.5
825eeee3f7 [release-branch.go1.24] cmd/go: disable support for multiple vcs in one module
dbf30d88f3 [release-branch.go1.24] cmd/link: permit a larger size BSS reference to a smaller DATA symbol
6b51660c8c [release-branch.go1.24] runtime: set mspan limit field early and eagerly
cc604130c8 [release-branch.go1.24] runtime: prevent mutual deadlock between GC stopTheWorld and suspendG
21b488bb60 [release-branch.go1.24] runtime: handle system goroutines later in goroutine profiling
e038690847 [release-branch.go1.24] cmd/go/internal/fips140: ignore GOEXPERIMENT on error
1575127ef8 [release-branch.go1.24] runtime: add missing unlock in sysReserveAlignedSbrk
7d08a16fba [release-branch.go1.24] cmd/compile/internal/ssa: fix PPC64 merging of (AND (S[RL]Dconst ...)
5f2cbe1f64 [release-branch.go1.24] cmd/compile: do nil check before calling duff functions, on arm64 and amd64
Fixes CVE-2025-4674 [2].
[1] https://github.com/golang/go/compare/go1.24.4...go1.24.5
[2] https://groups.google.com/g/golang-announce/c/gTNJnDXmn34
(From OE-Core rev: a3cc5038ea10a4857627e6f4de25bdc43023a349)
(From OE-Core rev: 631afac9d81346a5d5b2e2a073ad4664c780e9af)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
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>
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
(From OE-Core rev: 4367e4cc527278b7e9edc08752014e71566e0068)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
259f4977409c Linux 6.12.38
faac2abe895d x86/CPU/AMD: Properly check the TSA microcode
fbad404f04d7 Linux 6.12.37
0029b3c1320b x86/process: Move the buffer clearing before MONITOR
331cfdd27429 x86/microcode/AMD: Add TSA microcode SHAs
d5d66e31fd9a KVM: SVM: Advertise TSA CPUID bits to guests
7a0395f6607a x86/bugs: Add a Transient Scheduler Attacks mitigation
0720e436e594 x86/bugs: Rename MDS machinery to something more generic
4c443046d8c9 mm: userfaultfd: fix race of userfaultfd_move and swap cache
ead91de35d9c mm/vmalloc: fix data race in show_numa_info()
679bf9a0ccb8 powerpc/kernel: Fix ppc_save_regs inclusion in build
c782f98eef14 usb: typec: displayport: Fix potential deadlock
f65ad436e4bc platform/x86: think-lmi: Fix sysfs group cleanup
5805edbea588 platform/x86: think-lmi: Fix kobject cleanup
b11397bf9ade platform/x86: think-lmi: Create ksets consecutively
f5fe094f35a3 riscv: cpu_ops_sbi: Use static array for boot_data
d8ca2036f30d powercap: intel_rapl: Do not change CLAMPING bit if ENABLE bit cannot be changed
53892dc68693 iommu/rockchip: prevent iommus dead loop when two masters share one IOMMU
5f28563f0c68 optee: ffa: fix sleep in atomic context
ccdc472b4df6 Logitech C-270 even more broken
4c37963d67fb i2c/designware: Fix an initialization issue
c745744a8231 dma-buf: fix timeout handling in dma_resv_wait_timeout v2
631f9de9a7f4 cifs: all initializations for tcon should happen in tcon_info_alloc
7b02e09fc0ba smb: client: fix readdir returning wrong type with POSIX extensions
7cb875016032 usb: acpi: fix device link removal
c68a27bbebbd usb: chipidea: udc: disconnect/reconnect from host when do suspend/resume
3b1407caac17 usb: dwc3: Abort suspend on soft disconnect failure
27199ab79079 usb: cdnsp: Fix issue with CV Bad Descriptor test
b68e355a6132 usb: cdnsp: do not disable slot for disabled slot
46f758928156 Input: iqs7222 - explicitly define number of external channels
dbdd2a232019 Input: xpad - support Acer NGR 200 Controller
195597e0beb3 xhci: Disable stream for xHC controller with XHCI_BROKEN_STREAMS
8bfd11dae3fb xhci: dbc: Flush queued requests before stopping dbc
9f3b2e497deb xhci: dbctty: disable ECHO flag by default
fbebc2254af8 usb: xhci: quirk for data loss in ISOC transfers
9f7589318928 Revert "usb: xhci: Implement xhci_handshake_check_state() helper"
8caccd2eac33 usb: xhci: Skip xhci_reset in xhci_resume if xhci is being removed
1a81dfc9d10a NFSv4/flexfiles: Fix handling of NFS level errors in I/O
5e110e867941 drm/xe: Allow dropping kunit dependency as built-in
994b0bc2a0e8 drm/xe/bmg: Update Wa_22019338487
beb89ada5715 IB/mlx5: Fix potential deadlock in MR deregistration
f6588557023e RDMA/mlx5: Fix cache entry update on dereg error
f94c422157f3 fs: export anon_inode_make_secure_inode() and fix secretmem LSM bypass
cdd9862252a0 module: Provide EXPORT_SYMBOL_GPL_FOR_MODULES() helper
e036efbe5822 add a string-to-qstr constructor
42c5a4b47d4a rcu: Return early if callback is not specified
c40b207cafd0 mtd: spinand: fix memory leak of ECC engine conf
18ff4ed6a33a ACPICA: Refuse to evaluate a method if arguments are missing
327997afbb5e wifi: ath6kl: remove WARN on bad firmware input
1b1026563999 wifi: mac80211: drop invalid source address OCB frames
3e554f115374 aoe: defer rexmit timer downdev work to workqueue
7296c938df24 scsi: target: Fix NULL pointer dereference in core_scsi3_decode_spec_i_port()
3d546c8b1070 regulator: fan53555: add enable_time support and soft-start times
2ec1cc322a01 ASoC: amd: yc: update quirk data for HP Victus
39e36a744ec3 powerpc: Fix struct termio related ioctl macros
19bd7597858d genirq/irq_sim: Initialize work context pointers properly
c584b9b62c0c platform/x86/amd/pmc: Add PCSpecialist Lafite Pro V 14M to 8042 quirks list
f8155ee19ddc ASoC: amd: yc: Add quirk for MSI Bravo 17 D7VF internal mic
c24c06bd14f2 ata: pata_cs5536: fix build on 32-bit UML
3ce57d493dd8 ata: libata-acpi: Do not assume 40 wire cable if no devices are enabled
f42b8e575395 ALSA: sb: Force to disable DMAs once when DMA mode is changed
c5e0af68c899 ALSA: sb: Don't allow changing the DMA mode during operations
3f6ce8433a90 drm/msm: Fix another leak in the submit error path
0eaa495b3d57 drm/msm: Fix a fence leak in submit error path
c0527f7534c0 scsi: lpfc: Restore clearing of NLP_UNREG_INP in ndlp->nlp_flag
790ce73721ab sched_ext: Make scx_group_set_weight() always update tg->scx.weight
7ccaa5fa5d25 drm/amdgpu/mes: add missing locking in helper functions
238a218d422e arm64: dts: qcom: x1e80100-crd: mark l12b and l15b always-on
646442758910 drm/amd/display: Add more checks for DSC / HUBP ONO guarantees
81ebb8d755d9 drm/amdgpu: add kicker fws loading for gfx11/smu13/psp13
710deaff6aeb drm/i915/dp_mst: Work around Thunderbolt sink disconnect after SINK_COUNT_ESI read
b47a1f9323c2 drm/amdgpu: VCN v5_0_1 to prevent FW checking RB during DPG pause
4f77d8f8a93e drm/simpledrm: Do not upcast in release helpers
acf9ab15ec97 selinux: change security_compute_sid to return the ssid or tsid on match
6d0b588614c4 drm/xe/guc: Explicitly exit CT safe mode on unwind
ff6482fb4589 drm/xe/guc: Dead CT helper
e595433c6399 drm/xe: Replace double space with single space after comma
0dadcd17e212 drm/xe: move DPT l2 flush to a more sensible place
1883a83695fe drm/xe: Allow bo mapping on multiple ggtts
ce1ef3b64ef7 drm/xe: add interface to request physical alignment for buffer objects
98e5c71e7e74 drm/xe: Move DSB l2 flush to a more sensible place
e5f01b2b6771 drm/xe: Fix DSB buffer coherency
61628111e74f mfd: exynos-lpass: Fix another error handling path in exynos_lpass_probe()
e0fefe9bc07e netfs: Fix oops in write-retry from mis-resetting the subreq iterator
c2a952fb41cc remoteproc: k3-r5: Refactor sequential core power up/down operations
b14a64c1a97f remoteproc: k3-r5: Use devm_rproc_add() helper
0ea3572c15ad remoteproc: k3-r5: Use devm_ioremap_wc() helper
e392148f7fa0 remoteproc: k3-r5: Use devm_kcalloc() helper
f802fb717dfd remoteproc: k3-r5: Add devm action to release reserved memory
5eec92eb4fe7 remoteproc: k3: Call of_node_put(rmem_np) only once in three functions
5b6eb04c0552 ubsan: integer-overflow: depend on BROKEN to keep this out of CI
f3a472b91408 arm64: dts: qcom: sm8650: add the missing l2 cache node
5a867d09f533 arm64: dts: renesas: white-hawk-single: Improve Ethernet TSN description
7f0e93324122 arm64: dts: renesas: Factor out White Hawk Single board support
b9baad894b27 arm64: dts: renesas: Use interrupts-extended for Ethernet PHYs
d8b92a122aed arm64: dts: qcom: sm8650: Fix domain-idle-state for CPU2
67b3bb57fa17 arm64: dts: qcom: sm8650: change labels to lower-case
4265682c29c9 bpf: Do not include stack ptr register in precision backtracking bookkeeping
c5474a7b04cc bpf: use common instruction history across all states
be1e0287ac78 hisi_acc_vfio_pci: bugfix the problem of uninstalling driver
bac4641756c2 hisi_acc_vfio_pci: bugfix cache write-back issue
ea405fb41449 scsi: lpfc: Avoid potential ndlp use-after-free in dev_loss_tmo_callbk
6857cbf0e4b3 scsi: lpfc: Change lpfc_nodelist nlp_flag member into a bitmask
ae082dbcef5b scsi: lpfc: Remove NLP_RELEASE_RPI flag from nodelist structure
8912b139a8d4 f2fs: zone: fix to calculate first_zoned_segno correctly
ffbbe11577b7 f2fs: zone: introduce first_zoned_segno in f2fs_sb_info
58330262213a f2fs: decrease spare area for pinned files for zoned devices
81fdecac3f2c iommu: ipmmu-vmsa: avoid Wformat-security warning
7d151bf9bd2b RDMA/rxe: Fix "trying to register non-static key in rxe_qp_do_cleanup" bug
7e48e3ddf9e3 wifi: ath12k: fix wrong handling of CCMP256 and GCMP ciphers
3fffbb8d33de wifi: ath12k: Handle error cases during extended skb allocation
316060297e20 wifi: ath12k: fix skb_ext_desc leak in ath12k_dp_tx() error path
b77a5ecb3d3b bonding: Mark active offloaded xfrm_states
b24c3c5b421e ACPI: thermal: Execute _SCP before reading trip points
0c44a4095803 ACPI: thermal: Fix stale comment regarding trip points
da45b381aafa ASoC: tas2764: Reinit cache on part reset
d1f8358c5d35 ASoC: tas2764: Extend driver to SN012776
9468bcd92d64 gfs2: Don't start unnecessary transactions during log flush
519aed5bdab7 gfs2: Move gfs2_trans_add_databufs
a2562bdd35e9 sched/fair: Fixup wake_up_sync() vs DELAYED_DEQUEUE
3edcabcfc253 sched/fair: Add new cfs_rq.h_nr_runnable
0cc4721a7182 sched/fair: Rename h_nr_running into h_nr_queued
2dc82f0d781b btrfs: fix wrong start offset for delalloc space release during mmap write
5ff2ed0f0aca btrfs: prepare btrfs_page_mkwrite() for large folios
cde7f9407884 gfs2: deallocate inodes in gfs2_create_inode
8e753fc3d5fb gfs2: Move GIF_ALLOC_FAILED check out of gfs2_ea_dealloc
24ae2de15bda gfs2: Move gfs2_dinode_dealloc
4f66983aeb02 gfs2: Replace GIF_DEFER_DELETE with GLF_DEFER_DELETE
7df46e6f8847 gfs2: Add GLF_PENDING_REPLY flag
fbb2d296d4ad gfs2: Decode missing glock flags in tracepoints
9649fec0f9c2 gfs2: Prevent inode creation race
af2ce45c2824 gfs2: Rename dinode_demise to evict_behavior
862ca0b49f1a gfs2: Rename GIF_{DEFERRED -> DEFER}_DELETE
170af4314e4d gfs2: Initialize gl_no_formal_ino earlier
33b65fcec79e kunit: qemu_configs: Disable faulting tests on 32-bit SPARC
b70cda91569a kunit: qemu_configs: sparc: Explicitly enable CONFIG_SPARC32=y
a55f301e607c kunit: qemu_configs: sparc: use Zilog console
8a039506c032 crypto: zynqmp-sha - Add locking
d78f79a2c1ff spinlock: extend guard with spinlock_bh variants
9a0b8ef2a91b crypto: iaa - Do not clobber req->base.data
e23ac0026624 crypto: iaa - Remove dst_null support
3f4adfc58700 arm64: dts: rockchip: fix internal USB hub instability on RK3399 Puma
2ba9db22d72a smb: client: fix race condition in negotiate timeout by using more precise timing
4db893a9bf9e amd-xgbe: do not double read link status
a553afd91f55 net/sched: Always pass notifications when child class becomes empty
56aebaaa3adc nui: Fix dma_mapping_error() check
446ac00b86be rose: fix dangling neighbour pointers in rose_rt_device_down()
16858ab7fd61 enic: fix incorrect MTU comparison in enic_change_mtu()
6074bff08ac2 amd-xgbe: align CL37 AN sequence as per databook
f358d949cea2 lib: test_objagg: Set error message in check_expect_hints_stats()
50c86c094533 netfs: Fix i_size updating
9b55b7bdb0bb smb: client: set missing retry flag in cifs_writev_callback()
590eb2574929 smb: client: set missing retry flag in cifs_readv_callback()
cd8c8c20de3b smb: client: set missing retry flag in smb2_writev_callback()
3eb39038dca3 igc: disable L1.2 PCI-E link substate to avoid performance issue
9a36715cd6bc idpf: convert control queue mutex to a spinlock
018ff57fd79c idpf: return 0 size for RSS key if not supported
6a17e0d27fbe drm/i915/gsc: mei interrupt top half should be in irq disabled context
5a7ae7bebdc4 drm/i915/gt: Fix timeline left held on VMA alloc error
510a6095d754 net: usb: lan78xx: fix WARN in __netif_napi_del_locked on disconnect
3f6932ef2537 smb: client: fix warning when reconnecting channel
6a5348dbd745 drm/bridge: aux-hpd-bridge: fix assignment of the of_node
800a6bde38f9 platform/mellanox: mlxreg-lc: Fix logic error in power state check
206e2dca0ee5 platform/x86: dell-wmi-sysman: Fix class device unregistration
8d6b2f704f6e platform/x86: dell-sysman: Directly use firmware_attributes_class
48edcece52e0 platform/x86: think-lmi: Fix class device unregistration
1cef9e9e0090 platform/x86: think-lmi: Directly use firmware_attributes_class
b36faa83285f platform/x86: firmware_attributes_class: Simplify API
b5c180ec1fbc platform/x86: firmware_attributes_class: Move include linux/device/class.h
1958bccfa47a platform/x86: hp-bioscfg: Fix class device unregistration
0386a68f959a platform/x86: hp-bioscfg: Directly use firmware_attributes_class
5df3b870bc38 platform/x86: dell-wmi-sysman: Fix WMI data block retrieval in sysfs callbacks
431e58d56fcb nvmet: fix memory leak of bio integrity
f0fee863a7cb nvme: Fix incorrect cdw15 value in passthru error logging
9d4064787d8d drm/i915/selftests: Change mock_request() to return error pointers
3832ddc2fae8 spi: spi-fsl-dspi: Clear completion counter before initiating transfer
0a38b1836894 drm/exynos: fimd: Guard display clock control with runtime PM calls
dbd187e8c18c dpaa2-eth: fix xdp_rxq_info leak
91a6b86d5845 ethernet: atl1: Add missing DMA mapping error checks and count errors
735ac80fa913 btrfs: use btrfs_record_snapshot_destroy() during rmdir
bfd5c9e83d89 btrfs: propagate last_unlink_trans earlier when doing a rmdir
1728fef7ca37 btrfs: record new subvolume in parent dir earlier to avoid dir logging races
d6d806004605 btrfs: fix inode lookup error handling during log replay
401d098f92ea btrfs: fix invalid inode pointer dereferences during log replay
0502d1127436 btrfs: return a btrfs_inode from read_one_inode()
56e9882ba22f btrfs: return a btrfs_inode from btrfs_iget_logging()
7ac790dc2ba0 btrfs: fix iteration of extrefs during log replay
e4c3176acecf btrfs: fix missing error handling when searching for inode refs during log replay
381c1c121979 Bluetooth: Prevent unintended pause by checking if advertising is active
b611a5bf44e2 platform/mellanox: nvsw-sn2201: Fix bus number in adapter error message
4bbdb8dd35b4 platform/mellanox: mlxbf-pmc: Fix duplicate event ID for CACHE_DATA1
bd69049f981d RDMA/mlx5: Fix vport loopback for MPV device
3d8d401d3333 RDMA/mlx5: Fix CC counters query for MPV
a33a0c15b762 RDMA/mlx5: Fix HW counters query for non-representor devices
e4ff9dedeb56 scsi: ufs: core: Fix spelling of a sysfs attribute name
b1abc5ab47d6 scsi: sd: Fix VPD page 0xb7 length check
218ae6bfe253 scsi: qla4xxx: Fix missing DMA mapping error in qla4xxx_alloc_pdu()
350dae778b63 scsi: qla2xxx: Fix DMA mapping test in qla24xx_get_port_database()
864a54c1243e NFSv4/pNFS: Fix a race to wake on NFS_LAYOUT_DRAIN
3c94212b57be nfs: Clean up /proc/net/rpc/nfs when nfs_fs_proc_net_init() fails.
93fccfa71c66 RDMA/mlx5: Initialize obj_event->obj_sub_list before xa_insert
9d2ef890e499 RDMA/mlx5: Fix unsafe xarray access in implicit ODP handling
f5fe78cfcba1 platform/mellanox: mlxbf-tmfifo: fix vring_desc.len assignment
896e0d9337b5 arm64: dts: apple: t8103: Fix PCIe BCM4377 nodename
31405510a48d firmware: arm_ffa: Replace mutex with rwlock to avoid sleep in atomic context
2c07fd0eada8 firmware: arm_ffa: Move memory allocation outside the mutex locking
076fa20b4f57 firmware: arm_ffa: Fix memory leak by freeing notifier callback node
9ff95ed0371a drm/v3d: Disable interrupts before resetting the GPU
ca40e57b22a0 mtk-sd: reset host->mrq on prepare_data() error
3419bc6a7b65 mtk-sd: Prevent memory corruption from DMA map failure
cfbdcabab2fb mtk-sd: Fix a pagefault in dma_unmap_sg() for not prepared data
5581e694d3a1 usb: typec: altmodes/displayport: do not index invalid pin_assignments
ea20568895c1 Input: cs40l50-vibra - fix potential NULL dereference in cs40l50_upload_owt()
e4d19e5d71b2 regulator: gpio: Fix the out-of-bounds access to drvdata::gpiods
dae12bc688b8 iommufd/selftest: Fix iommufd_dirty_tracking with large hugepage sizes
a99f80c88a97 Bluetooth: MGMT: mesh_send: check instances prior disabling advertising
44bb1e13b454 Bluetooth: MGMT: set_mesh: update LE scan interval and window
3672fe9d1ed6 Bluetooth: hci_sync: revert some mesh modifications
0698a2eb7d89 Bluetooth: HCI: Set extended advertising data synchronously
50345c93698e mmc: core: sd: Apply BROKEN_SD_DISCARD quirk earlier
ec9be081c577 Revert "mmc: sdhci: Disable SD card clock before changing parameters"
cf7235914dc4 mmc: sdhci: Add a helper function for dump register in dynamic debug mode
9546118ba789 net: libwx: fix the incorrect display of the queue number
75705b44e0b9 vsock/vmci: Clear the vmci transport packet properly when initializing it
e036b72d6a16 net: txgbe: request MISC IRQ in ndo_open
a54280b0eb99 s390/pci: Do not try re-enabling load/store if device is disabled
2640c230aac4 s390/pci: Fix stale function handles in error handling
bc68bc356334 virtio-net: ensure the received length does not exceed allocated size
892f6ed9a4a3 virtio-net: xsk: rx: fix the frame's length check
bd6c1932ac9c rtc: cmos: use spin_lock_irqsave in cmos_interrupt
ee61aec8529e rtc: pcf2127: fix SPI command byte for PCF2131
669e6c723b32 rtc: pcf2127: add missing semicolon after statement
(From OE-Core rev: 3f64922f2b3e69f06325cb0fa71cca12d65f3474)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8119f6a9983d3d6ba909a0c8ba916213db87270c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Allow the risc-v TUNE_FEATURES to select specific ISA (kconfig) selections
in the kernel config via config fragments selected by KERNEL_FEATURES.
This allows the following items to be selected dynamically:
CONFIG_ARCH_RV32I
CONFIG_ARCH_RV64I
CONFIG_FPU
CONFIG_RISCV_ISA_C
CONFIG_RISCV_ISA_V
CONFIG_RISCV_ISA_ZBB
CONFIG_RISCV_ISA_ZICBOM
CONFIG_RISCV_ISA_ZICBOZ
CONFIG_TOOLCHAIN_NEEDS_EXPLICIT_ZICSR_ZIFENCEI
Note: Some ISA options, such as CONFIG_RISCV_ISA_C may be reenabled by other
options such as CONFIG_EFI. This is properly reported by the configuration
tooling.
(From OE-Core rev: 9296d038106aebfb66e3a76c4444597e2e1a2263)
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 45a1b5aa6abc9007d0d87efc2d740b5564a209dd)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
df64e51d4ab83 Linux 6.12.36
2701654671697 spi: fsl-qspi: Fix double cleanup in probe error path
07836bc18f4ae btrfs: fix use-after-free on inode when scanning root during em shrinking
5f4863cfb29a7 btrfs: zoned: fix extent range end unlock in cow_file_range()
f68b27d82a749 spi: fsl-qspi: use devm function instead of driver remove
442312c2a90d6 net: stmmac: Fix accessing freed irq affinity_hint
725a59d29adb5 drm/amdkfd: Fix instruction hazard in gfx12 trap handler
6c7dc7ad867c1 drm/amdkfd: remove gfx 12 trap handler page size cap
37d28309ee8b9 ALSA: hda/realtek: Bass speaker fixup for ASUS UM5606KA
4ea0883b5af75 arm64: dts: rockchip: Add avdd HDMI supplies to RockPro64 board dtsi
1fc00e1451720 riscv/atomic: Do proper sign extension also for unsigned in arch_cmpxchg
fbbb0e0de97f6 btrfs: do regular iput instead of delayed iput during extent map shrinking
fef55c4d9c9c2 btrfs: make the extent map shrinker run asynchronously as a work queue job
c223f378b6956 btrfs: skip inodes without loaded extent maps when shrinking extent maps
0d087de947bab drm/fbdev-dma: Add shadow buffering for deferred I/O
8e2dcdf22c8b2 drm/msm/dp: account for widebus and yuv420 during mode validation
287b9cec2eef6 usb: typec: tcpm: PSSourceOffTimer timeout in PR_Swap enters ERROR_RECOVERY
ab64e42864c98 drm/xe: Carve out wopcm portion from the stolen memory
b2d2be772d50d iio: dac: ad3552r-common: fix ad3541/2r ranges
c890a5b80d1f2 iio: dac: ad3552r: extract common code (no changes in behavior intended)
0a8ac8f8430db iio: dac: ad3552r: changes to use FIELD_PREP
10b3772292bf1 btrfs: do proper folio cleanup when cow_file_range() failed
5d479182d4ccd net: phy: realtek: add RTL8125D-internal PHY
5eb0b10eea271 net: phy: realtek: merge the drivers for internal NBase-T PHY's
37cb5967bd251 r8169: add support for RTL8125D
1f4b030e08391 mm/vma: reset VMA iterator on commit_merge() OOM failure
560c3b51c799e io_uring/kbuf: flag partial buffer mappings
c8d152b8c1968 io_uring/net: mark iov as dynamically allocated even for single segments
b8be3ae062e63 io_uring/net: always use current transfer count for buffer put
725fcba8bd2e3 io_uring/net: only consider msg_inq if larger than 1
0c07f2bf49f26 io_uring/net: only retry recv bundle for a full transfer
399214d70304a io_uring/net: improve recv bundles
50998b0ae7d9d io_uring/rsrc: don't rely on user vaddr alignment
53fd75f25b223 io_uring/rsrc: fix folio unpinning
8b8a366e8cb26 io_uring: fix potential page leak in io_sqe_buffer_register()
6d56ea133adf0 net: libwx: fix Tx L4 checksum
c216c235ac1b3 x86/pkeys: Simplify PKRU update in signal frame
f609cebca1e29 x86/fpu: Refactor xfeature bitmask update code for sigframe XSAVE
0519b6107583c media: uvcvideo: Rollback non processed entities on error
8cd7ee9cd7dec drm/amd/display: Fix mpv playback corruption on weston
5f2e040f19c4d drm/amdgpu: switch job hw_fence to amdgpu_fence
9cfa2fea2566f drm/amdgpu: Fix SDMA UTC_L1 handling during start/stop sequences
cc0a3fd781bf8 drm/i915/dsi: Fix off by one in BXT_MIPI_TRANS_VTOTAL
e5e1996780292 drm/xe: Fix early wedge on GuC load failure
a6d81b2d7037e drm/xe: Fix taking invalid lock on wedge
57e044005e9ed drm/xe: Fix memset on iomem
e881b82f5d3d8 drm/amd/display: Check dce_hwseq before dereferencing it
593517e5561cb drm/amdgpu: Add kicker device detection
ba1ffc32bda79 drm/amd/display: Fix RMCM programming seq errors
57f1ed963cb26 drm/xe/guc_submit: add back fix
f684192fca915 drm/xe/sched: stop re-submitting signalled jobs
0bc8ad50f0768 drm/xe/vm: move rebind_work init earlier
ca8efc6a89716 drm/amd/display: Correct non-OLED pre_T11_delay.
e2c3133ff4d59 drm/amdgpu: amdgpu_vram_mgr_new(): Clamp lpfn to total vram
4ce9f2dc9ff7c drm/amd/display: Add null pointer check for get_first_active_display()
b7e273ebb3992 drm/bridge: cdns-dsi: Wait for Clk and Data Lanes to be ready
88189662ade0b drm/bridge: cdns-dsi: Check return value when getting default PHY config
40261f044793d drm/bridge: cdns-dsi: Fix connecting to next bridge
750442b99e0a5 drm/bridge: cdns-dsi: Fix phy de-init and flag it so
0d11689681d90 drm/bridge: cdns-dsi: Fix the clock variable for mode_valid()
b681e2a8a7595 drm/amdkfd: Fix race in GWS queue scheduling
1847ea44e3bdf drm/msm/gpu: Fix crash when throttling GPU immediately during boot
4da83f06c3ed7 drm/udl: Unregister device before cleaning up on disconnect
31ac2c680a8ac drm/tegra: Fix a possible null pointer dereference
7271a32074ebf drm/tegra: Assign plane type before registration
b464edc12d5bd drm/etnaviv: Protect the scheduler's pending list with its lock
2dae4a71a1365 drm/cirrus-qemu: Fix pitch programming
3d379b2a73282 drm/ast: Fix comment on modeset lock
6a87e794046f5 scsi: ufs: core: Fix clk scaling to be conditional in reset and restore
19a47c966deb3 scsi: megaraid_sas: Fix invalid node index
70017f56b1207 HID: wacom: fix kobject reference count leak
2746d020667ef HID: wacom: fix memory leak on sysfs attribute creation failure
a85999b987654 HID: wacom: fix memory leak on kobject creation failure
4b4b639cc50a8 HID: lenovo: Restrict F7/9/11 mode to compact keyboards only
c465f523333ec f2fs: fix to zero post-eof page
7b4ac8433c7d6 mm/gup: revert "mm: gup: fix infinite loop within __get_longterm_locked"
cf95f8426f889 maple_tree: fix MA_STATE_PREALLOC flag in mas_preallocate()
db0035ec7a6bb net: libwx: fix the creation of page_pool
74b0b4cf13fc0 spi: spi-cadence-quadspi: Fix pm runtime unbalance
6c59782898d44 btrfs: update superblock's device bytes_used when dropping chunk
2088895d59030 btrfs: fix a race between renames and directory logging
b9f78c36c095c dm-raid: fix variable in journal device check
5a8400ebc2463 Bluetooth: L2CAP: Fix L2CAP MTU negotiation
765af231964d6 serial: imx: Restore original RXTL for console to fix data loss
2b8788496f132 serial: core: restore of_node information in sysfs
1f6e759907003 dt-bindings: serial: 8250: Make clocks and clock-frequency exclusive
379cca2ad9da4 staging: rtl8723bs: Avoid memset() in aes_cipher() and aes_decipher()
2b9052d88de72 x86/traps: Initialize DR6 by writing its architectural reset value
8ed96d8e0559b EDAC/amd64: Fix size calculation for Non-Power-of-Two DIMMs
bced02aca3437 cifs: Fix reading into an ITER_FOLIOQ from the smbdirect code
87dcc7e33fc3d cifs: Fix the smbd_response slab to allow usercopy
b8ddcca4391ee smb: client: make use of common smbdirect_socket_parameters
69cafc413c2d8 smb: smbdirect: introduce smbdirect_socket_parameters
c39639bc77232 smb: client: make use of common smbdirect_socket
f4b05342c2937 smb: smbdirect: add smbdirect_socket.h
a6ec1fcafd411 smb: smbdirect: add smbdirect.h with public structures
6509de31b1b67 smb: client: make use of common smbdirect_pdu.h
a9bb4006c4f3a smb: smbdirect: add smbdirect_pdu.h with protocol definitions
7f3ead8ebc0ef smb: client: fix potential deadlock when reconnecting channels
1b12f8dabbb8f drm/xe: Process deferred GGTT node removals on device unwind
3549ad85aaf33 drm/bridge: ti-sn65dsi86: Add HPD for DisplayPort connector type
29a7c0b653162 drm/bridge: ti-sn65dsi86: make use of debugfs_init callback
18ec560e3e9b4 drm/i915: fix build error some more
23116bf9a3d04 drm/amd: Adjust output for discovery error handling
840fe792a1706 drm/amdgpu/discovery: optionally use fw based ip discovery
104048a4a49e5 net: selftests: fix TCP packet checksum
3b6a9d35defb4 ALSA: hda/realtek: Fix built-in mic on ASUS VivoBook X507UAR
ae539d963a174 atm: Release atm_dev_mutex after removing procfs in atm_dev_deregister().
12bcb7eb0fb96 netlink: specs: tc: replace underscores with dashes in names
a493e780b53a8 net: enetc: Correct endianness handling in _enetc_rd_reg64
11b3e07e7d6a2 libbpf: Fix possible use-after-free for externs
e1f6654f22994 um: ubd: Add missing error check in start_io_thread()
c6665b8f0f580 bnxt: properly flush XDP redirect lists
dbcd546400ead vsock/uapi: fix linux/vm_sockets.h userspace compilation errors
353739da693e7 wifi: mac80211: finish link init before RCU publish
d383657857385 wifi: mac80211: Create separate links for VLAN interfaces
a4afc3d522ca0 wifi: mac80211: Add link iteration macro for link data
949060a62399f af_unix: Don't set -ECONNRESET for consumed OOB skb.
8d049443f7e5b wifi: mac80211: fix beacon interval calculation overflow
715f6dbe9bdf6 ethernet: ionic: Fix DMA mapping tests
5b7d9b26a177a libbpf: Fix null pointer dereference in btf_dump__free on allocation failure
b10a7953649b1 attach_recursive_mnt(): do not lock the covering tree when sliding something under it
0ee87c2814deb ALSA: usb-audio: Fix out-of-bounds read in snd_usb_get_audioformat_uac3()
ce23b73f0f27e Bluetooth: hci_core: Fix use-after-free in vhci_flush()
a07005a77b18a atm: clip: prevent NULL deref in clip_push()
a4f182ffa30c5 HID: wacom: fix crash in wacom_aes_battery_handler()
ac758d459642b drm/xe/display: Add check for alloc_ordered_workqueue()
874b5818ca355 Revert "riscv: misaligned: fix sleeping function called during misaligned access handling"
fe30c30bf3bb6 Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"
29d39e0d5f16c lib/group_cpus: fix NULL pointer dereference from group_cpus_evenly()
93abf5e0d584b fs/proc/task_mmu: fix PAGE_IS_PFNZERO detection for the huge zero folio
f855b119e62b0 s390/pkey: Prevent overflow in size calculation for memdup_user()
13e23872a9615 ASoC: amd: yc: Add DMI quirk for Lenovo IdeaPad Slim 5 15
c5d5b0047b0c0 mm/damon/sysfs-schemes: free old damon_sysfs_scheme_filter->memcg_path on write
f85c7138f786f smb: client: remove \t from TP_printk statements
59e31c92b3bc4 ata: ahci: Use correct DMI identifier for ASUSPRO-D840SA LPM quirk
28f0c4c93a1d0 i2c: robotfuzz-osif: disable zero-length read messages
a4dae6cbd23b0 i2c: tiny-usb: disable zero-length read messages
61a9ad7b69ce6 af_unix: Don't leave consecutive consumed OOB skbs.
6420a8d27ef3f accel/ivpu: Trigger device recovery on engine reset/resume failure
397f3a7402fae accel/ivpu: Add debugfs interface for setting HWS priority bands
d80302350c32c accel/ivpu: Separate DB ID and CMDQ ID allocations from CMDQ allocation
fbc93866b0cf0 accel/ivpu: Make command queue ID allocated on XArray
0c3fa6e8441b1 accel/ivpu: Remove copy engine support
341de32ea4d6e accel/ivpu: Do not fail on cmdq if failed to allocate preemption buffers
fe82323201257 PCI: apple: Set only available ports up
b5939ac40380f PCI: apple: Use helper function for_each_child_of_node_scoped()
4149f0ee5e085 f2fs: don't over-report free space or inodes in statvfs
a8795f3cd289c ASoC: codecs: wcd9335: Fix missing free of regulator supplies
2dc8ebfb69559 ASoC: codec: wcd9335: Convert to GPIO descriptors
8b69608c6b677 jfs: validate AG parameters in dbMount() to prevent crashes
4b58be1bc4228 fs/jfs: consolidate sanity checking in dbMount
f51efc4606e44 btrfs: fix qgroup reservation leak on failure to allocate ordered extent
4cce1b05eb950 btrfs: use unsigned types for constants defined as bit shifts
1fe766ddb90cf btrfs: factor out nocow ordered extent and extent map generation into a helper
7952c4bb50925 Revert "drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1"
5b930e72aaeaf drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1
bbe9231fe611a btrfs: handle csum tree error with rescue=ibadroots correctly
04373900864e2 ovl: Check for NULL d_inode() in ovl_dentry_upper()
ae2353d862eb0 scsi: ufs: core: Don't perform UFS clkscaling during host async scan
a52f78bc8bb1a ceph: fix possible integer overflow in ceph_zero_objects()
7d468ca41a159 ASoC: rt1320: fix speaker noise when volume bar is 100%
1818fc3602e87 ALSA: usb-audio: Add a quirk for Lenovo Thinkpad Thunderbolt 3 dock
2b331e7b6cc57 ALSA: hda: Add new pci id for AMD GPU display HD audio controller
c863f7e08f6e5 ALSA: hda: Ignore unsol events for cards being shut down
1346d12e4658c riscv: add a data fence for CMODX in the kernel mode
1ef2737432fcc usb: typec: mux: do not return on EOPNOTSUPP in {mux, switch}_set
10cc2cfd3e5d0 usb: typec: displayport: Receive DP Status Update NAK request exit dp altmode
cf69fedbb1192 usb: gadget: f_hid: wake up readers on disable/unbind
43ea23645b16b usb: cdc-wdm: avoid setting WDM_READ for ZLP-s
53809d38ec364 usb: Add checks for snprintf() calls in usb_alloc_dev()
4fb6703824793 usb: common: usb-conn-gpio: use a unique name for usb connector device
685d29f2c5057 tty: serial: uartlite: register uart driver in init
358d5ba08f160 usb: potential integer overflow in usbg_make_tpg()
a10c8bff454b1 misc: tps6594-pfsm: Add NULL pointer check in tps6594_pfsm_probe()
71f79ec25a5a4 iio: adc: ad_sigma_delta: Fix use of uninitialized status_pos
ba78c2b3254c4 usb: dwc2: also exit clock_gating when stopping udc while suspended
c7bfbba30fd10 coresight: Only check bottom two claim bits
a0baf4d78b2be 8250: microchip: pci1xxxx: Add PCIe Hot reset disable support for Rev C0 and later devices
cf6d532de4423 um: use proper care when taking mmap lock during segfault
4f95f49d2bd02 um: Add cmpxchg8b_emu and checksum functions to asm-prototypes.h
6795442e6ae57 iio: pressure: zpa2326: Use aligned_s64 for the timestamp
aefd0a9356251 drm/scheduler: signal scheduled fence when kill job
777580609d578 drm/amdgpu: seq64 memory unmap uses uninterruptible lock
667c3f52373ff bcache: fix NULL pointer in cache_set_flush()
861204dce6ed0 amd/amdkfd: fix a kfd_process ref leak
3b611834b9386 md/md-bitmap: fix dm-raid max_write_behind setting
78a4adcd3fedb nvme-tcp: sanitize request list handling
7b86ce16706b9 nvme-tcp: fix I/O stalls on congested sockets
519ab9c725db7 PCI: imx6: Add workaround for errata ERR051624
1d34f7fb7a7e7 PCI: apple: Fix missing OF node reference in apple_pcie_setup_port
9f0fa01811114 PCI: dwc: Make link training more robust by setting PORT_LOGIC_LINK_WIDTH to one lane
80fb5c71ae214 dmaengine: xilinx_dma: Set dma_device directions
98fd66c8ba77e dmaengine: idxd: Check availability of workqueue allocated by idxd wq driver before using
6298a28a2c2ad rust: arm: fix unknown (to Clang) argument '-mno-fdpic'
58364e74070bf rust: module: place cleanup_module() in .exit.text section
229aa5b810e0b ksmbd: provide zero as a unique ID to the Mac client
0fce0027a56a2 ksmbd: allow a filename to contain special characters on SMB3.1.1 posix extension
2414d3452ae6d hwmon: (pmbus/max34440) Fix support for max34451
9453ce2dd672b NFSv4: xattr handlers should check for absent nfs filehandles
b3dc5c735a754 cxl/region: Add a dev_err() on missing target list entries
3a0f33c420c5f fuse: fix race between concurrent setattrs from multiple nodes
dcd5b32139cd6 leds: multicolor: Fix intensity setting while SW blinking
77da618098531 dm vdo indexer: don't read request structure after enqueuing
5fc29fb747a11 sunrpc: don't immediately retransmit on seqno miss
b9c7bc45ead8c mfd: max14577: Fix wakeup source leaks on device unbind
8a997e1ab550f mailbox: Not protect module_put with spin_lock_irqsave
7dd032d124056 NFSv4.2: fix setattr caching of TIME_[MODIFY|ACCESS]_SET when timestamps are delegated
871d1d7f374e7 NFSv4.2: fix listxattr to return selinux security label
605daf6ae663e NFSv4: Always set NLINK even if the server doesn't support it
61dd1dcf0549f cifs: Fix encoding of SMB1 Session Setup NTLMSSP Request in non-UNICODE mode
ef4b3a7bf95bb cifs: Fix cifs_query_path_info() for Windows NT servers
f80fdf48b80c2 cifs: Correctly set SMB1 SessionKey field in Session Setup Request
783cd2c3dca8b Linux 6.12.35
da70cb95b8b56 bpftool: Fix cgroup command to only show cgroup bpf programs
f4d483852a455 cifs: Remove duplicate fattr->cf_dtype assignment from wsl_to_fattr() function
fddf20b3341d8 gpio: mlxbf3: only get IRQ for device instance 0
b99cf44daacfd perf test: Directory file descriptor leak
e6386adcb435e perf evsel: Missed close() when probing hybrid core PMUs
1afda9f2bd854 gpio: pca953x: fix wrong error probe return value
ca1f9cc89ca94 RISC-V: KVM: Don't treat SBI HFENCE calls as NOPs
ee85e957f6d74 RISC-V: KVM: Fix the size parameter check in SBI SFENCE calls
38cd10628252f scsi: elx: efct: Fix memory leak in efct_hw_parse_filter()
22f935bc86bdf arm64/ptrace: Fix stack-out-of-bounds read in regs_get_kernel_stack_nth()
fd199366bf386 perf/core: Fix WARN in perf_cgroup_switch()
7335c33d621fd perf: Fix cgroup state vs ERROR
456019adaa2f5 perf: Fix sample vs do_exit()
989c77a3dec8b s390/pci: Fix __pcilg_mio_inuser() inline assembly
8ae7814589d7b smb: client: fix max_sge overflow in smb_extract_folioq_to_rdma()
e27cb3ac5a83e smb: client: fix first command failure during re-negotiation
977b7cc77852d serial: sh-sci: Increment the runtime usage counter for the earlycon device
966dbf35e36f8 serial: sh-sci: Clean sci_ports[0] after at earlycon exit
43f26094d6702 smb: Log an error when close_all_cached_dirs fails
a5b7c237ea36c dt-bindings: i2c: nvidia,tegra20-i2c: Specify the required properties
031d274c7bc2f EDAC/amd64: Correct number of UMCs for family 19h models 70h-7fh
5fe1b23a2f87f net: atm: fix /proc/net/atm/lec handling
f4d80b16ecc42 net: atm: add lec_mutex
b4603bf956c42 mlxbf_gige: return EPROBE_DEFER if PHY IRQ is not available
988edde4d52d5 calipso: Fix null-ptr-deref in calipso_req_{set,del}attr().
929544ba3c35a drm/xe/bmg: Update Wa_16023588340
d42b44736ea29 drm/xe/gt: Update handling of xe_force_wake_get return
abf32d8fa1032 drm/xe: Wire up device shutdown handler
0f8df5d6f25ac ublk: santizize the arguments from userspace when adding a device
41017bd66c533 net: lan743x: fix potential out-of-bounds write in lan743x_ptp_io_event_clock_get()
670179265ad78 eth: fbnic: avoid double free when failing to DMA-map FW msg
31d50dfe9c602 tcp: fix passive TFO socket having invalid NAPI ID
0d3d91c3500f0 tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer
397c1faf8fde7 tcp: fix tcp_packet_delayed() for tcp_is_non_sack_preventing_reopen() behavior
e996507f59610 atm: atmtcp: Free invalid length skb in atmtcp_c_send().
517bc6836ee9f mpls: Use rcu_dereference_rtnl() in mpls_route_input_rcu().
301268dbaac8e wifi: carl9170: do not ping device which has failed to load firmware
61b39e189d5c9 ptp: allow reading of currently dialed frequency to succeed on free-running clocks
11e25a2b5d36e ptp: fix breakage after ptp_vclock_in_use() rework
1f755ba8abdc4 bnxt_en: Update MRU and RSS table of RSS contexts on queue reset
672b9d85bdd2b bnxt_en: Add a helper function to configure MRU and RSS
e1724f0769343 eth: bnxt: fix out-of-range access of vnic_info array
6f2cd30949292 bnxt_en: Fix double invocation of bnxt_ulp_stop()/bnxt_ulp_start()
ac462a75fd38e net: netmem: fix skb_ensure_writable with unreadable skbs
3890da762a661 ksmbd: add free_transport ops in ksmbd connection
8873080b88514 workqueue: Initialize wq_isolated_cpumask in workqueue_init_early()
b268e43012ef3 e1000e: set fixed clock frequency indication for Nahum 11 and Nahum 13
d6715193de439 ice: fix eswitch code memory leak in reset scenario
cbea0cace663d net: ice: Perform accurate aRFS flow match
6b358b3adfb9b io_uring/sqpoll: don't put task_struct on tctx setup failure
fa2a79f0da926 aoe: clean device rq_list in aoedev_downdev()
35d78d9eb58d5 pldmfw: Select CRC32 when PLDMFW is selected
fddf0d0d6cc92 hwmon: (ltc4282) avoid repeated register write
6869a79da2791 hwmon: (occ) fix unaligned accesses
bf41b962bd0e2 hwmon: (occ) Rework attribute registration for stack usage
fcc95344aa1c4 drm/i915/pmu: Fix build error with GCOV and AutoFDO enabled
880902675299a drm/nouveau/bl: increase buffer size to avoid truncate warning
114370b2717b0 ionic: Prevent driver/fw getting out of sync on devcmd(s)
9216ca340bf6c drm/ssd130x: fix ssd132x_clear_screen() columns
8a1f52651dd82 drm/msm/a7xx: Call CP_RESET_CONTEXT_STATE
0c76d70fc3fd5 drm/msm: Fix CP_RESET_CONTEXT_STATE bitfield names
64fe4cd99515d drm/msm/dsi/dsi_phy_10nm: Fix missing initial VCO rate
1bb894c1608cf drm/msm/disp: Correct porch timing for SDM845
9411a9909e9da smb: fix secondary channel creation issue with kerberos by populating hostname when adding channels
3c44ebad5aed3 ipv6: replace ipcm6_init calls with ipcm6_init_sk
348e541fef1d4 ipv6: remove leftover ip6 cookie initializer
c426f8c4ac47e x86/tools: Drop duplicate unlikely() definition in insn_decoder_test.c
b8abcba6e4aec Kunit to check the longest symbol length
c886784000934 drm/v3d: Avoid NULL pointer dereference in `v3d_job_update_stats()`
353e75b55e583 sunrpc: handle SVC_GARBAGE during svc auth processing as auth error
0174154fafaf2 nfsd: use threads array as-is in netlink interface
50189d9c5eb5c erofs: remove unused trace event erofs_destroy_inode
251629918451c bpf: Fix L4 csum update on IPv6 in CHECKSUM_COMPLETE
dc5f0aef9ebdf net: Fix checksum update for ILA adj-transport
60d8db49ef143 rust: compile libcore with edition 2024 for 1.87+
1814e71a4e9c2 kbuild: rust: add rustc-min-version support function
cef081c8231b5 drm/amdgpu: read back register after written for VCN v4.0.5
9cf5b2a3b72c2 mm/hugetlb: unshare page tables during VMA split, not before
5cfc95dc2f018 iio: accel: fxls8962af: Fix temperature calculation
d488691a4a8c0 ALSA: hda/realtek: Add quirk for Asus GU605C
b09323c6e8f2e ALSA: hda/realtek: Fix built-in mic on ASUS VivoBook X513EA
9ef0b695a9d12 ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged
96fe253552c26 ALSA: hda/realtek - Add mute LED support for HP Victus 16-s1xxx and HP Victus 15-fa1xxx
cb078e238054c ALSA: hda/intel: Add Thinkpad E15 to PM deny list
c4f7e90e66b6d ALSA: usb-audio: Rename ALSA kcontrol PCM and PCM1 for the KTMicro sound card
47f34289d1006 arm64: Restrict pagetable teardown to avoid false warning
60606efbf5258 wifi: cfg80211: init wiphy_work before allocating rfkill fails
a69a594794fca wifi: ath12k: Clear affinity hint before calling ath12k_pci_free_irq() in error path
f6ac7d68bbde9 Input: sparcspkr - avoid unannotated fall-through
82b6dfff0d600 cpufreq/amd-pstate: Add missing NULL ptr check in amd_pstate_update
44b25cc82574e wifi: rtw89: phy: add dummy C2H event handler for report of TAS power
3d828519bd69b atm: Revert atm_account_tx() if copy_from_iter_full() fails.
57ec0818698c7 sched_ext, sched/core: Don't call scx_group_set_weight() prematurely from sched_create_group()
6e7a2d38816d1 platform/x86/intel-uncore-freq: Fail module load when plat_info is NULL
870dd7e7840cd selinux: fix selinux_xfrm_alloc_user() to set correct ctx_len
ff67d178c64de platform/x86: ideapad-laptop: use usleep_range() for EC polling
1193486dffb74 ksmbd: fix null pointer dereference in destroy_previous_session
2cb89aef981ef selftests/x86: Add a test to detect infinite SIGTRAP handler loop
47bf9d03a969d x86/virt/tdx: Avoid indirect calls to TDX assembly functions
5ec6148cb8378 udmabuf: use sgtable-based scatterlist wrappers
510a29d776990 mm: close theoretical race where stale TLB entries could linger
2a3ad42a57b43 net: clear the dst when changing skb protocol
f9b97d466e602 net_sched: sch_sfq: reject invalid perturb period
4220cc0b98c9d nvme: always punt polled uring_cmd end_io work to task_work
c455ae2ce09ce scsi: s390: zfcp: Ensure synchronous unit_add
dba20f641872f scsi: storvsc: Increase the timeouts to storvsc_timeout
3a83a904bf9a2 smb: improve directory cache reuse for readdir operations
2c34f1e095a12 cifs: do not disable interface polling on failure
3b2bec886f554 cifs: serialize other channels when query server interfaces is pending
b735c8dfbf5ce cifs: deal with the channel loading lag while picking channels
d1b81776f337a jffs2: check jffs2_prealloc_raw_node_refs() result in few other places
da12ef7e19048 jffs2: check that raw node were preallocated before writing summary
985f086f281b7 LoongArch: Fix panic caused by NULL-PMD in huge_pte_offset()
d46f8f1ede200 LoongArch: Avoid using $r0/$r1 as "mask" for csrxchg
c7a6bd2019e73 LoongArch: vDSO: Correctly use asm parameters in syscall wrappers
ec401f84e78e0 platform/loongarch: laptop: Add backlight power control support
141523e6fd5e7 platform/loongarch: laptop: Unregister generic_sub_drivers on exit
30cfeebdadd3c platform/loongarch: laptop: Get brightness setting from EC on probe
1cce6ac47f4a2 drivers/rapidio/rio_cm.c: prevent possible heap overwrite
1a4254ab06740 io_uring: fix task leak issue in io_wq_create()
2e10dc9c2a87e io_uring/kbuf: don't truncate end buffer for multiple buffer peeks
50452fe7caf0c powerpc/eeh: Fix missing PE bridge reconfiguration during VFIO EEH recovery
7518ef0f79b57 powerpc/vdso: Fix build of VDSO32 with pcrel
5807588a54abb platform/x86: dell_rbu: Stop overwriting data buffer
4d71f2c1e5263 platform/x86: dell_rbu: Fix list usage
78f8e25442825 platform/x86/amd: pmf: Prevent amd_pmf_tee_deinit() from running twice
c4972e77236c0 platform/x86/amd: pmc: Clear metrics table at start of cycle
7c41f73b64baa fs/xattr.c: fix simple_xattr_list()
311389a799d1b Revert "bus: ti-sysc: Probe for l4_wkup and l4_cfg interconnect devices first"
7109ae53f971b tee: Prevent size calculation wraparound on 32-bit kernels
69e888cbae9fc ARM: OMAP2+: Fix l4ls clk domain handling in STANDBY
d9ab5bad38136 bus: fsl-mc: increase MC_CMD_COMPLETION_TIMEOUT_MS value
a1a63a270e438 watchdog: da9052_wdt: respect TWDMIN
f28f1f578cd81 fbcon: Make sure modelist not set on unregistered console
4930ac3bc0368 net/mlx5: HWS, Harden IP version definer checks
4752355037ea7 wifi: ath12k: Pass correct values of center freq1 and center freq2 for 160 MHz
11127b08210bc wifi: ath12k: fix incorrect CE addresses
edbfb9752ede0 wifi: ath12k: fix link valid field initialization in the monitor Rx
f9eee822b4205 wifi: ath11k: determine PM policy based on machine model
21b5d9a2b63da octeontx2-pf: Add error log forcn10k_map_unmap_rq_policer()
2bd434bb0eeb6 net: ethernet: cortina: Use TOE/TSO on all TCP
b8b4b8bb346a8 bpf, sockmap: Fix data lost during EAGAIN retries
a58f0a0e99139 f2fs: fix to set atomic write status more clear
3d2fdb77cea5a usbnet: asix AX88772: leave the carrier control to phylink
7a08a9d6f5575 ice: fix check for existing switch rule
94bf4146af0f6 RDMA/hns: initialize db in update_srq_db()
098983de3f692 ixgbe: Fix unreachable retry logic in combined and byte I2C write functions
3502dd42f178d i40e: fix MMIO write access to an invalid page in i40e_clear_hw
b7129ef57d967 sock: Correct error checking condition for (assign|release)_proto_idx()
2f63bf0d2b146 scsi: lpfc: Use memcpy() for BIOS version
41afa1abc1cd1 wifi: ath12k: fix failed to set mhi state error during reboot with hardware grouping
d728dfafc10a9 pinctrl: mcp23s08: Reset all pins to input at probe
7e73f517ca7ef isofs: fix Y2038 and Y2156 issues in Rock Ridge TF entry
4b3383110b6df software node: Correct a OOB check in software_node_get_reference_args()
d589b45b7ca62 net: ethernet: ti: am65-cpsw: handle -EPROBE_DEFER
f66971c608c49 wifi: ath12k: using msdu end descriptor to check for rx multicast packets
9f20f96511657 bnxt_en: Remove unused field "ref_count" in struct bnxt_ulp
1baee1365c631 vxlan: Do not treat dst cache initialization errors as fatal
78f768e36c065 net: bridge: mcast: re-implement br_multicast_{enable, disable}_port functions
23d336e8a28b8 net: bridge: mcast: update multicast contex when vlan state is changed
0388a85971245 wifi: iwlwifi: Add missing MODULE_FIRMWARE for Qu-c0-jf-b0
2112fba7b7799 Revert "mac80211: Dynamically set CoDel parameters per station"
e0e8f580d5ce9 wifi: mac80211: VLAN traffic in multicast path
448dc45eeacd3 bpf: Use proper type to calculate bpf_raw_tp_null_args.mask index
b562ceee43c0a net/mlx5: HWS, Fix IP version decision
4e42f355c5105 netdevsim: Mark NAPI ID on skb in nsim_rcv
606b577368a2b wifi: mac80211_hwsim: Prevent tsf from setting if beacon is disabled
f92312f6dd070 wifi: rtw89: 8922a: fix TX fail with wrong VCO setting
aa3e56caf6f22 wifi: iwlwifi: pcie: make sure to lock rxq->read
91ef6a152768b iommu/amd: Ensure GA log notifier callbacks finish running before module unload
57a85eb125656 scsi: smartpqi: Add new PCI IDs
ab3f6cf370a38 scsi: lpfc: Fix lpfc_check_sli_ndlp() handling for GEN_REQUEST64 commands
d003ff1f0a32e libbpf: Add identical pointer detection to btf_dedup_is_equiv()
0ab3de047808f netfilter: nft_set_pipapo: clamp maximum map bucket size to INT_MAX
f0023d7a2a869 f2fs: fix to bail out in get_new_segment()
85d6986da04ef wifi: iwlwifi: mvm: fix beacon CCK flag
ff38cf0bd888f hid-asus: check ROG Ally MCU version and warn
6f84ec0a5ac7e clk: rockchip: rk3036: mark ddrphy as critical
4c43d2c649269 wifi: mac80211: do not offer a mesh path if forwarding is disabled
bc4abf1f2fb0e wireless: purelifi: plfxlc: fix memory leak in plfxlc_usb_wreq_asyn()
07693edecfa13 net: vertexcom: mse102x: Return code for mse102x_rx_pkt_spi
4d19bf267430a net: mlx4: add SOF_TIMESTAMPING_TX_SOFTWARE flag when getting ts info
2cd2022c38fa2 pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get()
ddead1832f0ac libbpf: Check bpf_map_skeleton link for NULL
133f17922b3db pinctrl: armada-37xx: propagate error from armada_37xx_pmx_gpio_set_direction()
b241b5fde0ef0 net: stmmac: generate software timestamp just before the doorbell
8fdf2f79ebf06 bpf: Pass the same orig_call value to trampoline functions
aefe45843ea66 pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get_direction()
461d5a73ae45f pinctrl: armada-37xx: propagate error from armada_37xx_pmx_set_by_name()
01ed9a06e5909 net: atlantic: generate software timestamp just before the doorbell
8b0741b167c6e xfrm: validate assignment of maximal possible SEQ number
5eb9c50e0c6d3 net: page_pool: Don't recycle into cache on PREEMPT_RT
3a9e74d158a97 ipv4/route: Use this_cpu_inc() for stats on PREEMPT_RT
dc5de5bd6deab x86/sgx: Prevent attempts to reclaim poisoned pages
84c156a351459 tcp: add receive queue awareness in tcp_rcv_space_adjust()
89b20c406ea1a tcp: fix initial tp->rcvq_space.space value for passive TS enabled flows
f97085d365eae tcp: remove zero TCP TS samples for autotuning
0a8446058c6e3 tcp: always seek for minimal rtt in tcp_rcv_rtt_update()
72b03d8abcd23 wifi: rtw89: leave idle mode when setting WEP encryption for AP mode
3cb5d934e074d iommu/amd: Allow matching ACPI HID devices without matching UIDs
847f414bf9812 wifi: ath11k: Fix QMI memory reuse logic
4585e37d0846e wifi: ath12k: fix a possible dead lock caused by ab->base_lock
fd1bf3985d4a9 wifi: ath12k: fix macro definition HAL_RX_MSDU_PKT_LENGTH_GET
7c6b9f6a53357 net: dlink: add synchronization for stats update
a856d71fbb5f5 clk: qcom: gcc-x1e80100: Set FORCE MEM CORE for UFS clocks
cb8484d1ba71c i2c: npcm: Add clock toggle recovery
75a864f21ceeb i2c: tegra: check msg length in SMBUS block read
77ff6aec7c319 cpufreq: scmi: Skip SCMI devices that aren't used by the CPUs
45251bcfe031d libbpf/btf: Fix string handling to support multi-split BTF
ec7d08ad9a00e sctp: Do not wake readers in __sctp_write_space()
cba1b82bdc992 wifi: mac80211: validate SCAN_FLAG_AP in scan request during MLO
84feb629fc10b wifi: mt76: mt7925: introduce thermal protection
7f622bb3b5bc8 wifi: mt76: mt7921: add 160 MHz AP for mt7922 device
e7a18650568a4 wifi: mt76: mt76x2: Add support for LiteOn WN4516R,WN4519R
b5e792c206d2a Bluetooth: btusb: Add new VID/PID 13d3/3630 for MT7925
57cfe4a06d25f emulex/benet: correct command version selection in be_cmd_get_stats()
d4b93f9c2f666 wifi: mt76: mt7996: drop fragments with multicast or broadcast RA
4d56803464991 i2c: designware: Invoke runtime suspend on quick slave re-registration
0cc5c7c14fbbf Bluetooth: btusb: Add new VID/PID 13d3/3584 for MT7922
2d834477bbc1e bpf: Check rcu_read_lock_trace_held() in bpf_map_lookup_percpu_elem()
b0e647442c08b f2fs: use vmalloc instead of kvmalloc in .init_{,de}compress_ctx
6c1151d53ca73 tipc: use kfree_sensitive() for aead cleanup
51318d644c993 net: lan743x: Modify the EEPROM and OTP size for PCI1xxxx devices
2d15f5e448eff net: macb: Check return value of dma_set_mask_and_coherent()
e8cd4a8d5b885 ACPI: battery: negate current when discharging
05713a9fc20a0 power: supply: max17040: adjust thermal channel scaling
1f152ae557d6d PM: runtime: fix denying of auto suspend in pm_suspend_timer_fn()
c519f81e9c08a gpiolib: of: Add polarity quirk for s5m8767
8975b40c07502 Make 'cc-option' work correctly for the -Wno-xyzzy pattern
bf6a433b884fe ASoC: tegra210_ahub: Add check to of_device_get_match_data()
f34e0c15561d8 platform-msi: Add msi_remove_device_irq_domain() in platform_device_msi_free_irqs_all()
9281360d1c9a0 ACPICA: utilities: Fix overflow check in vsnprintf()
33cd650d38e49 pmdomain: core: Reset genpd->states to avoid freeing invalid data
02de16babe53c power: supply: bq27xxx: Retrieve again when busy
bc51712997e70 ALSA: hda: cs35l41: Fix swapped l/r audio channels for Acer Helios laptops
7efa7856f460a ACPICA: Apply pack(1) to union aml_resource
198c2dab022e5 ACPICA: fix acpi parse and parseext cache leaks
66613b13cde9d ACPI: Add missing prototype for non CONFIG_SUSPEND/CONFIG_X86 case
b01a29a80cca2 ACPI: bus: Bail out if acpi_kobj registration fails
7fe1b9381b03d ASoC: intel/sdw_utils: Assign initial value in asoc_sdw_rt_amp_spk_rtd_init()
c0a6053f90425 ASoC: tas2770: Power cycle amp on ISENSE/VSENSE change
c05aba32a9ad9 ACPICA: Avoid sequence overread in call to strncmp()
ddec63e2dd496 mmc: Add quirk to disable DDR50 tuning
0cd0ef0a0a98b power: supply: collie: Fix wakeup source leaks on device unbind
7b45d2401d9b9 clocksource: Fix the CPUs' choice in the watchdog per CPU verification
6cd75d8f0b5b2 ASoC: amd: yc: Add quirk for Lenovo Yoga Pro 7 14ASP9
76d3716815588 ACPICA: fix acpi operand cache leak in dswstate.c
0c81bcc14bd6a iio: adc: ad7606_spi: fix reg write value mask
399e325f3f0fc iio: adc: ti-ads1298: Kconfig: add kfifo dependency to fix module build
aaa25db0b8a35 iio: adc: ad7944: mask high bits on direct read
ea66a9effa485 iio: imu: inv_icm42600: Fix temperature calculation
034a52b5ef57c mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race
acbe1597e358a dummycon: Trigger redraw when switching consoles with deferred takeover
de72e0a13e0f2 accel/ivpu: Fix warning in ivpu_gem_bo_free()
d2551a6178049 accel/ivpu: Use dma_resv_lock() instead of a custom mutex
954b19010691f accel/ivpu: Use firmware names from upstream repo
648f1d5446dde accel/ivpu: Improve buffer object logging
2facd42665949 iio: accel: fxls8962af: Fix temperature scan element sign
ae3c4187640c3 PCI: dw-rockchip: Fix PHY function call sequence in rockchip_pcie_phy_deinit()
0835fbe0d1182 PCI: dw-rockchip: Remove PCIE_L0S_ENTRY check from rockchip_pcie_link_up()
be0cf75cbd37f PCI: Fix lock symmetry in pci_slot_unlock()
b20701d594d10 PCI: Add ACS quirk for Loongson PCIe
68e58f5791214 PCI: dwc: ep: Correct PBA offset in .set_msix() callback
523815857b1e7 PCI: cadence-ep: Correct PBA offset in .set_msix() callback
bf1299797c3c4 uio_hv_generic: Align ring size to system page
157b0827d7f04 uio_hv_generic: Use correct size for interrupt and monitor pages
704cd2f207420 Drivers: hv: Allocate interrupt and monitor pages aligned to system page boundary
a9e916fa5c7d0 smb: client: add NULL check in automount_fullpath
dba032110b231 cifs: dns resolution is needed only for primary channel
e2328267d00af cifs: update dstaddr whenever channel iface is updated
180079e4da0a6 cifs: reset connections for all channels when reconnect requested
30b031c0bd4fe remoteproc: k3-m4: Don't assert reset in detach routine
f4ef928ca504c remoteproc: core: Release rproc->clean_table after rproc_attach() fails
92776ca0ccfe7 remoteproc: core: Cleanup acquired resources when rproc_handle_resources() fails in rproc_attach()
20462b6111a39 regulator: max14577: Add error check for max14577_read_reg()
ec5f0b44125c0 ovl: Fix nested backing file paths
6dbda47fe8bd6 mips: Add -std= flag specified in KBUILD_CFLAGS to vdso CFLAGS
bf1605e2eaaa1 staging: iio: ad5933: Correct settling cycles encoding per datasheet
4df6f2a167bbc pwm: axi-pwmgen: fix missing separate external clock
5c70e3ad85d28 video: screen_info: Relocate framebuffers behind PCI bridges
337bf0bbb0425 sysfb: Fix screen_info type check for VGA
ce4ef0274cb66 KVM: s390: rename PROT_NONE to PROT_TYPE_DUMMY
4da7fcc098218 net: ch9200: fix uninitialised access during mii_nway_restart
5572d21a72bb0 phy: fsl-imx8mq-usb: fix phy_tx_vboost_level_from_property()
f2986bccf250f dm: lock limits when reading them
8e89c17dc8970 ftrace: Fix UAF when lookup kallsym after ftrace disabled
d6bf5ad1a5e30 mtd: rawnand: qcom: Fix read len for onfi param page
e3cf1ef5717e2 dm-verity: fix a memory leak if some arguments are specified multiple times
e93624e6458df dm-mirror: fix a tiny race condition
a9a76d58ba587 KVM: VMX: Flush shadow VMCS on emergency reboot
264edbfc3ba16 KVM: SVM: Clear current_vmcb during vCPU free for all *possible* CPUs
850931ba01c88 mtd: nand: sunxi: Add randomizer configuration before randomizer enable
bb2c7c5e30a13 mtd: rawnand: sunxi: Add randomizer configuration in sunxi_nfc_hw_ecc_write_chunk
462eee6d42485 firmware: arm_scmi: Ensure that the message-id supports fastchannel
015f04ac884a4 configfs-tsm-report: Fix NULL dereference of tsm_ops
a8ec526969cf2 soc: qcom: pmic_glink_altmode: fix spurious DP hotplug events
02137179ffc92 mm: fix ratelimit_pages update error in dirty_ratio_handler()
764c9f69beabe RDMA/iwcm: Fix use-after-free of work objects after cm_id destruction
f16a797dce66e watchdog: fix watchdog may detect false positive of softlockup
68c173ea138b6 ipc: fix to protect IPCS lookups using RCU
9f019fcb73661 clk: meson-g12a: add missing fclk_div2 to spicc
1aa41444c5105 parisc: fix building with gcc-15
f20fd54af4e10 vgacon: Add check for vc_origin address range in vgacon_scroll()
8d0645b59b19d parisc/unaligned: Fix hex output to show 8 hex chars
b3071bb463ea1 fbdev: Fix fb_set_var to prevent null-ptr-deref in fb_videomode_to_var
4904bd82673b5 EDAC/altera: Use correct write width with the INTTEST register
3f2098f4fba77 fbdev: Fix do_register_framebuffer to prevent null-ptr-deref in fb_videomode_to_var
fb5873b779dd5 iommu/vt-d: Restore context entry setup order for aliased devices
81c64c2f84ab5 net: ftgmac100: select FIXED_PHY
8a008c89e5e5c net/sched: fix use-after-free in taprio_dev_notifier
55c3dbd838963 NFC: nci: uart: Set tty->disc_data only in success path
83e2ba8971ccd hwmon: (ftsteutates) Fix TOCTOU race in fts_read()
ee1b421c46987 f2fs: fix to do sanity check on sit_bitmap_size
aaa644e7ffff0 f2fs: prevent kernel warning due to negative i_nlink from corrupted image
fed611bd8c7b7 f2fs: fix to do sanity check on ino and xnid
a0b1c91ada45b Input: gpio-keys - fix possible concurrent access in gpio_keys_irq_timer()
5a8cd6ae8393e Input: ims-pcu - check record size in ims_pcu_flash_firmware()
be5f3061a6f90 ext4: only dirty folios when data journaling regular files
4b36399711c43 ext4: ensure i_size is smaller than maxbytes
b841ca8c8fa93 ext4: factor out ext4_get_maxbytes()
796632e6f8298 ext4: fix calculation of credits for extent tree modification
5766da2237e53 ext4: inline: fix len overflow in ext4_prepare_inline_data
63e50525b5ab3 bus: fsl-mc: fix GET/SET_TAILDROP command ids
2de74c25e7522 bus: fsl-mc: do not add a device-link for the UAPI used DPMCP device
4d0686b53cc93 ata: ahci: Disallow LPM for Asus B550-F motherboard
cf4f7511f8385 ata: ahci: Disallow LPM for ASUSPRO-D840SA motherboard
947f9304d3c87 ata: pata_via: Force PIO for ATAPI devices on VT6415/VT6330
a0890b7805d24 bus: firewall: Fix missing static inline annotations for stubs
1c71f3cf5f91b cgroup,freezer: fix incomplete freezing when attaching tasks
5d555f17d18bd ceph: set superblock s_magic for IMA fsmagic matching
75583606aeef3 ceph: avoid kernel BUG for encrypted inode with unaligned file size
04e93f75b1e57 can: tcan4x5x: fix power regulator retrieval during probe
d8a054b6e6824 can: kvaser_pciefd: refine error prone echo_skb_max handling logic
896bbceebf99d bus: mhi: host: Fix conflict between power_up and SYSERR
f704a80d9fa26 bus: mhi: ep: Update read pointer only after buffer is written
943801c380059 block: Clear BIO_EMULATES_ZONE_APPEND flag on BIO completion
5538af384318b block: use plug request list tail for one-shot backmerge attempt
6e1276195f176 ASoC: codecs: wcd937x: Drop unused buck_supply
c8228b5f3d74f ASoC: codecs: wcd9375: Fix double free of regulator supplies
5626fefb46aef ARM: omap: pmic-cpcap: do not mess around without CPCAP or OMAP4
1c40263443109 ARM: 9447/1: arm/memremap: fix arch_memremap_can_ram_remap()
86d9837e46c09 arm64/mm: Close theoretical race where stale TLB entry remains valid
aac91ae06c473 media: uvcvideo: Fix deferred probing error
6d2b12e7c5216 media: uvcvideo: Send control events for partial succeeds
b52dc88361299 media: uvcvideo: Return the number of processed controls
0ee9469f818a0 media: imx-jpeg: Cleanup after an allocation error
9df9d453651e7 media: imx-jpeg: Reset slot data pointers when freed
c8332e6a0ba52 media: imx-jpeg: Move mxc_jpeg_free_slot_data() ahead
314893d15a898 media: imx-jpeg: Drop the first error frames
00da1c767a656 media: vivid: Change the siize of the composing
72541cae73d08 media: vidtv: Terminating the subsequent process of initialization failure
5d8b057ed735c media: videobuf2: use sgtable-based scatterlist wrappers
742c60333bef5 media: venus: Fix probe error handling
2429bb9fad88c media: v4l2-dev: fix error handling in __video_register_device()
63ea94aa72e4d media: omap3isp: use sgtable-based scatterlist wrappers
f3033169d1474 media: mediatek: vcodec: Correct vsi_core framebuffer size
831b460e923aa media: ipu6: Remove workaround for Meteor Lake ES2
a2d4fdef06669 media: intel/ipu6: Fix dma mask for non-secure mode
2a2bd7df402de media: imagination: fix a potential memory leak in e5010_probe()
1f78790d988c9 media: i2c: imx335: Fix frame size enumeration
5ae9ff1ee2be8 media: gspca: Add error handling for stv06xx_read_sensor()
ca43a9386c0b5 media: davinci: vpif: Fix memory leak in probe error path
9bff888c92f5c media: cxusb: no longer judge rbuf when the write fails
c89339591b324 media: ccs-pll: Check for too high VT PLL multiplier in dual PLL case
dc723f6c8d8d5 media: ccs-pll: Correct the upper limit of maximum op_pre_pll_clk_div
e251f4fe65808 media: ccs-pll: Start OP pre-PLL multiplier search from correct value
6216c67c90e24 media: ov2740: Move pm-runtime cleanup on probe-errors to proper place
d0e6032ee06f0 media: ccs-pll: Start VT pre-PLL multiplier search from correct value
eda32d4432357 media: i2c: ds90ub913: Fix returned fmt from .set_fmt()
fb50ee19aa69f media: nxp: imx8-isi: better handle the m2m usage_count
b93864e0865f2 media: imx335: Use correct register width for HNUM
2f4c2c6bde6e6 media: ov5675: suppress probe deferral errors
ceb901f795718 media: ov8856: suppress probe deferral errors
ac93035040672 wifi: rtlwifi: disable ASPM for RTL8723BE with subsystem ID 11ad:1723
b88447ce11eb5 wifi: rtw88: usb: Reduce control message timeout to 500 ms
cb3cba0ec372f svcrdma: Unregister the device if svc_rdma_accept() fails
f78b38af3540b jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata()
d35e6c3616b6f wifi: ath12k: fix ring-buffer corruption
5bf0b9eeb0174 fs/nfs/read: fix double-unlock bug in nfs_return_empty_folio()
95c4322c2a7e9 NFSv4: Don't check for OPEN feature support in v4.1
c08e00a416a8c SUNRPC: Prevent hang on NFS mount with xprtsec=[m]tls
d622c2ee6c081 nfsd: Initialize ssc before laundromat_work to prevent NULL dereference
7a75a956692aa nfsd: nfsd4_spo_must_allow() must check this is a v4 compound request
07862d4f7c357 NFSD: Implement FATTR4_CLONE_BLKSIZE attribute
2029ca75cdfa6 NFSD: fix race between nfsd registration and exports_proc
3f3eb3c3420d4 NFSD: unregister filesystem in case genl_register_family() fails
763d1789c03f8 wifi: ath11k: fix ring-buffer corruption
09f7616cb5fe3 wifi: rtw88: usb: Upload the firmware in bigger chunks
314053de3a917 wifi: ath11k: fix rx completion meta data corruption
7a20cdb55c295 wifi: mt76: mt7925: fix host interrupt register initialization
6d05390d20f11 wifi: p54: prevent buffer-overflow in p54_rx_eeprom_readback()
c3afa81f2ef1c net/mlx5: Add error handling in mlx5_query_nic_vport_node_guid()
5297c5cf2620e net/mlx5_core: Add error handling inmlx5_query_nic_vport_qkey_viol_cntr()
b96ba2d1fb6c6 regulator: max20086: Change enable gpio to optional
028bb7b658114 regulator: max20086: Fix MAX200086 chip id
f2e8a863fdc93 s390/pci: Serialize device addition and removal
31a7dc5a24c06 s390/pci: Allow re-add of a reserved but not yet removed device
f86ca2b55309f s390/pci: Prevent self deletion in disable_slot()
94c0731dbf3e8 s390/pci: Remove redundant bus removal and disable from zpci_release_device()
0b42b68cec822 powerpc/pseries/msi: Avoid reading PCI device registers in reduced power states
c58b577cf7576 io_uring/kbuf: account ring io_buffer_list memory
ba789be63d956 io_uring: account drain memory to cgroup
082b0ca9a79d7 ASoC: amd: sof_amd_sdw: Fix unlikely uninitialized variable use in create_sdw_dailinks()
2864c19ae9e62 ASoC: meson: meson-card-utils: use of_property_present() for DT parsing
98640457c02c5 ASoC: qcom: sdm845: Add error handling in sdm845_slim_snd_hw_params()
d765505bca3cf crypto: qat - add shutdown handler to qat_dh895xcc
eb94a34c276dd crypto: qat - add shutdown handler to qat_c62x
59fd1b29092ce crypto: qat - add shutdown handler to qat_4xxx
5e4e6d0cae11f crypto: qat - add shutdown handler to qat_420xx
261f2a655b709 crypto: qat - add shutdown handler to qat_c3xxx
f2cc87bf3e3a6 gfs2: move msleep to sleepable context
ea3c81acb041a crypto: marvell/cesa - Do not chain submitted requests
bdb71ee651318 configfs: Do not override creating attribute file failure in populate_attrs()
(From OE-Core rev: b50c3ff4307d892351294dc62e73083954fbaa48)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 48277f45cfd497ebceeb1bfffdefce094fac13c2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
23fdf46589db Linux 6.12.34
fe794d1f9bd1 thermal/drivers/mediatek/lvts: Remove unused lvts_debugfs_exit
6695a1fa988e drm/meson: Use 1000ULL when operating with mode->clock
da728507b071 gfs2: Don't clear sb->s_fs_info in gfs2_sys_fs_add
ab20b0bdb01f overflow: Introduce __DEFINE_FLEX for having no initializer
5ed1d7a70000 net: usb: aqc111: debug info before sanitation
b4a86d64e487 usb: misc: onboard_usb_dev: fix build warning for CONFIG_USB_ONBOARD_DEV_USB5744=n
d4724213c82b regulator: dt-bindings: mt6357: Drop fixed compatible requirement
77e1bf9dad14 calipso: unlock rcu before returning -EAFNOSUPPORT
ea50a9c348dc x86/fred/signal: Prevent immediate repeat of single step trap on return from SIGTRAP handler
b3b3b6366dc8 x86/iopl: Cure TIF_IO_BITMAP inconsistencies
dbbad9a0162c xen/arm: call uaccess_ttbr0_enable for dm_op hypercall
9332b7a8364e xfs: don't assume perags are initialised when trimming AGs
2d6a6cfe969f ring-buffer: Move cpus_read_lock() outside of buffer->mutex
e09c0600beea ring-buffer: Fix buffer locking in ring_buffer_subbuf_order_set()
b8df8cb8f7ee ring-buffer: Do not trigger WARN_ON() due to a commit_overrun
6a6ce20657a9 9p: Add a migrate_folio method
7bdd712abefb usb: typec: tcpm: move tcpm_queue_vdm_unlocked to asynchronous work
9f907ee83fee usb: typec: tcpm/tcpci_maxim: Fix bounds check in process_rx()
657003ced7f5 usb: Flush altsetting 0 endpoints before reinitializating them after reset.
921b3c8050fe usb: cdnsp: Fix issue with detecting USB 3.2 speed
c7862978b405 usb: cdnsp: Fix issue with detecting command completion event
3cce1734776d usb: misc: onboard_usb_dev: Fix usb5744 initialization sequence
393abb68b9ec tty: serial: 8250_omap: fix TX with DMA for am33xx
00ddc7dad55b VMCI: fix race between vmci_host_setup_notify and vmci_ctx_unset_notify
6327884fbabd usb: usbtmc: Fix read_stb function and get_stb ioctl
c8bb1bcea877 nvmem: zynqmp_nvmem: unbreak driver after cleanup
c29d5318708e posix-cpu-timers: fix race between handle_posix_cpu_timers() and posix_cpu_timer_del()
74388368927e HID: usbhid: Eliminate recurrent out-of-bounds bug in usbhid_parse()
84e9f0a2c253 ALSA: usb-audio: Add implicit feedback quirk for RODE AI-1
81515a447932 Revert "wifi: mwifiex: Fix HT40 bandwidth issue."
1ed18c90f6d9 tools/resolve_btfids: Fix build when cross compiling kernel with clang.
403bbbe2fad6 objtool/rust: relax slice condition to cover more `noreturn` Rust functions
4b1ef15ffd9f block: Fix bvec_set_folio() for very large folios
a9022c86312c bio: Fix bio_first_folio() for SPARSEMEM without VMEMMAP
48f33ec14107 io_uring: consistently use rcu semantics with sqpoll thread
0fccb6773b1f block: don't use submit_bio_noacct_nocheck in blk_zone_wplug_bio_work
af8c13f9ee04 io_uring: fix use-after-free of sq->thread in __io_uring_show_fdinfo()
a5c7b61eed6d block: use q->elevator with ->elevator_lock held in elv_iosched_show()
f351bb308501 perf: Ensure bpf_perf_link path is properly serialized
1c09795ecee8 nvmet-fcloop: access fcpreq only when holding reqlock
3c04fafeb3ee btrfs: exit after state split error at set_extent_bit()
7b4bf4d89683 gfs2: pass through holder from the VFS for freeze/thaw
0a2500782f4d fs/filesystems: Fix potential unsigned integer underflow in fs_name()
58c50f45e182 btrfs: exit after state insertion failure at btrfs_convert_extent_bit()
a8ff2e362d90 net: drv: netdevsim: don't napi_complete() from netpoll
073f64c03516 net_sched: ets: fix a race in ets_qdisc_change()
180b12eafa8f net_sched: tbf: fix a race in tbf_change()
4b755305b2b0 net_sched: red: fix a race in __red_change()
e3f6745006dc net_sched: prio: fix a race in prio_tune()
62ef4761bb9a net/mlx5e: Fix leak of Geneve TLV option object
eb4b59491fea net/mlx5: HWS, fix missing ip_version handling in definer
5932b1972dbe net/mlx5: Fix return value when searching for existing flow group
da15ca055332 net/mlx5: Fix ECVF vports unload on shutdown flow
adb56e5a7199 net/mlx5: Ensure fw pages are always allocated on same NUMA
7a41744e3854 Bluetooth: MGMT: Fix sparse errors
2af40d795d3f Bluetooth: eir: Fix possible crashes on eir_create_adv_data
907ef6e12fb5 Bluetooth: hci_sync: Fix broadcast/PA when using an existing instance
842f7c3154d5 Bluetooth: Fix NULL pointer deference on eir_get_service_data
31bf7b2b9256 net/mdiobus: Fix potential out-of-bounds clause 45 read/write access
b02d9d273248 net/mdiobus: Fix potential out-of-bounds read/write access
78fa7b723e4e macsec: MACsec SCI assignment for ES = 0
1e0de7582cec net: Fix TOCTOU issue in sk_is_readable()
32a48db4cf28 ACPI: CPPC: Fix NULL pointer dereference when nosmp is used
c3892f1ba0bc i40e: retry VFLR handling if there is ongoing VF reset
60592d381f12 i40e: return false from i40e_reset_vf if reset is in progress
0440186a9c1c drm/meson: fix more rounding issues with 59.94Hz modes
e44408a31774 drm/meson: use vclk_freq instead of pixel_freq in debug print
dd8d64e91047 drm/meson: fix debug log statement when setting the HDMI clocks
d7aa2e4b808e drm/meson: use unsigned long long / Hz for frequency types
c79a1ac2a053 powerpc/vas: Return -EINVAL if the offset is non-zero in mmap()
9c340b56d605 powerpc/powernv/memtrace: Fix out of bounds issue in memtrace mmap
d1bc80da75c7 net_sched: sch_sfq: fix a potential crash on gso_skb handling
98e46d77cd8b scsi: iscsi: Fix incorrect error path labels for flashnode operations
8a8380773f85 pinctrl: qcom: pinctrl-qcm2290: Add missing pins
cce3ea5f48c6 spi: omap2-mcspi: Disable multi-mode when the previous message kept CS asserted
01a968b1c421 spi: omap2-mcspi: Disable multi mode when CS should be kept asserted after message
f74abf2cdd23 regulator: max20086: Fix refcount leak in max20086_parse_regulators_dt()
569972c5bdb8 wifi: ath12k: fix GCC_GCC_PCIE_HOT_RST definition for WCN7850
4c0153d7a19d wifi: ath12k: refactor ath12k_hw_regs structure
6dabf9e05497 wifi: ath11k: validate ath11k_crypto_mode on top of ath11k_core_qmi_firmware_ready
7b1a7d35eef5 wifi: ath11k: move some firmware stats related functions outside of debugfs
d849e671fffa wifi: ath11k: don't wait when there is no vdev started
b18918782eb6 wifi: ath11k: don't use static variables in ath11k_debugfs_fw_stats_process()
784cb1c1b8c5 wifi: ath11k: avoid burning CPU in ath11k_debugfs_fw_stats_request()
b208c674f5c3 wifi: ath11k: convert timeouts to secs_to_jiffies()
ef8e4aeab3b5 ath10k: snoc: fix unbalanced IRQ enable in crash recovery
b93e6fef4eda ptp: remove ptp->n_vclocks check logic in ptp_vclock_in_use()
6c8d3d7c368d net: dsa: b53: fix untagged traffic sent via cpu tagged with VID 0
4e83f2dbb2bf Bluetooth: MGMT: Protect mgmt_pending list with its own lock
84ab1283eb5f Bluetooth: MGMT: Remove unused mgmt_pending_find_data
9df3e5e7f7e4 Bluetooth: MGMT: Fix UAF on mgmt_remove_adv_monitor_complete
fbf95f446bd6 Bluetooth: btintel_pcie: Reduce driver buffer posting to prevent race condition
b104a6f5d572 Bluetooth: btintel_pcie: Increase the tx and rx descriptor count
a075e10cfb6f Bluetooth: btintel_pcie: Fix driver not posting maximum rx buffers
99e3d6985339 Bluetooth: hci_core: fix list_for_each_entry_rcu usage
3464a707d137 scsi: core: ufs: Fix a hang in the error handler
21b2bca88e17 serial: sh-sci: Move runtime PM enable to sci_probe_single()
e5250b861939 dt-bindings: pwm: adi,axi-pwmgen: Fix clocks
df4f4cdb064c dt-bindings: pwm: Correct indentation and style in DTS example
3e81a8c73207 dt-bindings: pwm: adi,axi-pwmgen: Increase #pwm-cells to 3
595f83730b6d pinctrl: samsung: add gs101 specific eint suspend/resume callbacks
f33266ec3500 pinctrl: samsung: add dedicated SoC eint suspend/resume callbacks
d5d5193dde41 pinctrl: samsung: refactor drvdata suspend & resume callbacks
cd9d354bdd28 arm64: dts: qcom: x1e80100: Add GPU cooling
9cd06b2ebeb4 arm64: dts: qcom: x1e80100: Apply consistent critical thermal shutdown
b8de1a502971 mmc: sdhci-of-dwcmshc: add PD workaround on RK3576
80f7c5be4fe5 pmdomain: core: Introduce dev_pm_genpd_rpm_always_on()
eccd1fc1b0e1 Input: synaptics-rmi - fix crash with unsupported versions of F34
59cb05c80448 ALSA: hda/realtek: Add support for HP Agusta using CS35L41 HDA
0da3314630b9 ALSA: hda/realtek - Add new HP ZBook laptop with micmute led fixup
c4cc8f6c3126 ALSA: hda/realtek - Support mute led function for HP platform
410156098b0d ALSA: hda/realtek: Add support for various HP Laptops using CS35L41 HDA
95e01b950c09 ALSA: hda/realtek: fix micmute LEDs on HP Laptops with ALC3247
8b8b33ae372d ALSA: hda/realtek: fix micmute LEDs on HP Laptops with ALC3315
0ce600d7179d tools/power turbostat: Fix AMD package-energy reporting
9c1ddfeb662b do_change_type(): refuse to operate on unmounted/not ours mounts
e1d02fe5040d fix propagation graph breakage by MOVE_MOUNT_SET_GROUP move_mount(2)
1d792307191c path_overmount(): avoid false negatives
1be1f3b8487c iov_iter: use iov_offset for length calculation in iov_iter_aligned_bvec
569fb8c12237 ASoC: ti: omap-hdmi: Re-add dai_link->platform to fix card init
18ff538aac63 ASoC: Intel: avs: Verify content returned by parse_int_array()
cabc3dc410e8 ASoC: Intel: avs: Fix deadlock when the failing IPC is SET_D0IX
3668296690e4 ASoC: codecs: hda: Fix RPM usage count underflow
1cda72119b31 scsi: ufs: qcom: Prevent calling phy_exit() before phy_init()
e01987354098 riscv: misaligned: fix sleeping function called during misaligned access handling
d5d9fd13bc19 seg6: Fix validation of nexthop addresses
933466fc50a8 wireguard: device: enable threaded NAPI
031f5c5ca097 net: wwan: mhi_wwan_mbim: use correct mux_id for multiplexing
4f0fcdb8357d wifi: cfg80211/mac80211: correctly parse S1G beacon optional elements
b2fc08d27679 net: dsa: b53: do not touch DLL_IQQD on bcm53115
1aa31695bf0d net: dsa: b53: allow RGMII for bcm63xx RGMII ports
6d1c93a5c6b0 net: dsa: b53: do not enable RGMII delay on bcm63xx
6c2e06200216 net: ti: icssg-prueth: Fix swapped TX stats for MII interfaces.
f34dc858e69b netfilter: nf_nat: also check reverse tuple to obtain clashing entry
251496ce1728 netfilter: nf_set_pipapo_avx2: fix initial map fill
f33277cda6e8 drm/panel-simple: fix the warnings for the Evervision VGG644804
a0319c9b1648 gve: add missing NULL check for gve_alloc_pending_packet() in TX DQO
8cb645117aab nvme: fix command limits status code
0cffc6e40d5d PM: sleep: Fix power.is_suspended cleanup for direct-complete devices
1184f7df1d08 selftests: net: build net/lib dependency in all target
6d300675dc38 vmxnet3: correctly report gso type for UDP tunnels
e2df04e69c3f net: wwan: t7xx: Fix napi rx poll issue
4399f59a9467 net: fix udp gso skb_segment after pull from frag_list
798fd944fbcf drm/i915/guc: Handle race condition where wakeref count drops below 0
ba282cfba33c drm/i915/psr: Fix using wrong mask in REG_FIELD_PREP
2679bb2f692e drm/i915/guc: Check if expecting reply before decrementing outstanding_submission_g2h
451ee661d0f6 net: stmmac: make sure that ptp_rate is not 0 before configuring EST
bb033c6781ce net: stmmac: make sure that ptp_rate is not 0 before configuring timestamping
2c32fc56c05a net: dsa: tag_brcm: legacy: fix pskb_may_pull length
e653c298c5fd idpf: avoid mailbox timeout delays during reset
12e40d01d6d1 idpf: fix a race in txq wakeup
635fd9cead3d ice: fix rebuilding the Tx scheduler tree for large queue counts
f9c3e8573b65 ice: create new Tx scheduler nodes for new queues only
276849954d7c ice: fix Tx scheduler error handling in XDP callback
b788cebf72f3 Bluetooth: L2CAP: Fix not responding with L2CAP_CR_LE_ENCRYPTION
2a98786e2587 spi: bcm63xx-hsspi: fix shared reset
408ca1d1803b spi: bcm63xx-spi: fix shared reset
df376638df5f net: lan966x: Make sure to insert the vlan tags also in host mode
095fe646f8e3 net/mlx4_en: Prevent potential integer overflow calculating Hz
4c597fb29034 driver: net: ethernet: mtk_star_emac: fix suspend/resume issue
c762fc79d710 net: tipc: fix refcount warning in tipc_aead_encrypt
5910cbbfad5a gve: Fix RX_BUFFERS_POSTED stat to report per-queue fill_cnt
74882beda3a7 net: stmmac: platform: guarantee uniqueness of bus_id
e869a85acc2e page_pool: Fix use-after-free in page_pool_recycle_in_ring
90891eadb825 Fix sock_exceed_buf_limit not being triggered in __sk_mem_raise_allocated
35f116a4658f drm/xe: Make xe_gt_freq part of the Documentation
3091d4c0d069 loop: add file_start_write() and file_end_write()
4bd30962f308 USB: typec: fix const issue in typec_match()
9f40ae8310a7 USB: gadget: udc: fix const issue in gadget_match_driver()
ad2fc59a6703 iio: adc: mcp3911: fix device dependent mappings for conversion result registers
9d6c8f561219 iio: adc: PAC1934: fix typo in documentation link
03eb28352302 mei: vsc: Cast tx_buf to (__be32 *) when passed to cpu_to_be32_array()
130e134f6eca vt: remove VT_RESIZE and VT_RESIZEX from vt_compat_ioctl()
31028812724c coresight: prevent deactivate active config while enabling the config
8b2230ac7ff0 fpga: fix potential null pointer deref in fpga_mgr_test_img_load_sgt()
8d47a0354407 counter: interrupt-cnt: Protect enable/disable OPs with mutex
b9c6d66810c4 coresight: catu: Introduce refcount and spinlock for enabling/disabling
1183a72221d5 coresight: Fixes device's owner field for registered using coresight_init_driver()
677da45548ec MIPS: Loongson64: Add missing '#interrupt-cells' for loongson64c_ls7a
8fa544bff846 usb: acpi: Prevent null pointer dereference in usb_acpi_add_usb4_devlink()
122bbc57cb13 iio: adc: ad7124: Fix 3dB filter frequency reading
46dd5892ea17 iio: filter: admv8818: Support frequencies >= 2^32
5bd5808b36e2 iio: filter: admv8818: fix range calculation
c065694b8d5b iio: filter: admv8818: fix integer overflow
ba9a3d356bfb iio: filter: admv8818: fix band 4, state 15
74aca5ca341d thunderbolt: Fix a logic error in wake on connect
c23d87b43f7d serial: Fix potential null-ptr-deref in mlb_usio_probe()
d4c368e4a638 usb: renesas_usbhs: Reorder clock handling and power management in probe
0a3e2ec5085a PCI: endpoint: Retain fixed-size BAR size as well as aligned size
9137bd312b28 rtc: loongson: Add missing alarm notifications for ACPI RTC events
7b264700708e PCI/DPC: Log Error Source ID only when valid
642962fe3f73 PCI/DPC: Initialize aer_err_info before using it
3d159ffc160f PCI/ACPI: Fix allocated memory release on error in pci_acpi_scan_root()
bc6ddff79835 dmaengine: ti: Add NULL check in udma_probe()
5072c1749197 phy: qcom-qmp-usb: Fix an NULL vs IS_ERR() bug
8da884ec36df PCI: apple: Use gpiod_set_value_cansleep in probe flow
8c839e71c413 PCI: cadence: Fix runtime atomic count underflow
d9342fced7da PCI: rcar-gen4: set ep BAR4 fixed size
17e4b0fcd234 PCI: Print the actual delay time in pci_bridge_wait_for_secondary_bus()
5aac41632fff phy: rockchip: samsung-hdptx: Do no set rk_hdptx_phy->rate in case of errors
e3f71127c6d9 phy: rockchip: samsung-hdptx: Fix clock ratio setup
1dfeafe5850f rtc: sh: assign correct interrupts with DT
6635bb78eb7d rust: alloc: add missing invariant in Vec::set_len()
48ca7139ab7f cifs: Fix validation of SMB1 query reparse point response
f7d9f4fa5385 perf callchain: Always populate the addr_location map when adding IP
da9addeabdda perf trace: Set errpid to false for rseq and set_robust_list
afa06f26057e nfs: ignore SB_RDONLY when remounting nfs
877a3f1be3f0 nfs: clear SB_RDONLY before getting superblock
aaea7a783d6e perf trace: Always print return value for syscalls returning a pid
8d313634e67e perf record: Fix incorrect --user-regs comments
20eafb4e59b3 perf symbol: Fix use-after-free in filename__read_build_id
3196b6c70853 mailbox: mtk-cmdq: Refine GCE_GCTL_VALUE setting
0acd44a8d7ee mailbox: imx: Fix TXDB_V2 sending
28f3b29e74de perf tests switch-tracking: Fix timestamp comparison
9970210eb1a4 mfd: stmpe-spi: Correct the name used in MODULE_DEVICE_TABLE
fc66342db730 mfd: exynos-lpass: Avoid calling exynos_lpass_disable() twice in exynos_lpass_remove()
d374cd56df23 mfd: exynos-lpass: Fix an error handling path in exynos_lpass_probe()
1fbee9f1856f rpmsg: qcom_smd: Fix uninitialized return variable in __qcom_smd_send()
4ce341e63936 remoteproc: k3-dsp: Drop check performed in k3_dsp_rproc_{mbox_callback/kick}
3a4afda6fd3f remoteproc: k3-r5: Drop check performed in k3_r5_rproc_{mbox_callback/kick}
9b15fcdba919 remoteproc: qcom_wcnss_iris: Add missing put_device() on error in probe
6a6070d94323 perf scripts python: exported-sql-viewer.py: Fix pattern matching with Python 3
3b7d37c49f15 perf intel-pt: Fix PEBS-via-PT data_src
5c37bd26509e perf tests: Fix 'perf report' tests installation
47eee86e45b0 perf trace: Fix leaks of 'struct thread' in set_filter_loop_pids()
f481bf3e024e dm-flakey: make corrupting read bios work
9091c9e039e8 dm-flakey: error all IOs when num_features is absent
f9c1bdf24615 dm: fix dm_blk_report_zones
dc16583d21c4 perf symbol-minimal: Fix double free in filename__read_build_id
19bd9cde38dd hwmon: (asus-ec-sensors) check sensor index in read_string()
7a23cc510eca mtd: nand: ecc-mxic: Fix use of uninitialized variable ret
2967178d30ee x86/irq: Ensure initial PIR loads are performed exactly once
1be2000b703b backlight: pm8941: Add NULL check in wled_configure()
48e0b54be49d dm: free table mempools if not used in __bind
2eeb181e76d4 dm: don't change md if dm_table_set_restrictions() fails
baf8a7fed0ea perf ui browser hists: Set actions->thread before calling do_zoom_thread()
a951f9a3d912 perf build: Warn when libdebuginfod devel files are not available
5934a8fab358 randstruct: gcc-plugin: Fix attribute addition
ab6db95940bd randstruct: gcc-plugin: Remove bogus void member
b235393b9f43 fbdev: core: fbcvt: avoid division by 0 in fb_cvt_hperiod()
f697ef117ecb soc: aspeed: Add NULL check in aspeed_lpc_enable_snoop()
7ce3063fd85a soc: aspeed: lpc: Fix impossible judgment condition
ffbfe7b0ce9b ARM: aspeed: Don't select SRAM
0007761ff51f arm64: dts: mt6359: Rename RTC node to match binding expectations
0e0081991469 arm64: dts: renesas: white-hawk-ard-audio: Fix TPU0 groups
81f52f39edce arm64: dts: qcom: qcm2290: fix (some) of QUP interconnects
16f35dcfe37e arm64: dts: rockchip: disable unrouted USB controllers and PHY on RK3399 Puma with Haikou
318d0f2adc67 arm64: defconfig: mediatek: enable PHY drivers
833388013346 ARM: dts: qcom: apq8064: move replicator out of soc node
99f2ee48e945 ARM: dts: qcom: apq8064 merge hw splinlock into corresponding syscon device
36a1fdd5d55c ARM: dts: qcom: apq8064: add missing clocks to the timer node
2a8d4567aaa0 dt-bindings: vendor-prefixes: Add Liontron name
1d5baab39e5b bus: fsl-mc: fix double-free on mc_dev
9abbace40030 nilfs2: do not propagate ENOENT error from nilfs_btree_propagate()
ecfc9dfae9f8 nilfs2: add pointer check for nilfs_direct_propagate()
f6fae70f830d ocfs2: fix possible memory leak in ocfs2_finish_quota_recovery
0aff95d9bc7f Squashfs: check return result of sb_min_blocksize
e318a7bd2db5 soc: qcom: smp2p: Fix fallback to qcom,ipc parse
14f2820a5db6 arm64: dts: ti: k3-j721e-common-proc-board: Enable OSPI1 on J721E
2e39a12c45d4 arm64: tegra: Add uartd serial alias for Jetson TX1 module
39ecf2ad203c arm64: tegra: Drop remaining serial clock-names and reset-names
827746ce8b81 arm64: dts: rockchip: Update eMMC for NanoPi R5 series
4fd50f6980e2 arm64: dts: rockchip: Add vcc-supply to SPI flash on rk3566-rock3c
f924280cf4cb arm64: dts: qcom: sda660-ifc6560: Fix dt-validate warning
2533efb0d6dd arm64: dts: qcom: sdm660-lavender: Add missing USB phy supply
3c8f511a658d arm64: dts: mt6359: Add missing 'compatible' property to regulators node
e2df43c9422e arm64: dts: mediatek: mt6357: Drop regulator-fixed compatibles
66a6daa0ef72 arm64: dts: imx8mn-beacon: Set SAI5 MCLK direction to output for HDMI audio
b9c7c4e6c8bb arm64: dts: imx8mm-beacon: Set SAI5 MCLK direction to output for HDMI audio
c48fe69e1748 arm64: dts: imx8mp-beacon: Fix RTC capacitive load
69120f3767b7 arm64: dts: imx8mn-beacon: Fix RTC capacitive load
33ff1f13291b arm64: dts: imx8mm-beacon: Fix RTC capacitive load
e1c84dd136bf arm64: dts: mt8183: Add port node to mt8183.dtsi
a39ba524fb9e arm64: dts: qcom: sdm660-xiaomi-lavender: Add missing SD card detect GPIO
269df4263e5e arm64: dts: mediatek: mt8195: Reparent vdec1/2 and venc1 power domains
5b5a538aad91 ARM: dts: at91: at91sam9263: fix NAND chip selects
037a3a256791 ARM: dts: at91: usb_a9263: fix GPIO for Dataflash chip select
3682d4dd0e8d arm64: dts: rockchip: Move SHMEM memory to reserved memory on rk3588
3d36b1baf038 arm64: dts: qcom: ipq9574: Fix USB vdd info
79c837807058 arm64: dts: qcom: sc8280xp-x13s: Drop duplicate DMIC supplies
6e65650cee28 arm64: dts: qcom: sm8250: Fix CPU7 opp table
3c4aaf3e7665 arm64: dts: qcom: sm8350: Reenable crypto & cryptobam
9164f9ae3f49 arm64: dts: qcom: sdm845-starqltechn: remove excess reserved gpios
d997703f9d75 arm64: dts: qcom: sdm845-starqltechn: refactor node order
83f1b473bb31 arm64: dts: qcom: sdm845-starqltechn: fix usb regulator mistake
caecebc6b943 arm64: dts: qcom: sdm845-starqltechn: remove wifi
bdf8915dad6b arm64: dts: qcom: x1e80100-romulus: Keep L12B and L15B always on
5c721b58d301 arm64: dts: qcom: sm8650: add missing cpu-cfg interconnect path in the mdss node
a999df6f45a3 arm64: dts: qcom: sm8650: setup gpu thermal with higher temperatures
4e95465ab940 arm64: dts: qcom: x1e80100: Mark usb_2 as dma-coherent
0befc3005db9 f2fs: fix to correct check conditions in f2fs_cross_rename
532601e783b5 f2fs: use d_inode(dentry) cleanup dentry->d_inode
a3eeaea04e57 net: phy: mscc: Stop clearing the the UDPv4 checksum for L2 frames
69541e58323e net: openvswitch: Fix the dead loop of MPLS parse
dd8928897594 calipso: Don't call calipso functions for AF_INET sk.
ec62c99914a7 octeontx2-pf: QOS: Refactor TC_HTB_LEAF_DEL_LAST callback
91bed4ccae01 octeontx2-pf: QOS: Perform cache sync on send queue teardown
66abe2201752 net: phy: mscc: Fix memory leak when using one step timestamping
4b073a575b7f net: lan743x: Fix PHY reset handling during initialization and WOL
0e5c90c2ae50 net: lan743x: rename lan743x_reset_phy to lan743x_hw_reset_phy
f15ed37dd3af net: phy: fix up const issues in to_mdio_device() and to_phy_device()
ddc654e89ace net: phy: clear phydev->devlink when the link is deleted
2bc6dffb4b72 bpf: Avoid __bpf_prog_ret0_warn when jit fails
3a92988a7695 net: xilinx: axienet: Fix Tx skb circular buffer occupancy check in dmaengine xmit
f066d85170bd net: lan966x: Fix 1-step timestamping over ipv4 or ipv6
02e45168e0fd RDMA/cma: Fix hang when cma_netevent_callback fails to queue_work
7893a41deaf2 vsock/virtio: fix `rx_bytes` accounting for stream sockets
30a9e834c74e net: usb: aqc111: fix error handling of usbnet read calls
82fe7fbc21f4 RISC-V: KVM: lock the correct mp_state during reset
9d04742f3e2d netfilter: nft_tunnel: fix geneve_opt dump
09ecfdff49d3 netfilter: nf_tables: nft_fib: consistent l3mdev handling
15c0250dae3b bpf, sockmap: Avoid using sk_socket after free when sending
9427f6081f37 Bluetooth: btintel: Check dsbr size from EFI variable
1750c3f1d945 Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach()
46e68224893b vfio/type1: Fix error unwind in migration dirty bitmap allocation
fd125f1eefbc netfilter: nf_tables: nft_fib_ipv6: fix VRF ipv4/ipv6 result discrepancy
c4c18cf58910 netfilter: xtables: support arpt_mark and ipv6 optstrip for iptables-nft only builds
1d249cc92d08 bpf: Revert "bpf: remove unnecessary rcu_read_{lock,unlock}() in multi-uprobe attach logic"
7e4835863950 wifi: mt76: mt7996: fix RX buffer size of MCU event
3fc202198479 wifi: mt76: mt7996: set EHT max ampdu length capability
ba9bf458fa11 wifi: mt76: mt7925: ensure all MCU commands wait for response
52ffee9fea8d wifi: mt76: mt7925: refine the sniffer commnad
17e939897e33 wifi: mt76: mt7925: prevent multiple scan commands
790d05cde359 wifi: mt76: mt7915: Fix null-ptr-deref in mt7915_mmio_wed_init()
1072fc0ca1f8 wifi: mt76: mt7996: Fix null-ptr-deref in mt7996_mmio_wed_init()
df00f9147e6c Bluetooth: ISO: Fix not using SID from adv report
6bfb154f95d5 kernfs: Relax constraint in draining guard
e0657136ae94 scsi: ufs: mcq: Delete ufshcd_release_scsi_cmd() in ufshcd_mcq_abort()
ee5ee646385f wifi: ath9k_htc: Abort software beacon handling if disabled
59a834592dd2 hisi_acc_vfio_pci: bugfix live migration function without VF device driver
89729b815292 hisi_acc_vfio_pci: add eq and aeq interruption restore
884a76e81317 hisi_acc_vfio_pci: fix XQE dma address error
3a392f874ac8 wifi: ath12k: fix memory leak in ath12k_service_ready_ext_event
b4f6605dc276 iommu: remove duplicate selection of DMAR_TABLE
e966a3c01ca1 wifi: rtw89: fix firmware scan delay unit for WiFi 6 chips
c13255389499 wifi: rtw88: fix the 'para' buffer size to avoid reading out of bounds
8ffad7be09c5 wifi: rtw89: pci: enlarge retry times of RX tag to 1000
78a327ef0a78 s390/bpf: Store backchain even for leaf progs
d32f9927f400 clk: qcom: gcc-msm8939: Fix mclk0 & mclk1 for 24 MHz
e660e75f845f dt-bindings: soc: fsl,qman-fqd: Fix reserved-memory.yaml reference
c98cdf6795a3 bpf: Fix WARN() in get_bpf_raw_tp_regs
e02e12d6a7ab pinctrl: at91: Fix possible out-of-boundary access
b7384eab8785 libbpf: Use proper errno value in nlattr
c13e3174991c ktls, sockmap: Fix missing uncharge operation
64f8f2a93358 of: unittest: Unlock on error in unittest_data_add()
709412b92a7a tracing: Fix error handling in event_trigger_parse()
4839a4a6ab9a tracing: Rename event_trigger_alloc() to trigger_data_alloc()
ec913bc18b45 selftests/bpf: Fix caps for __xlated/jited_unpriv
69a995644a42 efi/libstub: Describe missing 'out' parameter in efi_load_initrd
a82f49df6bd6 wifi: iwlfiwi: mvm: Fix the rate reporting
0a2712cd24ec clk: bcm: rpi: Add NULL check in raspberrypi_clk_register()
d969194bdae6 bpftool: Fix regression of "bpftool cgroup tree" EINVAL on older kernels
41c5158d36a5 clk: qcom: gpucc-sm6350: Add *_wait_val values for GDSCs
45e1ff1284ac clk: qcom: gcc-sm6350: Add *_wait_val values for GDSCs
a2874b73fdaa clk: qcom: dispcc-sm6350: Add *_wait_val values for GDSCs
dcdce64095b4 clk: qcom: camcc-sm6350: Add *_wait_val values for GDSCs
e53a8dcd36b9 tracing: Move histogram trigger variables from stack to per CPU structure
94068a664aa5 bpf: Fix uninitialized values in BPF_{CORE,PROBE}_READ
50ac361ff891 RDMA/mlx5: Fix error flow upon firmware failure for RQ destruction
c1360ac8156c netfilter: nft_set_pipapo: prevent overflow in lookup table allocation
c7b7d63a3322 netfilter: nft_quota: match correctly when the quota just depleted
de6edd32370f netfilter: bridge: Move specific fragmented packet to slow_path instead of dropping it
c1f418cc278a bpf: Allow XDP dev-bound programs to perform XDP_REDIRECT into maps
277f9ffe873a libbpf: Use proper errno value in linker
6589bc3699bc scsi: smartpqi: Fix smp_processor_id() call trace for preemptible kernels
4248ba53e471 f2fs: fix to detect gcing page in f2fs_is_cp_guaranteed()
04daca601252 f2fs: clean up w/ fscrypt_is_bounce_page()
83563a166ca4 bonding: assign random address if device address is same as bond
88f65bb66d75 iommu: Protect against overflow in iommu_pgsize()
cc26bc26bebb Use thread-safe function pointer in libbpf_print
30d80c636ec0 libbpf: Remove sample_period init in perf_buffer
3587bee963f7 libbpf: Fix event name too long error
034c1796f176 scsi: hisi_sas: Call I_T_nexus after soft reset for SATA disk
0e7792a3001d RDMA/hns: Include hnae3.h in hns_roce_hw_v2.h
6285516170f9 wifi: ath12k: fix node corruption in ar->arvifs list
6a6307f8661d wifi: ath12k: Fix the QoS control field offset to build QoS header
0c2de959f168 wifi: ath12k: Add MSDU length validation for TKIP MIC error
371b340affa5 wifi: ath12k: fix invalid access to memory
bba24336b9df wifi: rtw88: do not ignore hardware read error during DPK
c5b738a1d993 wifi: rtw88: sdio: call rtw_sdio_indicate_tx_status unconditionally
308ba450ea57 wifi: rtw88: sdio: map mgmt frames to queue TX_DESC_QSEL_MGMT
5063fe878974 xfrm: Use xdo.dev instead of xdo.real_dev
08784c73454c net/mlx5: Avoid using xso.real_dev unnecessarily
9d57de88d940 libbpf: Fix buffer overflow in bpf_object__init_prog
cf11bd435ff1 net: ncsi: Fix GCPS 64-bit member variables
4f51fb0d257f page_pool: Track DMA-mapped pages and unmap them when destroying the pool
25a912b3e0c5 page_pool: Move pp_magic check into helper functions
65b3f76592ae f2fs: fix to do sanity check on sbi->total_valid_block_count
a4d80521352e f2fs: prevent the current section from being selected as a victim during GC
2fa8d128eced f2fs: clean up unnecessary indentation
0c57aa8ef94c wifi: ath12k: Fix buffer overflow in debugfs
827ff610afbb wifi: ath12k: Fix WMI tag for EHT rate in peer assoc
553c265cd659 wifi: ath12k: fix cleanup path after mhi init
44a51592ac65 f2fs: zone: fix to avoid inconsistence in between SIT and SSA
3d25fa2d7f12 bpf, sockmap: Fix panic when calling skb_linearize
3a8e680f7d7c bpf, sockmap: fix duplicated data transmission
57fbbe29e860 bpf: fix ktls panic with sockmap
f1b0b9b71265 selftests/bpf: Fix bpf_nf selftest failure
671dd1fb8769 bpf: Check link_create.flags parameter for multi_kprobe
fa5977d89d31 IB/cm: use rwlock for MAD agent lock
a284820a1c97 wifi: ath12k: Fix invalid memory access while forming 802.11 header
5a1210a69cc5 wifi: ath12k: Fix memory leak during vdev_id mismatch
f5d77d0d41ea wifi: ath11k: fix node corruption in ar->arvifs list
80a81375ef5a xen/x86: fix initial memory balloon target
7051a80916ce svcrdma: Reduce the number of rdma_rw contexts per-QP
9e710dc96f9c media: verisilicon: Free post processor buffers on error
7b6050a9efc3 drm/mediatek: mtk_drm_drv: Unbind secondary mmsys components on err
62df1ba66839 drm/mediatek: Fix kobject put for component sub-drivers
ad426a7c3dda drm/mediatek: mtk_drm_drv: Fix kobject put for mtk_mutex device ptr
5c2efbb3725d drm/msm/a6xx: Disable rgb565_predicator on Adreno 7c3
295f1b128c9f selftests/seccomp: fix negative_ENOSYS tracer tests on arm32
b038ffbd49e4 perf/amlogic: Replace smp_processor_id() with raw_smp_processor_id() in meson_ddr_pmu_create()
c79bee34566d scsi: qedf: Use designated initializer for struct qed_fcoe_cb_ops
e55f46a11ba5 overflow: Fix direct struct member initialization in _DEFINE_FLEX()
b3cfc1f9f584 arm64/fpsimd: Do not discard modified SVE state
7e16ba331ed2 firmware: SDEI: Allow sdei initialization without ACPI_APEI_GHES
451335c867a7 drm/tegra: rgb: Fix the unbound reference count
c4487e35d35f drm/vkms: Adjust vkms_state->active_planes allocation type
7de22bbc5827 drm: rcar-du: Fix memory leak in rcar_du_vsps_init()
3d0ae6b51141 drm/msm/dpu: enable SmartDMA on SC8180X
5301f110b965 drm/msm/dpu: enable SmartDMA on SM8150
ebf467c0ba35 selftests/seccomp: fix syscall_restart test for arm compat
64a9ee6e111e arm64/fpsimd: Avoid warning when sve_to_fpsimd() is unused
a4ea74086237 arm64: Support ARM64_VA_BITS=52 when setting ARCH_MMAP_RND_BITS_MAX
0860d48b70fd firmware: psci: Fix refcount leak in psci_dt_init
7ccf0c4070c2 m68k: mac: Fix macintosh_config for Mac II
214307d69b2c watchdog: exar: Shorten identity name to fit correctly
980b0895a08c kunit/usercopy: Disable u64 test on 32-bit SPARC
e2bbe6336d15 fs/ntfs3: Add missing direct_IO in ntfs_aops_cmpr
2d5879f64554 fs/ntfs3: handle hdr_first_de() return value
33c9956b46be drm/bridge: lt9611uxc: Fix an error handling path in lt9611uxc_probe()
8a88840699df drm/panel: samsung-sofef00: Drop s6e3fc2x01 support
8e43fa9c713a perf: arm-ni: Fix missing platform_set_drvdata()
7e958e116e3b perf: arm-ni: Unregister PMUs on probe failure
8e6a63acc468 drm/panthor: Update panthor_mmu::irq::mask when needed
d94b25ac50bc drm/panthor: Fix GPU_COHERENCY_ACE[_LITE] definitions
f5ffc750dbfb arm64/fpsimd: Fix merging of FPSIMD state during signal return
2756dac03611 arm64/fpsimd: Reset FPMR upon exec()
55d52af498da arm64/fpsimd: Avoid clobbering kernel FPSIMD state with SMSTOP
945d247d1ca2 arm64/fpsimd: Don't corrupt FPMR when streaming mode changes
6103f9ba51a5 arm64/fpsimd: Discard stale CPU state when handling SME traps
fa65c89f3fc1 arm64/fpsimd: Avoid RES0 bits in the SME trap handler
9d6e355a26fb media: rkvdec: Fix frame size enumeration
64f3acc8c7e6 drm/amd/pp: Fix potential NULL pointer dereference in atomctrl_initialize_mc_reg_table
aba86d49e5ac drm/vc4: tests: Use return instead of assert
bf694844daa0 drm/xe/d3cold: Set power state to D3Cold during s2idle/s3
67ea6af4264a drm/vmwgfx: Fix dumb buffer leak
af713f6af6fd drm/vmwgfx: Add error path for xa_store in vmw_bo_add_detached_resource
aa02817f7add drm/vmwgfx: Add seqno waiter for sync_files
45844a940331 ALSA: core: fix up bus match const issues.
9bad55fc4a9c ASoC: apple: mca: Constrain channels according to TDM mask
5787ff1acef2 spi: sh-msiof: Fix maximum DMA transfer size
c9c8cb0f280b ACPI: OSI: Stop advertising support for "3.0 _SCP Extensions"
0440baa4d42a thermal/drivers/mediatek/lvts: Fix debugfs unregister on failure
77d45ba1bec4 PM: sleep: Print PM debug messages during hibernation
d3cc08bad4b7 x86/mtrr: Check if fixed-range MTRRs exist in mtrr_save_fixed_ranges()
f551f0e630a7 ACPI: resource: fix a typo for MECHREVO in irq1_edge_low_force_override[]
0426e929700b PM: wakeup: Delete space in the end of string shown by pm_show_wakelocks()
06c74bd58783 ASoC: SOF: amd: add missing acp descriptor field
be0dc3e91952 ASoC: SOF: ipc4-pcm: Adjust pipeline_list->pipelines allocation type
81d72f9241d8 PM: EM: Fix potential division-by-zero error in em_compute_costs()
d05c33c14f09 power: reset: at91-reset: Optimize at91_reset()
109d6bc57931 spi: tegra210-quad: modify chip select (CS) deactivation
688d0b0d94b3 spi: tegra210-quad: remove redundant error handling code
6accf99a2e21 spi: tegra210-quad: Fix X1_X2_X4 encoding and support x4 transfers
29ce9e71e95a EDAC/{skx_common,i10nm}: Fix the loss of saved RRL for HBM pseudo channel 0
a13e8343ffcf EDAC/skx_common: Fix general protection fault
87dbfe2b392d ASoC: mediatek: mt8195: Set ETDM1/2 IN/OUT to COMP_DUMMY()
b49ff1c5e935 ASoC: tas2764: Enable main IRQs
594380c4b51a ACPICA: exserial: don't forget to handle FFixedHW opregions for reading
9c094deb6b13 crypto: api - Redo lookup on EEXIST
e9ecaeaf4136 kunit: Fix wrong parameter to kunit_deactivate_static_stub()
53bedcd2d2aa crypto: sun8i-ce - move fallback ahash_request to the end of the struct
5ed92ad1b7d1 crypto: xts - Only add ecb if it is not already there
b7c09d213119 crypto: lrw - Only add ecb if it is not already there
58beaa1aee55 rcu/cpu_stall_cputime: fix the hardirq count for x86 architecture
60f95458154b btrfs: fix invalid data space release when truncating block in NOCOW mode
7f45183ceab8 btrfs: scrub: fix a wrong error type when metadata bytenr mismatches
5bd799d2ac6e btrfs: scrub: update device stats when an error is detected
5539216f734b powerpc/pseries/iommu: Fix kmemleak in TCE table userspace view
65115472f741 erofs: avoid using multiple devices with different type
9cfca45aecc9 erofs: fix file handle encoding for 64-bit NIDs
47810c61475c crypto: marvell/cesa - Avoid empty transfer descriptor
7894694b5d5b crypto: marvell/cesa - Handle zero-length skcipher requests
bf3cbf2805b4 kselftest: cpufreq: Get rid of double suspend in rtcwake case
48e11bcee974 brd: fix discard end sector
5b814cde622b brd: fix aligned_sector from brd_do_discard()
7778a6767869 x86/insn: Fix opcode map (!REX2) superscript tags
a18f8b1092d9 x86/cpu: Sanitize CPUID(0x80000000) output
c93930857f06 crypto: sun8i-ce - undo runtime PM changes during driver removal
57a52d74498c x86/microcode/AMD: Do not return error when microcode update is not necessary
451a18d71bd9 sched/core: Tweak wait_task_inactive() to force dequeue sched_delayed tasks
f54d2b7ac42b powerpc/crash: Fix non-smp kexec preparation
4de0bb505fba powerpc: do not build ppc_save_regs.o always
50de02375fac crypto: sun8i-ss - do not use sg_dma_len before calling DMA functions
19d267d9fad0 crypto: sun8i-ce-cipher - fix error handling in sun8i_ce_cipher_prepare()
781bbc8252f7 perf/core: Fix broken throttling when max_samples_per_tick=1
5cd98656bcbc gfs2: gfs2_create_inode error handling fix
271e6bf41afa gfs2: replace sd_aspace with sd_inode
88ab25d7180c perf/x86/amd/uncore: Prevent UMC counters from saturating
18807198d5db perf/x86/amd/uncore: Remove unused 'struct amd_uncore_ctx::node' member
623074162b88 sched: Fix trace_sched_switch(.prev_state)
e8d0d9ae998e crypto: sun8i-ce-hash - fix error handling in sun8i_ce_hash_run()
41f76e98913a x86/idle: Remove MFENCEs for X86_BUG_CLFLUSH_MONITOR in mwait_idle_with_hints() and prefer_mwait_c1_over_halt()
25027501e66a tools/x86/kcpuid: Fix error handling
(From OE-Core rev: e2adf4cc73ac3488dd4973f8975b96c3eddecc2b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4d2dc369ca0a7744fb7124d5e4f2e18a4fadcc99)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Integrating the following commit(s) to linux-yocto/.:
1/1 [
Author: Mark Hatle
Email: mark.hatle@amd.com
Subject: arch/riscv/tunes: Implement RISC-V ISA selection
Date: Wed, 18 Jun 2025 18:20:08 -0500
You need to first clear (risc-isa-clear) the defaults, and then apply the
ISA components starting with the base ISA and extensions (riscv-isa-...).
Only ISA extensions available in TUNE_FEATURES are currently
implemented.
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: 3565660ff31a7c1bfb785f1a587fa119aa45cf90)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 2080c8f215ca71d526c39a87d3307e4c65476a39)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
e03ced99c437 Linux 6.12.33
80fe1ebc1fbc Revert "drm/amd/display: more liberal vmin/vmax update for freesync"
d452b168da17 dt-bindings: phy: imx8mq-usb: fix fsl,phy-tx-vboost-level-microvolt property
1ed84b17fa9b dt-bindings: usb: cypress,hx3: Add support for all variants
eb2d5e794fb9 thunderbolt: Do not double dequeue a configuration request
b4fac3f172f2 usb: usbtmc: Fix timeout value in get_stb
985961dd2688 serial: jsm: fix NPE during jsm_uart_port_init
e428b7e205ed Bluetooth: hci_qca: move the SoC type check to the right place
4490c7951898 usb: typec: ucsi: fix Clang -Wsign-conversion warning
1a51004aa046 USB: serial: pl2303: add new chip PL2303GC-Q20 and PL2303GT-2AB
393ad978388e usb: storage: Ignore UAS driver for SanDisk 3.2 Gen2 storage device
23179d009cf5 usb: quirks: Add NO_LPM quirk for SanDisk Extreme 55AE
a347664312be Revert "cpufreq: tegra186: Share policy per cluster"
0c60158ff14d block: fix adding folio to bio
3c4fed940db2 PCI/ASPM: Disable L1 before disabling L1 PM Substates
4685153b121e accel/ivpu: Update power island delays
f4deea418499 accel/ivpu: Add initial Panther Lake support
6b482b16f32e rtc: Fix offset calculation for .start_secs < 0
a6a55fe660f8 rtc: Make rtc_time64_to_tm() support dates before 1970
f28fae36bad3 Documentation: ACPI: Use all-string data node references
32b7c46c4dae acpi-cpufreq: Fix nominal_freq units to KHz in get_max_boost_ratio()
614456f1a0fe pinctrl: armada-37xx: set GPIO output value before setting direction
f49c751d6000 pinctrl: armada-37xx: use correct OUTPUT_VAL register for GPIOs > 31
bf49527089ec f2fs: fix to avoid accessing uninitialized curseg
db758487f3dd tracing: Fix compilation warning on arm32
(From OE-Core rev: c8d26faebd4f5739d7b4ee2d9269d195d47c53a3)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f51d876fdf243ec4fb0907e870803ecbdb12ca97)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Integrating the following commit(s) to linux-yocto/6.12:
1/4 [
Author: Bin Lan
Email: bin.lan.cn@windriver.com
Subject: fs/yaffs2: fix build warnings in yaffs_vfs.c when running make allyesconfig
Date: Mon, 9 Jun 2025 14:51:47 +0800
When building linux yocto with allyesconfig, some build warnings are found:
fs/yaffs2/yaffs_vfs.c:1292:15: error: no previous prototype for
‘yaffs_get_inode’ [-Werror=missing-prototypes]
1292 | struct inode *yaffs_get_inode(struct super_block *sb, int mode,
int dev,
| ^~~~~~~~~~~~~~~
fs/yaffs2/yaffs_vfs.c: In function ‘yaffs_iterate’:
fs/yaffs2/yaffs_vfs.c:1841:13: error: unused variable ‘i_version’
[-Werror=unused-variable]
1841 | u64 i_version;
| ^~~~~~~~~
fs/yaffs2/yaffs_vfs.c: At top level:
fs/yaffs2/yaffs_vfs.c:2441:16: error: no previous prototype for
‘yaffs2_get_parent’ [-Werror=missing-prototypes]
2441 | struct dentry *yaffs2_get_parent(struct dentry *dentry)
| ^~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
Inspect the code that the two functions yaffs_get_inode() and
yaffs2_get_parent() are only used in the current file, i_version is not
used in the function yaffs_iterate(). So add the static modifier to the
two functions and remove the variable i_version.
Signed-off-by: Bin Lan <bin.lan.cn@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
2/4 [
Author: Bin Lan
Email: bin.lan.cn@windriver.com
Subject: fs/yaffs2: fix a build warning in yaffs_tagsmarshall.c when running make allyesconfig
Date: Mon, 9 Jun 2025 14:51:48 +0800
When building linux yocto with allyesconfig, a build warning is found:
fs/yaffs2/yaffs_tagsmarshall.c:188:6: error: no previous prototype for
‘yaffs_tags_marshall_install’ [-Werror=missing-prototypes]
188 | void yaffs_tags_marshall_install(struct yaffs_dev *dev)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
Inspect the code that the function yaffs_tags_marshall_install() is
declared in this header file yaffs_tagsmarshall.h. So include the
header file in yaffs_tagsmarshall.c.
Signed-off-by: Bin Lan <bin.lan.cn@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
3/4 [
Author: Bin Lan
Email: bin.lan.cn@windriver.com
Subject: fs/yaffs2: fix a build warning in yaffs_yaffs2.c when running make allyesconfig
Date: Mon, 9 Jun 2025 14:51:49 +0800
When building linux yocto with allyesconfig, a build warning is
found:
fs/yaffs2/yaffs_yaffs2.c:557:21: error: no previous prototype for
‘yaffs2_do_endian_tnode_copy’ [-Werror=missing-prototypes]
557 | struct yaffs_tnode *yaffs2_do_endian_tnode_copy(struct yaffs_dev
*dev,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
Inspect the code that the function yaffs2_do_endian_tnode_copy() is
only used in the current file. So add the static modifier to it.
Signed-off-by: Bin Lan <bin.lan.cn@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
4/4 [
Author: Bin Lan
Email: bin.lan.cn@windriver.com
Subject: fs/yaffs2: fix a build warning in yaffs_mtdif.c when running make allyesconfig
Date: Mon, 9 Jun 2025 14:51:50 +0800
When building linux yocto with allyesconfig, a build warning is
found:
fs/yaffs2/yaffs_mtdif.c:48:5: error: no previous prototype for
‘nandmtd_erase_block’ [-Werror=missing-prototypes]
48 | int nandmtd_erase_block(struct yaffs_dev *dev, int block_no)
| ^~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
Inspect the code that the function nandmtd_erase_block() is
not used by yaffs2. So remove it.
Signed-off-by: Bin Lan <bin.lan.cn@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: 8e139005a965425c5ca4e1d89b18666dfd26bbd1)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9b877748ef7a789fb75db525fec5568691745fef)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The upstream servers are having issues so switch to our own shadow copy
of the repo.
(Bitbake rev: c1cee49479063eabd3f14c1520feaeac4e04de7b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
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.6.3.
[1] 43bba7799f
(From OE-Core rev: acbed746f321e1a42df9035d2b6f1029f5a6a6a2)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- Skip the test_rm_r_no_permissions test under the root user, as
deletion always succeeds.
- Filter out tests under the -ext- directory in run-ptest. Due to the
commit [1],the packaging of .so test files under the .ext directory
was removed. As a result, adjust the test filtering rules to avoid
test failures caused by missing files.
- Add installation of rdoc.rb and did_you_mean.rb files in
do_install_ptest to ensure complete test dependencies.
[1] https://git.openembedded.org/openembedded-core/commit/meta/recipes-devtools/ruby?id=4d4485442830bb52b152f0419f4ff9f1d581d46a
(From OE-Core rev: e2686031a0ee8c6e24898b70059d1a50e956625d)
Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Below commits on binutils-2.44 stable branch are updated.
b09cf42d51e ld/PE: special-case relocation types only for COFF inputs
f0019390d12 s390: Prevent GOT access rewrite for misaligned symbols
452f5511154 x86: Check MODRM for call and jmp in binutils older than 2.45
4058d5a38a1 ld: fix C23 issue in vers7 test
Test Results:
Before After Diff
No. of expected passes 310 310 0
No. of unexpected failures 1 1 0
No. of untested testcases 1 1 0
No. of unsupported tests 9 9 0
Testing was done and there were no regressions found
(From OE-Core rev: bf237c02ac3f49b367601063aba28c8d09cd8be8)
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
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.
Pick commit from 2.13 branch
Reference:
https://security-tracker.debian.org/tracker/CVE-2025-49795
Upstream-patch:
62048278a4
(From OE-Core rev: 9f17e0911eeb49e007de8ee3e50d9f3f38e08a26)
Signed-off-by: Divya Chellam <divya.chellam@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A use-after-free vulnerability was found in libxml2. This issue
occurs when parsing XPath elements under certain circumstances
when the XML schematron has the <sch:name path="..."/> schema
elements. This flaw allows a malicious actor to craft a malicious
XML document used as input for libxml, resulting in the program's
crash using libxml or other possible undefined behaviors.
A vulnerability was found in libxml2. Processing certain sch:name
elements from the input XML file can trigger a memory corruption
issue. This flaw allows an attacker to craft a malicious XML input
file that can lead libxml to crash, resulting in a denial of service
or other possible undefined behavior due to sensitive data being
corrupted in memory.
References:
https://security-tracker.debian.org/tracker/CVE-2025-49794https://security-tracker.debian.org/tracker/CVE-2025-49796
Upstream-patch:
71e1e8af5e
(From OE-Core rev: b0f34931f7ae35538d007add80e2f81c85fa950f)
Signed-off-by: Divya Chellam <divya.chellam@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
A flaw was found in libxml2's xmlBuildQName function, where integer
overflows in buffer size calculations can lead to a stack-based buffer
overflow. This issue can result in memory corruption or a denial
of service when processing crafted input.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2025-6021
Upstream-patch:
17d950ae33
(From OE-Core rev: 99a239d9146c5ecf158cd9db7823ec1aff45fd48)
Signed-off-by: Divya Chellam <divya.chellam@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.
(From OE-Core rev: bb80f57bc3818937d5a207040bfd44021dee4e6e)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Pick commit referencing this CVE.
(From OE-Core rev: aec02926ecaeb792ca987e540820c9da5fbdc49a)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
These CVEs are for integration with WolfSSL which is not supported by
this recipe.
Ignore it if openssl packageconfig is enabled as it was done also in
scarthgap branch.
(From OE-Core rev: 93ae0758ef35031c21a29f84e5481d99c218a232)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
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.
(From OE-Core rev: c9d071556aa2e066abffc35031d86ee8ee9437d8)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Remove the shared PERSISTENT_DIR mention introduced by 3954eda78f22
("dev-manual/start.rst: mention that PERSISTENT_DIR should be shared
too"), as it should _not_ be shared.
Instead recommend setting up a hash equivalence server.
(From yocto-docs rev: 98e71db7177257b340f5841bb9d7f8d83296c546)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit f9f1c87424d307d2df60024bc448bd6778605cf8)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
PERSISTENT_DIR should _not_ be shared, I got that wrong in my previous
commit 741aa29898dc ("ref-manual/structure.rst: update with info on
PERSISTENT_DIR"). Remove these mentions.
(From yocto-docs rev: 9b04faeacad63ada93af3e31fa66fbfe387aa53a)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 4c7fc7a6e9b0b957bcf0deb66adb0a6d9ebead00)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
While search queries already handled words with hyphens correctly, they
did not do so for words with dots.
To fix this, we
- enhance the word tokenizer to treat both dots ('.') and hyphens ('-')
as valid characters within words.
(For robustness, explicitly exclude dots/hyphens at the start or end
of a word from indexing.)
- adjust query processing to avoid splitting on dots in search input
This allows search queries to correctly match terms such as
'local.conf', 'site.conf', and similar ones now.
Fixes: [YOCTO #14534]
(From yocto-docs rev: 462059ebbf25ed362a5ace1987f0684444441a7f)
Signed-off-by: Enrico Jörns <ejo@pengutronix.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 80084a4cabdf7f61c7e93eda8ddbd5bc7d54e041)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Replace the hardcoded /usr/bin by ${bindir}, as it should be.
Reported-by: Thomas Perrot <thomas.perrot@bootlin.com>
(From yocto-docs rev: c5c8d7f1604e8a52f8f7fd4fe445db7b3cb02778)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 576677eae6960dbc2d2ececeba0fde5bba7bb69f)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The PERSISTENT_DIR directory can also be customized to be shared, so
mention it in the list of configuration variables in local.conf.
(From yocto-docs rev: 89adf577754244c8304ae4fa2d3c7f5f2fe00ecc)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit f3aa0e8f0d15f036b65253c1e0036eb7e1e16088)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In the "Development environment summary", we mention that the shared
state dir can be shared for developers, but PERSISTENT_DIR should be
shared as well, otherwise bugs described in [1] can happen.
[1]: https://bugzilla.yoctoproject.org/show_bug.cgi?id=15921
[YOCTO #15921]
(From yocto-docs rev: 60a08db99a0562a7ff0856da2287d5339d37d239)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 3954eda78f22f205cbd31857f5b0992900fe7b02)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Since we mention that SSTATE_DIR can be shared for multiple builds, also
mention that PERSISTENT_DIR should be shared alongside SSTATE_DIR.
[YOCTO #15921]
(From yocto-docs rev: b2774467ed327baeddcc9161fe7ffee797f9158d)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 741aa29898dc7f34ebd423ff7565334b2c89e18c)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The autobuilder also uses a shared Hash Equivalence server, so mention
it here too.
(From yocto-docs rev: 32655d051eddbec6ab154609ace25b86975818bf)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit a96640f98c91f147e05cf132efab114b1e7dc8eb)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In the light of the recent LLVM addition, and other such heavier
recipes, increase the minimum RAM requirement from 8Gb to 32Gb.
(From yocto-docs rev: 459d461f1edebd65319e8b13386ab81b1bfcaeb0)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 3055affc8a37a40d03206140e47caf3d1437ec35)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
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.
(From OE-Core rev: bbd3e7886e2ec5ab3578d618b28d007a80d917aa)
(From OE-Core rev: 4225c9abbc68e1a29a54927a9c8e1fe12208e5b4)
Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
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>
Reproduce steps(Under the same project dir):
1. enable DISTRO_FEATURES usrmerge, bitbake mingetty
2. disable DISTRO_FEATURES usrmerge, bitbake mingetty
Result in step 2:
WARNING: mingetty-1.08-r3 do_package: mingetty: NOT adding alternative provide /usr/sbin/getty: /usr/sbin/mingetty does not exist
WARNING: mingetty-1.08-r3 do_package: QA Issue: mingetty: Files/directories were installed but not shipped in any package:
/sbin
/usr/sbin
In step1, Line SBINDIR=/sbin is replaced to SBINDIR=/usr/sbin, in step2,
since do_fetch does not rerun, Makefile still has SBINDIR=/usr/sbin, so
sed not works as expected, SBINDIR still equal to /usr/sbin when disable
usrmerge. And cause above two warnings.
(From OE-Core rev: 3efb82f1f51cbfa04f74626531615526e10bd2b2)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
0001-meson.build-correct-check-for-existence-of-two-prepr.patch
removed since it's included in 1.7.1
Changelog:
===============
* pam_access: do not resolve ttys or display variables as hostnames.
* pam_access: added "nodns" option to disallow resolving of tokens as hostnames
(CVE-2024-10963).
* pam_limits: added support for rttime (RLIMIT_RTTIME).
* pam_namespace: fixed potential privilege escalation (CVE-2025-6020).
* meson: added support of elogind as a logind provider.
* Multiple minor bug fixes, build fixes, portability fixes,
documentation improvements, and translation updates.
(From OE-Core rev: 5e77c48e074a20e58a233ab5ed6d8ef09bbd55c8)
(From OE-Core rev: 0c405f1a60446e9e69b0ea6fc0e142eaf4243642)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Divya Chellam <divya.chellam@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.
(From OE-Core rev: 3065d9be88bd66c979926649b442559c611d88a9)
Signed-off-by: Praveen Kumar <praveen.kumar@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Includes fix for CVE-2025-24223, CVE-2025-31204, CVE-2025-31205,
CVE-2025-31206, CVE-2025-31215 and CVE-2025-31257.
Changelog:
=========
- Enable CSS Overscroll Behavior by default.
- Change threaded rendering implementation to use Skia API
instead of WebCore display list that is not thread safe.
- Fix rendering when device scale factor change comes before
the web view geometry update.
- Fix network process crash on exit.
- Fix the build with ENABLE_RESOURCE_USAGE=OFF.
- Fix several crashes and rendering issues.
Drop fix-ftbfs-non-arm-non-x86.patch which is part of upgrade.
(From OE-Core rev: f33b79a07117d4327949aa1661221a3b9bc0f7e3)
(From OE-Core rev: 800cac7cc914d9c307b0301dc380aabcf62d6e4f)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There are two "new" CVEs reported for python3, their CPEs are:
* CVE-2020-1171: cpe:2.3🅰️microsoft:python:*:*:*:*:*:visual_studio_code:*:* (< 2020.5.0)
* CVE-2020-1192: cpe:2.3🅰️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.
(From OE-Core rev: 8659e3537facbf3f5f5a5080137be4d9faf9c970)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
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.
Adjusted indentation in the recipe file.
Reference:
https://security-tracker.debian.org/tracker/CVE-2025-5915
Upstream-patches:
a612bf62f8
(From OE-Core rev: 0787eb4ed528cde09ed8f27f070cc6875548f056)
Signed-off-by: Divya Chellam <divya.chellam@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Integrating the following commit(s) to linux-yocto/6.12:
1/1 [
Author: Ross Burton
Email: ross.burton@arm.com
Subject: libbpf: silence maybe-uninitialized warning from clang
Date: Wed, 4 Jun 2025 21:22:23 +0100
perf is build with -Werror, but clang 20.1.6 (incorrectly) finds that
mod_len may be used uninitialized:
libbpf.c: In function 'find_kernel_btf_id.constprop':
libbpf.c:10009:33: error: 'mod_len' may be used uninitialized [-Werror=maybe-uninitialized]
10009 | if (mod_name && strncmp(mod->name, mod_name, mod_len) != 0)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
libbpf.c:9979:21: note: 'mod_len' was declared here
9979 | int ret, i, mod_len;
| ^~~~~~~
Inspecting the code it can be seen that mod_len is set if mod_name is
set, and the strncmp() is only called if mod_name is set, so this is a
false positive (interestingly, clang doesn't spot the same issue above).
Silence the false positive by explicitly initializing mod_len to 0.
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: 0454186eeceafb8e0bd2b29ac2f8b46f9601f65d)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 43f6b7795170f0e571265f22bcef51554684206f)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
df3f6d10f353d Linux 6.12.31
85fb1edd059bf drm/gem: Internally test import_attach for imported objects
ee2a06bbbb8a0 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
ae0d63ec39053 i3c: master: svc: Fix implicit fallthrough in svc_i3c_master_ibi_work()
73c4707510f27 pinctrl: tegra: Fix off by one in tegra_pinctrl_get_group()
ecb9d3123bef7 watchdog: aspeed: fix 64-bit division
c3e1091eb054c drm/amdkfd: Correct F8_MODE for gfx950
a8a34fbf915dd serial: sh-sci: Save and restore more registers
80eb73778deba bpf: abort verification if env->cur_state->loop_entry != NULL
fdee1dc816b4c drm/amd/display: Exit idle optimizations before accessing PHY
dd8a734155ae2 kbuild: Properly disable -Wunterminated-string-initialization for clang
3f856d5d84467 Fix mis-uses of 'cc-option' for warning disablement
d66cf772bebd7 gcc-15: disable '-Wunterminated-string-initialization' entirely for now
9f58537e9b8f0 gcc-15: make 'unterminated string initialization' just a warning
d28b0305f711e err.h: move IOMEM_ERR_PTR() to err.h
96537d8c67e5e spi: spi-fsl-dspi: Reset SR flags before sending a new message
b1781bd47e6d4 spi: spi-fsl-dspi: Halt the module after a new message transfer
b9fbbcf61e7c7 spi: spi-fsl-dspi: restrict register range for regmap access
1d45e0170cf00 spi: use container_of_cont() for to_spi_device()
92f077ff52f28 platform/x86: think-lmi: Fix attribute name usage for non-compliant items
5c54a557bde18 ksmbd: fix stream write failure
544ff7fb19727 Revert "arm64: dts: allwinner: h6: Use RSB for AXP805 PMIC connection"
111a892a235d5 Bluetooth: btmtksdio: Do close if SDIO card removed without close
3e0dc2b4f678c Bluetooth: btmtksdio: Check function enabled before doing close
fedd2a1443600 nilfs2: fix deadlock warnings caused by lock dependency in init_nilfs()
483ac74183e1e mm: vmalloc: only zero-init on vrealloc shrink
94efb0d656902 mm: vmalloc: actually use the in-place vrealloc region
9f9517f156866 mm: mmap: map MAP_STACK to VM_NOHUGEPAGE only if THP is enabled
9da33ce1142b5 mm/page_alloc.c: avoid infinite retries caused by cpuset race
314bf771cb87c memcg: always call cond_resched() after fn()
9b8263cae64a6 highmem: add folio_test_partial_kmap()
cb9a1019a63fe Input: xpad - add more controllers
7c220f89add8e Revert "drm/amd: Keep display off while going into S4"
b4f801e8cfcc1 smb: client: Reset all search buffer pointers when releasing buffer
56b06539b6782 arm64: dts: marvell: uDPU: define pinctrl state for alarm LEDs
9bea368648ac4 smb: client: Fix use-after-free in cifs_fill_dirent
dc9bdfb9b0286 drm/edid: fixed the bug that hdr metadata was not reset
56081f5d14c67 thermal: intel: x86_pkg_temp_thermal: Fix bogus trip temperature
8594a123cfa23 platform/x86: dell-wmi-sysman: Avoid buffer overflow in current_password_store()
e78908caf17cb pmdomain: core: Fix error checking in genpd_dev_pm_attach_by_id()
0ae82a7abff8f pmdomain: renesas: rcar: Remove obsolete nullify checks
a6ddbf9ae7884 vmxnet3: update MTU after device quiesce
ba689e089369d net: dsa: microchip: linearize skb for tail-tagging switches
352fbde14177d can: kvaser_pciefd: Fix echo_skb race
8654c8a0528d0 can: kvaser_pciefd: Continue parsing DMA buf after dropped RX
80702f002b136 llc: fix data loss when reading from a socket in llc_ui_recvmsg()
4e22325b98245 ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14ASP10
bf85e49aaf3a3 ALSA: pcm: Fix race of buffer access at PCM OSS layer
799d48c95f9b6 ASoC: SOF: ipc4-pcm: Delay reporting is only supported for playback direction
20e3fa3b7df9d ASoc: SOF: topology: connect DAI to a single DAI link
6a62b917fb55b ASoC: SOF: Intel: hda-bus: Use PIO mode on ACE2+ platforms
964d355832700 ASoC: SOF: ipc4-control: Use SOF_CTRL_CMD_BINARY as numid for bytes_ext
63567ecd99a24 can: bcm: add missing rcu read protection for procfs content
cc55dd28c20a6 can: bcm: add locking for bcm_op runtime updates
adb05149a9055 can: slcan: allow reception of short error messages
5300e487487d7 padata: do not leak refcount in reorder_work
2f45a8d64fb4e crypto: algif_hash - fix double free in hash_accept
bcb1c946c761d clk: s2mps11: initialise clk_hw_onecell_data::num before accessing ::hws[] in probe()
4a7261089d1aa octeontx2-af: Fix APR entry mapping based on APR_LMT_CFG
92b04bac366f0 octeontx2-af: Set LMT_ENA bit for APR table entries
689a205cd968a net/tipc: fix slab-use-after-free Read in tipc_aead_encrypt_done
41678d7222850 octeontx2-pf: Add AF_XDP non-zero copy support
49b21795b8e56 sch_hfsc: Fix qlen accounting bug when using peek in hfsc_enqueue()
0a2422f97651c idpf: fix idpf_vport_splitq_napi_poll()
873ebaf3c1113 io_uring: fix overflow resched cqe reordering
845ef0462ac70 net: lan743x: Restore SGMII CTRL register on resume
8e4fd8e76dd7e net: dwmac-sun8i: Use parsed internal PHY address instead of 1
3e79182c82a11 pinctrl: qcom: switch to devm_register_sys_off_handler()
cd7f022296972 loop: don't require ->write_iter for writable files in loop_configure
f6f5e9c8cb680 idpf: fix null-ptr-deref in idpf_features_check
8c3b8ace9ce4a ice: Fix LACP bonds without SRIOV environment
7191b69eae0f5 ice: fix vf->num_mac count with port representors
233a227a317b0 bridge: netfilter: Fix forwarding of fragmented packets
0b7d3e782027a ptp: ocp: Limit signal/freq counts in summary output functions
6a1f9a709a616 Bluetooth: btusb: use skb_pull to avoid unsafe access in QCA dump handling
1e8b7e96f71fe Bluetooth: L2CAP: Fix not checking l2cap_chan security level
ca51db2316676 perf/x86/intel: Fix segfault with PEBS-via-PT with sample_freq
1c1fb885e5885 irqchip/riscv-imsic: Start local sync timer on correct CPU
2b49e68360eb6 ASoC: SOF: Intel: hda: Fix UAF when reloading module
4a39fbffad5cd devres: Introduce devm_kmemdup_array()
7207effe4743f driver core: Split devres APIs to device/devres.h
ae344b9f842d9 dmaengine: fsl-edma: Fix return code for unhandled interrupts
d31daa83efbab dmaengine: idxd: Fix ->poll() return value
252f78a9317ac xfrm: Sanitize marks before insert
ae5e975a46e26 clk: sunxi-ng: d1: Add missing divider for MMC mod clocks
090aa8d51ec6c remoteproc: qcom_wcnss: Fix on platforms without fallback regulators
447c8f0c06190 kernel/fork: only call untrack_pfn_clear() on VMAs duplicated for fork()
7f5dc43b46205 x86/sev: Fix operator precedence in GHCB_MSR_VMPL_REQ_LEVEL macro
d91576a2321d7 dmaengine: idxd: Fix allowing write() from different address spaces
b1a687eb15bcf xfrm: Fix UDP GRO handling for some corner cases
9cbca30102028 espintcp: remove encap socket caching to avoid reference leak
28756f22de48d espintcp: fix skb leaks
153bc79b5d02c soundwire: bus: Fix race on the creation of the IRQ domain
8cafd7266fa02 __legitimize_mnt(): check for MNT_SYNC_UMOUNT should be under mount_lock
a0c50c9f9c912 drm/amd/display: Call FP Protect Before Mode Programming/Mode Support
211f589206459 xenbus: Allow PVH dom0 a non-local xenstore
5a8d073d87da4 x86/Kconfig: make CFI_AUTO_DEFAULT depend on !RUST or Rust >= 1.88
b8581b4e4d96e wifi: iwlwifi: add support for Killer on MTL
1645fc1849ef0 block: only update request sector if needed
511ea82e344e0 tools: ynl-gen: validate 0 len strings from kernel
6e9770de02496 btrfs: avoid NULL pointer dereference if no valid csum tree
230c94ca3527d btrfs: handle empty eb->folios in num_extent_folios()
7f7c8c03feba5 btrfs: correct the order of prelim_ref arguments in btrfs__prelim_ref
92dff981dddff btrfs: compression: adjust cb->compressed_folios allocation type
5926bc887da2f ASoC: intel/sdw_utils: Add volume limit to cs42l43 speakers
6b1a9a7647097 cifs: Fix changing times and read-only attr over SMB1 smb_set_file_info() function
0a9920e1ff67d cifs: Fix and improve cifs_query_path_info() and cifs_query_file_info()
ad3e83a6c8033 io_uring/fdinfo: annotate racy sq/cq head/tail reads
ec462449f4cf6 nvmet-tcp: don't restore null sk_state_change
6a09b6bad09a6 ALSA: usb-audio: Fix duplicated name in MIDI substream names
6d196cae4b0b2 nvme-pci: add quirks for WDC Blue SN550 15b7:5009
ff214b079d55e nvme-pci: add quirks for device 126f:1001
35ec11b38588c ALSA: hda/realtek: Add quirk for HP Spectre x360 15-df1xxx
8f76431c00b2d ASoC: Intel: bytcr_rt5640: Add DMI quirk for Acer Aspire SW3-013
63affdae7ff49 ASoC: cs42l43: Disable headphone clamps during type detection
4c7a0425fb620 platform/x86: ideapad-laptop: add support for some new buttons
2418bf5d383fa platform/x86: asus-wmi: Disable OOBE state after resume from hibernation
00fe4c0e46959 platform/x86/intel: hid: Add Pantherlake support
aa000a4ee9897 smb: server: smb2pdu: check return value of xa_store()
c134c62b9e97b pinctrl: meson: define the pull up/down resistor value as 60 kOhm
5863bd44ed2fa book3s64/radix: Fix compile errors when CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP=n
b5aa85b9b0c4c ASoC: imx-card: Adjust over allocation of memory in imx_card_parse_of()
9fddd1f15465f drm: Add valid clones check
08150a6c83a9a drm/panel-edp: Add Starry 116KHD024006
aa52c70ae1322 drm/buddy: fix issue that force_merge cannot free all roots
135105287781e drm/atomic: clarify the rules around drm_atomic_state->allow_modeset
6ceef704e2bce drm/xe: Reject BO eviction if BO is bound to current VM
650c1769cfe9d drm/xe/sa: Always call drm_suballoc_manager_fini()
1cc37163730aa wifi: rtw89: coex: Separated Wi-Fi connecting event from Wi-Fi scan event
c9db43696ed0e drm/xe: Do not attempt to bootstrap VF in execlists mode
274ae1044bd2c drm/xe: Move suballocator init to after display init
115360031be90 wifi: ath11k: Use dma_alloc_noncoherent for rx_tid buffer allocation
e1fffcd1d75db drm/nouveau: fix the broken marco GSP_MSG_MAX_SIZE
878ccaf79c95f drm: bridge: adv7511: fill stream capabilities
fb0d82562c078 wifi: ath12k: Fix end offset bit definition in monitor ring descriptor
bb2d55681ee70 wifi: ath12k: Fetch regdb.bin file from board-2.bin
a3f6e4682f3d4 wifi: ath9k: return by of_get_mac_address
331c0af96c034 drm/xe/pf: Reset GuC VF config when unprovisioning critical resource
63780d7352f0f accel/qaic: Mask out SR-IOV PCI resources
a1e3f2ea66c0d wifi: ath12k: fix ath12k_hal_tx_cmd_ext_desc_setup() info1 override
ff56fbf50eff9 regulator: ad5398: Add device tree support
697a6f8a91063 spi: zynqmp-gqspi: Always acknowledge interrupts
c533839e0a48d wifi: rtw89: add wiphy_lock() to work that isn't held wiphy_lock() yet
9e9e974915908 wifi: rtw88: Don't use static local variable in rtw8822b_set_tx_power_index_by_rate
0b63d246248f5 wifi: rtl8xxxu: retry firmware download on error
ff5c6e3d251ea clk: renesas: rzg2l-cpg: Refactor Runtime PM clock validation
3a95341c65e4e perf/amd/ibs: Fix ->config to sample period calculation for OP PMU
e225dbb03af65 perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt
46f1c2b508e33 firmware: arm_scmi: Relax duplicate name constraint across protocol ids
ff84436446a02 bpftool: Fix readlink usage in get_fd_type
c80b2d159c31f bpf: Use kallsyms to find the function name of a struct_ops's stub function
c3fd672e6644a drm/ast: Find VBIOS mode from regular display size
538a82168e52b dm vdo: use a short static string for thread name prefix
f8b4edbcf3531 dm vdo indexer: prevent unterminated string warning
0cc2aa7472085 irqchip/riscv-aplic: Add support for hart indexes
a3300021d4875 ASoC: rt722-sdca: Add some missing readable registers
67f7080cb30e5 ASoC: codecs: pcm3168a: Allow for 24-bit in provider mode
b99c2faf40215 arm64: zynqmp: add clock-output-names property in clock nodes
9e3eaf7f750e1 HID: usbkbd: Fix the bit shift number for LED_KANA
b5a1ef646ce13 wifi: ath12k: Avoid napi_sync() before napi_enable()
dbb6efb3d8f34 scsi: st: Restore some drive settings after reset
1be28b37a6a7b scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector() fails
609bc6e9c1869 scsi: lpfc: Ignore ndlp rport mismatch in dev_loss_tmo callbk
c670902775c20 scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine
f5ce5628576dd net/mana: fix warning in the writer of client oob
7cc781374e20e drm/xe/relay: Don't use GFP_KERNEL for new transactions
e2017f44c6d4a ice: count combined queues using Rx/Tx count
887e39ac4704e perf: Avoid the read if the count is already updated
d402437cde36c rcu: fix header guard for rcu_all_qs()
fcabb696743a4 rcu: handle unstable rdp in rcu_read_unlock_strict()
5cdaa970d73a4 rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y
65daba41f935e ice: treat dyn_allowed only as suggestion
3c8b4657a6d75 ice: init flow director before RDMA
58cdd1ee650b3 bridge: mdb: Allow replace of a host-joined group
76e56dbe508b3 net: flush_backlog() small changes
ba59747562c49 r8169: don't scan PHY addresses > 0
ded26f9e4cdbe ipv4: ip_gre: Fix set but not used warning in ipgre_err() if IPv4-only
a6644aeb8ddf1 vxlan: Annotate FDB data races
61e931ee145ee cpufreq: amd-pstate: Remove unnecessary driver_lock in set_boost
b82e496531c57 net/mlx5e: Avoid WARN_ON when configuring MQPRIO with HTB offload enabled
91526279362d3 tools: ynl-gen: don't output external constants
37c07516ac6a5 eth: fbnic: set IFF_UNICAST_FLT to avoid enabling promiscuous mode when adding unicast addrs
d2b58a10228a9 drm/rockchip: vop2: Improve display modes handling on RK3588 HDMI0
91c53b8cd81ce media: qcom: camss: Add default case in vfe_src_pad_code
85e0e03303390 media: qcom: camss: csid: Only add TPG v4l2 ctrl if TPG hardware is available
1d15319323d84 f2fs: introduce f2fs_base_attr for global sysfs entries
77818483460b5 hwmon: (xgene-hwmon) use appropriate type for the latency value
c4092cb06398f tools/power turbostat: Clustered Uncore MHz counters should honor show/hide options
247b420fea798 net: page_pool: avoid false positive warning if NAPI was never added
b063f36a929a3 clk: qcom: camcc-sm8250: Use clk_rcg2_shared_ops for some RCGs
2368794c0cf41 wifi: rtw89: call power_on ahead before selecting firmware
01edf9255f33d wifi: rtw89: fw: validate multi-firmware header before accessing
f4c99c7b710b1 wifi: rtw89: fw: validate multi-firmware header before getting its size
2eb2cfca35801 wifi: rtw89: coex: Assign value over than 0 to avoid firmware timer hang
50f78100b9393 wifi: rtw88: Fix __rtw_download_firmware() for RTL8814AU
1c564864438b2 wifi: rtw88: Fix download_firmware_validate() for RTL8814AU
2a25d61107c6e ext4: remove writable userspace mappings before truncating page cache
73733c2fdb378 ext4: don't write back data before punch hole in nojournal mode
39255ab2edfb0 leds: trigger: netdev: Configure LED blink interval for HW offload
16ddd67bb5579 pstore: Change kmsg_bytes storage size to u32
556f53a8ec374 iio: adc: ad7944: don't use storagebits for sizing
7fea5a914001a r8152: add vendor/device ID pair for Dell Alienware AW1022z
9f2911868a733 ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure().
f9ab6efdee1ff arch/powerpc/perf: Check the instruction type before creating sample with perf_mem_data_src
c2e02e2b21591 powerpc/pseries/iommu: create DDW for devices with DMA mask less than 64-bits
9aeaf1956e75a powerpc/pseries/iommu: memory notifier incorrectly adds TCEs for pmemory
701118e6f621f net: fec: Refactor MAC reset to function
641ad8d64a08c wifi: mac80211: set ieee80211_prep_tx_info::link_id upon Auth Rx
8315b79220d2d wifi: mac80211: remove misplaced drv_mgd_complete_tx() call
26e384fafda89 wifi: mac80211: don't unconditionally call drv_mgd_complete_tx()
8e1800f1db7eb wifi: iwlwifi: don't warn during reprobe
15d8ceef9289f wifi: iwlwifi: use correct IMR dump variable
4d8fd111e0f55 mptcp: pm: userspace: flags: clearer msg if no remote addr
6a0997d78ffa3 wifi: ath12k: fix the ampdu id fetch in the HAL_RX_MPDU_START TLV
06daedb4439bb xfrm: prevent high SEQ input in non-ESN mode
bbd6dc1fb6c56 drm/v3d: Add clock handling
e5a69d1696323 net/mlx5e: reduce the max log mpwrq sz for ECPF and reps
74d153d8ec150 net/mlx5e: reduce rep rxq depth to 256 for ECPF
af94d4f46c09a net/mlx5e: set the tx_queue_len for pfifo_fast
a3a845ebc8f98 net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB
4a94ccac4930d net/mlx5: XDP, Enable TX side XDP multi-buffer support
d4df87dae1444 scsi: target: spc: Fix loop traversal in spc_rsoc_get_descr()
9acae6e987058 drm/amd/display/dm: drop hw_support check in amdgpu_dm_i2c_xfer()
f5e9d0d206cbd drm/amdgpu: enlarge the VBIOS binary size limit
7ef18e2ffdc12 drm/amdgpu: Use active umc info from discovery
1bb46b5433a8a drm/amd/display: Populate register address for dentist for dcn401
af3d57ea9ec74 drm/amd/display: Use Nominal vBlank If Provided Instead Of Capping It
e55c5704b12ee drm/amd/display: Increase block_sequence array size
17e40a52a1492 drm/amd/display: Initial psr_version with correct setting
563adeeeb0ffa drm/amd/display: Update CR AUX RD interval interpretation
47bfc7a02704f Revert "drm/amd/display: Exit idle optimizations before attempt to access PHY"
45068cc170ebf drm/amd/display: Support multiple options during psr entry.
4f4cb81def433 drm/amd/pm: Skip P2S load for SMU v13.0.12
a25d045ebfbce drm/amdgpu: reset psp->cmd to NULL after releasing the buffer
ed2039d840a12 drm/amd/display: Don't try AUX transactions on disconnected link
a8726bee7046d drm/amd/display: pass calculated dram_speed_mts to dml2
452807a863018 drm/amdgpu: Set snoop bit for SDMA for MI series
5ca70518bc23d drm/amdkfd: fix missing L2 cache info in topology
365d302ac763d drm/amdgpu/mes11: fix set_hw_resources_1 calculation
11c7fa11fa076 net: stmmac: dwmac-loongson: Set correct {tx,rx}_fifo_size
97dba4472e484 soundwire: cadence_master: set frame shape and divider based on actual clk freq
c043867b654ec soundwire: amd: change the soundwire wake enable/disable sequence
164c9f5edf2ae phy: exynos5-usbdrd: fix EDS distribution tuning (gs101)
ef31dc41cf67b phy: core: don't require set_mode() callback for phy_get_mode() to work
afb512502f2d7 phy: phy-rockchip-samsung-hdptx: Swap the definitions of LCPLL_REF and ROPLL_REF
a507a213e82ca pinctrl: renesas: rzg2l: Add suspend/resume support for pull up/down
5de11f82cbfd1 serial: sh-sci: Update the suspend/resume support
e6e31b0182de5 sched: Reduce the default slice to avoid tasks getting an extra tick
9c5f85b72fa6d x86/traps: Cleanup and robustify decode_bug()
eb6fd16b4fc4f x86/ibt: Handle FineIBT in handle_cfi_failure()
b870651021223 drm/xe/debugfs: Add missing xe_pm_runtime_put in wedge_mode_set
cf126a14584e5 drm/xe/debugfs: fixed the return value of wedged_mode_set
6469a2b1140d0 clk: qcom: clk-alpha-pll: Do not use random stack value for recalc rate
328a2ec198e70 clk: qcom: ipq5018: allow it to be bulid on arm32
01d28e67f567b drm/xe: Fix xe_tile_init_noalloc() error propagation
884d64e8e4dc6 drm/xe: Stop ignoring errors from xe_ttm_stolen_mgr_init()
50c5bbb45c7df net/mlx4_core: Avoid impossible mlx4_db_alloc() order value
69689d1138c85 media: v4l: Memset argument to 0 before calling get_mbus_config pad op
9a981079097be media: i2c: imx219: Correct the minimum vblanking value
12aeff4944dc6 kunit: tool: Use qboot on QEMU x86_64
8f5ce688c8318 smack: Revert "smackfs: Added check catlen"
316f2911fb11a smack: recognize ipv4 CIPSO w/o categories
5b1b4cb46d951 pinctrl: devicetree: do not goto err when probing hogs in pinctrl_dt_to_map
c4260bf83b429 ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot()
2ea042779621d ASoC: tas2764: Power up/down amp on mute ops
409c12ce79b33 ASoC: tas2764: Mark SW_RESET as volatile
8d8083881ecbb ASoC: tas2764: Add reg defaults for TAS2764_INT_CLK_CFG
000dd6e3441fc ASoC: ops: Enforce platform maximum on initial value
83ea947238953 firmware: xilinx: Dont send linux address to get fpga config get status
e1c4bb3774421 firmware: arm_ffa: Handle the presence of host partition in the partition info
3a3fab1be5a0c firmware: arm_ffa: Reject higher major version as incompatible
587386c56fb88 net/mlx5: Apply rate-limiting to high temperature warning
c4e1ce22b9ab9 net/mlx5: Modify LSB bitmask in temperature event to include only the first bit
3770acff3110f media: test-drivers: vivid: don't call schedule in loop
2fe6284364423 irqchip/riscv-imsic: Set irq_set_affinity() for IMSIC base
dc5f5c9d2bbc6 hrtimers: Replace hrtimer_clock_to_base_table with switch-case
7f131fda2654e vxlan: Join / leave MC group after remote changes
1fb8106316a21 ACPI: HED: Always initialize before evged
82b54455b6b7f PCI: Fix old_size lower bound in calculate_iosize() too
161cc125043a2 eth: mlx4: don't try to complete XDP frames in netpoll
46ba5757a7a47 bpf: copy_verifier_state() should copy 'loop_entry' field
2b129e89b8c6e bpf: don't do clean_live_states when state->loop_entry->branches > 0
eaeb67bd851ce can: c_can: Use of_property_present() to test existence of DT property
a89326d35bf6f pmdomain: imx: gpcv2: use proper helper for property detection
3ccfdd5b33742 RDMA/core: Fix best page size finding when it can cross SG entries
e6a46719a2369 serial: mctrl_gpio: split disable_ms into sync and no_sync APIs
b14e726d57f61 drm/amd/display: Don't treat wb connector as physical in create_validate_stream_for_sink
cee5d56fa783f Revert "drm/amd/display: Request HW cursor on DCN3.2 with SubVP"
775f3afa6ade1 drm/amd/display: Read LTTPR ALPM caps during link cap retrieval
1e826acee1165 drm/amd/display: Fix BT2020 YCbCr limited/full range input
2bba67f03071a drm/amd/display: Guard against setting dispclk low when active
b02b561bf7692 drm/amd/display: Add support for disconnected eDP streams
94e6687ceda91 drm/amd/pm: Fetch current power limit from PMFW
098788e118d1e irqchip/riscv-imsic: Separate next and previous pointers in IMSIC vector
d85004266a32c eeprom: ee1004: Check chip before probing
011a62d2d79ac mfd: axp20x: AXP717: Add AXP717_TS_PIN_CFG to writeable regs
a82c0c3996771 i3c: master: svc: Flush FIFO before sending Dynamic Address Assignment(DAA)
7d0c92af8d355 EDAC/ie31200: work around false positive build warning
4593aaf48fc16 power: supply: axp20x_battery: Update temp sensor for AXP717 from device tree
6b1d3e9db82d0 net: pktgen: fix access outside of user given buffer in pktgen_thread_write()
d37783f25a3c8 wifi: rtw89: 8922a: fix incorrect STA-ID in EHT MU PPDU
7dafba4e854cd wifi: rtw89: fw: add blacklist to avoid obsolete secure firmware
6ffcf25e63226 wifi: rtw89: fw: get sb_sel_ver via get_unaligned_le32()
1cbef396c5f3b wifi: rtw89: fw: propagate error code from rtw89_h2c_tx()
a4523765fa3a9 wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31
adcc65afaa979 wifi: rtw88: Fix rtw_init_ht_cap() for RTL8814AU
9a3f80a727aac wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU
1653c72dabfd6 scsi: mpt3sas: Send a diag reset if target reset fails
b5038d313a3b7 PCI: epf-mhi: Update device ID for SA8775P
0b21e99cf638b clocksource: mips-gic-timer: Enable counter when CPUs start
1a3529f36f26e MIPS: pm-cps: Use per-CPU variables as per-CPU, not per-core
53f42776e435f genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of iommu_cookie
5111c2e0cf2b6 x86/locking: Use ALT_OUTPUT_SP() for percpu_{,try_}cmpxchg{64,128}_op()
95b8f2b7d9312 drm/amdgpu: remove all KFD fences from the BO on release
af706d0e279fc MIPS: Use arch specific syscall name match function
9058b48578aea drm/xe/oa: Ensure that polled read returns latest data
4d9fa2ebc01c4 net: ipv6: Init tunnel link-netns before registering dev
897c98fb32801 crypto: skcipher - Zap type in crypto_alloc_sync_skcipher
9f27b38771b05 crypto: ahash - Set default reqsize from ahash_alg
562e512f6bf99 x86/kaslr: Reduce KASLR entropy on most x86 systems
0bdaab17a2a17 net/mlx5: Change POOL_NEXT_SIZE define value and make it global
d2d76fc02543a scsi: scsi_debug: First fixes for tapes
b55a97d1bd408 dm: fix unconditional IO throttle caused by REQ_PREFLUSH
2c600cbe33f20 libbpf: Fix out-of-bound read
20a53c3689a20 loop: check in LO_FLAGS_DIRECT_IO in loop_default_blocksize
5b62f941eae80 scsi: mpi3mr: Update timestamp only for supervisor IOCs
a68686c08b70b net/mlx5e: Add correct match to check IPSec syndromes for switchdev mode
c2aa6567a6a48 media: tc358746: improve calculation of the D-PHY timing registers
bb8fb041cba26 media: adv7180: Disable test-pattern control on adv7180
083383aba01f2 cpuidle: menu: Avoid discarding useful information
0d508cefcd24a vdpa/mlx5: Fix mlx5_vdpa_get_config() endianness on big-endian machines
6398dd09d50b4 vhost-scsi: Return queue full for page alloc failures during copy
7eb29d704d276 x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus()
7bbfaa24c02f4 ASoC: mediatek: mt8188: Add reference for dmic clocks
4a21b57d83c55 ASoC: mediatek: mt8188: Treat DMIC_GAINx_CUR as non-volatile
6e5935b755b4a drm/amd/display: Fix mismatch type comparison
990e4fb37bcd4 drm/amd/display: fix dcn4x init failed
54dd746ed8a30 drm/amd/display: handle max_downscale_src_width fail check
5cab1de0cea28 x86/build: Fix broken copy command in genimage.sh when making isoimage
de48b82dcf583 Octeontx2-af: RPM: Register driver with PCI subsys IDs
673dde8d3c3ec bpf: Search and add kfuncs in struct_ops prologue and epilogue
06100e642f4b8 soc: ti: k3-socinfo: Do not use syscon helper to build regmap
54ef1a89e287e wifi: ath12k: Improve BSS discovery with hidden SSID in 6 GHz band
e39fd41117bd9 bonding: report duplicate MAC address in all situations
f872f7aaa4cac net: xgene-v2: remove incorrect ACPI_PTR annotation
459b3f7cf0dcf net: ethernet: mtk_ppe_offload: Allow QinQ, double ETH_P_8021Q only
562b4f70bf88a leds: pwm-multicolor: Add check for fwnode_property_read_u32
b8fcb1cdbfc0c drm/xe: xe_gen_wa_oob: replace program_invocation_short_name
0d8562e358176 drm/amdkfd: KFD release_work possible circular locking
1dd943dfb56f8 pinctrl: sophgo: avoid to modify untouched bit when setting cv1800 pinconf
baaf3084c2cb9 selftests/net: have `gro.sh -t` return a correct exit code
11e721443c564 net/mlx5: Avoid report two health errors on same syndrome
1f512005f497d drm/xe/pf: Create a link between PF and VF devices
df888ad55f8f8 drm/xe/vf: Retry sending MMIO request to GUC on timeout error
3a3efeef64364 firmware: arm_ffa: Set dma_mask for ffa devices
12153e3948c59 PCI: brcmstb: Add a softdep to MIP MSI-X driver
3ffaa2e999380 PCI: brcmstb: Expand inbound window size up to 64GB
7add9c10ca284 wifi: ath12k: Report proper tx completion status to mac80211
1c2c538bbd602 soc: apple: rtkit: Implement OSLog buffers properly
92c6687ba951f soc: apple: rtkit: Use high prio work queue
e359d62886cb1 perf: arm_pmuv3: Call kvm_vcpu_pmu_resync_el0() before enabling counters
b38fbf98645be fpga: altera-cvp: Increase credit timeout
7857d8977e986 drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence
89800836bf32f ARM: at91: pm: fix at91_suspend_finish for ZQ calibration
cd62e9d42fe76 hwmon: (gpio-fan) Add missing mutex locks
e7e30a4a37d1e x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2
0d232fa3b0769 clk: imx8mp: inform CCF of maximum frequency of clocks
2d6231d5ce9b6 media: uvcvideo: Handle uvc menu translation inside uvc_get_le_value
b98aad5e5ebf9 media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map
82209faa87f4a ublk: complete command synchronously on error
564f03a7970c2 block: mark bounce buffering as incompatible with integrity
f7226dedac039 drm/rockchip: vop2: Add uv swap for cluster window
f33b310eac36a ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config().
3de322a98b365 scsi: logging: Fix scsi_logging_level bounds
500d22dbd9662 ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7
592ba27580364 perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type
f9d15ef2e069d net: pktgen: fix mpls maximum labels list parsing
8d7e13c31c526 media: imx335: Set vblank immediately
4176d6f2a67b8 iommufd: Disallow allocating nested parent domain with fault ID
af73c8fd7388d ublk: enforce ublks_max only for unprivileged devices
c4f025a58eef1 dpll: Add an assertion to check freq_supported_num
ebaed867bfd1e net: phy: nxp-c45-tja11xx: add match_phy_device to TJA1103/TJA1104
94df9fd015ace net: ethernet: ti: cpsw_new: populate netdev of_node
1a4a834f2af5b rcu: Fix get_state_synchronize_rcu_full() GP-start detection
5aba8ac434d8b pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned"
4731d5328f507 media: cx231xx: set device_caps for 417
f29c876d72d71 perf/core: Clean up perf_try_init_event()
cc714c89ef5a9 drm/amd/display: Request HW cursor on DCN3.2 with SubVP
1f2b3ea00717f drm/amd/display: Fix p-state type when p-state is unsupported
e015cef8b78f6 drm/amd/display: Fix DMUB reset sequence for DCN401
682c4226f317e drm/amd/display: Skip checking FRL_MODE bit for PCON BW determination
5bf0fd2bd5efb drm/amd/display: Ensure DMCUB idle before reset on DCN31/DCN35
a23f3910123b5 drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c
69bb5b3ae3480 remoteproc: qcom_wcnss: Handle platforms with only single power domain
95080412e9304 blk-throttle: don't take carryover for prioritized processing of metadata
c4525b513de39 net: phylink: use pl->link_interface in phylink_expects_phy()
93f581d7634ff drm/gem: Test for imported GEM buffers with helper
cd918ec24168f orangefs: Do not truncate file size
6ad0673ab24f0 soc: mediatek: mtk-mutex: Add DPI1 SOF/EOF to MT8188 mutex tables
cc80a5cc52093 dm cache: prevent BUG_ON by blocking retries on failed device resumes
1c171908807cb usb: xhci: set page size to the xHCI-supported size
5520fed18df86 media: c8sectpfe: Call of_node_put(i2c_bus) only once in c8sectpfe_probe()
25056d1fe57eb ARM: tegra: Switch DSI-B clock parent to PLLD on Tegra114
8fc16414c3ef7 soc: samsung: include linux/array_size.h where needed
4943c0bae1248 drm/xe: Retry BO allocation
623669ae7a820 drm/xe: Nuke VM's mapping upon close
a3642d2d73a97 ieee802154: ca8210: Use proper setters and getters for bitwise types
3afa1610e5a4e rtc: ds1307: stop disabling alarms on probe
73d01bcbf2aad tcp: bring back NUMA dispersion in inet_ehash_locks_alloc()
a06861298554b ALSA: seq: Improve data consistency at polling
515a21a5e19ab powerpc/prom_init: Fixup missing #size-cells on PowerBook6,7
09193145d1180 arm64: tegra: Resize aperture for the IGX PCIe C5 slot
2f0044e20fab1 arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator
ecaa856227ae4 drm/amdgpu: Fix missing drain retry fault the last entry
c700730d816d6 drm/amdkfd: Set per-process flags only once cik/vi
e1901e8e6bbc4 drm/amdkfd: Set per-process flags only once for gfx9/10/11/12
6a1706dfe0569 crypto: mxs-dcp - Only set OTP_KEY bit for OTP key
7caad075acb63 crypto: lzo - Fix compression buffer overrun
f615e8d2dec67 misc: pci_endpoint_test: Give disabled BARs a distinct error code
fe2329eff5bee PCI: endpoint: pci-epf-test: Fix double free that causes kernel to oops
1e0398a349e85 watchdog: aspeed: Update bootstatus handling
d95fdee2253e6 cpufreq: tegra186: Share policy per cluster
11be3d3f956ba iommu/amd/pgtbl_v2: Improve error handling
9032252905664 coresight-etb10: change etb_drvdata spinlock's type to raw_spinlock_t
75ae2a3553611 badblocks: Fix a nonsense WARN_ON() which checks whether a u64 variable < 0
7bd6061b0a44b ASoC: qcom: sm8250: explicitly set format in sm8250_be_hw_params_fixup()
84c069dc5fc89 auxdisplay: charlcd: Partially revert "Move hwidth and bwidth to struct hd44780_common"
53ce754286180 gfs2: Check for empty queue in run_queue
ff11cd673e477 drm/amd/display: Fix incorrect DPCD configs while Replay/PSR switch
ed7eda66b20cb drm/amd/display: not abort link train when bw is low
83e4f1de0802b drm/amd/display: calculate the remain segments for all pipes
65e51bc2803bb drm/amd/display: remove minimum Dispclk and apply oem panel timing.
c1502fc84d1c6 ipv6: save dontfrag in cork
faba68a86ab79 wifi: cfg80211: allow IR in 20 MHz configurations
22d8cc7f5d5a9 wifi: mac80211_hwsim: Fix MLD address translation
07709d31829fd wifi: mac80211: fix warning on disconnect during failed ML reconf
a791a6bf02c49 wifi: iwlwifi: fix the ECKV UEFI variable name
7ce37a3ca0907 wifi: iwlwifi: mark Br device not integrated
181e8b56b74ad wifi: iwlwifi: fix debug actions order
1c55feb63827f wifi: iwlwifi: w/a FW SMPS mode selection
0446d34a853d9 wifi: iwlwifi: don't warn when if there is a FW error
101a3b9920a79 printk: Check CON_SUSPEND when unblanking a console
063ad8885c7c6 iommu: Keep dev->iommu state consistent
a21f1607d0b3c hwmon: (dell-smm) Increment the number of fans
aef1b639ae2a8 wifi: iwlwifi: mvm: fix setting the TK when associated
3a75fe58a164a usb: xhci: Don't change the status of stalled TDs on failed Stop EP
28306c58daf81 mmc: sdhci: Disable SD card clock before changing parameters
38828e0dc771c mmc: dw_mmc: add exynos7870 DW MMC support
8ad58a7eba6db arm64/mm: Check PUD_TYPE_TABLE in pud_bad()
6215143ad372d arm64/mm: Check pmd_table() in pmd_trans_huge()
4f89f257f32da phy: rockchip: usbdp: Only verify link rates/lanes/voltage when the corresponding set flags are set
236a87e9d2110 PNP: Expand length of fixup id string
21153e0974fcc netfilter: conntrack: Bound nf_conntrack sysctl writes
4210174827586 wifi: rtw89: set force HE TB mode when connecting to 11ax AP
3fb9ee05ec15f timer_list: Don't use %pK through printk()
6e816a97fa840 net: hsr: Fix PRP duplicate detection
f933879c5b6a6 net: stmmac: dwmac-rk: Validate GRF and peripheral GRF during probe
ae22452d15c89 posix-timers: Ensure that timer initialization is fully visible
d0dc233fe2241 posix-timers: Add cond_resched() to posix_timer_add() search loop
135dde13b96d5 RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject()
785ac69911332 ext4: do not convert the unwritten extents if data writeback fails
2f5f326214321 ext4: reject the 'data_err=abort' option in nojournal mode
3039f0c9c7554 clk: qcom: lpassaudiocc-sc7280: Add support for LPASS resets for QCM6490
3673382803c51 ASoC: sun4i-codec: support hp-det-gpios property
de3c09de746f7 drm/amdgpu: Update SRIOV video codec caps
858425dc2df3e drm/amdgpu/gfx11: don't read registers in mqd init
73d437ae63ce6 drm/amdgpu/gfx12: don't read registers in mqd init
580750a317d7b mfd: tps65219: Remove TPS65219_REG_TI_DEV_ID check
27b19f29c9a06 pinctrl-tegra: Restore SFSEL bit when freeing pins
f5363ffdabc2a xen: Add support for XenServer 6.1 platform device
8ef935698f3fd net/smc: use the correct ndev to find pnetid by pnetid table
174dedce648aa dm: restrict dm device size to 2^63-512 bytes
ee87fc3a1271f crypto: octeontx2 - suppress auth failure screaming due to negative tests
572ed3fb99c4e kconfig: do not clear SYMBOL_VALID when reading include/config/auto.conf
61d7c8a753445 kbuild: fix argument parsing in scripts/config
555c0b713ca83 bpf: Allow pre-ordering for bpf cgroup progs
6c303960b1443 ASoC: mediatek: mt6359: Add stub for mt6359_accdet_enable_jack_detect
e8358aa00ea7b ASoC: pcm6240: Drop bogus code handling IRQ as GPIO
0076b0423b2cd spi: spi-mux: Fix coverity issue, unchecked return value
b35ccfdc8573e erofs: initialize decompression early
c8c643809f4a1 thunderbolt: Do not add non-active NVM if NVM upgrade is disabled for retimer
2585e6cbd96eb objtool: Fix error handling inconsistencies in check()
a0d34b9be2bee rtc: rv3032: fix EERD location
dab35f4921f85 tcp: reorganize tcp_in_ack_event() and tcp_count_delivered()
50452704ecbad jbd2: do not try to recover wiped journal
e2520cc19b758 PCI: dwc: Use resource start as ioremap() input in dw_pcie_pme_turn_off()
e658f2d94a74c bpf: Return prog btf_id without capable check
66e8f1d64b1b0 vfio/pci: Handle INTx IRQ_NOTCONNECTED
0268f485aa69f scsi: st: ERASE does not change tape location
c6d366f8d24ff scsi: st: Tighten the page format heuristics with MODE SELECT
853a4e7439ef1 hypfs_create_cpu_files(): add missing check for hypfs_mkdir() failure
94c3cbc69abbb ext4: reorder capability check last
a55ebe30f17a0 riscv: Call secondary mmu notifier when flushing the tlb
5cdd304662d54 bnxt_en: Query FW parameters when the CAPS_CHANGE bit is set
34253084291cb wifi: mwifiex: Fix HT40 bandwidth issue.
728945c962695 um: Update min_low_pfn to match changes in uml_reserved
d6d2f664cbf3b um: Store full CSGSFS and SS register from mcontext
7790a9449cf43 clocksource/drivers/timer-riscv: Stop stimecmp when cpu hotplug
39ff1903246aa dlm: make tcp still work in multi-link env
f3ea633a111e0 s390/tlb: Use mm_has_pgste() instead of mm_alloc_pgste()
1ea4653cff35c i3c: master: svc: Fix missing STOP for master request
94206e0d72f7a drm/amdgpu: adjust drm_firmware_drivers_only() handling
85bda883a634c drm/amd/display: Guard against setting dispclk low for dcn31x
ca8fcb8bcef33 drm/amdgpu: release xcp_mgr on exit
a5a507fa5f223 blk-cgroup: improve policy registration error handling
c60f8684a8118 btrfs: send: return -ENAMETOOLONG when attempting a path that is too long
c4845a09a1edd btrfs: get zone unusable bytes while holding lock at btrfs_reclaim_bgs_work()
0058c61d47ee1 btrfs: fix non-empty delayed iputs list on unmount due to async workers
8629f9d9a92e8 btrfs: run btrfs_error_commit_super() early
a4840945f514c btrfs: avoid linker error in btrfs_find_create_tree_block()
1144874b41dcd btrfs: make btrfs_discard_workfn() block_group ref explicit
477a412a2f6cc i2c: pxa: fix call balance of i2c->clk handling routines
3b9cf1c0fafa2 i2c: qup: Vote for interconnect bandwidth to DRAM
c6f2694c580c2 x86/mm: Check return value from memblock_phys_alloc_range()
d0f9875257440 x86/microcode: Update the Intel processor flag scan check
8973fb71c9269 x86/smpboot: Fix INIT delay assignment for extended Intel Families
44e041675383b x86/stackprotector/64: Only export __ref_stack_chk_guard on CONFIG_SMP
63b7dade892b6 x86/headers: Replace __ASSEMBLY__ with __ASSEMBLER__ in UAPI headers
ac3af695c4b00 wifi: mt76: mt7925: fix fails to enter low power mode in suspend state
8b526e4d944ae wifi: mt76: mt7925: load the appropriate CLC data based on hardware type
c9c64da88e38d wifi: mt76: mt7996: revise TXS size
1d58321192052 wifi: mt76: mt7996: fix SER reset trigger on WED reset
fa6c05122fb82 wifi: mt76: only mark tx-status-failed frames as ACKed on mt76x0/2
8f82cf305efd6 cgroup/rstat: avoid disabling irqs for O(num_cpu)
dca76ee1f02ae drm/amdgpu: Skip pcie_replay_count sysfs creation for VF
67bb2175095eb mmc: host: Wait for Vdd to settle on card power off
4005036642a27 staging: vchiq_arm: Create keep-alive thread during probe
123bcd8f42b7e pidfs: improve multi-threaded exec and premature thread-group leader exit polling
1d1e1efad1cf0 libnvdimm/labels: Fix divide error in nd_label_data_init()
37ac2434aae16 ext4: on a remount, only log the ro or r/w state when it has changed
3e10592b477ec xen/pci: Do not register devices with segments >= 0x10000
2a8bedeb963f0 PCI: vmd: Disable MSI remapping bypass under Xen
8b80fd3f76f2a drm/amdkfd: set precise mem ops caps to disabled for gfx 11 and 12
98e38fe7d3557 drm/amdgpu/discovery: check ip_discovery fw file available
1630224189cc4 pNFS/flexfiles: Report ENETDOWN as a connection error
a1596965a7c82 tools/build: Don't pass test log files to linker
2780aa8394415 r8169: disable RTL8126 ZRX-DC timeout
e63b634806a1d PCI: dwc: ep: Ensure proper iteration over outbound map windows
c0c59a1f77665 objtool: Properly disable uaccess validation
ac30595154da0 lockdep: Fix wait context check on softirq for PREEMPT_RT
44b79041c44ae dql: Fix dql->limit value when reset.
f48ee562c095e Bluetooth: Disable SCO support if READ_VOICE_SETTING is unsupported/broken
7ec409ee15ac1 Bluetooth: btmtksdio: Prevent enabling interrupts after IRQ handler removal
7cfde2a482800 thermal/drivers/qoriq: Power down TMU on system suspend
c347928320080 thermal/drivers/mediatek/lvts: Start sensor interrupts disabled
7b32d4e62c871 net: tn40xx: create swnode for mdio and aqr105 phy and add to mdiobus
b07ba838aded8 net: tn40xx: add pci-id of the aqr105-based Tehuti TN4010 cards
9e542640c2e59 mctp: Fix incorrect tx flow invalidation condition in mctp-i2c
c0d63ee0dd063 ASoC: codecs: wsa883x: Correct VI sense channel mask
780699001b8e2 ASoC: codecs: wsa884x: Correct VI sense channel mask
ace57bd1fb49d spi-rockchip: Fix register out of bounds access
dac9e6af5328f SUNRPC: rpcbind should never reset the port to the value '0'
984d8a392f6b3 SUNRPC: rpc_clnt_set_transport() must not change the autobind setting
71e07bb1556c7 NFSv4: Treat ENETUNREACH errors as fatal for state recovery
1e317f5781160 cifs: Fix establishing NetBIOS session for SMB2+ connection
51d44dba94e79 cifs: add validation check for the fields in smb_aces
15c961d7a9e5f cifs: Set default Netbios RFC1001 server name to hostname in UNC
ff968e486e420 fbdev: core: tileblit: Implement missing margin clearing for tileblit
8c912c0a6860c fbcon: Use correct erase colour for clearing in fbcon
230abe5d3f68b fbdev: fsl-diu-fb: add missing device_remove_file()
6427b5c0f0aae riscv: Allow NOMMU kernels to access all of RAM
15787ab82a461 mailbox: use error ret code of of_parse_phandle_with_args()
2c80f975e94d5 mailbox: pcc: Use acpi_os_ioremap() instead of ioremap()
2d21895e77c64 tpm: Convert warn to dbg in tpm2_start_auth_session()
2eb8f4701961b ACPI: PNP: Add Intel OC Watchdog IDs to non-PNP device list
4f427ca9edf89 tracing: Mark binary printing functions with __printf() attribute
b4c11dd41c40c iommufd: Extend IOMMU_GET_HW_INFO to report PASID capability
e506751b7dd98 arm64: Add support for HIP09 Spectre-BHB mitigation
1a9b696a003ae SUNRPC: Don't allow waiting for exiting tasks
ac83bf58f6876 NFS: Don't allow waiting for exiting tasks
46a47dc10fa78 NFSv4: Check for delegation validity in nfs_start_delegation_return_locked()
01677e7ee12f2 io_uring/msg: initialise msg request opcode
bab0bd138910e exfat: call bh_read in get_block only when necessary
d40ca27602eab fuse: Return EPERM rather than ENOSYS from link()
c9a508b6bbd2f smb: client: Store original IO parameters and prevent zero IO sizes
150f38eddefc4 cifs: Fix negotiate retry functionality
0705b6d5bc328 cifs: Fix querying and creating MF symlinks over SMB1
6ebb9d54eccc8 cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES
100b452e0eeda s390/vfio-ap: Fix no AP queue sharing allowed message written to kernel log
c42f740a07eea x86/fred: Fix system hang during S4 resume with FRED enabled
192b02f8c7ba8 kconfig: merge_config: use an empty file as initfile
dac9d6ad5eaf7 samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora
8014d3e56ec0c bpf: fix possible endless loop in BPF map iteration
218c838d0356a io_uring: don't duplicate flushing in io_req_post_cqe
64f505b08e0cf block: fix race between set_blocksize and read paths
e9f646f089bc3 selftests/bpf: Mitigate sockmap_ktls disconnect_after_delete failure
cd39fae34f094 drm/amdgpu: Allow P2P access through XGMI
36cb568f559ad drm/amd/display: Enable urgent latency adjustment on DCN35
9ece099e951a5 fs/ext4: use sleeping version of sb_find_get_block()
f1c5aa614b5c2 fs/jbd2: use sleeping version of __find_get_block()
aafc270531431 fs/ocfs2: use sleeping version of __find_get_block()
a49a4a87cea36 fs/buffer: use sleeping version of __find_get_block()
e138fc2316c32 fs/buffer: introduce sleeping flavors for pagecache lookups
4f5553a08fb74 fs/buffer: split locking for pagecache lookups
836917e7a65cd ima: process_measurement() needlessly takes inode_lock() on MAY_READ
e22034cbee52b dma-mapping: Fix warning reported for missing prototype
7f7f70c316976 net: enetc: refactor bulk flipping of RX buffers to separate function
523c08f630a3d scsi: mpi3mr: Add level check to control event logging
bd8c9404e44ad vhost-scsi: protect vq->log_used with vq->mutex
f93675793bdcd vhost_task: fix vhost_task_create() documentation
97edaa0ec64c5 cgroup: Fix compilation issue due to cgroup_mutex not being exported
3eec42a17ad4d dma-mapping: avoid potential unused data compilation warning
a8dd6b7b391d9 mei: vsc: Use struct vsc_tp_packet as vsc-tp tx_buf and rx_buf type
de8c0b93a63cf intel_th: avoid using deprecated page->mapping, index fields
299881317756d dma/mapping.c: dev_dbg support for dma_addressing_limited
b730cb109633c virtio_ring: Fix data race by tagging event_triggered as racy for KCSAN
7aea1517fb6c9 scsi: ufs: Introduce quirk to extend PA_HIBERN8TIME for UFS devices
87389bff743c5 scsi: target: iscsi: Fix timeout on deleted connection
1603a34b80ffb nvmem: qfprom: switch to 4-byte aligned reads
410f8b72e02c6 nvmem: core: update raw_len if the bit reading is required
4327479e559c0 nvmem: core: verify cell's raw_len
a4f865ecdbdd2 nvmem: core: fix bit offsets of more than one byte
d6abe0f6ade98 nvmem: rockchip-otp: add rk3576 variant data
49b4e88b559cd nvmem: rockchip-otp: Move read-offset into variant-data
3fc60952271b6 cpufreq: Add SM8650 to cpufreq-dt-platdev blocklist
c000fc26c431e phy: renesas: rcar-gen3-usb2: Assert PLL reset on PHY power off
918d43686271e phy: renesas: rcar-gen3-usb2: Lock around hardware registers and driver data
64cf5b896fd39 phy: renesas: rcar-gen3-usb2: Move IRQ request in probe
0abae7dc42f21 i2c: designware: Fix an error handling path in i2c_dw_pci_probe()
0d1002c60cd47 i2c: designware: Use temporary variable for struct device
4fa55c5230f4c drm/amd/display: Defer BW-optimization-blocked DRR adjustments
5f05863810cfd drm/amd/display: Correct timing_adjust_pending flag setting.
839b2350b861f drm/amd/display: Do not enable replay when vtotal update is pending.
892f054b3fa2a drm/amd/display: Configure DTBCLK_P with OPTC only for dcn401
(From OE-Core rev: d4f31913b88272d45f09e382c092ddc88ba439dd)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fdb0a51598156f99aa91f7495d7eada92a459e97)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
As we upgraded the kernel, the exclusions need to be updated too.
This marks many CVEs as resolved.
(From OE-Core rev: 6507be4fd7e1738b15509cbd42267548ba4a42a5)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e99d1e7116aef8c5458cd51c0b97b8e275ade3a9)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add another comment to state what the data source for the CVE data was,
specifically the basename of the repository and the "git describe" output
of HEAD.
(From OE-Core rev: a06234b35977b9a2af2679d6c601a79acbde5f7c)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5e66e2b79faec2285d249b16457ecc63c4042444)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Replace the term 'needs backporting' with 'may need backporting' in
generate-cve-exclusions.py when the checked kernel version may or may
not be in the vulnerable version range, thus making backporting
necessary only in the former case.
In tandem we regenerate the content of cve-exclusion_6.12.inc using
https://github.com/CVEProject/cvelistV5.git repository main branch at
git hash b20d0043711588b6409ae3118bc0510ab888c316 to keep the content
in sync with the script.
(From OE-Core rev: f0d7546d7d67ed0244f1428a18850e700c678235)
Signed-off-by: Niko Mauno <niko.mauno@vaisala.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit feb80e6be16f27611a018d0ef7841cbb466c47d1)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Amend the generate-cve-exclusions.py checking logic in part of the code
responsible for iterating the "affected" defaultStatus part of the JSON
structure in order to mitigate occurrences of false negatives in the
generated output, as well as occurrences of wrong reason for negative
result in case where the reason is actually that the checked kernel
version is in backport fix scope.
In tandem we regenerate the content of cve-exclusion_6.12.inc using
https://github.com/CVEProject/cvelistV5.git repository main branch at
git hash b20d0043711588b6409ae3118bc0510ab888c316 to keep the content
in sync with the script.
(From OE-Core rev: 562f5def8b16ddf23d841ce01419879b7a3aeb2b)
Signed-off-by: Niko Mauno <niko.mauno@vaisala.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b1a5939535d67b9c0e6d8c2729cff9749a0ebaae)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Regenerated with
./generate-cve-exclusions.py ~/cvelistV5/ 6.12.27 > cve-exclusion_6.12.inc
With ~/cvelistV5/ containing clone from
https://github.com/CVEProject/cvelistV5.git repository main branch at
git hash b20d0043711588b6409ae3118bc0510ab888c316.
(From OE-Core rev: 131b9ee79e4377c0a5ca1ba09d1ecd313548af00)
Signed-off-by: Niko Mauno <niko.mauno@vaisala.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 0df05f0bf82fdffb14c4243d07ace22b2d7e4c79)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is not a linux-yocto CVE yet it shows up in the reports as:
linux-yocto-custom CVE-2023-3079 0.0 8.8 Unpatched https://nvd.nist.gov/vuln/detail/CVE-2023-3079
For reference, the CPE says:
Affects cpe:2.3⭕linux:linux_kernel:-:*:*:*:*:*:*:*
So affects all Linux systems,
Running on/with cpe:2.3🅰️google:chrome:*:*:*:*:*:*:*:*
[ YOCTO #15780 ]
(From OE-Core rev: 8c39f6fa4454147e22d5e386046ed9b1076d7a95)
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
(cherry picked from commit 22ef4d2d116afb9d603a05fb107dd9da0e74558b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Stop shifting first_affected if backport is indicated. This does not
have effect on generated list, but makes the logic cleaner as it will
not shift it to "first affected on our branch" and also make it behave
like in defaultStatus==affected case.
Cc: daniel.turull@ericsson.com
(From OE-Core rev: 1cbb0103bbf5f567ceeb01abb48869d29f74be1d)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit dc1ecb69389dd79354084757ba6b9af0781afcc0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This will shift fixed version of many CVEs, it does not change status of
any CVE.
Note that the current format of cvelistV5 does not allow us to determine
real value of "fixed_in" without also checking the hashes, but the
result are still fine.
The reason is that many entries are missing original_commit_for_fix
field and thus we see the final "fixed_in" version to be set to backport
to previous branch (e.g. 6.12.23 instead of 6.13).
(From OE-Core rev: f79e2180be8d6190d8a6721ac758537fbd6b3188)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1697404589e2d3a625f9da2e8906e47af668c1c3)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Current code takes the first version found as "fixed-version".
That is not correct as it is almost always only the oldest backport.
Fix it by unconditionally shift the assigmnet of variable "fixed" so
that we take last instead of first version.
Cc: daniel.turull@ericsson.com
(From OE-Core rev: 4e2c441b64675933cc5f684d0e19cdc18ceaab18)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 68f8e58a249c8adef18e63f0841e8bfea16f354e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This is preparation for fix in the script so that next update shows only
entries updated by the script change.
(From OE-Core rev: 9e3bff5413a55675ef0ff9bca0cc8b87668dc255)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 583e9f15c01555863ae467c7f91729ce85aae194)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In commit 8a7af09feb the CVE_STATUS was copy from the old data
for 6.6 kernel, which had backport information.
Correcting status to when the fix was introduced and adding
references to the fixes.
Fixes: 8a7af09febc28477094de0999ab6321d910811b2
Reported-by: Peter Marko <Peter.Marko@siemens.com>
(From OE-Core rev: cf239892614c0b00feacef6b6e38283832239ad6)
Signed-off-by: Daniel Turull <daniel.turull@ericsson.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fc3e32bc4cf79ddce0eb9fa409656de4dc0e00ea)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Update CVE exclusions with the update script, as the kernel was updated.
(From OE-Core rev: 6df68265be5ea360987ecbc2abc83c453042287e)
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 6e9da1183f50a9ec978d867d7a4f515239fde8d2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Execute new script generate-cve-exclusions.py
./generate-cve-exclusions.py ~/cvelistV5/ 6.12.19 > cve-exclusion_6.12.inc
After using the database from CVEproject, some old
CVEs did not have correct metadata, therefore moving missing ones
from old cve-exclusions_6.12.inc into cve-exclusion.inc
Comparing output from cve_check before and after, two CVEs are removed:
CVE-2023-52904 and CVE-2024-38381
(From OE-Core rev: ec9a04c6e86efe9d5351eb7956cfc3e94bcdc09a)
Signed-off-by: Daniel Turull <daniel.turull@ericsson.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8a7af09febc28477094de0999ab6321d910811b2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The SRC_URI is changed to git://gitlab.eclipse.org/eclipse/tcf/tcf.agent.git
(From OE-Core rev: f359677709aba80735a38578475a34e1b83d321c)
Signed-off-by: Guocai He <guocai.he.cn@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There are multiple problems with the sstate creation tests. They currently both execute
twice, once to check one set of files, then another. We can do this together in one
test which makes the code easier to follow.
The common test function also has parameters which were always the same value, so
those can be simplified.
We can use the umask context manager from bb.utils to simplfy the umask code.
The badperms test was actually broken, it was detecting bad permissions, then
ignoring them. This patch fixes that regression too and allows the check to
operate (relying on a separate fix to sstate umask handling).
The result should be an easier to understand couple of test cases which should
also function correctly and be more reliable.
(From OE-Core rev: 4951d08046f66e905e6ab4bdd7af347c7ed14c64)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 5b9263040013199c5cb480125d5ca349f5d6dc55)
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The NATIVELSBSTRING variable changes value once a BuildStarted event occurs in a build
directory. This meant running some of the tests directly in a fresh build directory
would fail but they'd pass when run as a group of tests. This is clearly suboptimal.
Move the NATIVELSBSTRING handling to a location where the value is consistent
and a comment about the interesting behaviour of the variable so it hopefully doesn't
catch out others in future.
(From OE-Core rev: cb50ca2faac6418ec8f3f3fefa162531177f7460)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e1c46fdb44fed18909d9ff4b43b4e445c5a22d33)
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Currently, files and directories created under ${SSTATE_DIR} when
fetching from an sstate mirror are not created with group write,
unlike when the sstate artifacts are generated locally. That's
inconsistent, and problematic when the local sstate dir is shared
among multiple users.
Wrap the fetching in a bb.utils.umask() context manager, and for simplicity
move the mkdir of SSTATE_DIR inside that.
(From OE-Core rev: e56aa6c62e41667d0eeec5a862b7004d21b4da48)
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a6038553aaef3b88b834a09018c524c4fa41e625)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This was being pulled in through python by accident. It no longer needs
it but exposes this missing dependency.
(From OE-Core rev: cfc49bbb21bade1d6c5ea96759dabf0dac25f79b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Fixed:
$ bitbake acl
$ ls tmp/work/core2-64-poky-linux/acl/2.3.2/build/acl-2.3.2-build/
This empty directory is created by rpmbuild, just remove it like others above.
Note, master branch doesn't have this problem after upgrade to rpm 4.20.1, but
it's not easy to find which patch(es) fixed the problem, and the issues haven't
been fixed completely, there is still an empty SRPMS directory, so just remove
the build directory as others above.
If we don't fix this, there might be warnings when a recipe uses:
install -m 0644 ${B}/* ${DEPLOYDIR}/boot.bin-extracted/
install: omitting directory '${B}/xilinx-bootbin-1.0-build'
(From OE-Core rev: c4f95abacdb7376f8f299679f3f0b2dd1dc28c27)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
libnsl2 and libtirpc were build dependencies for the nis module.
The nis module was deprecated in Python 3.11 and removed in Python 3.13
(From OE-Core rev: cbc7b1ed7747ef69d8bcbaee27c90560ded713d6)
Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Adds patch to backport fix for CVE-2025-5914.
(From OE-Core rev: ba5c5ca00d31d6440a1d810f7ef19720019845e8)
Signed-off-by: Colin Pinnell McAllister <colin.mcallister@garmin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
setuptools is a package that allows users to download, build, install,
upgrade, and uninstall Python packages. A path traversal vulnerability
in `PackageIndex` is present in setuptools prior to version 78.1.1. An
attacker would be allowed to write files to arbitrary locations on the
filesystem with the permissions of the process running the Python code,
which could escalate to remote code execution depending on the context.
Version 78.1.1 fixes the issue.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2025-47273
Upstream-patch:
d8390feaa9250a6d1797
(From OE-Core rev: cfb2d77f841ae21cae0ba7d6263dc3e1e0280400)
Signed-off-by: Praveen Kumar <praveen.kumar@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
urllib3 is a user-friendly HTTP client library for Python. Prior
to 2.5.0, urllib3 does not control redirects in browsers and
Node.js. urllib3 supports being used in a Pyodide runtime utilizing
the JavaScript Fetch API or falling back on XMLHttpRequest. This
means Python libraries can be used to make HTTP requests from a
browser or Node.js. Additionally, urllib3 provides a mechanism to
control redirects, but the retries and redirect parameters are
ignored with Pyodide; the runtime itself determines redirect
behavior. This issue has been patched in version 2.5.0.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2025-50182
Upstream patch:
7eb4a2aafe
(From OE-Core rev: 082b865d9814e7e7aca4466551a035199aa8b563)
Signed-off-by: Yogita Urade <yogita.urade@windriver.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.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2025-50181
Upstream patch:
f05b132912
(From OE-Core rev: 819273b5b8b9279c01035cb72377fd8cbb51a198)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
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 backports the upstream fix. As repeated test runs are expected to
mainly take place inside the SDK, the patch is only applied to 'nativesdk'
builds.
[0]: https://cmake.org/cmake/help/latest/prop_test/COST.html
[1]: https://gitlab.kitware.com/cmake/cmake/-/issues/26594
Reported-By: John Drouhard <john@drouhard.dev>
(From OE-Core rev: ead0d06d6335fb74c1ae0dc7bdcf414c66b3e4ab)
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>
(cherry picked from commit dcbaf42dd74cc0bda7254856589613718ed3f057)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Overview of changes in bind 9.20.9
==================================
Security Fixes:
1. Prevent an assertion failure when processing TSIG algorithm.
2. DNS messages that included a Transaction Signature (TSIG) containing
an invalid value in the algorithm field caused named to crash with an
assertion failure. This has been fixed. (CVE-2025-40775) [GL #5300]
For additional feature changes and bug fixes, please see:
https://downloads.isc.org/isc/bind9/9.20.9/doc/arm/html/notes.html#notes-for-bind-9-20-9
(From OE-Core rev: c9d59ba50a102ace907779612e74646dec133271)
(From OE-Core rev: 8131a878c2d3c5e8b48a1b33a70f8eae90d3e5ca)
Signed-off-by: Praveen Kumar <praveen.kumar@windriver.com>
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>
NVD ([1]) tracks this as:
cpe:2.3🅰️golang:go:*:*:*:*:*:*:*:*
Running on/with
cpe:2.3⭕microsoft:windows:-:*:*:*:*:*:*:*
Yocto cve-check ignores the "Running on/with", so it needs to be ignored
explicitly.
[1] https://nvd.nist.gov/vuln/detail/CVE-2024-3566
(From OE-Core rev: c43a9f7ca85f1c25a72f7b1efa494e30d6cf4906)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
To accompany earlier updating of kernel version, update this lonely
reference to be consistent.
(From yocto-docs rev: 87c97308cac2a1e94ad1f006c1226a9072200a5f)
Signed-off-by: "Robert P. J. Day" <rpjday@crashcourse.ca>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit e26c2018cd663de91ee08e0cba55eda1a4c30210)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Change the sample kernel version being used from 4.4 to a more modern
6.12.
(From yocto-docs rev: 1aaf4044ca3610740a38cd6a53dd11f2071f573b)
Signed-off-by: "Robert P. J. Day" <rpjday@crashcourse.ca>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 1bad12b6ccfe1c0d26918926176a0c743568de26)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In Sections 4.3.1 and 4.3.2 of the Overview Manual, a bit of tidying
including:
- provide full list of packaging options
- add monospaced rendering where appropriate
- fix broken "ref"
- make capitalization consistent
(From yocto-docs rev: 4b79feb4dfdce35efff05f4316f56445d18e5247)
Signed-off-by: "Robert P. J. Day" <rpjday@crashcourse.ca>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 1cf769e3c8a8442cd05449dc97e91ad482d635f3)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The nativesdk- prefix to the recipe filename should only be used when
using the inherit method as the BBCLASSEXTEND method will do some magic
when generating the "implicit" name of the recipe.
This matches the instructions for the native class.
(From yocto-docs rev: 4852b8be918be0d0e73d82fff458822100e2f49b)
Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 15fe239e1e62b9add737aa732dd7f5e9948ee03d)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
We explain how to create a native (nativesdk) recipe in two different
ways via a bullet list but reading quickly the instructions may mislead
one into doing both options whereas they are incompatible.
This rewords both the nativesdk and native sections so that the second
bullet point starts with an Or and explicit that this applies to target
recipes.
(From yocto-docs rev: 69ce7f06d3a736c3d8c7a1fffbdee16d14e2dcdf)
Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 6d0d338a5f2686ddeee5eed7b6e05f3db800d33a)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Remove aarch64 for ARM Cortex-R52 processor as it supports only 32-bit
ISA but not 64-bit ISA. Also update ARMPKGARCH for cortexr52hf.
(From OE-Core rev: fd79c20430ad5c540522ddbe72ef235379c628bd)
Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
Signed-off-by: Sandeep Gundlupet Raju <grsandeep85@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
/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.
(From OE-Core rev: ed43f9ccb3c08845259e24440912631afd780d12)
(From OE-Core rev: 93efeca19f53132fce84d914b7ebf21070370127)
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>
Backport a commit from util-linux upstream to fix the following error.
agetty: segfault at 0 ip 00007fc65600295c sp 00007fffa8dd67e8 error 4 in libc.so.6
(From OE-Core rev: e9cfc549091b77d08817eb7235076c7a0c20e4fa)
Signed-off-by: Yongxin Liu <yongxin.liu@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Handles CVE-2025-4598
Rebase patches
(From OE-Core rev: 11d583e4ffb8726c66da8f764d985a37a14b2699)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Update to the 5.2.1 release of the 5.2.1 series for buildtools
(From OE-Core rev: 91d430e7a68a0cc819398bd05d020f850364fdf1)
Signed-off-by: Aleksandar Nikolic <aleksandar.nikolic@zeiss.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
GCC 14.3 is a bug-fix release from the GCC 14 branch
containing important fixes for regressions and serious bugs in
GCC 14.2 with more than 211 bugs fixed since the previous release.
https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=14.3
Dropped the below patches:
0026-gcc-Fix-c-tweak-for-Wrange-loop-construct.patch
a9f88741a9
0027-gcc-backport-patch-to-fix-data-relocation-to-ENDBR-s.patch
aa4cd61445
0028-fix-incorrect-preprocessor-line-numbers.patch
8cbe033a8a
0001-arm-Fix-LDRD-register-overlap-PR117675.patch
9366c32851
gcc.git-ab884fffe3fc82a710bea66ad651720d71c938b8.patch
ab884fffe3
(From OE-Core rev: aa59bbbbedb25d772648c4cb1498b34b43efb0fb)
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Upgrade to latest 1.24.x release [1]:
$ git --no-pager log --oneline go1.24.3..go1.24.4
6796ebb2cb [release-branch.go1.24] go1.24.4
85897ca220 [release-branch.go1.24] net/http: strip sensitive proxy headers from redirect requests
9f9cf28f8f [release-branch.go1.24] os: don't follow symlinks on Windows when O_CREATE|O_EXCL
a31c931adf [release-branch.go1.24] cmd/link: allow linkname reference to a TEXT symbol regardless of size
03811ab1b3 [release-branch.go1.24] crypto/x509: decouple key usage and policy validation
04a9473847 [release-branch.go1.24] lib/fips140: set inprocess.txt to v1.0.0
db8f1dc948 [release-branch.go1.24] hash/maphash: hash channels in purego version of maphash.Comparable
664cf832ec [release-branch.go1.24] runtime/debug: document DefaultGODEBUG as a BuildSetting
431f75a0b9 [release-branch.go1.24] os: fix Root.Mkdir permission bits on OpenBSD
Fixes CVE-2025-4673, CVE-2025-0913 and CVE-2025-22874 [2].
[1] https://github.com/golang/go/compare/go1.24.3...go1.24.4
[2] https://groups.google.com/g/golang-announce/c/ufZ8WpEsA3A
(From OE-Core rev: 50fe0b3832f741bc7f9ea0b996a7e99c5696c0ba)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Backport patch for this CVE and also patch for its regression.
(From OE-Core rev: 0d880cdb51e47f78387b63063727fe6df1b009e6)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The js_splitter_code string contains backslashes that Python tries to
use as escape sequence but doesn't manage to, hence the following
SyntaxWarning message:
documentation/conf.py:188: SyntaxWarning: invalid escape sequence '\p'
.split(/[^\p{Letter}\p{Number}_\p{Emoji_Presentation}-]+/gu)
Considering that we want this to be sent verbatim to the JS, let's make
this a raw string instead.
Fixes: d4a98ee19e0c ("conf.py: tweak SearchEnglish to be hyphen-friendly")
(From yocto-docs rev: 1fc92ff2af72118ae041183d395d0a0323ecc1a9)
Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit c1056672ef45b197136eb8815728d426337a5901)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This repository is partially included in another repository: poky.
However its README isn't making it, so documentation/README pointing at
the README at the root of the git repository would lead the contributor
nowhere.
Instead, let's include the appropriate information directly in
documentation/README which does make it to the poky git repo.
(From yocto-docs rev: 1b93a4122624b554243842822e7df209cc884b27)
Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 0298318cea2947e65754eab97255164e64a862de)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
KCONFIG_MODE defaults to 'allnoconfig' when not set, regardless of whether
KBUILD_DEFCONFIG points to an in-tree or a meta-layer defconfig.
(From yocto-docs rev: 77e401de547a67d1654480c3fb8df3693724a69f)
Signed-off-by: Carlos Sánchez de La Lama <csanchezdll@gmail.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit f374b9c426f6c10710e011a4ad660231ee26efb8)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The project is switching the way handle our CDN provision of sstate objects,
update the URL accordingly.
(cherry picked from commit 406e8a8e30404c0538f5aa46f211540bae2b206b)
(From yocto-docs rev: 6372e5c9ed5dc6fd3f93e1059a56a002ff1b5036)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Refresh patches.
* https://www.python.org/downloads/release/python-3134/
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.
(From OE-Core rev: 55a9cd748531c75d46f5d6d53af692a38c6b6716)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Even with our fixes in deterministic_imports.patch the
importlib.metadata package scan was still returning Distribution objects
for empty directories. This interacts badly with rebuilds when recipes
are changing as when a recipe is removed from the sysroot directories
are not removed[1].
In particular this breaks python3-meson-python-native rebuilds when
Meson upgrades from 1.7 to 1.8: the site-packages directory has an empty
meson-1.7.dist-info/ and populated meson-1.8.dist-info/. Whilst it's
deterministic to return the empty 1.7 first, this breaks pypa/build as
it looks through the distributions in order.
We had discussed this with upstream previously and there's a more
comprehensive fix upstream (actually in importlib_metadata, not cpython)
which ensures that valid distribution objects are listed first. So we
can drop our patch and replace it with a backport to fix these rebuilds.
[1] oe-core 4f94d929639 ("sstate/staging: Handle directory creation race issue")
(From OE-Core rev: 73de8daa6293403f5b92d313af32882c47bce396)
(From OE-Core rev: 1c1b651038e15445c495d87c38beeb92f00d9919)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
There was a regression introduced by the change to use
systemd-systemctl-native rather than a python fake implementation,
which caused template units to not be properly enabled when set in
the SYSTEMD_SERVICE variable. Through investigation, it seems that
the best way to re-enable template instances is to handle them
explicitly in the systemd.bbclass and enable them with `preset`, like
most units are handled[1,2].
Per the systemd.preset manpage, the format for template units is
different than for regular units[3]. We need to coalesce all the
template instances onto a single line and emit them as an additional
space-deliminated argument.
Ran this against openbmc's phosphor-ipmi-net recipe and generated
the following preset file:
```
$ cat packages-split/phosphor-ipmi-net/usr/lib/systemd/system-preset/98-phosphor-ipmi-net.preset
enable phosphor-ipmi-net@.service eth0
enable phosphor-ipmi-net@.socket eth0
```
[1]: https://lore.kernel.org/openembedded-core/Z2ch.1747051947055246176.oktf@lists.openembedded.org/
[2]: https://lore.kernel.org/openembedded-core/aDdoTVtCmElpURYD@heinlein/
[3]: https://www.freedesktop.org/software/systemd/man/latest/systemd.preset.html
Fixes: 7a580800db39 ("systemd: Build the systemctl executable")
(From OE-Core rev: f33d9b1f434e40a459614d8dc21ce45e11581008)
(From OE-Core rev: ea207dce1f5f8579d8ddde487ac9852f50bfc792)
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changes in libsoup from 3.6.4 to 3.6.5:
* session: Strip authentication credentials on cross-origin redirects [Patrick Griffis]
* build: Use pkg-config instead of krb5-config for the gssapi dependency [Patrick Griffis]
* http1: When using chunked encoding report an error in case of unexpected stream end [Andrzej Surdej]
* http2: When a message has no content still respect its Content-Type [Patrick Griffis]
* http2: Revert manual window size management temporarily, as it could stall [Patrick Griffis]
* sniffer: Fix potential overflows [Patrick Griffis]
* hsts: Fix minor leak [Patrick Griffis]
* headers: Fix a few parsing edge cases that could be an out of bound read [Patrick Griffis]
* connection: Avoid ever calling disconnect twice [Patrick Griffis]
* auth-digest: Fix handling when a nonce isn't present [Patrick Griffis]
* cookies: Limit max size of max-age, path, and domain attributes to 1024 bytes [Patrick Griffis]
* cookies: Limit max size of name and value to 4096 bytes [Patrick Griffis]
* docs: Remove references to old libsoup domain [Simon McVittie]
Refer:
766e175282
(From OE-Core rev: a5585378dd9a2ecd8261958d02c34ecce1be5c0f)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The project is switching the way handle our CDN provision of sstate objects,
update the URL accordingly.
(From meta-yocto rev: d4f018da2c709ba1135889206694148c6001cd29)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e5b8e76ba8232860943406e1c53e71b3d2790f17)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Since pmem kernel drivers were enabled as modules, the initrd
size limit is hit. On genericarm64 all kernel modules and some
firmware files get installed to initrd by default which make
the thing large. I'm working on patches to reduce the kernel drivers
installed to initrd and to make the kernel in general more modular
(btrfs 5 Mb etc built into kernel by default). For now just increase
the size limit to unblock genericarm64 builds and testing.
Fixes: https://bugzilla.yoctoproject.org/show_bug.cgi?id=15833
(From meta-yocto rev: c8b151d2d7879c2b1276824444a963a59dfcf240)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 09bef6a491c087f0f0371874e759aae08a720c4e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The project is switching the way handle our CDN provision of sstate objects,
update the URL accordingly.
(From OE-Core rev: a7322472e41c3cac922e29d867ae3f2f74318279)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fea96974f1ee6ae6dceb39e3ca8157797d81586c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Since Linux v2.4 it has been possible to stop all NFS server by running
rpc.nfsd 0
i.e. by requesting that zero threads be running. This is preferred as
it doesn't risk killing some other process which happens to be called
"nfsd".
Since Linux v6.6 - and other stable kernels to which
Commit: 390390240145 ("nfsd: don't allow nfsd threads to be
signalled.")
has been backported - sending a signal no longer works to stop nfs server
threads.
This patch changes the nfsserver script to use "rpc.nfsd 0" to stop
server threads.
(From OE-Core rev: b530827b938bcae33da08b65bab96d2549056f2e)
Signed-off-by: NeilBrown <neil@brown.name>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7b09ad289a36)
Signed-off-by: Haixiao Yan <haixiao.yan.cn@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
5be5dbf91ef3 Linux 6.12.29
7e78061be78b x86/its: FineIBT-paranoid vs ITS
bb85c3abbfd8 x86/its: Fix build errors when CONFIG_MODULES=n
2a6194e12427 selftest/x86/bugs: Add selftests for ITS
88a817e60dbb x86/its: Use dynamic thunks for indirect branches
15335117c5d7 x86/ibt: Keep IBT disabled during alternative patching
bd57853b863e x86/its: Align RETs in BHB clear sequence to avoid thunking
9f132c0397df x86/its: Add support for RSB stuffing mitigation
4dc1902fdee7 x86/its: Add "vmexit" option to skip mitigation on some CPUs
68d59e9ba384 x86/its: Enable Indirect Target Selection mitigation
51000047235f x86/its: Add support for ITS-safe return thunk
16a7d5b7a46e x86/its: Add support for ITS-safe indirect thunk
a6f2a436e9d6 x86/its: Enumerate Indirect Target Selection (ITS) bug
76f847655bcb Documentation: x86/bugs/its: Add ITS documentation
f23d4f4aebf0 x86/speculation: Remove the extra #ifdef around CALL_NOSPEC
9ebe6f1bd213 x86/speculation: Add a conditional CS prefix to CALL_NOSPEC
d2498bbb54f6 x86/speculation: Simplify and make CALL_NOSPEC consistent
9d8295dcf243 x86/bhi: Do not set BHI_DIS_S in 32-bit mode
b86349f32625 x86/bpf: Add IBHF call at end of classic BPF
87a12b9b3810 x86/bpf: Call branch history clearing sequence on exit
2176530849b1 arm64: proton-pack: Add new CPUs 'k' values for branch mitigation
e5f5100f1c64 arm64: bpf: Only mitigate cBPF programs loaded by unprivileged users
38c345fd54af arm64: bpf: Add BHB mitigation to the epilogue for cBPF programs
f2aebb8ec64d arm64: proton-pack: Expose whether the branchy loop k value
ec5bca57afc6 arm64: proton-pack: Expose whether the platform is mitigated by firmware
2a3915e86187 arm64: insn: Add support for encoding DSB
86b37810fa1e sched/eevdf: Fix se->slice being set to U64_MAX and resulting crash
16bae58f7355 mm: page_alloc: speed up fallbacks in rmqueue_bulk()
564d25b1a6a0 mm: page_alloc: don't steal single pages from biggest buddy
12abefb8c821 Bluetooth: btmtk: Remove the resetting step before downloading the fw
c7a9df4ef4a7 Bluetooth: btmtk: Remove resetting mt7921 before downloading the fw
2482f7705b83 io_uring: always arm linked timeouts prior to issue
6b0383a21d3a rust: clean Rust 1.88.0's `clippy::uninlined_format_args` lint
1c25723831c4 rust: allow Rust 1.87.0's `clippy::ptr_eq` lint
6aac2c54762c Revert "um: work around sched_yield not yielding in time-travel mode"
cd010271a92b do_umount(): add missing barrier before refcount checks in sync case
3edac2949eb5 io_uring/sqpoll: Increase task_work submission batch size
944af45bb76b drm/xe/tests/mocs: Hold XE_FORCEWAKE_ALL for LNCF regs
95a75ed2b005 drm/xe/tests/mocs: Update xe_force_wake_get() return handling
d6b013b44e44 riscv: misaligned: enable IRQs while handling misaligned accesses
45a0697ceeae riscv: misaligned: factorize trap handling
19fa2a483029 nvme: unblock ctrl state transition for firmware update
7798edcc5b56 drm/panel: simple: Update timings for AUO G101EVN010
184b147b9f7f loop: Add sanity check for read/write_iter
a781ffe410d8 loop: factor out a loop_assign_backing_file helper
5e1470b27672 loop: refactor queue limits updates
0558ce095b76 loop: Fix ABBA locking race
722f6dece719 loop: Simplify discard granularity calc
02a77b3020a2 loop: Use bdev limit helpers for configuring discard
126be03494f2 riscv: misaligned: Add handling for ZCB instructions
eaa30e1d0ed2 MIPS: Fix MAX_REG_OFFSET
fb98c9e584f4 iio: adc: dln2: Use aligned_s64 for timestamp
ef5d6a409680 iio: accel: adxl355: Make timestamp 64-bit aligned using aligned_s64
afe884959738 types: Complement the aligned types with signed 64-bit one
245e319019c6 iio: temp: maxim-thermocouple: Fix potential lack of DMA safe buffer.
e9bf391a9bce iio: accel: adxl367: fix setting odr for activity time update
a2ad060643a4 usb: usbtmc: Fix erroneous generic_read ioctl return
207391377646 usb: usbtmc: Fix erroneous wait_srq ioctl return
29e17737465c usb: usbtmc: Fix erroneous get_stb ioctl error returns
9d90c283eac5 USB: usbtmc: use interruptible sleep in usbtmc_read
5ad298d6d4ae usb: typec: ucsi: displayport: Fix NULL pointer access
3366a199483a usb: typec: tcpm: delay SNK_TRY_WAIT_DEBOUNCE to SRC_TRYWAIT transition
1c001b6ddeb7 usb: misc: onboard_usb_dev: fix support for Cypress HX3 hubs
08eca452a648 usb: host: tegra: Prevent host controller crash when OTG port is used
d1c8fa4c6edb usb: gadget: Use get_status callback to set remote wakeup capability
43ae91f561de usb: gadget: tegra-xudc: ACK ST_RC after clearing CTRL_RUN
75f23e49add8 usb: gadget: f_ecm: Add get_status callback
fae7f4460188 usb: cdnsp: fix L1 resume issue for RTL_REVISION_NEW_LPM version
88d92cffc9d9 usb: cdnsp: Fix issue with resuming from L1
f6fdbe4d543b usb: dwc3: gadget: Make gadget_wakeup asynchronous
d133023c9a3f ocfs2: stop quota recovery before disabling quotas
fe3d752a7a10 ocfs2: implement handshaking with ocfs2 recovery thread
f96041a959f7 ocfs2: switch osb->disable_recovery to enum
1b3b9158521a ocfs2: fix the issue with discontiguous allocation in the global_bitmap
b76eaef983c7 x86/microcode: Consolidate the loader enablement checking
d63851049f41 module: ensure that kobject_put() is safe for module type kobjects
d66a22f6a432 memblock: Accept allocated memory before use in memblock_double_array()
ed45af6841a9 clocksource/i8253: Use raw_spinlock_irqsave() in clockevent_i8253_disable()
abbc99e898e4 arm64: cpufeature: Move arm64_use_ng_mappings to the .data section to prevent wrong idmap generation
55701e992b17 accel/ivpu: Increase state dump msg timeout
8e9c8a0393b5 xenbus: Use kref to track req lifetime
54dd5d6af705 xen: swiotlb: Use swiotlb bouncing if kmalloc allocation demands it
571dcf3d27b2 smb: client: Avoid race in open_cached_dir with lease breaks
a9f28dbfdd1e usb: uhci-platform: Make the clock really optional
92d0a28afba2 drm/amdgpu/hdp7: use memcfg register to post the write for HDP flush
df044182621a drm/amdgpu/hdp6: use memcfg register to post the write for HDP flush
0a776c305435 drm/amdgpu/hdp5: use memcfg register to post the write for HDP flush
b6f0f3e6c7a9 drm/amdgpu/hdp5.2: use memcfg register to post the write for HDP flush
4872de413e20 drm/amdgpu/hdp4: use memcfg register to post the write for HDP flush
a13f9ac569f0 drm/amd/display: Copy AUX read reply data whenever length > 0
2d63e66f7ba7 drm/amd/display: Fix wrong handling for AUX_DEFER case
0e225bdba360 drm/amd/display: Remove incorrect checking in dmub aux handler
fc7ac4ad1d16 drm/amd/display: Fix the checking condition in dmub aux handling
468034a06a6e drm/amd/display: more liberal vmin/vmax update for freesync
d8c4afe78385 drm/amd/display: Fix invalid context error in dml helper
19323f414baa drm/amdgpu/vcn: using separate VCN1_AON_SOC offset
206569cbf71a drm/xe: Add page queue multiplier
a5f162727b91 drm/v3d: Add job to pending list if the reset was skipped
dadf91161083 iio: imu: st_lsm6dsx: fix possible lockup in st_lsm6dsx_read_tagged_fifo
a1cad8a3bca4 iio: imu: st_lsm6dsx: fix possible lockup in st_lsm6dsx_read_fifo
82f6334a0b3e iio: imu: inv_mpu6050: align buffer for timestamp
c4dfff960b34 iio: adis16201: Correct inclinometer channel resolution
4cbd37a12aed iio: adc: rockchip: Fix clock initialization sequence
c9f8413b78f2 iio: adc: ad7606: fix serial register access
7f37e3148368 io_uring: ensure deferred completions are flushed for multishot
4d41b9e4c9e8 drm/amd/display: Shift DMUB AUX reply command if necessary
d362b21fefce KVM: SVM: Forcibly leave SMM mode on SHUTDOWN interception
5156f7c484ab selftests/mm: fix a build failure on powerpc
b21ec0726a7b selftests/mm: compaction_test: support platform with huge mount of memory
b543a5a73b5c mm/userfaultfd: fix uninitialized output field for -EAGAIN race
6166c3cf4054 mm/huge_memory: fix dereferencing invalid pmd migration entry
2910019b04eb mm: vmalloc: support more granular vrealloc() sizing
efb597345953 mm: fix folio_pte_batch() on XEN PV
d87392094f96 x86/mm: Eliminate window where TLB flushes may be inadvertently skipped
e8b1d65f0a93 staging: axis-fifo: Correct handling of tx_fifo_depth for size validation
38a8982ca0b7 staging: axis-fifo: Remove hardware resets for user errors
06753f49336a staging: bcm2835-camera: Initialise dev in v4l2_dev
215e42e2f12c staging: iio: adc: ad7816: Correct conditional logic for store mode
5bb112f16008 rust: clean Rust 1.88.0's warning about `clippy::disallowed_macros` configuration
a85d8aed0c08 objtool/rust: add one more `noreturn` Rust function for Rust 1.87.0
376b73292a26 rust: clean Rust 1.88.0's `unnecessary_transmutes` lint
2943297acfea Input: synaptics - enable InterTouch on TUXEDO InfinityBook Pro 14 v5
a82f4f5563b6 Input: synaptics - enable SMBus for HP Elitebook 850 G1
bbb5081015ed Input: synaptics - enable InterTouch on Dell Precision M3800
bc4556bba1c8 Input: synaptics - enable InterTouch on Dynabook Portege X30L-G
9d9074af50e8 Input: synaptics - enable InterTouch on Dynabook Portege X30-D
38bb0170d6ad Input: xpad - fix two controller table values
bf239d383538 Input: xpad - add support for 8BitDo Ultimate 2 Wireless Controller
302a0cd0bbc4 Input: xpad - fix Share button on Xbox One controllers
619c05fb176c Input: mtk-pmic-keys - fix possible null pointer dereference
f36230dacde9 Input: cyttsp5 - fix power control issue on wakeup
ee25256789c3 Input: cyttsp5 - ensure minimum reset pulse width
de02eb727f1a virtio-net: fix total qstat values
bb8f86f40e04 net: export a helper for adding up queue stats
7eea40818e8f fbnic: Do not allow mailbox to toggle to ready outside fbnic_mbx_poll_tx_ready
650e283b4cd3 fbnic: Pull fbnic_fw_xmit_cap_msg use out of interrupt context
9d9010879dc9 fbnic: Improve responsiveness of fbnic_mbx_poll_tx_ready
612a05c9f20c fbnic: Actually flush_tx instead of stalling out
fea860a2a613 fbnic: Gate AXI read/write enabling on FW mailbox
cd25fc4c562e fbnic: Fix initialization of mailbox descriptor rings
ce97489864c9 net: dsa: b53: do not set learning and unicast/multicast on up
e5b40f4a2b3e net: dsa: b53: fix learning on VLAN unaware bridges
ce1a289bf2ab net: dsa: b53: fix toggling vlan_filtering
2407c98a1b4c net: dsa: b53: do not program vlans when vlan filtering is off
7dac02582911 net: dsa: b53: do not allow to configure VLAN 0
11c427a8699e net: dsa: b53: always rejoin default untagged VLAN on bridge leave
90b65bc357ca net: dsa: b53: fix VLAN ID for untagged vlan on bridge leave
42ab1f2b6f45 net: dsa: b53: fix flushing old pvid VLAN on pvid change
4ed7e603139f net: dsa: b53: fix clearing PVID of a port
46de8f2aa389 net: dsa: b53: keep CPU port always tagged again
11dbd4e0a89a net: dsa: b53: allow leaky reserved multicast
b37e54259cab bpf: Scrub packet on bpf_redirect_peer
e2ab67672b22 netfilter: ipset: fix region locking in hash types
0160ac84fb03 ipvs: fix uninit-value for saddr in do_output_route4
64385c0d02f7 erofs: ensure the extra temporary copy is valid for shortened bvecs
574686c80754 ice: use DSN instead of PCI BDF for ice_adapter index
62946989e660 ice: Initial support for E825C hardware in ice_adapter
4555c4a13a93 wifi: mac80211: fix the type of status_code for negotiated TID to Link Mapping
c33927f3858c can: gw: fix RCU/BH usage in cgw_create_job()
8f24cc6a72eb can: mcp251xfd: fix TDC setting for low data bit rates
2ecce25ea296 can: m_can: m_can_class_allocate_dev(): initialize spin lock on device probe
79a6945e3de5 net: ethernet: mtk_eth_soc: do not reset PSE when setting FE
aac9d5fa537b net: ethernet: mtk_eth_soc: reset all TX queues on DMA free
35be4c0cdf46 gre: Fix again IPv6 link-local address generation.
94a6f6c204ab virtio-net: free xsk_buffs on error in virtnet_xsk_pool_enable()
edd53ee790f3 virtio_net: xsk: bind/unbind xsk for tx
98cd7ed92753 sch_htb: make htb_deactivate() idempotent
5c3b8f05756b s390/entry: Fix last breaking event handling in case of stack corruption
2148d34371b0 ksmbd: fix memory leak in parse_lease_state()
ec334aaab747 openvswitch: Fix unsafe attribute parsing in output_userspace()
9e9841e232b5 ksmbd: Fix UAF in __close_file_table_ids
d62ba16563a8 ksmbd: prevent out-of-bounds stream writes by validating *pos
c57301e332cc ksmbd: prevent rename with empty string
1b7b1cbc6e73 can: rockchip_canfd: rkcanfd_remove(): fix order of unregistration calls
12ef60f1b99c can: mcp251xfd: mcp251xfd_remove(): fix order of unregistration calls
c488f8b53e15 s390/pci: Fix duplicate pci_dev_put() in disable_slot() when PF has child VFs
afa5cdce062a vfio/pci: Align huge faults to order
9423f6da8251 wifi: cfg80211: fix out-of-bounds access during multi-link element defragmentation
be54b750c333 s390/pci: Fix missing check for zpci_create_device() error return
e0a8e3ca07be can: mcan: m_can_class_unregister(): fix order of unregistration calls
14ee85b74807 firmware: arm_scmi: Fix timeout checks on polling path
fe3da1bfd8d4 arm64: dts: imx8mm-verdin: Link reg_usdhc2_vqmmc to usdhc2
ff7d691921c7 Revert "btrfs: canonicalize the device path before adding it"
61e0fc331230 fs/erofs/fileio: call erofs_onlinefolio_split() after bio_add_folio()
b32411f0459d dm: add missing unlock on in dm_keyslot_evict()
2ee7ebed771b mips: Add '-std=gnu11' to vdso CFLAGS
b2c792d89ac5 yaffs2: switch from readlink_copy() to vfs_readlink()
807165b1ec1c tools/power/x86/intel-speed-select: Prefix header search path with sysroot
e97df805b938 drm/tilcdc: Set preferred depth
7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650
6d8ac5ebe6e8 aufs6: core
587abc1b64c4 aufs6: standalone
1af41d30ef42 aufs6: mmap
6ee2464d2e9d aufs6: base
103b676505f7 aufs6: kbuild
67281562943f qemux86: add configuration symbol to select values
73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs
1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter
918e7a825e8b clear_warn_once: bind a timer to written reset value
f533f87c3758 clear_warn_once: expand debugfs to include read support
f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS
e633abe9c44e libbpf: Fix build warning on ref_ctr_off
ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel.
03721ceb5626 perf: x86-32: explicitly include <errno.h>
4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long
b0200449610d perf: fix bench numa compilation
aff0940b2212 perf: add SLANG_INC for slang.h
ef912018d28c perf: add sgidefs.h to for mips builds
d8860f858b87 perf: change --root to --prefix for python install
dc38a0eee6e5 perf: add 'libperl not found' warning
6ed51f8786da perf: force include of <stdbool.h>
c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32()
63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat
7816667451ef FAT: Added FAT_NO_83NAME
f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option
771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option
a24784fd8f88 yaffs2: update to v6.12 folio changes
d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes
d097e4d4115a yaffs: fix mtime/itime field access
4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+
1b6619086e8b yaffs2: v6.5 fixups
25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length
5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap
55986a1284b3 yaffs2: replace bdevname call with sprintf
6f5508f8db8f yaffs2: convert read_page -> readfolio
fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL
c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name
78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested)
8d2dddba272c yaffs: include blkdev.h
8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API
27005cbac2ed yaffs2: v5.6 build fixups
668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read
285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super
ffc2ed489ccf yaffs: repair yaffs_get_mtd_device
6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API
19f283abc5d1 yaffs2: fix memory leak in mount/umount
04e84672b571 yaffs: Avoid setting any ACL releated xattr
4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1
81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis
26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY
a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020)
feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation
874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility
1d42508faee8 tools: use basename to identify file in gen-mach-types
4b055eca593d iwlwifi: select MAC80211_LEDS conditionally
97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119)
6dec58319165 defconfigs: drop obselete options
a416ccb5b6c9 linux-yocto: Handle /bin/awk issues
7efe8a1e5158 uvesafb: provide option to specify timeout for task completion
78d10ae07eca uvesafb: print error message when task timeout occurs
80473b7eb8ca compiler.h: Undef before redefining __attribute_const__
ddeff2f1a9a7 vmware: include jiffies.h
3dcdda8912b4 Resolve jiffies wrapping about arp
3b1507db6735 nfs: Allow default io size to be configured.
c2fedad05f77 check console device file on fs when booting
208d6fbada3f mount_root: clarify error messages for when no rootfs found
dbe9454c8ea0 mconf: fix output of cflags and libraries
7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location
b6c189c81397 modpost: mask trivial warnings
a5cc21325ba9 kbuild: exclude meta directory from distclean processing
361ec143c23f powerpc: serialize image targets
605e6ccb304c arm: serialize build targets
e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition
44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86
a08cb65331e6 x86_64_defconfig: Fix warnings
8ad332ef777b mips: make current_cpu_data preempt safe
754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code
325ff78ff44d mips: Kconfig: add QEMUMIPS64 option
99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency
c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c
8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018
16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var
6b60c874cbb0 arm64: defconfig: cleanup config options
8e44673ecd89 vexpress: Pass LOADADDR to Makefile
f34e6805aad5 arm: ARM EABI socketcall
94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault
(From OE-Core rev: 29bc9f37e614b153cedb9f2d8725c2aeae9d1867)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit cac65d0f52251e69984eb7c2529e63c15095501a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
f08cdc6cc92e Linux 6.12.28
db6280919765 dm: fix copying after src array boundaries
dd329f04dda3 drm/amd/display: Fix slab-use-after-free in hdcp
75096780a4de drm/amd/display: Add scoped mutexes for amdgpu_dm_dhcp
e1eea6985828 drivers: base: handle module_kobject creation
69113bf740b2 kernel: globalize lookup_or_create_module_kobject()
3b41b5efaec0 kernel: param: rename locate_module_kobject
7509810606b0 Revert "drm/meson: vclk: fix calculation of 59.94 fractional rates"
e993398cbd75 arm64: dts: st: Use 128kB size for aliased GIC400 register access on stm32mp25 SoCs
aa4ea5355458 arm64: dts: st: Adjust interrupt-controller for stm32mp25 SoCs
7ac0df4f35d4 ARM: dts: opos6ul: add ksz8081 phy properties
a3ab5c9443d4 arm64: dts: imx95: Correct the range of PCIe app-reg region
cc67657f636a firmware: arm_ffa: Skip Rx buffer ownership release if not acquired
969d8beaa2e3 firmware: arm_scmi: Balance device refcount when destroying devices
752600f1ac7e drm/xe: Ensure fixed_slice_mode gets set after ccs_mode change
0e6325c183ab sch_ets: make est_qlen_notify() idempotent
15fa905db22c sch_qfq: make qfq_qlen_notify() idempotent
d06476714d28 sch_hfsc: make hfsc_qlen_notify() idempotent
353add4cad93 sch_drr: make drr_qlen_notify() idempotent
0a188c0e1973 sch_htb: make htb_qlen_notify() idempotent
bccc7df3cea0 accel/ivpu: Add handling of VPU_JSM_STATUS_MVNCI_CONTEXT_VIOLATION_HW
079d2622f8c9 accel/ivpu: Fix locking order in ivpu_job_submit
3e3062be7d24 accel/ivpu: Abort all jobs after command queue unregister
a39b5b6a6ea8 accel/ivpu: Update VPU FW API headers
1ebbfee88951 accel/ivpu: Fix a typo
a735c9205dc9 accel/ivpu: Use xa_alloc_cyclic() instead of custom function
aaba59961d43 accel/ivpu: Make DB_ID and JOB_ID allocations incremental
f4ae68eae950 net: Fix the devmem sock opts and msgs for parisc
6b6cd389104c bcachefs: Remove incorrect __counted_by annotation
dab2a13059a4 mm, slab: clean up slab->obj_exts always
e10ec6e32b00 blk-mq: create correct map for fallback case
1e15804c0472 net: vertexcom: mse102x: Fix RX error handling
2e5b8eb6b42e net: vertexcom: mse102x: Add range check for CMD_RTS
98abf8367260 net: vertexcom: mse102x: Fix LEN_MASK
6abbffa73647 net: vertexcom: mse102x: Fix possible stuck of SPI interrupt
7f9c3e2213ad net: hns3: defer calling ptp_clock_register()
6a6d547a7f7c net: hns3: fixed debugfs tm_qset size
ee2642bbae84 net: hns3: fix an interrupt residual problem
d4cd7667311b net: hns3: store rx VLAN tag offload state for VF
c8d788f800f8 octeon_ep: Fix host hang issue during device reboot
bcb9d6a2229f net: fec: ERR007885 Workaround for conventional TX
189b05f189ca net: lan743x: Fix memleak issue when GSO enabled
8a543d825e78 ptp: ocp: Fix NULL dereference in Adva board SMA sysfs operations
c0dba059b118 net: use sock_gen_put() when sk_state is TCP_TIME_WAIT
a90146b73c7d bnxt_en: fix module unload sequence
b41a49d5435e ASoC: simple-card-utils: Fix pointer check in graph_util_parse_link_direction
9b552c84cde1 nvmet-tcp: select CONFIG_TLS from CONFIG_NVME_TARGET_TCP_TLS
15ea0b616426 nvme-tcp: select CONFIG_TLS from CONFIG_NVME_TCP_TLS
60331309e738 nvme-tcp: fix premature queue removal and I/O failover
2da8fe5a1092 bnxt_en: Fix ethtool -d byte order for 32-bit values
44807af79efd bnxt_en: Fix out-of-bound memcpy() during ethtool -w
454a4450b026 bnxt_en: Fix coredump logic to free allocated buffer
626af9b8e834 bnxt_en: call pci_alloc_irq_vectors() after bnxt_reserve_rings()
aa15f389fc50 bnxt_en: Add missing skb_mark_for_recycle() in bnxt_rx_vlan()
808a7304b5f4 bnxt_en: Fix ethtool selftest output in one of the failure cases
e039b00ddbfe bnxt_en: Fix error handling path in bnxt_init_chip()
9bc347854dfd ALSA: hda/realtek: Fix built-mic regression on other ASUS models
6effe1c0fa82 net: ipv6: fix UDPv6 GSO segmentation with NAT
dcb5a2b96113 net: dsa: felix: fix broken taprio gate states after clock jump
317013d1ad13 net: ethernet: mtk_eth_soc: fix SER panic with 4GB+ RAM
56b958a5b559 igc: fix lock order in igc_ptp_reset
df1ff481fa0e idpf: protect shutdown from reset
bf0ec3aac109 idpf: fix potential memory leak on kcalloc() failure
d206ea768142 net: mdio: mux-meson-gxl: set reversed bit when using internal phy
e9b65c95610a net: dlink: Correct endianness handling of led_mode
7fc2c784dd95 drm/mipi-dbi: Fix blanking for non-16 bit formats
d0d7c93b4b67 drm/tests: shmem: Fix memleak
5ad0b1b55428 nvme-pci: fix queue unquiesce check on slot_reset
226beac5605a ALSA: ump: Fix buffer overflow at UMP SysEx message conversion
6b1355860da3 scsi: ufs: core: Remove redundant query_complete trace
d14f88bd0f75 idpf: fix offloads support for encapsulated packets
073791e9cfe6 ice: Check VF VSI Pointer Value in ice_vc_add_fdir_fltr()
53bc0b55178b net_sched: qfq: Fix double list add in class with netem as child qdisc
1f01e9f96160 net_sched: ets: Fix double list add in class with netem as child qdisc
2e7093c7a8ab net_sched: hfsc: Fix a UAF vulnerability in class with netem as child qdisc
26e75716b94d net_sched: drr: Fix double list add in class with netem as child qdisc
c649b9653ed0 pds_core: remove write-after-free of client_id
f41e27b74624 pds_core: specify auxiliary_device to be created
1d69ab85030b pds_core: make pdsc_auxbus_dev_del() void
aea3ca60fafb net: ethernet: mtk_eth_soc: sync mtk_clks_source_name array
5257a0f1ec5e net: ethernet: mtk-star-emac: rearm interrupts in rx_poll only when advised
8d40bf73fa7f net: ethernet: mtk-star-emac: fix spinlock recursion issues on rx/tx poll
950832771e59 rtase: Modify the condition used to detect overflow in rtase_calc_time_mitigation
4911412efda5 bnxt_en: improve TX timestamping FIFO configuration
ddc1e64c290a octeon_ep_vf: Resolve netdevice usage count issue
6e6325d4878c net: mscc: ocelot: delete PVID VLAN when readding it as non-PVID
432572d53602 Bluetooth: L2CAP: copy RX timestamp to new fragments
cfe006c8a61e Bluetooth: btintel_pcie: Add additional to checks to clear TX/RX paths
b70b41591ec4 Bluetooth: btusb: avoid NULL pointer dereference in skb_dequeue()
c7bd5c9ba13d Bluetooth: btintel_pcie: Avoid redundant buffer allocation
620810ac1f7f Bluetooth: hci_conn: Fix not setting timeout for BIG Create Sync
eb8b860e87b2 Bluetooth: hci_conn: Fix not setting conn_timeout for Broadcast Receiver
fe81c26d2dac Bluetooth: hci_conn: Remove alloc from critical section
3104b7d559ff ASoC: amd: acp: Fix NULL pointer deref in acp_i2s_set_tdm_slot
92d812df3b21 accel/ivpu: Correct DCT interrupt handling
174161d6f030 net/mlx5: E-switch, Fix error handling for enabling roce
488ab6d41fd9 net/mlx5e: Fix lock order in mlx5e_tx_reporter_ptpsq_unhealthy_recover
c022830c2aca net/mlx5e: TC, Continue the attr process even if encap entry is invalid
51599d07c7de net/mlx5: E-Switch, Initialize MAC Address for Default GID
b67fee583794 net/mlx5e: Use custom tunnel header for vxlan gbp
65d3c570614b xsk: Fix race condition in AF_XDP generic RX path
5cb9e07f84e5 vxlan: vnifilter: Fix unlocked deletion of default FDB entry
ec1643d1bad1 powerpc/boot: Fix dash warning
791a2d9e87c4 wifi: plfxlc: Remove erroneous assert in plfxlc_mac_release
50d1982dba7b wifi: iwlwifi: fix the check for the SCRATCH register upon resume
33bf99208825 wifi: iwlwifi: don't warn if the NIC is gone in resume
bb0d60289965 drm/i915/pxp: fix undefined reference to `intel_pxp_gsccs_is_ready_for_sessions'
f7dc50604cdf ALSA: hda/realtek - Enable speaker for HP platform
7867992c3e25 ASoC: Intel: sof_sdw: Add NULL check in asoc_sdw_rt_dmic_rtd_init()
ae462ead8983 powerpc/boot: Check for ld-option support
fcf36f6ed429 pinctrl: imx: Return NULL if no group is matched and found
7f5476d80f2c book3s64/radix : Align section vmemmap start address to PAGE_SIZE
29a4a29112c1 ASoC: soc-pcm: Fix hw_params() and DAPM widget sequence
2029a38b6c50 ASoC: cs-amp-lib-test: Don't select SND_SOC_CS_AMP_LIB
220395054c24 ASoC: soc-core: Stop using of_property_read_bool() for non-boolean properties
b93e1cad05a0 drm/amd/display: Default IPS to RCG_IN_ACTIVE_IPS2_IN_OFF
1f27a3e93b8d tracing: Fix oob write in trace_seq_to_buffer()
962d88304c3c cpufreq: Fix setting policy limits when frequency tables are used
573b04722907 cpufreq: Avoid using inconsistent policy->min and policy->max
553d723e1acb smb: client: fix zero length for mkdir POSIX create context
d5ec1d79509b ksmbd: fix use-after-free in session logoff
e18c61671801 ksmbd: fix use-after-free in kerberos authentication
8fb3b6c85b7e ksmbd: fix use-after-free in ksmbd_session_rpc_open
d21175791886 platform/x86/intel-uncore-freq: Fix missing uncore sysfs during CPU hotplug
2fcb183768e7 platform/x86/amd: pmc: Require at least 2.5 seconds between HW sleep cycles
2e303d010722 iommu: Fix two issues in iommu_copy_struct_from_user()
677714d779ed iommu/vt-d: Apply quirk_iommu_igfx for 8086:0044 (QM57/QS57)
ccc50fcba362 iommu/arm-smmu-v3: Fix pgsize_bit for sva domains
98e634aa4b5d iommu/arm-smmu-v3: Fix iommu_device_probe bug due to duplicated stream ids
10d901a95f8e iommu/amd: Fix potential buffer overflow in parse_ivrs_acpihid
43eb647e847d drm: Select DRM_KMS_HELPER from DRM_DEBUG_DP_MST_TOPOLOGY_REFS
989f9c6a619b drm/amdgpu: Fix offset for HDP remap in nbio v7.11
510aea4ef0f8 dm: always update the array size in realloc_argv on success
af2a88817f76 dm-integrity: fix a warning on invalid table line
f45108257280 dm-bufio: don't schedule in atomic context
efebca597086 x86/boot/sev: Support memory acceptance in the EFI stub under SVSM
bdb435ef9815 wifi: brcm80211: fmac: Add error handling for brcmf_usb_dl_writeimage()
0988dd0263ad tracing: Do not take trace_event_sem in print_event_fields()
da77a7594fe5 spi: tegra114: Don't fail set_cs_timing when delays are zero
20a28e0ece5a mmc: renesas_sdhi: Fix error handling in renesas_sdhi_probe
9c4ddea4973f mm/memblock: repeat setting reserved region nid if array is doubled
eb9b72e4fe51 mm/memblock: pass size instead of end to memblock_set_node()
f10234236095 irqchip/qcom-mpm: Prevent crash when trying to handle non-wake GPIOs
6569501c7092 amd-xgbe: Fix to ensure dependent features are toggled with RX checksum offload
44ee0afc9d1e perf/x86/intel: KVM: Mask PEBS_ENABLE loaded for guest with vCPU's value.
6dcf83f50418 perf/x86/intel: Only check the group flag for X86 leader
cf21e890f56b parisc: Fix double SIGFPE crash
090c8714efe1 arm64: errata: Add missing sentinels to Spectre-BHB MIDR arrays
4f4388a55019 i2c: imx-lpi2c: Fix clock count when probe defers
833ef30f0196 EDAC/altera: Set DDR and SDMMC interrupt mask before registration
349dac405240 EDAC/altera: Test the correct error reg offset
b771b2017260 drm/nouveau: Fix WARN_ON in nouveau_fence_context_kill()
f1dfc945847c drm/fdinfo: Protect against driver unbind
d31806f14cc1 cpufreq: intel_pstate: Unchecked MSR aceess in legacy mode
f46fd2f0249f btrfs: fix COW handling in run_delalloc_nocow()
b80db09b614c btrfs: adjust subpage bit start based on sectorsize
38d9ca740503 binder: fix offset calculation in debug log
fdf0ae5e9e1e ALSA: usb-audio: Add second USB ID for Jabra Evolve 65 headset
0aaae77be5bd ALSA: usb-audio: Add retry on -EPROTO from usb_set_interface()
222b6685efe0 Revert "rndis_host: Flag RNDIS modems as WWAN devices"
351378ae7bd7 Bluetooth: btusb: Add 13 USB device IDs for Qualcomm WCN785x
78945de256ac Bluetooth: btusb: Add new VID/PID for WCN785x
5ab19c342f80 Bluetooth: btusb: Add ID 0x2c7c:0x0130 for Qualcomm WCN785x
c6e1913e76fb Bluetooth: btusb: Add one more ID 0x13d3:0x3623 for Qualcomm WCN785x
8ee592df659a Bluetooth: btusb: Add one more ID 0x0489:0xe0f3 for Qualcomm WCN785x
a9bfc823d057 Bluetooth: btusb: add Foxconn 0xe0fc for Qualcomm WCN785x
2ee7ebed771b mips: Add '-std=gnu11' to vdso CFLAGS
b2c792d89ac5 yaffs2: switch from readlink_copy() to vfs_readlink()
807165b1ec1c tools/power/x86/intel-speed-select: Prefix header search path with sysroot
e97df805b938 drm/tilcdc: Set preferred depth
7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650
6d8ac5ebe6e8 aufs6: core
587abc1b64c4 aufs6: standalone
1af41d30ef42 aufs6: mmap
6ee2464d2e9d aufs6: base
103b676505f7 aufs6: kbuild
67281562943f qemux86: add configuration symbol to select values
73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs
1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter
918e7a825e8b clear_warn_once: bind a timer to written reset value
f533f87c3758 clear_warn_once: expand debugfs to include read support
f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS
e633abe9c44e libbpf: Fix build warning on ref_ctr_off
ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel.
03721ceb5626 perf: x86-32: explicitly include <errno.h>
4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long
b0200449610d perf: fix bench numa compilation
aff0940b2212 perf: add SLANG_INC for slang.h
ef912018d28c perf: add sgidefs.h to for mips builds
d8860f858b87 perf: change --root to --prefix for python install
dc38a0eee6e5 perf: add 'libperl not found' warning
6ed51f8786da perf: force include of <stdbool.h>
c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32()
63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat
7816667451ef FAT: Added FAT_NO_83NAME
f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option
771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option
a24784fd8f88 yaffs2: update to v6.12 folio changes
d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes
d097e4d4115a yaffs: fix mtime/itime field access
4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+
1b6619086e8b yaffs2: v6.5 fixups
25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length
5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap
55986a1284b3 yaffs2: replace bdevname call with sprintf
6f5508f8db8f yaffs2: convert read_page -> readfolio
fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL
c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name
78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested)
8d2dddba272c yaffs: include blkdev.h
8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API
27005cbac2ed yaffs2: v5.6 build fixups
668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read
285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super
ffc2ed489ccf yaffs: repair yaffs_get_mtd_device
6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API
19f283abc5d1 yaffs2: fix memory leak in mount/umount
04e84672b571 yaffs: Avoid setting any ACL releated xattr
4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1
81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis
26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY
a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020)
feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation
874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility
1d42508faee8 tools: use basename to identify file in gen-mach-types
4b055eca593d iwlwifi: select MAC80211_LEDS conditionally
97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119)
6dec58319165 defconfigs: drop obselete options
a416ccb5b6c9 linux-yocto: Handle /bin/awk issues
7efe8a1e5158 uvesafb: provide option to specify timeout for task completion
78d10ae07eca uvesafb: print error message when task timeout occurs
80473b7eb8ca compiler.h: Undef before redefining __attribute_const__
ddeff2f1a9a7 vmware: include jiffies.h
3dcdda8912b4 Resolve jiffies wrapping about arp
3b1507db6735 nfs: Allow default io size to be configured.
c2fedad05f77 check console device file on fs when booting
208d6fbada3f mount_root: clarify error messages for when no rootfs found
dbe9454c8ea0 mconf: fix output of cflags and libraries
7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location
b6c189c81397 modpost: mask trivial warnings
a5cc21325ba9 kbuild: exclude meta directory from distclean processing
361ec143c23f powerpc: serialize image targets
605e6ccb304c arm: serialize build targets
e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition
44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86
a08cb65331e6 x86_64_defconfig: Fix warnings
8ad332ef777b mips: make current_cpu_data preempt safe
754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code
325ff78ff44d mips: Kconfig: add QEMUMIPS64 option
99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency
c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c
8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018
16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var
6b60c874cbb0 arm64: defconfig: cleanup config options
8e44673ecd89 vexpress: Pass LOADADDR to Makefile
f34e6805aad5 arm: ARM EABI socketcall
94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault
(From OE-Core rev: e9ea7e773fd1f5f7defb8d14eed1ac681d212494)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e66e71abc373a36561522c451dd0a4222f2a7a93)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Integrating the following commit(s) to linux-yocto/.:
1/2 [
Author: Mikko Rapeli
Email: mikko.rapeli@linaro.org
Subject: genericarm64: add CONFIG_CRYPTO_LIB_CHACHA=m
Date: Wed, 7 May 2025 14:43:40 +0300
Fixes CONFIG_CRYPTO_CHACHA20_NEON build as module:
WARNING: [kernel config]: specified values did not make it into the kernel's final configuration:
[NOTE]: 'CONFIG_CRYPTO_CHACHA20_NEON' last val (m) and .config val (n) do not match
[INFO]: CONFIG_CRYPTO_CHACHA20_NEON : n
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
2/2 [
Author: Mikko Rapeli
Email: mikko.rapeli@linaro.org
Subject: qemuarma15.cfg: enable CONFIG_CRYPTO_LIB_CHACHA
Date: Wed, 7 May 2025 14:43:41 +0300
It's a dependency of CONFIG_CRYPTO_CHACHA20_NEON.
Fixes:
[NOTE]: 'CONFIG_CRYPTO_CHACHA20_NEON' last val (y) and .config val (n) do not match
[INFO]: CONFIG_CRYPTO_CHACHA20_NEON : n
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: 6f46ffa7438e292ec373a33febac0678da54af4b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit d58ac8f0e4788d675db594ad26b704f1277c909b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
b801eaa96a5a Linux 6.12.27
92c6f8c577a0 bpf: Fix BPF_INTERNAL namespace import
c72e4daa7ab2 Linux 6.12.26
6b9ebcbd315b mq-deadline: don't call req_get_ioprio from the I/O completion handler
ccc4e973fd19 arm64: dts: ti: k3-j784s4-j742s2-main-common: Correct the GICD size
4b814a1c0c6d crypto: Kconfig - Select LIB generic option
ab5281d21e37 usb: typec: class: Unlocked on error in typec_register_partner()
ff4226252ca5 objtool: Silence more KCOV warnings, part 2
4dc5c03fbda0 objtool: Ignore end-of-section jumps for KCOV/GCOV
1b7647efade7 usb: xhci: Fix Short Packet handling rework ignoring errors
1042d22942c4 nvme: fixup scan failure for non-ANA multipath controllers
8bfe4f02b647 MIPS: cm: Fix warning if MIPS_CM is disabled
62bf68561d3c media: i2c: imx214: Fix uninitialized variable in imx214_set_ctrl()
67727c5764a8 crypto: lib/Kconfig - Hide arch options from user
4833d0a92b59 iommu: Handle race with default domain setup
49d628cb2460 net: dsa: mv88e6xxx: enable STU methods for 6320 family
ff83998b6fa7 net: dsa: mv88e6xxx: enable .port_set_policy() for 6320 family
7dd0c1b86e6b net: dsa: mv88e6xxx: enable PVT for 6321 switch
f4106753ae0d net: dsa: mv88e6xxx: fix atu_move_port_mask for 6341 family
324fd0ba933c Revert "net: dsa: mv88e6xxx: fix internal PHYs for 6320 family"
40966fc9939e usb: typec: class: Invalidate USB device pointers on partner unregistration
45314999f950 ext4: goto right label 'out_mmap_sem' in ext4_setattr()
9f609f04c2a1 comedi: jr3_pci: Fix synchronous deletion of timer
33e131a10459 vmxnet3: Fix malformed packet sizing in vmxnet3_process_xdp
de7c24febd21 usb: typec: class: Fix NULL pointer access
543e0f8765e4 selftests/bpf: Adjust data size to have ETH_HLEN
a9b0b9421e34 selftests/bpf: check program redirect in xdp_cpumap_attach
b84e7bc48840 selftests/bpf: make xdp_cpumap_attach keep redirect prog attached
f8ed4bfb035e selftests/bpf: fix bpf_map_redirect call for cpu map test
94d9c3366e4d xfs: flush inodegc before swapon
d6989af0cb1b xfs: rename xfs_iomap_swapfile_activate to xfs_vm_swap_activate
8185e3ba7146 xfs: Do not allow norecovery mount with quotacheck
94c5584f36a9 xfs: do not check NEEDSREPAIR if ro,norecovery mount.
2b344e779d9a driver core: fix potential NULL pointer dereference in dev_uevent()
4f43c1bf2b1a driver core: introduce device_set_driver() helper
bfc66c4c2804 Revert "drivers: core: synchronize really_probe() and dev_uevent()"
185d376875ea spi: spi-imx: Add check for spi_imx_setupxfer()
54cbce4fe04b drm/amdgpu: Use the right function for hdp flush
0fd149c26281 drm/amdgpu: use a dummy owner for sysfs triggered cleaner shaders v4
387461fba314 md/raid1: Add check for missing source disk in process_checks()
cd0d49958ccb x86/cpu: Add CPU model number for Bartlett Lake CPUs with Raptor Cove cores
3027e5d81147 ubsan: Fix panic from test_ubsan_out_of_bounds
33903ad6274c spi: tegra210-quad: add rate limiting and simplify timeout error message
1b4cf6873a40 spi: tegra210-quad: use WARN_ON_ONCE instead of WARN_ON for timeouts
8f805b3746d2 ksmbd: fix WARNING "do not call blocking ops when !TASK_RUNNING"
c9ffbc07920d riscv: Provide all alternative macros all the time
d53b2d49a8e2 iomap: skip unnecessary ifs_block_is_uptodate check
2ef6eea2efce netfs: Only create /proc/fs/netfs with CONFIG_PROC_FS
2d097dc242ee x86/i8253: Call clockevent_i8253_disable() with interrupts disabled
40216dc23955 ASoC: fsl_asrc_dma: get codec or cpu dai from backend
0f9802f17422 scsi: pm80xx: Set phy_attached to zero when device is gone
acf1610d8ba3 scsi: ufs: exynos: gs101: Put UFS device in reset on .suspend()
b7a05edb2867 scsi: ufs: exynos: Move phy calls to .exit() callback
c0724ac138db scsi: ufs: exynos: Enable PRDT pre-fetching with UFSHCD_CAP_CRYPTO
09c7a0692870 scsi: ufs: exynos: Ensure pre_link() executes before exynos_ufs_phy_init()
731047980d7e scsi: hisi_sas: Fix I/O errors caused by hardware port ID changes
b626bc3c1dce ext4: make block validity check resistent to sb bh corruption
b14d98641312 iommu: Clear iommu-dma ops on cleanup
71c3d43c8f70 cifs: Fix querying of WSL CHR and BLK reparse points over SMB1
9f8eeac3a61c timekeeping: Add a lockdep override in tick_freeze()
1776d6d01913 cifs: Fix encoding of SMB1 Session Setup Kerberos Request in non-UNICODE mode
f4cb2c042a29 nvmet-fc: put ref when assoc->del_work is already scheduled
9635d486b608 nvmet-fc: take tgtport reference only once
bb4b487bbd29 x86/bugs: Don't fill RSB on context switch with eIBRS
3b4fc0785ad4 x86/bugs: Don't fill RSB on VMEXIT with eIBRS+retpoline
5c41b7913fe0 x86/bugs: Use SBPB in write_ibpb() if applicable
6f3e9b256663 selftests/mincore: Allow read-ahead pages to reach the end of the file
f1e28d46a01b x86/xen: disable CPU idle and frequency drivers for PVH dom0
5e58b93a1214 gpiolib: of: Move Atmel HSMCI quirk up out of the regulator comment
fecf44d47384 objtool: Stop UNRET validation on UD2
ee5521176ad8 nvme: multipath: fix return value of nvme_available_path
b9c89c97d70b nvme: re-read ANA log page after ns scan completes
5f3f3087a24f drm/xe/xe3lpg: Apply Wa_14022293748, Wa_22019794406
bbf2d0605247 drm/amdgpu: Increase KIQ invalidate_tlbs timeout
bd12979c190c ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls
bff38d184b70 ACPI: EC: Set ec_no_wakeup for Lenovo Go S
24ede35eb2ab nvme: requeue namespace scan on missed AENs
781c870bdc20 xen: Change xen-acpi-processor dom0 dependency
90dc6c1e3b20 perf/core: Fix WARN_ON(!ctx) in __free_event() for partial init
d6b66c20d585 selftests: ublk: fix test_stripe_04
a4e99cd41590 cgroup/cpuset: Don't allow creation of local partition over a remote one
daed646d3cfa KVM: s390: Don't use %pK through debug printing
5e7c90294e7a KVM: s390: Don't use %pK through tracepoints
c6c8afdcf824 sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP
e5902d7ec720 kbuild: add dependency from vmlinux to sorttable
3568fd9e440e io_uring: always do atomic put from iowq
2dc0e5ceb3a9 rtc: pcf85063: do a SW reset if POR failed
18296b595176 9p/trans_fd: mark concurrent read and writes to p9_conn->err
c548f95688e2 9p/net: fix improper handling of bogus negative read/write replies
a3b8d8cf5196 ntb_hw_amd: Add NTB PCI ID for new gen CPU
b5f8b03af515 ntb: reduce stack usage in idt_scan_mws
47ab2caba495 qibfs: fix _another_ leak
69578c7d02a9 objtool, lkdtm: Obfuscate the do_nothing() pointer
03bb66ede7ef objtool, regulator: rk808: Remove potential undefined behavior in rk806_set_mode_dcdc()
777e6735fecc objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler()
0485bdf88fb4 objtool, panic: Disable SMAP in __stack_chk_fail()
8b4f2b6389bf objtool: Silence more KCOV warnings
da780c4a075b um: work around sched_yield not yielding in time-travel mode
0a205fdbb388 thunderbolt: Scan retimers after device router has been enumerated
7fb9a9d2e320 usb: host: xhci-plat: mvebu: use ->quirks instead of ->init_quirk() func
052fb65335be usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev()
2c97354037aa phy: rockchip: usbdp: Avoid call hpd_event_trigger in dp_phy_init
9ff59cb81500 usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running
2ef4b0e91170 dmaengine: dmatest: Fix dmatest waiting less when interrupted
69bb5d420da7 i3c: master: svc: Add support for Nuvoton npcm845 i3c
635be1360666 xhci: Handle spurious events on Etron host isoc enpoints
16a7a8e6c47f usb: xhci: Fix isochronous Ring Underrun/Overrun event handling
cbfa55bda1fe usb: xhci: Complete 'error mid TD' transfers when handling Missed Service
66046b586c0a sound/virtio: Fix cancel_sync warnings on uninitialized work_structs
f045fd7d46e8 usb: dwc3: gadget: Avoid using reserved endpoints on Intel Merrifield
2ecae001385e usb: dwc3: gadget: Refactor loop to avoid NULL endpoints
8a5e1d32c620 fs/ntfs3: Fix WARNING in ntfs_extend_initialized_size
8db49e89a7f8 fs/ntfs3: Keep write operations atomic
523bcab993fc usb: host: max3421-hcd: Add missing spi_device_id table
8b7b088925e9 mailbox: pcc: Always clear the platform ack interrupt first
a32ebfa7d80b mailbox: pcc: Fix the possible race in updation of chan_in_use flag
b817d2bfd6d4 bpf: Reject attaching fexit/fmod_ret to __noreturn functions
4131411f428d bpf: Only fails the busy counter check in bpf_cgrp_storage_get if it creates storage
46df1fe944d0 bpf: bpftool: Setting error code in do_loader()
ab57877603ea s390/tty: Fix a potential memory leak bug
3b3aa72636a6 s390/sclp: Add check for get_zeroed_page()
6e026e605088 parisc: PDT: Fix missing prototype warning
4139072087e2 clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec()
c5c833f6375f bpf: Fix deadlock between rcu_tasks_trace and event_mutex.
7758e308aeda bpf: Fix kmemleak warning for percpu hashmap
0486de3c1b82 crypto: null - Use spin lock instead of mutex
0195abab4ac8 crypto: lib/Kconfig - Fix lib built-in failure when arch is modular
fbea0efa8a1d crypto: ccp - Add support for PCI device 0x1134
eea7d57c4a64 MIPS: cm: Detect CM quirks from device tree
3da037149416 pinctrl: mcp23s08: Get rid of spurious level interrupts
d00d598027b6 pinctrl: renesas: rza2: Fix potential NULL pointer dereference
1badc279b4ae selftests/bpf: Fix stdout race condition in traffic monitor
caa559d3f74d USB: wdm: add annotation
b8bf49f3f650 USB: wdm: wdm_wwan_port_tx_complete mutex in atomic context
52ae15c665b5 USB: wdm: close race between wdm_open and wdm_wwan_port_stop
eb4973cf6b38 USB: wdm: handle IO errors in wdm_wwan_port_start
3e52ae347e95 USB: VLI disk crashes if LPM is used
d85b7af3bdc5 usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 Flash Drive
9924ee1bcd16 usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive
694fdc6a9c28 usb: dwc3: xilinx: Prevent spike in reset signal
52a7c9d930b9 usb: dwc3: gadget: check that event count does not exceed event buffer length
17c3984a4414 USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02)
7fb632a131e5 usb: chipidea: ci_hdrc_imx: implement usb_phy_init() error handling
c99ace596505 usb: chipidea: ci_hdrc_imx: fix call balance of regulator routines
887902ca7349 usb: chipidea: ci_hdrc_imx: fix usbmisc handling
74cd6e408a4c usb: cdns3: Fix deadlock when using NCM gadget
bce3055b08e3 usb: xhci: Fix invalid pointer dereference in Etron workaround
177771486508 xhci: Limit time spent with xHC interrupts disabled during bus resume
54c66c703029 USB: serial: simple: add OWON HDS200 series oscilloscope support
2eff9768197e USB: serial: option: add Sierra Wireless EM9291
ea0d806b94bf USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe
5d29f884fe9e serial: sifive: lock port in startup()/shutdown() callbacks
f6ae572683d4 serial: msm: Configure correct working mode before starting earlycon
6f021bc0083b tty: Require CAP_SYS_ADMIN for all usages of TIOCL_SELMOUSEREPORT
f6500093584e firmware: stratix10-svc: Add of_platform_default_populate()
4fb75c0ccc33 misc: microchip: pci1xxxx: Fix incorrect IRQ status handling during ack
12cc2193f2b9 misc: microchip: pci1xxxx: Fix Kernel panic during IRQ handler registration
3670dee37657 char: misc: register chrdev region with all possible minors
26df754de545 KVM: x86: Take irqfds.lock when adding/deleting IRQ bypass producer
b5de7ac74f69 KVM: x86: Reset IRTE to host control if *new* route isn't postable
a22fe6f84306 KVM: x86: Explicitly treat routing entry type changes as changes
3e243378f27c mei: vsc: Fix fortify-panic caused by invalid counted_by() use
34fafded1ca6 mei: me: add panther lake H DID
1f439fe4d8d9 scsi: Improve CDL control
b39bb3b4eb64 USB: storage: quirk for ADATA Portable HDD CH94
40554c0f74bc ata: libata-scsi: Fix ata_msense_control_ata_feature()
aa5778d06aeb ata: libata-scsi: Fix ata_mselect_control_ata_feature() return type
ef2d6c63469e ata: libata-scsi: Improve CDL control
df1a5d5c6134 mcb: fix a double free bug in chameleon_parse_gdd()
4c5f6925e267 cxl/core/regs.c: Skip Memory Space Enable check for RCD and RCH Ports
f3cd533c3ae3 KVM: SVM: Allocate IR data using atomic allocation
7a8a6b627fde io_uring: fix 'sync' handling of io_fallback_tw()
74d9e2018789 LoongArch: KVM: Fix PMU pass-through issue if VM exits to host finally
be83fd71ac6e LoongArch: KVM: Fully clear some CSRs when VM reboot
3b7f341eee94 LoongArch: Remove a bogus reference to ZONE_DMA
51424fd171ce LoongArch: Return NULL from huge_pte_offset() for invalid PMD
93b7872d3325 LoongArch: Handle fp, lsx, lasx and lbt assembly symbols
3939d6f29d34 irqchip/gic-v2m: Prevent use after free of gicv2m_get_fwnode()
140f05cbbf6b x86/insn: Fix CTEST instruction decoding
1ae30272b992 drm/amd/display: Force full update in gpu reset
3ff83378b6b1 drm/amd/display: Fix gpu reset in multidisplay config
92b58c671b36 drm: panel: jd9365da: fix reset signal polarity in unprepare
ea532ba5e1e6 rust: firmware: Use `ffi::c_char` type in `FwFunc`
1909540037d3 scsi: mpi3mr: Fix pending I/O counter
9c31ac781950 net: phy: microchip: force IRQ polling mode for lan88xx
c2a6b4d78c12 net: selftests: initialize TCP header and skb payload with zero
d6a9c4e6f9b3 xen-netfront: handle NULL returned by xdp_convert_buff_to_frame()
64b816a6c41c crypto: atmel-sha204a - Set hwrng quality to lowest possible
28401a63c01a sched_ext: Use kvzalloc for large exit_dump allocation
30c0d6e778da virtio_console: fix missing byte order handling for cols and rows
e17bc10bf30b netfilter: fib: avoid lookup if socket is available
f33b678543b9 KVM: SVM: Disable AVIC on SNP-enabled system without HvInUseWrAllowed feature
9b34dffcd943 LoongArch: Make do_xyz() exception handlers more robust
a556bb5178a3 LoongArch: Make regs_irqs_disabled() more clear
08bbdcb35c81 LoongArch: Select ARCH_USE_MEMTEST
8d37031464d5 perf/x86: Fix non-sampling (counting) events on certain x86 platforms
955f9ede52b8 bpf: Add namespace to BPF internal symbols
3decda1a3c19 splice: remove duplicate noinline from pipe_clear_nowait
bcf6d3158c59 riscv: uprobes: Add missing fence.i after building the XOL buffer
4715ab8435eb riscv: Replace function-like macro by static inline function
e22010c3b83f iommu/amd: Return an error if vCPU affinity is set for non-vCPU IRTE
7f24ea6a460b block: never reduce ra_pages in blk_apply_bdi_limits
66d7702b42ff pds_core: make wait_context part of q_info
ff207e83dac4 pds_core: Remove unnecessary check in pds_client_adminq_cmd()
6702f5c6b22d pds_core: handle unsupported PDS_CORE_CMD_FW_CONTROL result
2982e07ad72b pds_core: Prevent possible adminq overflow/stuck condition
dd6c299390bd net: dsa: mt7530: sync driver-specific behavior of MT7531 variants
c6f035044104 net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too
86cd4641c713 net_sched: hfsc: Fix a UAF vulnerability in class handling
a61afd54826a fix a couple of races in MNT_TREE_BENEATH handling by do_move_mount()
4fb743ee2128 net: ethernet: mtk_eth_soc: net: revise NETSYSv3 hardware configuration
0ceef62a328c tipc: fix NULL pointer dereference in tipc_mon_reinit_self()
41143e71052a net: phy: leds: fix memory leak
3340654bbf6b net: lwtunnel: disable BHs when required
eeab6618037b scsi: ufs: core: Add NULL check in ufshcd_mcq_compl_pending_transfer()
29daa63f2c75 scsi: core: Clear flags for scsi_cmnd that did not complete
fdd2a03561a4 net/mlx5: Move ttc allocation after switch case to prevent leaks
0b682680b12b net/mlx5: Fix null-ptr-deref in mlx5_create_{inner_,}ttc_table()
ef258a15e76c vhost-scsi: Fix vhost_scsi_send_status()
0ac4643bf2c9 vhost-scsi: Fix vhost_scsi_send_bad_target()
461c258ba7f6 vhost-scsi: Add better resource allocation failure handling
5d92e582d162 cgroup/cpuset-v1: Add missing support for cpuset_v2_mode
9a447f748f6c btrfs: zoned: return EIO on RAID1 block group write pointer mismatch
c8a0c38beb87 btrfs: avoid page_lockend underflow in btrfs_punch_hole_lock_range()
6c1c66580587 cpufreq: fix compile-test defaults
ef56c130f6e6 cpufreq: Do not enable by default during compile testing
dbe413a8cdc6 cpufreq: cppc: Fix invalid return value in .get() callback
7d002f591486 scsi: ufs: mcq: Add NULL check in ufshcd_mcq_abort()
28fbd7b13b4d cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate()
7ccfadfb2562 cpufreq: scmi: Fix null-ptr-deref in scmi_cpufreq_get_rate()
fbdba5f37413 cpufreq: apple-soc: Fix null-ptr-deref in apple_soc_cpufreq_get_rate()
16c8aa5de135 dma/contiguous: avoid warning about unused size_bytes
40bf7f560ca4 cpufreq: sun50i: prevent out-of-bounds access
aef37505c496 ceph: Fix incorrect flush end position calculation
984830d902fb lib/Kconfig.ubsan: Remove 'default UBSAN' from UBSAN_INTEGER_WRAP
b26ac563704c drm/amd/display/dml2: use vzalloc rather than kzalloc
50ec8c24286e drm/amd/display: Fix unnecessary cast warnings from checkpatch
0fdb612c2072 drm/xe/bmg: Add one additional PCI ID
c187aaa9e79b net/niu: Niu requires MSIX ENTRY_DATA fields touch before entry reads
869749e48115 scsi: ufs: exynos: Disable iocc if dma-coherent property isn't set
56f3327cdd18 scsi: ufs: exynos: Move UFS shareability value to drvdata
661380d98218 scsi: ufs: exynos: Add gs101_ufs_drv_init() hook and enable WriteBooster
0e76176edc9b scsi: ufs: exynos: Remove superfluous function parameter
ffcdfaecd422 scsi: ufs: exynos: Remove empty drv_init method
1aec4d14cf81 ksmbd: fix use-after-free in __smb2_lease_break_noti()
0fc403192dcc ksmbd: browse interfaces list on FSCTL_QUERY_INTERFACE_INFO IOCTL
8d2c1acc88cb ksmbd: add netdev-up/down event debug print
0772765ac82d ksmbd: use __GFP_RETRY_MAYFAIL
60cb4dfcf739 accel/ivpu: Fix the NPU's DPU frequency calculation
27fcf647818b accel/ivpu: Add auto selection logic for job scheduler
35ba7b2d4dd0 PCI/MSI: Add an option to write MSIX ENTRY_DATA before any reads
46d357520934 PCI/MSI: Handle the NOMASK flag correctly for all PCI/MSI backends
aad12468967b PCI/MSI: Convert pci_msi_ignore_mask to per MSI domain flag
8fe536f1026c scsi: ufs: qcom: fix dev reference leaked through of_qcom_ice_get
a122b3b1f5b8 of: resolver: Fix device node refcount leakage in of_resolve_phandles()
05576e1304fd of: resolver: Simplify of_resolve_phandles() using __free()
56ddf0023b00 arm64: dts: ti: k3-j784s4-j742s2-main-common: Fix serdes_ln_ctrl reg-masks
107b05f54022 arm64: dts: ti: Refactor J784s4 SoC files to a common file
bde067b82ac7 iio: adc: ad7768-1: Fix conversion result sign
68565706b589 iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check
8f229785c5b7 net: dsa: mv88e6xxx: fix VTU methods for 6320 family
2afa5ea7c48d block: make sure ->nr_integrity_segments is cloned in blk_rq_prep_clone
ed7535b14116 block: remove the ioprio field from struct request
3e12e8c273eb block: remove the write_hint field from struct request
575601d08abf media: ov08x40: Add missing ov08x40_identify_module() call on stream-start
9c00d5445423 media: ov08x40: Move ov08x40_identify_module() function up
fc96a720d887 media: i2c: imx214: Fix link frequency validation
5a5ab62e4a76 media: i2c: imx214: Check number of lanes from device tree
2a60b6bef436 media: i2c: imx214: Replace register addresses with macros
694d85794ac6 media: i2c: imx214: Convert to CCI register access helpers
a9aa21098974 media: i2c: imx214: Simplify with dev_err_probe()
d3a38834b206 media: i2c: imx214: Use subdev active state
9d5752b85378 PM: EM: Address RCU-related sparse warnings
db3b3964af11 PM: EM: use kfree_rcu() to simplify the code
27ce35d80a1c mmc: sdhci-msm: fix dev reference leaked through of_qcom_ice_get
311a651fbb78 soc: qcom: ice: introduce devm_of_qcom_ice_get
1c9798bf8145 mm/vmscan: don't try to reclaim hwpoison folio
031273540275 tracing: Verify event formats that have "%*p.."
0b603e775979 tracing: Add __print_dynamic_array() helper
e62c31802dcc module: sign with sha512 instead of sha1 by default
2ee7ebed771b mips: Add '-std=gnu11' to vdso CFLAGS
b2c792d89ac5 yaffs2: switch from readlink_copy() to vfs_readlink()
807165b1ec1c tools/power/x86/intel-speed-select: Prefix header search path with sysroot
e97df805b938 drm/tilcdc: Set preferred depth
7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650
6d8ac5ebe6e8 aufs6: core
587abc1b64c4 aufs6: standalone
1af41d30ef42 aufs6: mmap
6ee2464d2e9d aufs6: base
103b676505f7 aufs6: kbuild
67281562943f qemux86: add configuration symbol to select values
73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs
1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter
918e7a825e8b clear_warn_once: bind a timer to written reset value
f533f87c3758 clear_warn_once: expand debugfs to include read support
f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS
e633abe9c44e libbpf: Fix build warning on ref_ctr_off
ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel.
03721ceb5626 perf: x86-32: explicitly include <errno.h>
4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long
b0200449610d perf: fix bench numa compilation
aff0940b2212 perf: add SLANG_INC for slang.h
ef912018d28c perf: add sgidefs.h to for mips builds
d8860f858b87 perf: change --root to --prefix for python install
dc38a0eee6e5 perf: add 'libperl not found' warning
6ed51f8786da perf: force include of <stdbool.h>
c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32()
63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat
7816667451ef FAT: Added FAT_NO_83NAME
f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option
771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option
a24784fd8f88 yaffs2: update to v6.12 folio changes
d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes
d097e4d4115a yaffs: fix mtime/itime field access
4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+
1b6619086e8b yaffs2: v6.5 fixups
25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length
5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap
55986a1284b3 yaffs2: replace bdevname call with sprintf
6f5508f8db8f yaffs2: convert read_page -> readfolio
fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL
c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name
78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested)
8d2dddba272c yaffs: include blkdev.h
8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API
27005cbac2ed yaffs2: v5.6 build fixups
668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read
285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super
ffc2ed489ccf yaffs: repair yaffs_get_mtd_device
6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API
19f283abc5d1 yaffs2: fix memory leak in mount/umount
04e84672b571 yaffs: Avoid setting any ACL releated xattr
4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1
81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis
26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY
a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020)
feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation
874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility
1d42508faee8 tools: use basename to identify file in gen-mach-types
4b055eca593d iwlwifi: select MAC80211_LEDS conditionally
97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119)
6dec58319165 defconfigs: drop obselete options
a416ccb5b6c9 linux-yocto: Handle /bin/awk issues
7efe8a1e5158 uvesafb: provide option to specify timeout for task completion
78d10ae07eca uvesafb: print error message when task timeout occurs
80473b7eb8ca compiler.h: Undef before redefining __attribute_const__
ddeff2f1a9a7 vmware: include jiffies.h
3dcdda8912b4 Resolve jiffies wrapping about arp
3b1507db6735 nfs: Allow default io size to be configured.
c2fedad05f77 check console device file on fs when booting
208d6fbada3f mount_root: clarify error messages for when no rootfs found
dbe9454c8ea0 mconf: fix output of cflags and libraries
7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location
b6c189c81397 modpost: mask trivial warnings
a5cc21325ba9 kbuild: exclude meta directory from distclean processing
361ec143c23f powerpc: serialize image targets
605e6ccb304c arm: serialize build targets
e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition
44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86
a08cb65331e6 x86_64_defconfig: Fix warnings
8ad332ef777b mips: make current_cpu_data preempt safe
754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code
325ff78ff44d mips: Kconfig: add QEMUMIPS64 option
99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency
c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c
8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018
16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var
6b60c874cbb0 arm64: defconfig: cleanup config options
8e44673ecd89 vexpress: Pass LOADADDR to Makefile
f34e6805aad5 arm: ARM EABI socketcall
94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault
(From OE-Core rev: e73ad0e21159523c814c9228e7ef585451df17d9)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 727b7c43af5192a26b4a0690b326af45d221fa9b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Integrating the following commit(s) to linux-yocto/.:
1/3 [
Author: Bruce Ashfield
Email: bruce.ashfield@gmail.com
Subject: genericarm64: build drivers as modules
Date: Tue, 6 May 2025 09:27:53 -0400
Load on demand. They should not be needed
to run the kernel since it has already been
loaded and firmware has already configured HW
enough to boot into kernel.
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
2/3 [
Author: Mikko Rapeli
Email: mikko.rapeli@linaro.org
Subject: nft_test.cfg: build CONFIG_LEDS_GPIO as module
Date: Tue, 22 Apr 2025 17:38:28 +0300
The driver can be compiled as module.
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
3/3 [
Author: Mikko Rapeli
Email: mikko.rapeli@linaro.org
Subject: nft_test.cfg: build CONFIG_VETH as module
Date: Tue, 22 Apr 2025 17:38:29 +0300
The driver can be compiled as module
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: b1d0c2ea78f6bc58c4abda5da771a5cbdaf1e47b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 50cc72621bf2253ada8f2704d8b1b89bc67f7d6a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
b6efa8ce222e Linux 6.12.24
ae5a6a0b425e HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition
bdbecb2bf531 s390/cpumf: Fix double free on error in cpumf_pmu_event_init()
281782d2c673 Bluetooth: hci_uart: Fix another race during initialization
f87626a55c21 media: mediatek: vcodec: mark vdec_vp9_slice_map_counts_eob_coef noinline
9c03f6194e88 kbuild: Add '-fno-builtin-wcslen'
5f494f482341 libbpf: Prevent compiler warnings/errors
bd6eae1f30bf x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions()
6a59b70fe71e nfsd: don't ignore the return code of svc_proc_register()
b2b18a9f68f9 NFSD: Fix CB_GETATTR status fix
560c03189615 NFSD: fix decoding in nfs4_xdr_dec_cb_getattr
7005fdceff20 ACPI: platform-profile: Fix CFI violation when accessing sysfs files
20867f094883 x86/paravirt: Move halt paravirt calls under CONFIG_PARAVIRT
5d9484cd372d iommufd: Fail replace if device has not been attached
6d11543bf37a iommufd: Make attach_handle generic than fault specific
9ca4fe357464 arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists
d25a240c5a93 thermal/drivers/mediatek/lvts: Disable Stage 3 thermal threshold
0131251d932f thermal/drivers/mediatek/lvts: Disable monitor mode during suspend
9580b603654d selftests: mptcp: fix incorrect fd checks in main_loop
2f1b4d6725b0 selftests: mptcp: close fd_in before returning in main_loop
0f91e4f69fe6 sched_ext: create_dsq: Return -EEXIST on duplicate request
7a30bbd36cb4 s390: Fix linker error when -no-pie option is unavailable
f268ee2fbb53 s390/virtio_ccw: Don't allocate/assign airqs for non-existing queues
05a0f9c40781 s390/pci: Fix zpci_bus_is_isolated_vf() for non-VFs
92ca7270fe5e ring-buffer: Use flush_kernel_vmap_range() over flush_dcache_folio()
de08212061ea pinctrl: samsung: add support for eint_fltcon_offset
c1368383cd37 pinctrl: qcom: Clear latched interrupt status when changing IRQ type
beb9a5cb7aa5 phy: freescale: imx8m-pcie: assert phy reset and perst in power off
869202291aa4 PCI: Fix wrong length of devres array
9707d0c932f4 PCI: Fix reference leak in pci_register_host_bridge()
d69ad6e1a579 PCI: Fix reference leak in pci_alloc_child_bus()
e4a1d7defbc2 PCI: pciehp: Avoid unnecessary device replacement check
ce9643a541b6 PCI: j721e: Fix the value of .linkdown_irq_regfield for J784S4
71bf0769a6c6 PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe()
712d84459a53 of/irq: Fix device node refcount leakages in of_irq_init()
d0f25a99770f of/irq: Fix device node refcount leakage in API irq_of_parse_and_map()
29cb94963ca9 of/irq: Fix device node refcount leakages in of_irq_count()
3540164c7594 of/irq: Fix device node refcount leakage in API of_irq_parse_raw()
dc83eccc93ed of/irq: Fix device node refcount leakage in API of_irq_parse_one()
60faeef98b99 ntb: use 64-bit arithmetic for the MSI doorbell mask
34baf1cfd679 net: mana: Switch to page pool for jumbo frames
a2acc67d6155 misc: pci_endpoint_test: Fix displaying 'irq_type' after 'request_irq' error
e98f77f74c66 selftests/landlock: Add a new test for setuid()
76ab50fa6e35 selftests/landlock: Split signal_scoping_threads tests
b017f2846a3e landlock: Prepare to add second errata
332facfa8075 landlock: Always allow signals between threads of the same process
7dd7f87e0711 landlock: Add erratum for TCP fix
ea980ea4d18a landlock: Add the errata interface
9b0d24fa64ca landlock: Move code to ease future backports
7bc5c360375d KVM: x86: Acquire SRCU in KVM_GET_MP_STATE to protect guest memory accesses
bbf821c35dab KVM: x86: Explicitly zero-initialize on-stack CPUID unions
99b99032a89e KVM: PPC: Enable CAP_SPAPR_TCE_VFIO on pSeries KVM guests
fae0a8796c4f KVM: Allow building irqbypass.ko as as module when kvm.ko is a module
3bc2208c749c gve: handle overflow when reporting TX consumed descriptors
62024ad4c51e gpio: zynq: Fix wakeup source leaks on device unbind
2d66517135de gpio: tegra186: fix resource handling in ACPI probe path
e66fb9b4e9ad ftrace: Properly merge notrace hashes
1fce9574b9d5 ftrace: Add cond_resched() to ftrace_graph_set_hash()
3e467f1c74f4 dt-bindings: coresight: qcom,coresight-tpdm: Fix too many 'reg'
58c453801bb9 dt-bindings: coresight: qcom,coresight-tpda: Fix too many 'reg'
74f01c2ca802 dm-verity: fix prefetch-vs-suspend race
dd91458a8443 dm-integrity: fix non-constant-time tag verification
ba42f98f092b dm-integrity: set ti->error on memory allocation failure
a1a4fdc33d9c dm-ebs: fix prefetch-vs-suspend race
08deafddfcb0 dlm: fix error if active rsb is not hashed
b77f8a17ef6f dlm: fix error if inactive rsb is not hashed
eaa7014aecb5 crypto: ccp - Fix uAPI definitions of PSP errors
5116b340cf88 crypto: ccp - Fix check for the primary ASP device
1f9648e2460b clk: qcom: gdsc: Set retain_ff before moving to HW CTRL
4d6fb2a43f0d clk: qcom: gdsc: Capture pm_genpd_add_subdomain result code
12ef07c4bfe4 clk: qcom: gdsc: Release pm subdomains in reverse add order
809e83a5758e clk: qcom: clk-branch: Fix invert halt status bit check for votable clocks
56c29847bc4c clk: renesas: r9a07g043: Fix HP clock source for RZ/Five
4ed194d9bbf7 cifs: Ensure that all non-client-specific reparse points are processed by the server
2a240405978d cifs: fix integer overflow in match_server()
e0717385f5c5 cifs: avoid NULL pointer dereference in dbg call
2eb6e5e0944c CIFS: Propagate min offload along with other parameters from primary to secondary channels.
63d71ae01092 thermal/drivers/rockchip: Add missing rk3328 mapping entry
474b3194c8ff tracing: Do not add length to print format in synthetic events
868df4eb784c tracing: fprobe events: Fix possible UAF on modules
a7fda1fd6d6c x86/xen: fix balloon target initialization for PVH dom0
9e7c37fadb3b sctp: detect and prevent references to a freed transport in sendmsg
65b259e3e06d mm/hwpoison: introduce folio_contain_hwpoisoned_page() helper
1fd89407d7cb mm/hugetlb: move hugetlb_sysctl_init() to the __init section
73d17d48df6c mm/hwpoison: do not send SIGBUS to processes with recovered clean pages
14936034de92 mm/userfaultfd: fix release hang over concurrent GUP
cc98577f9117 mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock
2532df0a9b74 mm/mremap: correctly handle partial mremap() of VMA starting at 0
6dd8d9440fd3 mm: fix lazy mmu docs and usage
83b6b5061ebd mm: make page_mapped_in_vma() hugetlb walk aware
53dc6b00c02d mm/rmap: reject hugetlb folios in folio_make_device_exclusive()
ab0af0126023 mm/damon/ops: have damon_get_folio return folio even for tail pages
5f7f6abd92b6 net: Fix null-ptr-deref by sock_lock_init_class_and_name() and rmmod.
fba396b79942 sparc/mm: avoid calling arch_enter/leave_lazy_mmu() in set_ptes
690446dc72d5 sparc/mm: disable preemption in lazy mmu mode
cb6b9bd66181 iommu/vt-d: Wire up irq_ack() to irq_move_irq() for posted MSIs
6722a0cb8186 iommu/vt-d: Fix possible circular locking dependency
e953e11123aa iommu/vt-d: Don't clobber posted vCPU IRTE when host IRQ affinity changes
c95a438d2c37 iommu/vt-d: Put IRTE back into posted MSI mode if vCPU posting is disabled
e5dd974d6e00 iommu/tegra241-cmdqv: Fix warnings due to dmam_free_coherent()
b8b41eac7054 iommufd: Fix uninitialized rc in iommufd_access_rw()
327e6b8b2816 btrfs: zoned: fix zone finishing with missing devices
380ba38801eb btrfs: zoned: fix zone activation with missing devices
b9af27d020e4 btrfs: tests: fix chunk map leak after failure to add it to the tree
601db4e8bfe8 btrfs: fix non-empty delayed iputs list on unmount due to compressed write workers
61a5c565fd24 backlight: led_bl: Hold led_access lock when calling led_sysfs_disable()
a3b36c9da305 arm64: dts: exynos: gs101: disable pinctrl_gsacore node
ac45d49df9dc arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string
1dd288783dcb arm64: mm: Correct the update of max_pfn
21c512430424 arm64: tegra: Remove the Orin NX/Nano suspend key
eec737e17e55 arm64: mops: Do not dereference src reg for a set operation
52f251dbfb38 mtd: rawnand: Add status chack in r852_ready()
5479a6af3c96 mtd: inftlcore: Add error check for inftl_read_oob()
6554491b4a77 mptcp: only inc MPJoinAckHMacFailure for HMAC failures
dc81e41a307d mptcp: fix NULL pointer in can_accept_new_subflow
c7f611e711c8 lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets
95f0958240e6 locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class()
008b90d36d91 mailbox: tegra-hsp: Define dimensioning masks in SoC data
7b47df6498f2 mfd: ene-kb3930: Fix a potential NULL pointer dereference
4b037851edd7 leds: rgb: leds-qcom-lpg: Fix calculation of best period Hi-Res PWMs
5ae9e361e284 leds: rgb: leds-qcom-lpg: Fix pwm resolution max for Hi-Res PWMs
e94314b72768 kbuild: exclude .rodata.(cst|str)* when building ranges
9eaec071f111 jbd2: remove wrong sb->s_sequence check
e6bba328578f i3c: Add NULL pointer check in i3c_master_queue_ibi()
34aaf448e204 i3c: master: svc: Use readsb helper for reading MDB
0327683c5571 ima: limit the number of ToMToU integrity violations
48085ab823f0 ima: limit the number of open-writers integrity violations
9a264e4a595d smb311 client: fix missing tcon check when mounting with linux/posix extensions
44a2572a0fdc soc: samsung: exynos-chipid: Add NULL pointer check in exynos_chipid_probe()
fbda9cac1bb3 svcrdma: do not unregister device for listeners
f3cb81cb96d5 tpm: do not start chip while suspended
76cc21a9a40f udf: Fix inode_getblk() return value
8fd217a99dbb vdpa/mlx5: Fix oversized null mkey longer than 32bit
a1dde7457d57 f2fs: fix to avoid atomicity corruption of atomic file
16d9067f00e3 ext4: fix off-by-one error in do_split
a77955f7704b bus: mhi: host: Fix race between unprepare and queue_buf
7d12a7d43c7b accel/ivpu: Fix deadlock in ivpu_ms_cleanup()
5c200b7ebdf9 accel/ivpu: Fix warning in ivpu_ipc_send_receive_internal()
7022946773d7 ALSA: hda/realtek: Enable Mute LED on HP OMEN 16 Laptop xd000xx
d2a2076d9cb7 ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path
17f1e4213113 ASoC: qdsp6: q6apm-dai: fix capture pipeline overruns.
aa7e9eabe68c ASoC: qdsp6: q6apm-dai: set 10 ms period and buffer alignment.
a28217b064f8 ASoC: q6apm-dai: make use of q6apm_get_hw_pointer
f5891f204d13 ASoC: q6apm-dai: schedule all available frames to avoid dsp under-runs
d383051f8293 ASoC: q6apm: add q6apm_get_hw_pointer helper
acadb2e2b3c5 ASoC: codecs: wcd937x: fix a potential memory leak in wcd937x_soc_codec_probe()
3e0356857ed5 io_uring/kbuf: reject zero sized provided buffers
b7c6d081c19a io_uring/net: fix io_req_post_cqe abuse by send bundle
0828d6e9add6 io_uring/net: fix accept multishot handling
00026f80c430 wifi: mt76: mt7925: fix the wrong simultaneous cap for MLO
374f2bf7b3ff wifi: mt76: mt7925: fix the wrong link_idx when a p2p_device is present
0dd6c62c1370 wifi: mt76: mt7925: fix country count limitation for CLC
1706a07b38ae wifi: mt76: mt7925: ensure wow pattern command align fw format
eb434adf79dd wifi: mac80211: fix integer overflow in hwmp_route_info_get()
ef44c9e81172 wifi: mt76: Add check for devm_kstrdup()
9d6b789a8ff9 clocksource/drivers/stm32-lptimer: Use wakeup capable instead of init wakeup
9d99358349e4 mtd: Replace kcalloc() with devm_kcalloc()
2b27df685244 net: dsa: mv88e6xxx: fix internal PHYs for 6320 family
020404265b87 net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family
39fc12742292 mtd: Add check for devm_kcalloc()
91e1405088a9 mptcp: sockopt: fix getting freebind & transparent
1b4ecd033e30 mptcp: sockopt: fix getting IPV6_V6ONLY
c59dc7c425cc media: chips-media: wave5: Fix timeout while testing 10bit hevc fluster
d595713de7f8 media: chips-media: wave5: Fix a hang after seeking
76cab9f540cc media: chips-media: wave5: Avoid race condition in the interrupt handler
7fafaf00cc5f media: chips-media: wave5: Fix gray color on screen
6f77a6d2ea31 media: i2c: imx214: Rectify probe error handling related to runtime PM
8dd2d1561c6a media: i2c: imx219: Rectify runtime PM handling in probe and remove
99f929914713 media: i2c: imx319: Rectify runtime PM handling probe and remove
bb3fd8b7906a media: venus: hfi_parser: refactor hfi packet parsing logic
53e376178cea media: venus: hfi_parser: add check to avoid out of bound access
3da0d7318730 media: nuvoton: Fix reference handling of ece_pdev
4b1bdaadbf19 media: nuvoton: Fix reference handling of ece_node
e22fa60bcd85 media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO
b155aecd7f0f media: i2c: ov7251: Set enable GPIO low in probe
ad466aacb17f media: i2c: ccs: Set the device's runtime PM status correctly in probe
983b5434a66b media: i2c: ccs: Set the device's runtime PM status correctly in remove
3ff4feef7af3 Revert "media: imx214: Fix the error handling in imx214_probe()"
baea1762cdf2 media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf()
b933486f6b80 media: imx219: Adjust PLL settings based on the number of MIPI lanes
dd0d323b472f media: platform: stm32: Add check for clk_enable()
3f1f712f80db media: visl: Fix ERANGE error when setting enum controls
f67c3f84520b media: hi556: Fix memory leak (on error) in hi556_check_hwcfg()
df6ef66cc3ff media: streamzap: prevent processing IR data on URB failure
afada73000be accel/ivpu: Fix PM related deadlocks in MS IOCTLs
4c8056fbb17d tpm, tpm_tis: Fix timeout handling when waiting for TPM status
7266066b9469 mtd: rawnand: brcmnand: fix PM resume warning
33607e924023 spi: cadence-qspi: Fix probe on AM62A LP SK
c32278961340 KVM: arm64: Tear down vGIC on failed vCPU creation
20c105f58769 arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list
3b0f2526c87e arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB
4af285843525 arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list
2ff58c5b260f arm64: cputype: Add MIDR_CORTEX_A76AE
7e619d4d2715 xenfs/xensyms: respect hypervisor's "next" indication
88962f197876 media: rockchip: rga: fix rga offset lookup
ceb23f66ef8f media: siano: Fix error handling in smsdvb_module_init()
7631d176086c media: vim2m: print device name after registering device
679424f8b314 media: venus: hfi: add check to handle incorrect queue size
530f623f56a6 media: venus: hfi: add a check to handle OOB in sfr region
72629a582db7 media: intel/ipu6: set the dev_parent of video device to pdev
f598940803cd media: mgb4: Fix switched CMT frequency range "magic values" sets
66e35600f726 media: i2c: adv748x: Fix test pattern selection mask
1c673fa8889e media: mgb4: Fix CMT registers update logic
ced0ddecc04b media: uapi: rkisp1-config: Fix typo in extensible params example
8c64a2cfdbb8 media: mtk-vcodec: venc: avoid -Wenum-compare-conditional warning
9f009fa823c5 media: mediatek: vcodec: Fix a resource leak related to the scp device in FW initialization
956c5e4965d5 dt-bindings: media: st,stmipid02: correct lane-polarities maxItems
a9a73da6e014 auxdisplay: hd44780: Fix an API misuse in hd44780.c
bdbc38bd12eb HID: pidff: Fix set_device_control()
1565ead12f5c HID: pidff: Fix 90 degrees direction name North -> East
5318556ed31f HID: pidff: Compute INFINITE value instead of using hardcoded 0xffff
b15301f28960 HID: pidff: Clamp effect playback LOOP_COUNT value
42ec3b5bf7e6 HID: pidff: Rename two functions to align them with naming convention
b782892cd264 HID: pidff: Remove redundant call to pidff_find_special_keys
239c8ac58cfc HID: pidff: Support device error response from PID_BLOCK_LOAD
2d698115f9b3 HID: pidff: Comment and code style update
35ebc643aff9 HID: hid-universal-pidff: Add Asetek wheelbases support
211861869766 HID: pidff: Make sure to fetch pool before checking SIMULTANEOUS_MAX
13d15dd6175e HID: pidff: Factor out pool report fetch and remove excess declaration
6fbf2ac6d5b6 HID: pidff: Use macros instead of hardcoded min/max values for shorts
87783d301e98 HID: pidff: Simplify pidff_rescale_signed
61e4de1728ac HID: pidff: Move all hid-pidff definitions to a dedicated header
8f0b2d791e0f HID: pidff: Factor out code for setting gain
5243ca2a5c67 HID: pidff: Rescale time values to match field units
7009a060ffef HID: pidff: Define values used in pidff_find_special_fields
9cdd95f9a4f3 HID: pidff: Simplify pidff_upload_effect function
433c4234ff73 HID: pidff: Completely rework and fix pidff_reset function
2b1e13ed295a HID: pidff: Stop all effects before enabling actuators
629405d18543 HID: pidff: Clamp PERIODIC effect period to device's logical range
43e5e2879dee s390/pci: Fix s390_mmio_read/write syscall page fault handling
dd3edffae868 ext4: don't treat fhandle lookup of ea_inode as FS corruption
806908d5d978 bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags
7b9bdd705911 erofs: set error to bio if file-backed IO fails
61f590c6771b pwm: fsl-ftm: Handle clk_get_rate() returning 0
a2786a82de0c pwm: rcar: Improve register calculation
4cb15042b5f3 pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config()
2bef78f9622d tpm: End any active auth session before shutdown
01c2ed3f7dce tpm, tpm_tis: Workaround failed command reception on Infineon devices
a4e3c80cecbe ktest: Fix Test Failures Due to Missing LOG_FILE Directories
9a6be23eb0ff tracing: probe-events: Add comments about entry data storing code
52eafaa56f8f fbdev: omapfb: Add 'plane' value check
fb4c507bf24a drm/amdgpu: grab an additional reference on the gang fence v2
5c3cfcf0b4bf PCI: vmd: Make vmd_dev::cfg_lock a raw_spinlock_t type
73d2b9625031 PCI: Check BAR index for validity
e64be12f8401 drm/amdgpu: Fix the race condition for draining retry fault
8feefd106afb PCI: Enable Configuration RRS SV early
dc4380f34613 drm/amdgpu: handle amdgpu_cgs_create_device() errors in amd_powerplay_create()
7a872981c69d PCI: Add Rockchip Vendor ID
6e415cb823b1 drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off
39a7576d113c drm/mediatek: mtk_dpi: Move the input_2p_en bit to platform data
831c4017f4ab drm/xe/xelp: Move Wa_16011163337 from tunings to workarounds
1a322b330dc0 drm/amdkfd: debugfs hang_hws skip GPU with MES
10ce36501f1e drm/amdkfd: Fix pqm_destroy_queue race with GPU reset
ffd37d7d44d7 drm/amdkfd: Fix mode1 reset crash issue
96757c085bd9 drm/amdkfd: clamp queue size to minimum
1c38108a49aa drivers: base: devres: Allow to release group on device release
c9323cbc94d5 drm/amd/display: stop DML2 from removing pipes based on planes
b22cb42a5ee1 drm/bridge: panel: forbid initializing a panel with unknown connector type
f04612890c56 drm/debugfs: fix printk format for bridge index
ba5a998f84cd drm: panel-orientation-quirks: Add quirk for OneXPlayer Mini (Intel)
a64e0974266e drm: panel-orientation-quirks: Add new quirk for GPD Win 2
5dd6fdb88953 drm: panel-orientation-quirks: Add quirk for AYA NEO Slide
6fe4ed94ee82 drm: panel-orientation-quirks: Add quirks for AYA NEO Flip DS and KB
df33b535f0de drm: panel-orientation-quirks: Add support for AYANEO 2S
357ba4ed6980 drm/amdgpu: Unlocked unmap only clear page table leaves
c15a9c84494c drm/amd/display: Update Cursor request mode to the beginning prefetch always
2eec2fa8666d drm/xe/vf: Don't try to trigger a full GT reset if VF
4a5f14246bc4 drm/xe/bmg: Add new PCI IDs
044c1b352841 drm: allow encoder mode_set even when connectors change for crtc
09246dfb5c87 Bluetooth: Add quirk for broken READ_PAGE_SCAN_TYPE
035e1bffc063 Bluetooth: Add quirk for broken READ_VOICE_SETTING
feed98579d40 Bluetooth: qca: simplify WCN399x NVM loading
fe6f1f349d6e Bluetooth: hci_qca: use the power sequencer for wcn6750
a4d49212e316 Bluetooth: btusb: Add 2 HWIDs for MT7922
6b7a32fa9bac Bluetooth: hci_uart: fix race during initialization
082ae971a1db Bluetooth: btintel_pcie: Add device id of Whale Peak
40c70ff44b70 tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER
299d7d27af6b net: vlan: don't propagate flags on open
fe51630ba2ba wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table
bf089c4d1141 btrfs: harden block_group::bg_list against list_del() races
0519ba030c3e ahci: Marvell 88SE9215 controllers prefer DMA for ATAPI
7fe3b4deed8b scsi: st: Fix array overflow in st_setup()
a8a8076210c2 cdc_ether|r8152: ThinkPad Hybrid USB-C/A Dock quirk
eb59cc31b6ea ext4: ignore xattrs past end
aa39d45071ec Revert "f2fs: rebuild nat_bits during umount"
5f815757e6de ext4: protect ext4_release_dquot against freezing
202ba2f483cd ahci: add PCI ID for Marvell 88SE9215 SATA Controller
163e8c1083b4 net: sfp: add quirk for FS SFP-10GM-T copper SFP+ module
ecc461331604 f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks()
3abe15e75648 wifi: ath12k: Fix invalid data access in ath12k_dp_rx_h_undecap_nwifi
1833e1650059 net: sfp: add quirk for 2.5G OEM BX SFP
04c0c555049f ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode
ccd97c8a4f90 jfs: add sanity check for agwidth in dbMount
aeb926e605f9 jfs: Prevent copying of nlink with value 0 from disk inode
c802a6a4009f fs/jfs: Prevent integer overflow in AG size calculation
319877db0aa9 fs/jfs: cast inactags to s64 to prevent potential overflow
63148ce4904f jfs: Fix uninit-value access of imap allocated in the diMount() function
8e7bb6636082 can: flexcan: add NXP S32G2/S32G3 SoC support
fba5f41f1536 can: flexcan: Add quirk to handle separate interrupt lines for mailboxes
7204335d1991 page_pool: avoid infinite loop to schedule delayed worker
de94d0ca9ea5 net: usb: asix_devices: add FiberGecko DeviceID
93a562eedcd5 scsi: target: spc: Fix RSOC parameter data header size
4ae2c7c7d369 wifi: mac80211: ensure sdata->work is canceled before initialized.
cca16fbd17b0 wifi: mac80211: add strict mode disabling workarounds
c6e50cb8bf57 f2fs: don't retry IO for corrupted data scenario
a6bf0fd322ab net: page_pool: don't cast mp param to devmem
65ba18c84dbd scsi: mpi3mr: Synchronous access b/w reset and tm thread for reply queue
6a35449df867 scsi: mpi3mr: Avoid reply queue full condition
b1e0b4f494c5 ata: libata-core: Add 'external' to the libata.force kernel parameter
535b666118f6 wifi: ath12k: Fix invalid entry fetch in ath12k_dp_mon_srng_process
3cb47b50926a wifi: ath12k: fix memory leak in ath12k_pci_remove()
a3981850f14e wifi: ath11k: fix memory leak in ath11k_xxx_remove()
b92c5179db4b wifi: ath11k: Fix DMA buffer allocation to resolve SWIOTLB issues
90a5892d8531 platform/x86: x86-android-tablets: Add select POWER_SUPPLY to Kconfig
7f04c9e8fffe ASoC: amd: yc: update quirk data for new Lenovo model
3a03a7f0f872 ASoC: amd: Add DMI quirk for ACP6X mic support
cb1c6cb11056 ALSA: usb-audio: Fix CME quirk for UF series keyboards
fe74885e3609 mmc: dw_mmc: add a quirk for accessing 64-bit FIFOs in two halves
6d32a30fa1b5 media: s5p-mfc: Corrected NV12M/NV21M plane-sizes
3c057a49045f media: uvcvideo: Add quirk for Actions UVC05
d4fcd06e1231 ASoC: fsl_audmix: register card device depends on 'dais' property
d981c3d2980a ALSA: hda: intel: Add Lenovo IdeaPad Z570 to probe denylist
97ae1d5080f7 ALSA: hda: intel: Fix Optimus when GPU has no sound
25490b45d17c ASoC: amd: ps: use macro for ACP6.3 pci revision id
f8f4d77710e1 HID: pidff: Fix null pointer dereference in pidff_find_fields
0301b85fe6f9 HID: pidff: Add PERIODIC_SINE_ONLY quirk
f45f26a6b3e7 HID: Add hid-universal-pidff driver and supported device ids
116d4f67aeb5 HID: pidff: Add FIX_WHEEL_DIRECTION quirk
ed806fd80eba HID: pidff: Add hid_pidff_init_with_quirks and export as GPL symbol
6a20fae104ef HID: pidff: Add PERMISSIVE_CONTROL quirk
fd608e2a06c2 HID: pidff: Add MISSING_PBO quirk and its detection
fab3dbb604be HID: pidff: Add MISSING_DELAY quirk and its detection
d21ccf544ca1 HID: pidff: Do not send effect envelope if it's empty
1c0785f16472 HID: pidff: Convert infinite length from Linux API to PID standard
5330ce1ee2be ASoC: SOF: topology: Use krealloc_array() to replace krealloc()
377b041c22ac platform/chrome: cros_ec_lpc: Match on Framework ACPI device
97f68e7287e0 zstd: Increase DYNAMIC_BMI2 GCC version cutoff from 4.8 to 11.0 to work around compiler segfault
8d0f280e7aec xen/mcelog: Add __nonstring annotations for unterminated strings
cb58e909203e arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD
ead1fc9f93e2 Flush console log from kernel_power_off()
11ae4fec1f4b PM: hibernate: Avoid deadlock in hibernate_compressor_param_set()
89a4db7a67e7 perf/dwc_pcie: fix some unreleased resources
1b3ebfb15dc0 perf: arm_pmu: Don't disable counter in armpmu_add()
f48625eeeb29 x86/cpu: Don't clear X86_FEATURE_LAHF_LM flag in init_amd_k8() on AMD when running in a virtual machine
48e705652db9 x86/ia32: Leave NULL selector values 0~3 unchanged
640bb2252158 x86/percpu: Disable named address spaces for UBSAN_BOOL with KASAN for GCC < 14.2
837f5cb7be9a x86/mm: Clear _PAGE_DIRTY for kernel mappings when we clear _PAGE_RW
f8d28fa305b7 pm: cpupower: bench: Prevent NULL dereference on malloc failure
67e85cfa951c umount: Allow superblock owners to force umount
52535688c27f fs: consistently deref the files table with rcu_dereference_raw()
fa1827fa968c perf: Fix hang while freeing sigtrap event
7ef5aa081f98 perf/core: Simplify the perf_event_alloc() error path
c61feda37350 perf/core: Add aux_pause, aux_resume, aux_start_paused
a0842539e8ef iommu/mediatek: Fix NULL pointer deference in mtk_iommu_device_group
5efd53900acc iommu/exynos: Fix suspend/resume with IDENTITY domain
7640c2abb647 nft_set_pipapo: fix incorrect avx2 match of 5th field octet
b4c836d33ca8 net: ppp: Add bound checking for skb data on ppp_sync_txmung
cc16f7402a91 ipv6: Align behavior across nexthops during path selection
a6ed6f8ec81b net: phy: allow MDIO bus PM ops to start/stop state machine for phylink-controlled PHY
6d98cd63426e net: phy: move phy_link_change() prior to mdio_bus_phy_may_suspend()
aa5a1e4b8829 smb: client: fix UAF in decryption with multichannel
f86293adce0c net_sched: sch_sfq: move the limit validation
70449ca40609 net_sched: sch_sfq: use a temporary work area for validating configuration
ec12da4bcc44 nvmet-fcloop: swap list_add_tail arguments
c5a906806162 drm/i915/huc: Fix fence not released on early probe errors
0ae84adbc9cc ata: sata_sx4: Add error handling in pdc20621_i2c_read()
ad81d666e114 net: libwx: handle page_pool_dev_alloc_pages error
c81306c9d6d9 drm/tests: probe-helper: Fix drm_display_mode memory leak
80f4dc6e1f5b drm/tests: modes: Fix drm_display_mode memory leak
c7a0a32e6cf7 drm/tests: cmdline: Fix drm_display_mode memory leak
f951d643bc26 drm/tests: helpers: Create kunit helper to destroy a drm_display_mode
71dd750a0834 drm/tests: modeset: Fix drm_display_mode memory leak
a065b9960526 net: ethtool: Don't call .cleanup_data when prepare_data fails
b2f3c3d57a83 tc: Ensure we have enough buffer space when sending filter netlink notifications
f0bb06b9f1d0 octeontx2-pf: qos: fix VF root node parent queue index
9fcbca0f8015 net: tls: explicitly disallow disconnect
4d55144b12e7 codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog()
7c5957f7905b tipc: fix memory leak in tipc_link_xmit
1b7685256db2 objtool: Fix INSN_CONTEXT_SWITCH handling in validate_unret()
ee2b0301d6bf ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe()
9e0bdc15579e drm/xe/hw_engine: define sysfs_ops on all directories
857e9432dab9 x86/acpi: Don't limit CPUs to 1 for Xen PV guests due to disabled ACPI
9ddc7edc558a drm/i915: Disable RPG during live selftest
caa5c8a23586 ublk: fix handling recovery & reissue in ublk_abort_queue()
cb8372e54fdb ublk: refactor recovery configuration flag helpers
206d0df7b6a5 selftests/futex: futex_waitv wouldblock test should fail
179ef2f8109e gpiolib: of: Fix the choice for Ingenic NAND quirk
cdb6e724e7c5 cgroup/cpuset: Fix race between newly created partition and dying one
1b06f00edaaa cgroup/cpuset: Further optimize code if CONFIG_CPUSETS_V1 not set
6b145f8b2201 cgroup/cpuset: Enforce at most one rebuild_sched_domains_locked() call per operation
2dbd1b166034 cgroup/cpuset: Revert "Allow suppression of sched domain rebuild in update_cpumasks_hier()"
9701dcbf5fce cgroup/cpuset: Fix error handling in remote_partition_disable()
40bc55e4fcbd cgroup/cpuset: Fix incorrect isolated_cpus update in update_parent_effective_cpumask()
b980b832318c ASoC: Intel: adl: add 2xrt1316 audio configuration
2ee7ebed771b mips: Add '-std=gnu11' to vdso CFLAGS
b2c792d89ac5 yaffs2: switch from readlink_copy() to vfs_readlink()
807165b1ec1c tools/power/x86/intel-speed-select: Prefix header search path with sysroot
e97df805b938 drm/tilcdc: Set preferred depth
7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650
6d8ac5ebe6e8 aufs6: core
587abc1b64c4 aufs6: standalone
1af41d30ef42 aufs6: mmap
6ee2464d2e9d aufs6: base
103b676505f7 aufs6: kbuild
67281562943f qemux86: add configuration symbol to select values
73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs
1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter
918e7a825e8b clear_warn_once: bind a timer to written reset value
f533f87c3758 clear_warn_once: expand debugfs to include read support
f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS
e633abe9c44e libbpf: Fix build warning on ref_ctr_off
ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel.
03721ceb5626 perf: x86-32: explicitly include <errno.h>
4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long
b0200449610d perf: fix bench numa compilation
aff0940b2212 perf: add SLANG_INC for slang.h
ef912018d28c perf: add sgidefs.h to for mips builds
d8860f858b87 perf: change --root to --prefix for python install
dc38a0eee6e5 perf: add 'libperl not found' warning
6ed51f8786da perf: force include of <stdbool.h>
c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32()
63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat
7816667451ef FAT: Added FAT_NO_83NAME
f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option
771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option
a24784fd8f88 yaffs2: update to v6.12 folio changes
d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes
d097e4d4115a yaffs: fix mtime/itime field access
4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+
1b6619086e8b yaffs2: v6.5 fixups
25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length
5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap
55986a1284b3 yaffs2: replace bdevname call with sprintf
6f5508f8db8f yaffs2: convert read_page -> readfolio
fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL
c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name
78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested)
8d2dddba272c yaffs: include blkdev.h
8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API
27005cbac2ed yaffs2: v5.6 build fixups
668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read
285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super
ffc2ed489ccf yaffs: repair yaffs_get_mtd_device
6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API
19f283abc5d1 yaffs2: fix memory leak in mount/umount
04e84672b571 yaffs: Avoid setting any ACL releated xattr
4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1
81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis
26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY
a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020)
feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation
874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility
1d42508faee8 tools: use basename to identify file in gen-mach-types
4b055eca593d iwlwifi: select MAC80211_LEDS conditionally
97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119)
6dec58319165 defconfigs: drop obselete options
a416ccb5b6c9 linux-yocto: Handle /bin/awk issues
7efe8a1e5158 uvesafb: provide option to specify timeout for task completion
78d10ae07eca uvesafb: print error message when task timeout occurs
80473b7eb8ca compiler.h: Undef before redefining __attribute_const__
ddeff2f1a9a7 vmware: include jiffies.h
3dcdda8912b4 Resolve jiffies wrapping about arp
3b1507db6735 nfs: Allow default io size to be configured.
c2fedad05f77 check console device file on fs when booting
208d6fbada3f mount_root: clarify error messages for when no rootfs found
dbe9454c8ea0 mconf: fix output of cflags and libraries
7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location
b6c189c81397 modpost: mask trivial warnings
a5cc21325ba9 kbuild: exclude meta directory from distclean processing
361ec143c23f powerpc: serialize image targets
605e6ccb304c arm: serialize build targets
e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition
44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86
a08cb65331e6 x86_64_defconfig: Fix warnings
8ad332ef777b mips: make current_cpu_data preempt safe
754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code
325ff78ff44d mips: Kconfig: add QEMUMIPS64 option
99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency
c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c
8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018
16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var
6b60c874cbb0 arm64: defconfig: cleanup config options
8e44673ecd89 vexpress: Pass LOADADDR to Makefile
f34e6805aad5 arm: ARM EABI socketcall
94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault
(From OE-Core rev: 7714ed379e2678a88f348937faef727ccd64c0b9)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f96ac747ac427605c2550db280be1a7d569f103e)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The project is switching the way handle our CDN provision of sstate objects,
update the URL accordingly.
(Bitbake rev: 74c28e14a9b5e2ff908a03f93c189efa6f56b0ca)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3372524cb961d95993b27fe4a8d794cdb7255e09)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The UBUNTU_DEBIAN_HOST_PACKAGES_ESSENTIAL macro was removed after
8d993022c2ae ("docs: use literalinclude for system requirements").
Replace by the literalinclude like in the reference manual.
Reported-by: "Robert P. J. Day" <rpjday@crashcourse.ca>
(From yocto-docs rev: 953c203cff5f936b34530c150343cf54ade16653)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 1316bd95f4c4107549de34b78bca0499233497e8)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Fix as many instances of unbalanced-inline-literals-delimiters as reported
by 'make sphinx-lint' as possible. Sphinx and/or its linter seem to get
tripped up randomly when references contain links to a heading which
contain literals enclosed in double-back-tics; especially in the cases
where a heading either contains multiple literals or when the literal is
not at the end of the heading. Not all of them can be "fixed" to pass both
building and linting.
(From yocto-docs rev: 73f4a3e3efce8c4e43939e5053f128faae5b41b1)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 3460177c46d360b0f2f852cdab23f21bd4ec6d5a)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This modifies the default indexer split() and js splitQuery()
methods to support searching for words with hyphens.
While this might not be an ideal, rock solid, and fully future-proof
solution, it allows at least to search for strings inlcuding hyphens,
such as 'bitbake-layers', 'send-error-report', or 'oe-core'.
Below is a bit more detailed explanation of the two modifications done:
1) The default split regex in the sphinx-doc SearchLanguage base class
is:
| _word_re = re.compile(r'\w+')
which we simply extend to include hyphens '-'.
This will result in a searchindex.js that contains words with hyphens,
too.
2) The 'searchtool.js' code notes for its splitQuery() implementation:
| /**
| * Default splitQuery function. Can be overridden in ``sphinx.search`` with a
| * custom function per language.
| *
| * The regular expression works by splitting the string on consecutive characters
| * that are not Unicode letters, numbers, underscores, or emoji characters.
| * This is the same as ``\W+`` in Python, preserving the surrogate pair area.
| */
| if (typeof splitQuery === "undefined") {
| var splitQuery = (query) => query
| .split(/[^\p{Letter}\p{Number}_\p{Emoji_Presentation}]+/gu)
| .filter(term => term) // remove remaining empty strings
| }
The hook for this is documented in the sphinx-docs 'SearchLanguage'
base class.
| .. attribute:: js_splitter_code
|
| Return splitter function of JavaScript version. The function should be
| named as ``splitQuery``. And it should take a string and return list of
| strings.
|
| .. versionadded:: 3.0
We use this to define a simplified splitQuery() function with a split
argument that splits on empty spaces only.
We extend SearchEnglish (which extends SearchLanguage) here to retain
the stemmer code and stopwords for English.
[YOCTO #14534]
(From yocto-docs rev: 15c2965bdb0040e5745022c8098f434cd1a156e9)
Signed-off-by: Enrico Jörns <ejo@pengutronix.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit d4a98ee19e0cbd6be96923dc72faee143a6b294b)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Since 3.51.0, python3-pygobject depends on libgirepository 2.0 provided
by glib-2.0 instead of libgirepository 1.0 provided by
gobject-introspection[1]. It still needs the typelib files from
libgirepository-1.0 package. Add gobject-introspection as a runtime
dependency.
Fixes:
$ python3
Python 3.13.2 (main, Feb 4 2025, 14:51:09) [GCC 14.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import gi
>>> from gi.repository import Gtk
Traceback (most recent call last):
File "/usr/lib64/python3.13/site-packages/gi/importer.py", line 139, in create_module
introspection_module = get_introspection_module(namespace)
File "/usr/lib64/python3.13/site-packages/gi/module.py", line 243, in get_introspection_module
module = IntrospectionModule(namespace, version)
File "/usr/lib64/python3.13/site-packages/gi/module.py", line 111, in __init__
repository.require(namespace, version)
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^
gi.RepositoryError: Typelib file for namespace 'xlib', version '2.0' not found
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "<python-input-1>", line 1, in <module>
from gi.repository import Gtk
File "/usr/lib64/python3.13/site-packages/gi/importer.py", line 141, in create_module
raise ImportError(e) from e
ImportError: Typelib file for namespace 'xlib', version '2.0' not found
[1] https://gitlab.gnome.org/GNOME/pygobject/-/merge_requests/320
(From OE-Core rev: 6f9e02292c9305e795f2651c3bb6ef5b671e1c74)
(From OE-Core rev: e3fa9ef3239e8bc113e211f5258f84d08284872a)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Resolve static assertion failures caused by incorrect line numbers
after #include directives, introduced by the backport of PR108900 to GCC.
Update line map handling to correctly compute locations in large files,
including fixes for both LC_ENTER and LC_LEAVE to ensure accurate
line number resolution in rare edge cases.
https://gcc.gnu.org/cgit/gcc/commit/?id=edf745dc519ddbfef127e2789bf11bfbacd300b7
(From OE-Core rev: bc868507927fb21637e0ed63bb7ac86d69998d42)
Signed-off-by: Yash Shinde <Yash.Shinde@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Includes a fix for the library version to match the tagged version in git.
(From OE-Core rev: 3ba4b22ef7e50e017d25ba974666f2fdf190a8fd)
(From OE-Core rev: 34a33332d530278d42f9d402da051ad7272cf555)
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Changelog:
===========
- Fix crash when opening downloaded file
- Fix crash when opening incognito window
- Fix Crash when trying to select download location
- Fix Crash in escape_csv_field() when exporting passwords
- Fix Adding WhatsApp as a web app crashes
- Fix Pressing Escape key in addressbar resets the cursor to beginning of
the widget
- Fix Epiphay shouldn't show the privacy dialog in incognito mode
- Fix (CVE-2025-3839) Require user interaction before opening URL in
external application
- Fix Code cleanup
- Fix window: fix crash when force closing window without session
- Fix Several fixes for password export
- Fix Remove Granite support from Tech Preview and Canary
- Fix find-toolbar: fix crash on load-changed
(From OE-Core rev: fb8f221f92da60f4e1ae14e39fb3a577ff7bdb33)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(master rev: 2c60159fffd76b5dbe75bf7d6758e5f78b166714)
Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
We had this CVE patched but the patch was removed with last 2.44 branch
updates as it is now included.
Since there is no new version which could be set in NVD DB, this needs
to be explicitly handled.
(From OE-Core rev: 32f18145dee54f61203506daef339cd132908287)
(From OE-Core rev: b8ed40864e664e1cd50b2015569a406f49a0125e)
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>
NVD has CVE-2023-25584 listed as < 2.40, so we don't need to ignore it
for version 2.44 anymore.
(From OE-Core rev: eaf80096f96e5bebed53076c1dfe7e35e539f383)
(From OE-Core rev: a0ffc4e44ba5e06eccf6d87fb16898454efcb1b2)
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>
Issue is seen with nodejs ending with Illegal instruction on OE
Its also in QT5base and perhaps many other packages using 64bit
atomics.
Thanks to jeroen (oe IRC) to report and help reduce the problem.
(From OE-Core rev: bd62158946e214076686e0709d24771acb60665f)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Below commits on glibc-2.41 stable branch are updated.
5cb575ca9a elf: tst-audit10: split AVX512F code into dedicated functions [BZ #32882]
046b33800c x86: Detect Intel Diamond Rapids
a53e764657 x86: Handle unknown Intel processor with default tuning
aca31d2712 x86: Add ARL/PTL/CWF model detection support
f68b407d4b x86: Optimize xstate size calculation
d6d56af6e7 elf: Fix arm-linux-gnueabihf build break from b861755a84
b861755a84 elf: Extend glibc.rtld.execstack tunable to force executable stack (BZ 32653)
200d20123c x86: Link tst-gnu2-tls2-x86-noxsave{,c,xsavec} with libpthread
80cd656649 x86: Use separate variable for TLSDESC XSAVE/XSAVEC state size (bug 32810)
a282e2c0ae x86: Skip XSAVE state size reset if ISA level requires XSAVE
bcd4cf9d5f x86_64: Add atanh with FMA
7e72fa7577 x86_64: Add sinh with FMA
6a3a4a5e58 x86_64: Add tanh with FMA
ce9b765522 nptl: Check if thread is already terminated in sigcancel_handler (BZ 32782)
98c712855d nptl: PTHREAD_COND_INITIALIZER compatibility with pre-2.41 versions (bug 32786)
e22c132484 nptl: clear the whole rseq area before registration
33bfd9020f Linux: Remove attribute access from sched_getattr (bug 32781)
66fc3bd758 math: Remove an extra semicolon in math function declarations
1a3083b999 posix: Move environ helper variables next to environ definition (bug 32541)
91f8cff2c4 configure: Fix spelling of -Wl,--no-error-execstack option
fd202462c5 elf: Check if __attribute__ ((aligned (65536))) is supported
746ef8e939 static-pie: Skip the empty PT_LOAD segment at offset 0 [BZ #32763]
56609f8df1 Pass -Wl,--no-error-execstack for tests where -Wl,-z,execstack is used [PR32717]
89be78704e AArch64: Use prefer_sve_ifuncs for SVE memset
c47c3890f1 AArch64: Add SVE memset
e0bc5f64ea math: Improve layout of exp/exp10 data
009c5a2dca aarch64: Add GCS test with signal handler
8d98ee8d70 aarch64: Add GCS tests for dlopen
61ba3cdfa9 aarch64: Add GCS tests for transitive dependencies
fda5730898 aarch64: Add tests for Guarded Control Stack
6d1f97bb06 aarch64: Add configure checks for GCS support
7774a9d07a AArch64: Improve codegen for SVE powf
2025e27a81 AArch64: Improve codegen for SVE pow
f3d9c116cb AArch64: Improve codegen for SVE erfcf
94859e8680 Aarch64: Improve codegen in SVE exp and users, and update expf_inline
7c9a086807 Aarch64: Improve codegen in SVE asinh
30992cb5e9 RISC-V: Fix IFUNC resolver cannot access gp pointer
07288c7445 math: Add optimization barrier to ensure a1 + u.d is not reused [BZ #30664]
2cb04444b9 math: Fix `unknown type name '__float128'` for clang 3.4 to 3.8.1 (bug 32694)
a900dbaf70 x86 (__HAVE_FLOAT128): Defined to 0 for Intel SYCL compiler [BZ #32723]
1e0e33e1b1 Fix tst-aarch64-pkey to handle ENOSPC as not supported
69fda28279 assert: Add test for CVE-2025-0395
cf88351b68 math: Fix tanf for some inputs (BZ 32630)
cb7f206537 nptl: Correct stack size attribute when stack grows up [BZ #32574]
d85a771953 math: Fix sinhf for some inputs (BZ 32627)
bdccbfbc52 math: Fix log10p1f internal table value (BZ 32626)
Testresults:
Before update |After update |Difference
PASS: 5816 |PASS: 5826 |PASS: +10
FAIL: 239 |FAIL: 239 |FAIL: 0
XPASS: 4 |XPASS: 4 |XPASS: 0
XFAIL: 16 |XFAIL: 16 |XFAIL: 0
UNSUPPORTED: 164|UNSUPPORTED: 164|UNSUPPORTED: 0
(From OE-Core rev: 60fb9e5200e641d0d108f283d23a7c79b09966d1)
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
In sshd in OpenSSH before 10.0, the DisableForwarding directive does not adhere to the
documentation stating that it disables X11 and agent forwarding.
(From OE-Core rev: fff41e824bb56d4879c65d6dec3605fabb406071)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CVE-2025-47268
ping in iputils through 20240905 allows a denial of service (application
error or incorrect data collection) via a crafted ICMP Echo Reply
packet, because of a signed 64-bit integer overflow in timestamp
multiplication.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2025-47268
Patch from:
070cfacd73
(From OE-Core rev: 59f0d3befe0c828bdc16664af1f8b64b7f3911e7)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Generating SPDX is enabled by default in poky but
it can take a lot of build time resources so document
how to disable it.
(From yocto-docs rev: d26a3f2ed8f24e1b72f58ecb8b7cdba7007ba77b)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit bcd58b7a9455fbb0ea5944089d663e327f0eb38f)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Add a section after the 'git format-patch' information encouraging developers
to add patch version changelogs to their patch updates.
(From yocto-docs rev: dff4d470193c1b5c961f4725b796050fb79b2b5c)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 2e3a37c4607b296956993e557d1786c4876e5722)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* Since scarthgap [1], the default will be overridden when using
'systemd' as INIT_MANAGER. Reflect this in the documentation.
* The distro configuration is probably the better place for
customization, thus at least mention this together with the
local.conf.
* While at it, drop the probably redundant description on how to
override weak default variables.
The example on how to set "/root" is still given indirectly, anyway.
[1] ebafe463 ("systemd: upgrade to 255.1")
(From yocto-docs rev: 84c55a224f16644a42e51294a6ad0b2568f84ea2)
Signed-off-by: Enrico Jörns <ejo@pengutronix.de>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 50e92009d309fc4ae406174feb8f6578142748cc)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
- Add the future "Whinlatter" (5.3) and "Wrynose" (6.0) releases.
- Make the "Walnascar" release a current release.
- Update the month in Current.
(From yocto-docs rev: 63d00925b77a723750ee1126a1242e332d052689)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit adb8573b54626e033921a9f4e3db259312b79207)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Fix links to files in git by adding a leading / to the path.
(From yocto-docs rev: 20447dbf40b07f6b7493dee0b4c4082376d96796)
Signed-off-by: Leonard Anderweit <l.anderweit@phytec.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit cc5daf15f5999bc217f8729e259ae720736beaaa)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The version has changed now (3.10.12 as of writing). Avoid having to
maintain this information by removing the version info from the intro.
Also fix a typo ("uses now uses") and give a link to yocto-autobuilder2.
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
(From yocto-docs rev: cdfa58f08ab98b233c466501e1a3567b869d312b)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 1ed64dbdf4a60b000305cdc2c67dc24f4bc97ef7)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This recipe takes longer time >20min when bitbake for package
write stage. When cross-verified for longer time duration, found
that do_check() stage taking 20min while other stages completes
before 6min.
This recipe gives only below two test binaries in the packages to
test (ptest: glibc-y2038-tests):
io/ftwtest
io/ftwtest-time64
The above test binaries are already included for testing in recipe
glibc-testsuite_2.41.bb.
It is by now well established that glibc itself works as it should,
that all affected 32 bit targets are configured to use 64 bit time_t,
and that any lingering y2038 issues are in components other than the c
library, and usually come from C programming mistakes (e.g. storing
timestamps in long). Maybe we can simply remove the recipe?
Review comments for fixing above longer time duration ended up in
removing this recipe as a proposal is below
https://lists.openembedded.org/g/openembedded-core/topic/112188476#msg214636
Removed lines having reference to glibc-y2038-tests in the files.
(From OE-Core rev: dea859e904d9eacede147a627f4c176433ac9efc)
Signed-off-by: rajmohan r <semc.2042@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit fbe3679ba3c12c52a502511f5dde91fb4de7a6b6)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
icu will check program install path during do_configure, eg:
checking for a BSD-compatible install... /path/to/install -c
And this path will be writen into pkgdata.inc:
INSTALL_CMD=$(INSTALL-L)
Decided by if install is installed into recipe-sysroot-native during
do_configure stage, the INSTALL_CMD could be
/build/tmp/work/corei7-64-wrs-linux/icu/76-1/recipe-sysroot-native/usr/bin/install
or /build/tmp/hosttools/install if the build is rerun after the sysroot was
extended.
set ac_cv_path_install to install under hosttools to make a deterministic
result of INSTALL_CMD, avoid vary caused by the execute sequence of
another task which DEPENDS on coreutils-native and independent with
do_configure
[RP: Removed paths from ac_cv_path_install to simplify and avoid QA error too]
(From OE-Core rev: 208143e060cda6e22ae1e8c618e033fa9144b323)
(From OE-Core rev: 60a38959a5b740b16044bf8644046b3ed4816ae7)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Below commits on binutils-2.44 stable branch are updated.
33578177adc dwarf: Dump .debug_loclists only for DWARF-5
fe459e33c67 PR 32603, revert message changes in 0b7f992b78fe and 31e9e2e8d109
37d12dd25d8 gdb/compile: add missing entry in bfd_link_callbacks array
31e9e2e8d10 PR 32603, more ld -w misbehaviour
0b7f992b78f PR 32603, ld -w misbehaviour
8cb98edf123 s390: Add support for z17 as CPU name
ed70d86b491 x86: Remove AVX10.2 256 bit rounding support
e1af7e590a5 elf: Clear the SEC_ALLOC bit for NOLOAD note sections
35db8c6dd2f ld: Pass -Wl,-z,lazy to compiler for i386 lazy binding tests
cc7ec316a45 Updated translations for bfd and gold
bf088ee09a7 PR 32731 ub sanitizer accessing filenames_reversed
78082591ec7 score-elf gas SEGV
d4c7ee9fbc1 gas: fix rs_fill_nop listing
a68d096a0ab Open the 2.44 branch for further development
Dropped: 0015-CVE-2025-1153.patch
Testing was done and there were no regressions found
(From OE-Core rev: e06b23897d51d075327012440afbabfe2d5a3de0)
Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Includes fix for CVE-2024-54551, CVE-2025-24208, CVE-2025-24209,
CVE-2025-24213, CVE-2025-24216, CVE-2025-24264 and CVE-2025-30427
Changelog:
=========
- Limit the data stored in session state.
- Remove the empty area below the title bar in Web Inspector when not docked.
- Fix the build with GST_DISABLE_GST_DEBUG.
- Fix the build with GStreamer < 1.20.
- Fix the build with video disabled.
- Fix the build with clang 20.
Drop 0001-EnumTraits.h-error-no-matching-function-for-call-to-.patch
and 0001-Cherry-pick-292304-main-7ffc29624258-.-https-bugs.we.patch
which are part of upgrade.
(From OE-Core rev: 2a1fd538e42a8721b4f49135e14771cc1d646588)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Update to the 5.2 release of the 5.2 series for buildtools
(From OE-Core rev: 23d9713bd16a042fdb4c15ff1dfaf7a0637da95e)
Signed-off-by: Aleksandar Nikolic <aleksandar.nikolic@zeiss.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
CVE-2024-52532:
GNOME libsoup before 3.6.1 has an infinite loop, and memory consumption.
during the reading of certain patterns of WebSocket data from clients.
Refer:
https://nvd.nist.gov/vuln/detail/CVE-2024-52532
(From OE-Core rev: e91fb129f132aae628b3a942afe9259c25f1b539)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
FFmpeg git-master,N-113007-g8d24a28d06 was discovered to contain a segmentation
violation via the component /libavcodec/jpeg2000dec.c.
(From OE-Core rev: 0c6561cc7a5ca9e82ce3f17a9d0e68a7c1c88c84)
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The current MULTILIB_SCRIPTS entry incorrectly assigns
g-ir-annotation-tool and g-ir-scanner to the ${PN} package. However,
these scripts are actually installed in the gobject-introspection-tools
package. This leads to incorrect symlinks being created when multilib is
enabled. Therefore, this patch correctly moves them to the ${PN}-tools
package.
Error log:
root@intel-x86-64:~# ls -l /usr/bin/g-ir-scanner
lrwxrwxrwx 1 root root 27 Mar 9 2018 /usr/bin/g-ir-scanner -> /usr/bin/g-ir-scanner-lib64
root@intel-x86-64:~# ls -l /usr/bin/g-ir-scanner-lib64
ls: cannot access '/usr/bin/g-ir-scanner-lib64': No such file or directory
(From OE-Core rev: 5e594b3d074900580fa83ca50f7d837937c17856)
Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Due to commit [cdrtools-native: fix booting EFI ISO live failed]
applied to improve mkisofs to fix nsectors exceeds 0xffff situation
which set selection criteria type = 2 and save extra nsectors to
vendor unique selection criteria
In following case, add 64MB extra space to bootable image efi.img,
and the partition table of EFI is truncated to 32M
$ echo 'IMAGE_FSTYPES:pn-core-image-minimal = " live"' >> conf/local.conf
$ echo 'MACHINE_FEATURES:append = " efi pcbios"' >> conf/local.conf
$ echo '# 64MB extra space to bootable image efi.img' >> conf/local.conf
$ echo 'BOOTIMG_EXTRA_SPACE = "65535"' >> conf/local.conf
$ bitbake core-image-minimal
$ fdisk -l tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso
...
Device Boot Start End Sectors Size Id Type
tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso1 * 0 376831 376832 184M 0 Empty
tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso2 120 65654 65535 32M ef EFI (FAT-12/16/32)
After applying this patch to process extra sector count, the partition
table of EFI is 90.3M
$ fdisk -l tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso
...
Device Boot Start End Sectors Size Id Type
tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso1 * 0 376831 376832 184M 0 Empty
tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso2 120 185151 185032 90.3M ef EFI (FAT-12/16/32)
[1]https://pdos.csail.mit.edu/6.828/2017/readings/boot-cdrom.pdf
(From OE-Core rev: b4e112ed7e6ba5a6c6df530d696485a588831851)
(From OE-Core rev: 741d5ed1b906b8763d9f346481e980e2041c9c2a)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
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>
In ISO live, if the size of efi.img > 32MB, and copy EFI application
(bootx64.efi) to efi.img behind of kernel and initrd, UEFI system
could not find EFI application bootx64.efi
Using QEMU+OVMF to boot ISO live image, press ESC to enter UEFI shell:
...
Shell> ls FS0:\
Directory of: FS0:\
04/05/2011 23:00 12,985,344 bzImage
04/05/2011 23:00 <DIR> 2,048 EFI
04/05/2011 23:00 20,494,696 initrd
04/05/2011 23:00 26 startup.nsh
3 File(s) 33,480,066 bytes
1 Dir(s)
Shell> ls FS0:\EFI
Directory of: FS0:\EFI
0 File(s) 0 bytes
0 Dir(s)
...
In following case, add 64MB extra space to bootable image efi.img,
and the partition table of EFI is truncated to 26.3M
$ echo 'IMAGE_FSTYPES:pn-core-image-minimal = " live"' >> conf/local.conf
$ echo 'MACHINE_FEATURES:append = " efi pcbios"' >> conf/local.conf
$ echo '# 64MB extra space to bootable image efi.img' >> conf/local.conf
$ echo 'BOOTIMG_EXTRA_SPACE = "65535"' >> conf/local.conf
$ bitbake core-image-minimal
$ fdisk -l tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso
...
Device Boot Start End Sectors Size Id Type
tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso1 * 0 376831 376832 184M 0 Empty
tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso2 120 54079 53960 26.3M ef EFI (FAT-12/16/32)
According to page 11: `Figure 5 - Section Entry' in El Torito Bootable
CD-ROM Format Specification [1]. The sector count takes 2 byte which
means max sector count is 0xffff (65535), for 512-byte sector, the
size of bootable image is no more than 32MB (65536 * 512 / 1024 / 1024)
This commit truncate to 32MB if image size larger than 32MB, and
report a warning, then save the extra image sector count to
vendor unique selection criteria
After apply this commit, the partition table of EFI is truncated to 32M
$ fdisk -l tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso
...
Device Boot Start End Sectors Size Id Type
tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso1 * 0 376831 376832 184M 0 Empty
tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.rootfs.iso2 120 65654 65535 32M ef EFI (FAT-12/16/32)
[1]https://pdos.csail.mit.edu/6.828/2017/readings/boot-cdrom.pdf
(From OE-Core rev: 259bb8907d8bfe1217e88a3b6935c160e5a92f8d)
(From OE-Core rev: d184f119c26983c2f15b47a25204049d0525c871)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
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>
To adapt user network enviroment, buildtools should first try to use
the user configured envs like SSL_CERT_FILE/CURL_CA_BUNDLE/..., if these
envs is not set, then use the auto-detected ca file and ca path, and
finally use the CA certificates in buildtools.
nativesdk-openssl set OPENSSLDIR as "/not/builtin", need set SSL_CERT_FILE/SSL_CERT_DIR to work
nativesdk-curl don't set default ca file, need
SSL_CERT_FILE/SSL_CERT_DIR or CURL_CA_BUNDLE/CURL_CA_PATH to work
nativesdk-git actually use libcurl, and GIT_SSL_CAPATH/GIT_SSL_CAINFO
also works
nativesdk-python3-requests will use cacert.pem under python module certifi by
default, need to set REQUESTS_CA_BUNDLE
(From OE-Core rev: 0d5f241eee19c0dff9f9f59949485414935edaa2)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Here is one testcase:
For recipe tensorflow-lite-host-tools_2.18.0.bb, refer [1],
do_configure[network] = "1"
and it will git clone some repos in CMakeLists.txt
When buildtools is used and nativesdk-git is installed into sdk,
do_configure failed with error:
[1/9] Performing download step (git clone) for 'protobuf-populate'
Cloning into 'protobuf'...
fatal: unable to access 'https://github.com/protocolbuffers/protobuf/': error setting certificate file: /usr/local/oe-sdk-hardcoded-buildpath/sysroots/x86_64-wrlinuxsdk-linux/etc/ssl/certs/ca-certificates.crt
Fix by adding GIT_SSL_CAINFO in BB_ENV_PASSTHROUGH_ADDITIONS, so that
user can export GIT_SSL_CAINFO=${GIT_SSL_CAINFO} in their
do_configure:prepend() to fix above do_configure failure
CURL_CA_BUNDLE and REQUESTS_CA_BUNDLE is similar envvars, so all add
into BB_ENV_PASSTHROUGH_ADDITIONS
[1] https://github.com/nxp-imx/meta-imx/blob/styhead-6.12.3-1.0.0/meta-imx-ml/recipes-libraries/tensorflow-lite/tensorflow-lite-host-tools_2.18.0.bb
(From OE-Core rev: 5fa8cb40395977722d0d5a2271c8044598fb1f01)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
* make git,curl,python3-requests align with openssl, move the setting of
envvars into respective envfile
* for environment.d-openssl.sh, also check if ca-certificates.crt exist
before export envvars
(From OE-Core rev: 5c915fcada5868bdbb8aa3e28c18a26cfc41914f)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
When PATCHTOOL is set to 'git', and user don't setup
user.name and user.email for git, do_patch fail with
the following error, fix by passing -c options.
CmdError("git notes --ref refs/notes/devtool append -m 'original patch: 0001-PATCH-increase-to-cpp17-version.patch' HEAD", 0, 'stdout:
stderr: Author identity unknown
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
(From OE-Core rev: 2d202462cf85e92cc18bc07cffdb0f335e524256)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Rather than reporting each invalid PACKAGECONFIG with a separate error
message, report them all with one error message.
(From OE-Core rev: c311d5ddc102f26ac1813c540520175cfed3a5a6)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This makes sure invalid PACKAGECONFIGs are reported also for recipes
that have no do_configure task, e.g., packagegroups.
(From OE-Core rev: ed0e8f5142bc9c3a5c2fca7068135b2dc11ec3db)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This change will prevent these tools from being installed if the image doesn't install bluez5-noinst-tools package.
BlueZ 5.66: tools/mesh-tester
BlueZ 5.66: tools/ioctl-tester
BlueZ 5.65: tools/iso-tester
BlueZ 5.56: tools/btpclientctl
BlueZ 5.51: tools/bcmfw
BlueZ 5.49: tools/rtlfw
BlueZ 5.47: tools/btconfig (not a new tool, but it was moved from bin_PROGRAMS to noinst_PROGRAMS)
(From OE-Core rev: 5f7c43913812bcb80d6dba67da3fc62a8efecfb8)
Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
The AMD KV260 has a serial console on ttyPS1, so until we can dynamically
detect the console under sysvinit we can add it to SERIAL_CONSOLES so
this platform has a working console when not running systemd.
(From meta-yocto rev: 467b6d77e50f92bee3c8f7ca928bd70758bab457)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
The systemd-serialgetty recipe generates explicit units for consoles
that are defined in SERIAL_CONSOLES, and if that variable is not defined
then just produces an empty package.
Even when systemd has been configured to use the getty generator, if
there are explicit consoles defined then we should respect them. Don't
conditionalise the dependency on systemd-serialgetty so that we always
pull in the explicit consoles.
(From OE-Core rev: 6ec2c52b938302b894f119f701ffcf0a847eee85)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Until recently, even when the getty generator was disabled in the
systemd recipe it was actually still active. This was because the old
behaviour was to delete the serial-getty template unit if the generator
was disabled, but the systemd-serialgetty package shipped then shipped
the same files so the generator continued to run. This was a bug in the
original commit[1] so this behaviour has been present since 2016.
My recent fixes[2] changed this: if the getty generator was disabled
then the generator itself is deleted. This makes the actual behaviour
match the intention, but the consequence was to demonstrate that some
modern platforms were relying on this unexpected behaviour: specifically
the genericarm64 BSP which intends to support a number of virtual and
physical boards with a number of serial console ports that are not
really suitable to be hardcoded into SERIAL_CONSOLES:
- ttyS0
- ttyAMA0 (AMBA PL011 uart)
- ttyS2 (BeagleBone Play, S0 and S1 are internal)
- hvc0 (KVM)
- ttyPS1 (AMD KV260)
- And most likely more
Restore the existing behaviour by explicitly enabling the serial getty
generator: this means that systemd will automatically bring up a getty
on the first serial console it finds.
In the future we should extend some level of dynamic console-finding to
sysvinit-based systems by searching for a console device in inittab, but
for now this reverts the unintentional regression.
[1] oe-core 2a8d0df47c9 ("systemd: make systemd-serialgetty optional")
[2] oe-core 2beb3170af6 ("systemd: if getty generator is disabled remove
the generator, not the units")
(From OE-Core rev: 87136e18b70c0fb66d7268b30e8bc0da9268aa31)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Backport a patch from upstream to fix the build when glx.pc isn't found,
but the glx headers are available. As libglvnd is the only provider of
glx.pc and by default we build without libglvnd, this is common.
This solves the problem where mesa-demo is missing the GLX demos, such
as glxgears.
[ YOCTO #15825 ]
(From OE-Core rev: 466c01cb1ec9ad2a13dc12b5fa7276b9b450266e)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
As Mesa is built with Meson now, there's no need to delete the .la files
as they're not installed in the first place.
(From OE-Core rev: 7cc1288c0121268b02ab26d0b032cee6cb9eacb4)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Integrating the following commit(s) to linux-yocto/.:
1/1 [
Author: Bruce Ashfield
Email: bruce.ashfield@gmail.com
Subject: iommu: add config dependencies
Date: Sun, 20 Apr 2025 22:28:21 -0400
commit [cfg/intel.scc: Include iommu.scc for Arrowlake boot support]
moves the iommu configuration to a location that is included by more
BSPs and kernel types.
One of those kernel types is the -tiny kernel, which uses a allnoconfig
base. Due to the allnoconfig, there are missing dependencies to allow
the desired options to be enabled in the final .config
Those missing options throw configuration audit warnings
By adding the required dependencies to the fragment, it is now
standalone and can be included from anywhere without configuration
audit warnings being triggered.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: 795594476c6fabd5391dc35f254de8028f7c47d6)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Integrating the following commit(s) to linux-yocto/.:
1/1 [
Author: Yogesh Tyagi
Email: yogesh.tyagi@intel.com
Subject: cfg/intel.scc: Include iommu.scc for Arrowlake boot support
Date: Mon, 14 Apr 2025 11:55:45 +0530
Move features/iommu/iommu.scc from bsp/intel-common/intel-corei7-64.scc and
bsp/intel-x86/intel-x86.scc to cfg/intel.scc to eliminate redundancy and ensure
IOMMU support (CONFIG_INTEL_IOMMU=y, etc.) is enabled for genericx86-64
on Intel Arrowlake, resolving boot issues.
This changes is needed in 6.12 as well as master branch.
https://bugzilla.yoctoproject.org/show_bug.cgi?id=15802
Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: ff91efc2ab25880967b82cc709954d10d62b8cbe)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Bumping the kern-tools SRCREV to allow comments after configuration
options.
Without this update of the regex, symbol_why will incorrectly detect
that options are not in the final .config during audit.
(From OE-Core rev: 79135df956b536d3be1ca86d28d5c77d59c672c4)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
83b4161a63b8 Linux 6.12.23
e70b4b8f93d7 platform/x86/amd/pmf: fix cleanup in amd_pmf_init_smart_pc()
625e9b91eb13 tracing: Do not use PERF enums when perf is not defined
59fc42318305 ARM: 9443/1: Require linker to support KEEP within OVERLAY for DCE
c6f2a8146da1 NFSD: Skip sending CB_RECALL_ANY when the backchannel isn't up
afec5b5010de NFSD: Never return NFS4ERR_FILE_OPEN when removing a directory
101fd0aa0d7d NFSD: nfsd_unlink() clobbers non-zero status returned from fh_fill_pre_attrs()
a84c80515ca8 nfsd: fix management of listener transports
cad3479b6366 nfsd: put dl_stid if fail to queue dl_recall
52e209203c35 nfsd: allow SC_STATUS_FREEABLE when searching via nfs4_lookup_stateid()
adf0ddb914c9 media: streamzap: fix race between device disconnection and urb callback
845e9286ff99 media: vimc: skip .s_stream() for stopped entities
e2d8e7bd3314 exec: fix the racy usage of fs_struct->in_exec
747e3eec1d7d mm: zswap: fix crypto_free_acomp() deadlock in zswap_cpu_comp_dead()
2d9709690f31 jfs: add index corruption check to DT_GETPAGE()
0beddc2a3f9b jfs: fix slab-out-of-bounds read in ea_get()
b47584c55644 ext4: fix OOB read when checking dotdot dir
13d6f8ba5074 ext4: don't over-report free space or inodes in statvfs
0cfea60966e4 wifi: mt76: mt7921: fix kernel panic due to null pointer dereference
2df8ee605eb6 arm64: Don't call NULL in do_compat_alignment_fixup()
2e877ff34922 mm/gup: reject FOLL_SPLIT_PMD with hugetlb VMAs
1abca855ea9f tracing/osnoise: Fix possible recursive locking for cpus_read_lock()
33052e7f52c5 tracing: Fix synth event printk format for str fields
cffc2a6718e4 tracing: Ensure module defining synth event cannot be unloaded while tracing
c85efe6e1374 tracing: Fix use-after-free in print_graph_function_flags during tracer switching
37c9875c178f exfat: fix potential wrong error return from get_block
49b0a6ab8e52 exfat: fix random stack corruption after get_block
ca8bed31edf7 ksmbd: fix null pointer dereference in alloc_preauth_hash()
56de7778a485 ksmbd: validate zero num_subauth before sub_auth is accessed
6a9cd9ff0fa2 ksmbd: fix overflow in dacloffset bounds check
9069939d7621 ksmbd: fix session use-after-free in multichannel connection
ca042cc0e4f9 ksmbd: fix use-after-free in ksmbd_sessions_deregister()
800c482c9ef5 ksmbd: add bounds check for create lease context
29b946714d6a ksmbd: add bounds check for durable handle context
9bc3299039d2 KVM: SVM: Don't change target vCPU state on AP Creation VMGEXIT error
a31fa24813a7 mmc: sdhci-omap: Disable MMC_CAP_AGGRESSIVE_PM for eMMC/SD
1209241a6b40 mmc: sdhci-pxav3: set NEED_RSP_BUSY capability
b548a448993a mmc: omap: Fix memory leak in mmc_omap_new_slot
0c121f2065e4 Remove unnecessary firmware version check for gc v9_4_2
6b9ddc4f5f2e media: omap3isp: Handle ARM dma_iommu_mapping
9f7ae45f0c61 ARM: 9444/1: add KEEP() keyword to ARM_VECTORS
498edda23f7e ACPI: resource: Skip IRQ override on ASUS Vivobook 14 X1404VAP
e71a57c5aaa3 acpi: nfit: fix narrowing conversion in acpi_nfit_ctl
339d6c965f20 wifi: mt76: mt7925: remove unused acpi function for clc
93224deb50a8 x86/mm: Fix flush_tlb_range() when used for zapping normal PMDs
70a2fa13d4a9 x86/tsc: Always save/restore TSC sched_clock() on suspend/resume
e3d54decc75c x86/Kconfig: Add cmpxchg8b support back to Geode CPUs
e8bba7ced03e idpf: Don't hard code napi_struct size
c35771342e47 uprobes/x86: Harden uretprobe syscall trampoline check
3a8bec6583e5 perf/x86/intel: Avoid disable PMU if !cpuc->enabled in sample read
e853bb7d6aec perf/x86/intel: Apply static call for drain_pebs
854b6764be33 ntb_perf: Delete duplicate dmaengine_unmap_put() call in perf_copy_chunk()
1a85281415fb platform/x86: ISST: Correct command storage data length
48792ab44552 platform/x86: thinkpad_acpi: disable ACPI fan access for T495* and E560
35c1834dd630 ACPI: x86: Extend Lenovo Yoga Tab 3 quirk with skip GPIO event-handlers
805e3ce5e0e3 x86/tdx: Fix arch_safe_halt() execution for TDX VMs
3e3d8169c095 x86/mce: use is_copy_from_user() to determine copy-from-user context
ada88219d531 x86/microcode/AMD: Fix __apply_microcode_amd()'s return value
d39838da59bd KVM: x86: block KVM_CAP_SYNC_REGS if guest state is protected
a54247efbc73 x86/hyperv: Fix check of return value from snp_set_vmsa()
add72c418d0a LoongArch: BPF: Use move_addr() for BPF_PSEUDO_FUNC
223d565d8892 LoongArch: BPF: Don't override subprog's return value
205a2182c51f LoongArch: BPF: Fix off-by-one error in build_prologue()
0aa5d4370b5b LoongArch: Increase MAX_IO_PICS up to 8
1d0def2d1658 LoongArch: Increase ARCH_DMA_MINALIGN up to 16
dc07c4698587 rust: Fix enabling Rust and building with GCC for LoongArch
d689645cd159 usbnet:fix NPE during rx_complete
86f327305ed4 wifi: mac80211: Fix sparse warning for monitor_sdata
96fa2608296d tty: serial: lpuart: only disable CTS instead of overwriting the whole UARTMODIR register
b09ff334c168 tty: serial: fsl_lpuart: Fix unused variable 'sport' build warning
ac08fa36d8cb tty: serial: fsl_lpuart: use port struct directly to simply code
82719d0e7584 tty: serial: fsl_lpuart: Use u32 and u8 for register variables
3501677651ca cgroup/rstat: Fix forceidle time in cpu.stat
39bc1484eb06 cgroup/rstat: Tracking cgroup-level niced CPU time
ef79f2dec7a9 tracing: Correct the refcount if the hist/hist_debug file fails to open
eecb62a24b23 tracing/hist: Support POLLPRI event for poll on histogram
fe87f8d3a5b4 tracing/hist: Add poll(POLLIN) support on hist file
387dc88c2c27 tracing: Switch trace_events_hist.c code over to use guard()
7de8290a66df tools/power turbostat: report CoreThr per measurement interval
e9c928807239 perf/core: Fix child_total_time_enabled accounting bug at task exit
d3f0a68b2914 drm/amdgpu/gfx12: fix num_mec
2ac69453e9e5 drm/amdgpu/gfx11: fix num_mec
528287815ee5 kbuild: deb-pkg: don't set KBUILD_BUILD_VERSION unconditionally
8a88bb092f42 net: ibmveth: make veth_pool_store stop hanging
ebebeb58d48e arcnet: Add NULL check in com20020pci_probe()
f4fea25f5c7f ipv6: Do not consider link down nexthops in path selection
1eb36a2cdf63 ipv6: Start path selection from the first nexthop
2952776c69a1 net: fix geneve_opt length integer overflow
9dec9dacaeed net: dsa: mv88e6xxx: propperly shutdown PPU re-enable timer on destroy
de579015d132 ipv6: fix omitted netlink attributes when using RTEXT_FILTER_SKIP_STATS
0a93a710d6df netfilter: nft_tunnel: fix geneve_opt type confusion addition
92a5c1851311 net: decrease cached dst counters in dst_release
9539c1721a36 tunnels: Accept PACKET_HOST in skb_tunnel_check_pmtu().
47744d0d5f3b vsock: avoid timeout during connect() if the socket is closing
a116b271bf3c udp: Fix memory accounting leak.
94d5ad7b4112 udp: Fix multiple wraparounds of sk->sk_rmem_alloc.
fcbfb54a0269 net: mvpp2: Prevent parser TCAM memory corruption
e5178bfc55b3 sctp: add mutual exclusion in proc_sctp_do_udp_port()
2f35b7673a3a net_sched: skbprio: Remove overly strict queue assertions
3ba9cf69de50 netlabel: Fix NULL pointer exception caused by CALIPSO on IPv4 sockets
feb1fa2a03a2 netfilter: nf_tables: don't unregister hook when table is dormant
86bd9609fd3e netfilter: nft_set_hash: GC reaps elements with conncount for dynamic sets only
79618e952ef4 idpf: fix adapter NULL pointer dereference on reboot
d11d0ce887f4 e1000e: change k1 configuration on MTP and later platforms
40d187b247b3 spi: bcm2835: Restore native CS probing when pinctrl-bcm2835 is absent
174954911f1c ALSA: hda/realtek: Fix built-in mic on another ASUS VivoBook model
48b175aa4677 spi: bcm2835: Do not call gpiod_put() on invalid descriptor
4d8458e48ff1 ASoC: imx-card: Add NULL check in imx_card_probe()
a3800b64f866 nvme/ioctl: don't warn on vectorized uring_cmd with fixed buffer
c35ec5e046ba riscv/purgatory: 4B align purgatory_start
4c6b1d08e614 riscv/kexec_file: Handle R_RISCV_64 in purgatory relocator
be85b932b578 riscv: Fix hugetlb retrieval of number of ptes in case of !present pte
e50781bf7acc spi: cadence: Fix out-of-bounds array access in cdns_mrvl_xspi_setup_clock()
d3b862658669 ASoC: codecs: rt5665: Fix some error handling paths in rt5665_probe()
c76bb2d0aa54 s390/entry: Fix setting _CIF_MCCK_GUEST with lowcore relocation
7e3497d7dacb ublk: make sure ubq->canceling is set when queue is frozen
efd101b1f0f5 x86/uaccess: Improve performance by aligning writes to 8 bytes in copy_user_generic(), on non-FSRM/ERMS CPUs
0751db851374 RISC-V: errata: Use medany for relocatable builds
92a25feb4546 ALSA: hda/realtek: Fix built-in mic breakage on ASUS VivoBook X515JA
26d14768c4ba firmware: cs_dsp: Ensure cs_dsp_load[_coeff]() returns 0 on success
3dbb73a07579 ntb: intel: Fix using link status DB's
cb153bdc1812 ntb_hw_switchtec: Fix shift-out-of-bounds in switchtec_ntb_mw_set_trans
4119e80ce22d riscv: ftrace: Add parentheses in macro definitions of make_call_t0 and make_call_ra
8522051c58d6 fs/9p: fix NULL pointer dereference on mkdir
d04600f43569 spufs: fix a leak in spufs_create_context()
029d8c711f5e spufs: fix gang directory lifetimes
35f789ccebd6 spufs: fix a leak on spufs_new_file() failure
7a95b4887348 netfs: Fix netfs_unbuffered_read() to return ssize_t rather than int
8a2cc9ffd13c hwmon: (nct6775-core) Fix out of bounds access for NCT679{8,9}
bc08c087118e memory: omap-gpmc: drop no compatible check
d840c84cdddd can: statistics: use atomic access in hot path
54c198d672ca ALSA: hda/realtek: Add mute LED quirk for HP Pavilion x360 14-dy1xxx
a3612053b2e7 selftests: netfilter: skip br_netfilter queue tests if kernel is tainted
93c59b5548ee net: devmem: do not WARN conditionally after netdev_rx_queue_restart()
cf1b90486748 drm/amd: Keep display off while going into S4
3e6ce0d9ec79 nvme-pci: fix stuck reset on concurrent DPC and HP
5e194e0f77ee x86/sgx: Warn explicitly if X86_FEATURE_SGX_LC is not enabled
eafd7ec55b1d x86/hyperv: Fix output argument to hypercall that changes page visibility
ddf40162ac79 locking/semaphore: Use wake_q to wake up processes outside lock critical section
e401fa5b953e wifi: mac80211: fix SA Query processing in MLO
9465e09b74eb wifi: mac80211: flush the station before moving it to UN-AUTHORIZED state
56e6d4a8877f ASoC: rt1320: set wake_capable = 0 explicitly
f8dfd7c50170 ASoC: codecs: wsa884x: report temps to hwmon in millidegree of Celsius
e1fc76b2bbf3 x86/hyperv/vtl: Stop kernel from probing VTL0 low memory
ecc08c460866 sched/deadline: Use online cpus for validating runtime
c730833bc025 ALSA: hda/realtek: Add support for ASUS Zenbook UM3406KA Laptops using CS35L41 HDA
01a27b2dd07f ALSA: hda/realtek: Add support for ASUS B5405 and B5605 Laptops using CS35L41 HDA
2e2626d1e8db ALSA: hda/realtek: Add support for ASUS B3405 and B3605 Laptops using CS35L41 HDA
f57ca98c65cd ALSA: hda/realtek: Add support for various ASUS Laptops using CS35L41 HDA
ff8ebaf47dce ALSA: hda/realtek: Add support for ASUS ROG Strix G614 Laptops using CS35L41 HDA
9dcf970c5c38 ALSA: hda/realtek: Add support for ASUS ROG Strix GA603 Laptops using CS35L41 HDA
c7943f0677d6 ALSA: hda/realtek: Add support for ASUS ROG Strix G814 Laptop using CS35L41 HDA
92075758782c exfat: add a check for invalid data size
77a5ed6b0349 platform/x86/amd/pmf: Update PMF Driver for Compatibility with new PMF-TA
5dd021991430 platform/x86/amd/pmf: Propagate PMF-TA return codes
f7038ea68fc0 HID: i2c-hid: improve i2c_hid_get_report error message
95459156b366 net: dsa: rtl8366rb: don't prompt users for LED control
64eb31d872fe platform/x86/intel/vsec: Add Diamond Rapids support
10ac73318c3a platform/x86: intel-hid: fix volume buttons on Microsoft Surface Go 4 tablet
6edee7c63b93 cifs: fix incorrect validation for num_aces field of smb_acl
da087905e327 smb: common: change the data type of num_aces to le16
7364420090ac perf/core: Fix perf_pmu_register() vs. perf_init_event()
fbd3a04bd86f ALSA: hda: Fix speakers on ASUS EXPERTBOOK P5405CSA 1.0
64c707d24ccc ALSA: hda/realtek: Fix Asus Z13 2025 audio
83d888b69310 affs: don't write overlarge OFS data block size fields
4fbfb003bba4 affs: generate OFS sequence numbers starting at 1
d8575bdcf820 wifi: brcmfmac: keep power during suspend if board requires it
5eb8c8fee726 nvme-pci: skip CMB blocks incompatible with PCI P2P DMA
63bd235de242 nvme-pci: clean up CMBMSC when registering CMB fails
c2fa1deeb4b8 nvme-tcp: fix possible UAF in nvme_tcp_poll
12622cb7b1d8 wifi: iwlwifi: mvm: use the right version of the rate API
bd888d67c7ce wifi: iwlwifi: fw: allocate chained SG tables for dump
e0862a6d3dab wifi: mac80211: remove debugfs dir for virtual monitor
5d42a3413724 wifi: mac80211: Cleanup sta TXQs on flush
eb532ac40dc8 nfs: Add missing release on error in nfs_lock_and_join_requests()
26bf086ebd70 objtool/loongarch: Add unwind hints in prepare_frametrace()
d80168db5e0c rcu-tasks: Always inline rcu_irq_work_resched()
00911b416ad7 context_tracking: Always inline ct_{nmi,irq}_{enter,exit}()
8e49f912ae14 sched/smt: Always inline sched_smt_active()
22e1e4e11af5 objtool: Fix verbose disassembly if CROSS_COMPILE isn't set
10856c530de3 octeontx2-af: Free NIX_AF_INT_VEC_GEN irq
d2e60c3b8a62 octeontx2-af: Fix mbox INTR handler when num VFs > 64
a436e1434317 net: phy: broadcom: Correct BCM5221 PHY model detection
d3561dc471ac ACPI: processor: idle: Return an error if both P_LVL{2,3} idle states are invalid
00c22ab0614a LoongArch: Rework the arch_kgdb_breakpoint() implementation
035a4a852ee8 LoongArch: Fix device node refcount leak in fdt_cpu_clk_init()
396cdb580e2e LoongArch: Fix help text of CMDLINE_EXTEND in Kconfig
11d479dffde5 objtool: Fix segfault in ignore_unreachable_insn()
2a6f8823ff60 ring-buffer: Fix bytes_dropped calculation issue
5923492ba353 net/mlx5e: SHAMPO, Make reserved size independent of page size
457db486203c ksmbd: fix r_count dec/increment mismatch
e0b32b6f0f13 ksmbd: fix multichannel connection failure
3e341dbd5f5a ksmbd: use aead_request_free to match aead_request_alloc
3f17af46cfc7 rndis_host: Flag RNDIS modems as WWAN devices
28b21ee8e8fb rtnetlink: Allocate vfinfo size for VF GUIDs when supported
4a9595eb024b exfat: fix missing shutdown check
6a1407532500 exfat: fix the infinite loop in exfat_find_last_cluster()
7d8dfc27d90d smb: client: Fix netns refcount imbalance causing leaks and use-after-free
81270dd79606 NFS: Shut down the nfs_client only after all the superblocks
cd80277f6521 objtool, media: dib8000: Prevent divide-by-zero in dib8000_set_dds()
1adc93a525fd objtool, nvmet: Fix out-of-bounds stack access in nvmet_ctrl_state_show()
456300be232e thermal: core: Remove duplicate struct declaration
8f178998af67 perf bpf-filter: Fix a parsing error with comma
2c3dea5d1776 perf tools: annotate asm_pure_loop.S
aba918999252 fs/procfs: fix the comment above proc_pid_wchan()
819685fcebdf perf vendor events arm64 AmpereOneX: Fix frontend_bound calculation
5b2b692804ce tty: n_tty: use uint for space returned by tty_write_room()
1817c4b85011 staging: vchiq_arm: Fix possible NPR of keep-alive thread
f3fafa188d96 staging: vchiq_arm: Register debugfs after cdev
f14dd4025975 staging: rtl8723bs: select CONFIG_CRYPTO_LIB_AES
ed1d004a5af0 perf: intel-tpebs: Fix incorrect usage of zfree()
70afdf771171 perf dso: fix dso__is_kallsyms() check
18ea76a747ac perf python: Check if there is space to copy all the event
9816424d65a2 perf python: Don't keep a raw_data pointer to consumed ring buffer space
4608d15a43fb perf python: Decrement the refcount of just created event on failure
f0343969111f perf python: Fixup description of sample.id event member
e1c900e078d5 i3c: master: svc: Fix missing the IBI rules
a8edfc206ed1 um: hostfs: avoid issues on inode number reuse by host
5b37d2370d0c um: remove copy_from_kernel_nofault_allowed
2b0328c5f0f9 um: Pass the correct Rust target and options with gcc
0d8ba0ed03c3 selftests/mm/cow: fix the incorrect error handling
eafb4e3a82aa fuse: fix dax truncate/punch_hole fault path
ca27c16539a3 NFS: fix open_owner_id_maxsz and related fields.
46117472a279 NFSv4: Avoid unnecessary scans of filesystems for delayed delegations
8765bc2638ce NFSv4: Avoid unnecessary scans of filesystems for expired delegations
ac8be75a7deb NFSv4: Avoid unnecessary scans of filesystems for returning delegations
4595beb5fee9 NFSv4: Don't trigger uneccessary scans for return-on-close delegations
d04bea49c806 arch/powerpc: drop GENERIC_PTDUMP from mpc885_ads_defconfig
49d2a2ea9d30 ocfs2: validate l_tree_depth to avoid out-of-bounds access
c6338b0d56f0 kexec: initialize ELF lowest address to ULONG_MAX
c42282a07832 kernel/events/uprobes: handle device-exclusive entries correctly in __replace_page()
32222c0fd242 perf units: Fix insufficient array space
b18056f753bf perf evlist: Add success path to evlist__create_syswide_maps
7cd1096d3bea perf debug: Avoid stack overflow in recursive error message
7a40b52d4442 iio: light: Add check for array bounds in veml6075_read_int_time_ms
967570b52826 iio: adc: ad7768-1: set MOSI idle state to prevent accidental reset
dd6391006379 iio: adc: ad7173: Fix comparison of channel configs
12eeec2fe012 iio: adc: ad7124: Fix comparison of channel configs
0c13dc967e07 iio: adc: ad4130: Fix comparison of channel setups
55e2dbe2ba78 dmaengine: fsl-edma: free irq correctly in remove path
bcd00d044346 dmaengine: fsl-edma: cleanup chan after dma_async_device_unregister
201a2bdda13b fs/ntfs3: Prevent integer overflow in hdr_first_de()
284c9549386e fs/ntfs3: Fix a couple integer overflows on 32bit systems
8109f57613a0 usb: xhci: correct debug message page size calculation
fc1b20f16897 perf bench: Fix perf bench syscall loop count
8e901e95bedc perf arm-spe: Fix load-store operation checking
df3892e5e861 iio: backend: make sure to NULL terminate stack buffer
91cc7dca2a69 iio: accel: msa311: Fix failure to release runtime pm if direct mode claim fails.
7c640dd70e63 iio: accel: mma8452: Ensure error return on failure to matching oversampling ratio
a17a3db6d411 ucsi_ccg: Don't show failed to get FW build information error
d72a8585043b perf build: Fix in-tree build due to symbolic link
a7b29a28d1e4 tools/x86: Fix linux/unaligned.h include path in lib/insn.c
72a149792714 perf pmu: Don't double count common sysfs and json events
1315b08f609e coresight-etm4x: add isb() before reading the TRCSTATR
3a19eb3d9818 vhost-scsi: Fix handling of multiple calls to vhost_scsi_set_endpoint
e90a5776e105 coresight: catu: Fix number of pages while using 64k pages
6f774f82a7fa greybus: gb-beagleplay: Add error handling for gb_greybus_init
372a144dbb96 perf report: Switch data file correctly in TUI
0e344b67bf26 soundwire: slave: fix an OF node reference leak in soundwire slave device
82d0586c3592 isofs: fix KMSAN uninit-value bug in do_isofs_readdir()
f9b0819e8b10 phy: phy-rockchip-samsung-hdptx: Don't use dt aliases to determine phy-id
641394fbb5a5 fs/ntfs3: Update inode->i_mapping->a_ops on compression state
4f750b846280 w1: fix NULL pointer dereference in probe
4baed8d7452b perf: Always feature test reallocarray
de9c71274735 perf stat: Fix find_stat for mixed legacy/non-legacy events
165b155dfedb clk: qcom: mmcc-sdm660: fix stuck video_subcore0 clock
bf233124d398 pinctrl: intel: Fix wrong bypass assignment in intel_pinctrl_probe_pwm()
5416777d568a crypto: hisilicon/sec2 - fix for aead auth key length
0d6460b9d2a3 RDMA/core: Fix use-after-free when rename device name
782526a40149 x86/dumpstack: Fix inaccurate unwinding from exception stacks due to misplaced assignment
c2ddf2f5760b leds: Fix LED_OFF brightness race
a1fab9e64948 mfd: sm501: Switch to BIT() to mitigate integer overflows
7ee71ef057b1 pinctrl: renesas: rzv2m: Fix missing of_node_put() call
cad677085274 RDMA/mlx5: Fix mlx5_poll_one() cur_qp update flow
19e6817f8400 bpf: Fix array bounds error with may_goto
cff6b3c8085d clk: qcom: gcc-sm8650: Do not turn off USB GDSCs during gdsc_disable()
4fdbccc738af crypto: nx - Fix uninitialised hv_nxc on error
ac9e52aca2cb power: supply: max77693: Fix wrong conversion of charge input threshold value
b6542ef0d4dd x86/entry: Fix ORC unwinder for PUSH_REGS with save_ret=1
cd0e4789f870 clk: amlogic: g12a: fix mmc A peripheral clock
f29760cdca4b clk: clk-imx8mp-audiomix: fix dsp/ocram_a clock parents
64bb7efb0c4c crypto: qat - remove access to parity register for QAT GEN4
4409e87cdc8b pinctrl: npcm8xx: Fix incorrect struct npcm8xx_pincfg assignment
8ba426f170f1 rust: fix signature of rust_fmt_argument
c9fad5ce1ef9 selftests/bpf: Select NUMA_NO_NODE to create map
4d32504f7ae9 clk: amlogic: gxbb: drop non existing 32k clock parent
dc8477444ac6 clk: amlogic: g12b: fix cluster A parent data
52f3ef292b7b pinctrl: tegra: Set SFIO mode to Mux Register
2aec4d9a79a7 IB/mad: Check available slots before posting receive WRs
6d4e56e4c581 crypto: api - Fix larval relookup type and mask
eae034cdcee9 power: supply: bq27xxx_battery: do not update cached flags prematurely
005d8de09c71 remoteproc: qcom_q6v5_mss: Handle platforms with one power domain
a114d25d584c RDMA/erdma: Prevent use-after-free in erdma_accept_newconn()
257f0bdd5a4b RDMA/mlx5: Fix calculation of total invalidated pages
df45ae2a4f1c RDMA/core: Don't expose hw_counters outside of init net namespace
c9c2582c4cd1 clk: rockchip: rk3328: fix wrong clk_ref_usb3otg parent
dcb5997ead6d selftests/bpf: Fix freplace_link segfault in tailcalls prog test
25aa4fe297a5 RDMA/mlx5: Fix MR cache initialization error flow
fb4206c76b99 pinctrl: renesas: rzg2l: Fix missing of_node_put() call
3980e3741a8c pinctrl: renesas: rza2: Fix missing of_node_put() call
e7b7f5a170d3 lib: 842: Improve error handling in sw842_compress()
8ed5381756de bpf: Use preempt_count() directly in bpf_send_signal_common()
42efddee037b clk: qcom: gcc-x1e80100: Unregister GCC_GPU_CFG_AHB_CLK/GCC_DISP_XO_CLK
82484764ea90 remoteproc: qcom_q6v5_pas: Use resource with CX PD for MSM8226
4a7e28e3523f crypto: tegra - Set IV to NULL explicitly for AES ECB
7d25febb0e03 RDMA/mana_ib: Ensure variable err is initialized
088a200ebf46 s390: Remove ioremap_wt() and pgprot_writethrough()
bd717b4dea87 clk: qcom: gcc-msm8953: fix stuck venus0_core0 clock
13a2312c5352 crypto: tegra - Fix CMAC intermediate result handling
241d9965109b pinctrl: nuvoton: npcm8xx: Fix error handling in npcm8xx_gpio_fw()
24307866e0ac clk: samsung: Fix UBSAN panic in samsung_clk_init()
81d4e03116d3 remoteproc: qcom: pas: add minidump_id to SC7280 WPSS
b5d1970003cc clk: renesas: r8a08g045: Check the source of the CPU PLL settings
8d6373f83f36 x86/mm/pat: Fix VM_PAT handling when fork() fails in copy_page_range()
919206201aac selftests/bpf: Fix string read in strncmp benchmark
652a3dfd8c2b libbpf: Fix hypothetical STT_SECTION extern NULL deref case
73fd28b12d78 remoteproc: qcom_q6v5_pas: Make single-PD handling more robust
26c0229b604e pinctrl: renesas: rzg2l: Suppress binding attributes
bfcca46f01ac of: property: Increase NR_FWNODE_REFERENCE_ARGS
2df19f5f6f72 remoteproc: core: Clear table_sz when rproc_shutdown
01fd737776ca RDMA/mlx5: Fix page_size variable overflow
51bcbe6cdaf0 crypto: hisilicon/sec2 - fix for sec spec check
71f4581c464b crypto: hisilicon/sec2 - fix for aead authsize alignment
0069c0e671ab clk: amlogic: gxbb: drop incorrect flag on 32k clock
46ea02988bb9 crypto: tegra - Use HMAC fallback when keyslots are full
057298d19334 crypto: bpf - Add MODULE_DESCRIPTION for skcipher
3e0d61cf588f crypto: tegra - check return value for hash do_one_req
5d9147db00d3 crypto: tegra - Use separate buffer for setkey
f23dfee54b57 crypto: qat - set parity error mask for qat_420xx
92936d50c5b8 crypto: iaa - Test the correct request flag
238ece4937aa fbdev: sm501fb: Add some geometry checks.
8356f4570082 mdacon: rework dependency list
d3ea050c153d dummycon: fix default rows/cols
9a14cacaf527 fbdev: au1100fb: Move a variable assignment behind a null pointer check
b1c4bd166771 PCI: pciehp: Don't enable HPIE when resuming in poll mode
e23dfb926f5b PCI: Fix BAR resizing when VF BARs are assigned
a1855c2ebb88 PCI: histb: Fix an error handling path in histb_pcie_probe()
b004cf517d8e PCI: dwc: ep: Return -ENOMEM for allocation failures
3453bcaf2ca9 drm/amd/display: avoid NPD when ASIC does not support DMUB
d877bf6eb39c drm/mediatek: dsi: fix error codes in mtk_dsi_host_transfer()
57a9fb47551b drm/mediatek: dp: drm_err => dev_err in HPD path to avoid NULL ptr
e5838a2bf16f drm/mediatek: Fix config_updating flag never false when no mbox channel
02e94069c3e9 PCI: xilinx-cpm: Fix IRQ domain leak in error path of probe
362b5879a7f3 PCI: Remove stray put_device() in pci_register_host_bridge()
7b40c5b938e9 powerpc/kexec: fix physical address calculation in clear_utlb_entry()
7e754aa0daaf crypto: powerpc: Mark ghashp8-ppc.o as an OBJECT_FILES_NON_STANDARD
a3030fcba3c8 drm/msm/a6xx: Fix a6xx indexed-regs in devcoreduump
f42a78df8894 drm/amd/display: fix type mismatch in CalculateDynamicMetadataParameters()
b8b5e2e77083 drm/panthor: Update CS_STATUS_ defines to correct values
bcb484200441 PCI: Avoid reset when disabled via sysfs
2a54a1a9c6c9 PCI/portdrv: Only disable pciehp interrupts early when needed
2cf276e501c4 PCI: brcmstb: Fix potential premature regulator disabling
df63321a40cc PCI: brcmstb: Fix error path after a call to regulator_bulk_get()
0fe63272c43c PCI: brcmstb: Use internal register to change link capability
4557922dbfca PCI: brcmstb: Set generation limit before PCIe link up
b23b73ea4c21 PCI: cadence-ep: Fix the driver to send MSG TLP for INTx without data payload
c0ef1c8ef70b drm/amdkfd: Fix Circular Locking Dependency in 'svm_range_cpu_invalidate_pagetables'
70f1dcc21779 drm/msm/dsi: Set PHY usescase (and mode) before registering DSI host
2af52e4d2e19 drm/msm/dsi: Use existing per-interface slice count in DSC timing
a47ee1884c5b drm/msm/dsi/phy: Program clock inverters in correct register
47a025046640 drm/msm/dpu: don't use active in atomic_check()
a99219bbd69a drm/amd/display: fix an indent issue in DML21
8ba27aa51286 PCI/ACS: Fix 'pci=config_acs=' parameter
91b0ab875128 drm/panel: ilitek-ili9882t: fix GPIO name in error message
f556b6ba0ac5 PCI/ASPM: Fix link state exit during switch upstream function removal
4f997843de78 drm/mediatek: mtk_hdmi: Fix typo for aud_sampe_size member
0fe9a58fa5d0 drm/mediatek: mtk_hdmi: Unregister audio platform device on failure
372e387c4f1c PCI: Remove add_align overwrite unrelated to size0
254f771c7067 PCI: Use downstream bridges for distributing resources
f2b099e945ee drm/amdgpu/umsch: fix ucode check
2dbf9e3efcc0 drm/amdgpu: refine smu send msg debug log format
2a07eab05d9d gpu: cdns-mhdp8546: fix call balance of mhdp->clk handling routines
d5eb8e347905 drm/vkms: Fix use after free and double free on init error
b84d743c2393 drm: xlnx: zynqmp: Fix max dma segment size
dd8e6445e4e3 drm/bridge: it6505: fix HDCP V match check is not performed correctly
69e90c1e3391 drm/dp_mst: Fix drm RAD print
5ffb6b9a1a04 drm/ssd130x: ensure ssd132x pitch is correct
5a3461ca54db drm/ssd130x: fix ssd132x encoding
a9c4366566e6 drm/ssd130x: Set SPI .id_table to prevent an SPI core warning
950513eba9cb drm/bridge: ti-sn65dsi86: Fix multiple instances
15291b561d8c ALSA: timer: Don't take register_mutex with copy_from/to_user()
11242f4b9baa ASoC: ti: j721e-evm: Fix clock configuration for ti,j7200-cpb-audio compatible
f751361b3a15 ALSA: hda/realtek: Always honor no_shutup_pins
2050247d5ebf dt-bindings: vendor-prefixes: add GOcontroll
7fdca6c0b12c HID: remove superfluous (and wrong) Makefile entry for CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER
da3ac4cf7f13 ASoC: amd: acp: Fix for enabling DMIC on acp platforms via _DSD entry
748a1118d20d ASoC: cs35l41: check the return value from spi_setup()
5b6739341500 platform/x86: dell-ddv: Fix temperature calculation
0654ea13976c platform/x86: dell-uart-backlight: Make dell_uart_bl_serdev_driver static
a4f38bc600f3 platform/x86: lenovo-yoga-tab2-pro-1380-fastcharger: Make symbol static
4f42478af663 auxdisplay: panel: Fix an API misuse in panel.c
f0a72629ccec media: platform: allgro-dvt: unregister v4l2_device on the error path
d34100049923 media: verisilicon: HEVC: Initialize start_bit field
e161533964de auxdisplay: MAX6959 should select BITREVERSE
d026245063d2 regulator: pca9450: Fix enable register for LDO5
f5852872eb29 x86/entry: Add __init to ia32_emulation_override_cmdline()
52e513a8850c x86/fpu/xstate: Fix inconsistencies in guest FPU xfeatures
b86500597089 x86/traps: Make exc_double_fault() consistently noreturn
5108828fecfc perf/ring_buffer: Allow the EPOLLRDNORM flag for poll
345957c1cfb8 lockdep: Don't disable interrupts on RT in disable_irq_nosync_lockdep.*()
c3a4c91a409e PM: sleep: Fix handling devices with direct_complete set on errors
953d28a4f459 thermal: int340x: Add NULL check for adev
a8a1bcc27d46 x86/resctrl: Fix allocation of cleanest CLOSID on platforms with no monitors
385a0265295f EDAC/ie31200: Fix the error path order of ie31200_init()
4294e94f43c7 EDAC/ie31200: Fix the DIMM size mask for several SoCs
67d079c0f29e EDAC/ie31200: Fix the size of EDAC_MC_LAYER_CHIP_SELECT layer
96b4f2e97408 selinux: Chain up tool resolving errors in install_policy.sh
864750968d71 watchdog/hardlockup/perf: Fix perf_event memory leak
b471631fa19a kunit/stackinit: Use fill byte different from Clang i386 pattern
ff435a627342 RISC-V: KVM: Disable the kernel perf counter during configure
e2bda794d381 cpufreq: tegra194: Allow building for Tegra234
31d5665172b3 PM: sleep: Adjust check before setting power.must_resume
4d28c2ab2af5 lockdep/mm: Fix might_fault() lockdep check of current->mm->mmap_lock
9807270d7399 x86/sev: Add missing RIP_REL_REF() invocations during sme_enable()
3e14d9a4eb74 x86/platform: Only allow CONFIG_EISA for 32-bit
a086e7cde509 x86/fpu: Avoid copying dynamic FP state from init_task in arch_dup_task_struct()
568aa554e760 x86/fpu: Fix guest FPU state buffer allocation size
2c27c9e1d18a EDAC/{skx_common,i10nm}: Fix some missing error reports on Emerald Rapids
f381c92ab4ec cpufreq: governor: Fix negative 'idle_time' handling in dbs_update()
b576c4834d5a sched/eevdf: Force propagating min_slice of cfs_rq when {en,de}queue tasks
7b1d2454d0b6 sched: Cancel the slice protection of the idle entity
2d5c37dff4b0 smack: ipv4/ipv6: tcp/dccp/sctp: fix incorrect child socket label
9d93922280f9 smack: dont compile ipv6 code unless ipv6 is configured
40426fc0970e cpufreq: scpi: compare kHz instead of Hz
bc4d689a231d x86/mm/pat: cpa-test: fix length for CPA_ARRAY test
56ec918e6c86 watch_queue: fix pipe accounting mismatch
2ee7ebed771b mips: Add '-std=gnu11' to vdso CFLAGS
b2c792d89ac5 yaffs2: switch from readlink_copy() to vfs_readlink()
807165b1ec1c tools/power/x86/intel-speed-select: Prefix header search path with sysroot
e97df805b938 drm/tilcdc: Set preferred depth
7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650
6d8ac5ebe6e8 aufs6: core
587abc1b64c4 aufs6: standalone
1af41d30ef42 aufs6: mmap
6ee2464d2e9d aufs6: base
103b676505f7 aufs6: kbuild
67281562943f qemux86: add configuration symbol to select values
73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs
1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter
918e7a825e8b clear_warn_once: bind a timer to written reset value
f533f87c3758 clear_warn_once: expand debugfs to include read support
f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS
e633abe9c44e libbpf: Fix build warning on ref_ctr_off
ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel.
03721ceb5626 perf: x86-32: explicitly include <errno.h>
4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long
b0200449610d perf: fix bench numa compilation
aff0940b2212 perf: add SLANG_INC for slang.h
ef912018d28c perf: add sgidefs.h to for mips builds
d8860f858b87 perf: change --root to --prefix for python install
dc38a0eee6e5 perf: add 'libperl not found' warning
6ed51f8786da perf: force include of <stdbool.h>
c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32()
63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat
7816667451ef FAT: Added FAT_NO_83NAME
f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option
771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option
a24784fd8f88 yaffs2: update to v6.12 folio changes
d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes
d097e4d4115a yaffs: fix mtime/itime field access
4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+
1b6619086e8b yaffs2: v6.5 fixups
25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length
5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap
55986a1284b3 yaffs2: replace bdevname call with sprintf
6f5508f8db8f yaffs2: convert read_page -> readfolio
fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL
c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name
78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested)
8d2dddba272c yaffs: include blkdev.h
8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API
27005cbac2ed yaffs2: v5.6 build fixups
668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read
285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super
ffc2ed489ccf yaffs: repair yaffs_get_mtd_device
6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API
19f283abc5d1 yaffs2: fix memory leak in mount/umount
04e84672b571 yaffs: Avoid setting any ACL releated xattr
4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1
81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis
26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY
a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020)
feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation
874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility
1d42508faee8 tools: use basename to identify file in gen-mach-types
4b055eca593d iwlwifi: select MAC80211_LEDS conditionally
97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119)
6dec58319165 defconfigs: drop obselete options
a416ccb5b6c9 linux-yocto: Handle /bin/awk issues
7efe8a1e5158 uvesafb: provide option to specify timeout for task completion
78d10ae07eca uvesafb: print error message when task timeout occurs
80473b7eb8ca compiler.h: Undef before redefining __attribute_const__
ddeff2f1a9a7 vmware: include jiffies.h
3dcdda8912b4 Resolve jiffies wrapping about arp
3b1507db6735 nfs: Allow default io size to be configured.
c2fedad05f77 check console device file on fs when booting
208d6fbada3f mount_root: clarify error messages for when no rootfs found
dbe9454c8ea0 mconf: fix output of cflags and libraries
7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location
b6c189c81397 modpost: mask trivial warnings
a5cc21325ba9 kbuild: exclude meta directory from distclean processing
361ec143c23f powerpc: serialize image targets
605e6ccb304c arm: serialize build targets
e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition
44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86
a08cb65331e6 x86_64_defconfig: Fix warnings
8ad332ef777b mips: make current_cpu_data preempt safe
754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code
325ff78ff44d mips: Kconfig: add QEMUMIPS64 option
99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency
c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c
8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018
16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var
6b60c874cbb0 arm64: defconfig: cleanup config options
8e44673ecd89 vexpress: Pass LOADADDR to Makefile
f34e6805aad5 arm: ARM EABI socketcall
94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault
(From OE-Core rev: 054457a772df0e7866fa4ff0f22d79622ff419bd)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:
55767d6e74ef Linux 6.12.22
9e6e83e1e2d0 bcachefs: bch2_ioctl_subvolume_destroy() fixes
a964484a3537 serial: 8250_dma: terminate correct DMA in tx_dma_flush()
5f9176f82ec7 serial: stm32: do not deassert RS485 RTS GPIO prematurely
f86907583000 perf tools: Fix up some comments and code to properly use the event_source bus
b094e8e3988e memstick: rtsx_usb_ms: Fix slab-use-after-free in rtsx_usb_ms_drv_remove
a4931d9fb99e usb: xhci: Apply the link chain quirk on NEC isoc endpoints
6af20ac254cb usb: xhci: Don't skip on Stopped - Length Invalid
ed5760db3d8a net: usb: usbnet: restore usb%d name exception for local mac addresses
52e05bea53c2 net: usb: qmi_wwan: add Telit Cinterion FE990B composition
666e78b47713 net: usb: qmi_wwan: add Telit Cinterion FN990B composition
53a005d3019f tty: serial: fsl_lpuart: disable transmitter before changing RS485 related registers
27bd86d139ce tty: serial: 8250: Add Brainboxes XC devices
54f9a8dcab90 tty: serial: 8250: Add some more device IDs
0fac51a2d143 counter: microchip-tcb-capture: Fix undefined counter channel state on probe
181a2ab650f7 counter: stm32-lptimer-cnt: fix error handling when enabling
3ed38d0297fa ALSA: hda/realtek: Support mute LED on HP Laptop 15s-du3xxx
2bb139e483f8 netfilter: socket: Lookup orig tuple for IPv6 SNAT
2c1674fb52b2 drm/amd/display: Don't write DP_MSTM_CTRL after LT
95407304253a nfsd: fix legacy client tracking initialization
09691f367df4 atm: Fix NULL pointer dereference
dddd13f7f167 HID: hid-plantronics: Add mic mute mapping and generalize quirks
a532e7680878 ALSA: usb-audio: Add quirk for Plantronics headsets to fix control names
2ee7ebed771b mips: Add '-std=gnu11' to vdso CFLAGS
3423cae69078 Linux 6.12.21
2fa52cd829c1 mptcp: Fix data stream corruption in the address announcement
86368616a9ce mm/huge_memory: drop beyond-EOF folios with the right number of refs
e7940c5794c3 arm64: dts: rockchip: fix u2phy1_host status for NanoPi R4S
9aaffd371829 libsubcmd: Silence compiler warning
8ece5abd7490 Revert "sched/core: Reduce cost of sched_move_task when config autogroup"
c7762348038b KVM: arm64: Eagerly switch ZCR_EL{1,2}
4a397bf077e7 KVM: arm64: Mark some header functions as inline
2e4f2c20db53 KVM: arm64: Refactor exit handlers
cb53828d6911 KVM: arm64: Remove VHE host restore of CPACR_EL1.SMEN
d547b363f16a KVM: arm64: Remove VHE host restore of CPACR_EL1.ZEN
f19a46cb5373 KVM: arm64: Remove host FPSIMD saving for non-protected KVM
79e140bba70b KVM: arm64: Unconditionally save+flush host FPSIMD/SVE/SME state
e6cd28bbbf90 KVM: arm64: Calculate cptr_el2 traps on activating traps
73ef4f6e379b io_uring/net: fix sendzc double notif flush
a4cb17797a5d ksmbd: fix incorrect validation for num_aces field of smb_acl
731eccbd65aa drm/amdkfd: Fix user queue validation on Gfx7/8
3aa8e00fefca drm/amdgpu: Fix JPEG video caps max size for navi1x and raven
a0a43a133371 drm/amdgpu: Fix MPEG2, MPEG4 and VC1 video caps max size
499d1adcac3e drm/amdgpu: Remove JPEG from vega and carrizo video caps
97c2a78d2995 drm/amdgpu/pm: wire up hwmon fan speed for smu 14.0.2
4b8b7026fc3b drm/amdgpu/pm: Handle SCLK offset correctly in overdrive for smu 14.0.2
8201c17e986e drm/amdgpu: Restore uncached behaviour on GFX12
eacbc9d28391 drm/amd/pm: add unique_id for gfx12
c58726d64d08 drm/amd/display: Use HW lock mgr for PSR1 when only one eDP
1992e216fd3c drm/amd/display: Fix message for support_edp0_on_dp1
7341e36e6513 drm/amdgpu/gfx12: correct cleanup of 'me' field with gfx_v12_0_me_fini()
1135a9431160 drm/sched: Fix fence reference count leak
dd1801aa01bb drm/radeon: fix uninitialized size issue in radeon_vce_cs_parse()
b2ab8c713bad pmdomain: amlogic: fix T7 ISP secpower
f4489260f571 soc: qcom: pdr: Fix the potential deadlock
91176c193417 batman-adv: Ignore own maximum aggregation size during RX
130290f44bce xsk: fix an integer overflow in xp_create_and_assign_umem()
6afe2ea2daec keys: Fix UAF in key_put()
8332847875f7 efi/libstub: Avoid physical address 0x0 when doing random allocation
c4e37b381a7a firmware: qcom: uefisecapp: fix efivars registration race
54ccfef43773 ARM: shmobile: smp: Enforce shmobile_smp_* alignment
0b1d48698ed9 ARM: dts: imx6qdl-apalis: Fix poweroff on Apalis iMX6
2e1dfe3105ab memcg: drain obj stock on cpu hotplug teardown
ede3e8ac90ae proc: fix UAF in proc_get_inode()
4b84c6437f4b mm/page_alloc: fix memory accept before watermarks gets initialized
c057ee03f751 mm/migrate: fix shmem xarray update during migration
abc2677d167d mm: fix error handling in __filemap_get_folio() with FGP_NOWAIT
baa37829052f selftests/mm: run_vmtests.sh: fix half_ufd_size_MB calculation
8f8eb5afa2cb mmc: atmel-mci: Add missing clk_disable_unprepare()
e96500b7d695 mmc: sdhci-brcmstb: add cqhci suspend/resume to PM ops
838c916e6d66 arm64: dts: rockchip: fix pinmux of UART5 for PX30 Ringneck on Haikou
f8ec8036e7e0 arm64: dts: rockchip: fix pinmux of UART0 for PX30 Ringneck on Haikou
200517d82b4c arm64: dts: freescale: imx8mm-verdin-dahlia: add Microphone Jack to sound card
16f1b7dc28a4 arm64: dts: freescale: imx8mp-verdin-dahlia: add Microphone Jack to sound card
b362fc904d26 accel/qaic: Fix integer overflow in qaic_validate_req()
a99f1254b11e regulator: check that dummy regulator has been probed before using it
d3b83a1442a0 regulator: dummy: force synchronous probing
0def1a40c3e7 netfs: Call `invalidate_cache` only if implemented
adb7325362c7 riscv: dts: starfive: Fix a typo in StarFive JH7110 pin function definitions
66e3cc3885e8 io_uring/net: don't clear REQ_F_NEED_CLEANUP unconditionally
4b4d2527840f drm/v3d: Don't run jobs that have errors flagged in its fence
c76a537ca228 drm/xe: Fix exporting xe buffers multiple times
dc55ba5f6dd5 can: flexcan: disable transceiver during system PM
7072723e0534 can: flexcan: only change CAN state when link up in system PM
8cec9e314d33 can: ucan: fix out of bound read in strscpy() source
eb14937ece4f can: rcar_canfd: Fix page entries in the AFL list
76a13fad5a3f dt-bindings: can: renesas,rcar-canfd: Fix typo in pattern properties for R-Car V4M
15cc669513d6 net: mana: Support holes in device list reply msg
bb83e6e7b56e i2c: omap: fix IRQ storms
71c9cf87776e tracing: tprobe-events: Fix leakage of module refcount
a3ff812d68f6 Revert "gre: Fix IPv6 link-local address generation."
250793874f91 net/neighbor: add missing policy for NDTPA_QUEUE_LENBYTES
176d0333aae4 libfs: Fix duplicate directory entry in offset_dir_lookup
0d8a8179fa52 net: ipv6: ioam6: fix lwtunnel_output() loop
49a009135042 net: lwtunnel: fix recursion loops
1344df9a981c net: ti: icssg-prueth: Add lock to stats
326223182e47 net: atm: fix use after free in lec_send()
99918fb674d2 gpu: host1x: Do not assume that a NULL domain means no DMA IOMMU
58ed057dcdb3 phy: fix xa_alloc_cyclic() error handling
cb2f8a5c1fd9 dpll: fix xa_alloc_cyclic() error handling
f8aaa38cfaf6 devlink: fix xa_alloc_cyclic() error handling
cfbde06fda15 ipv6: Set errno after ip_fib_metrics_init() in ip6_route_info_create().
29d91820184d ipv6: Fix memleak of nhc_pcpu_rth_output in fib_check_nh_v6_gw().
8940e6168bb3 net: ipv6: fix TCP GSO segmentation with NAT
d4bf956547c3 net: ethernet: ti: am65-cpsw: Fix NAPI registration sequence
8bf2f1ba2729 ata: libata-core: Add ATA_QUIRK_NO_LPM_ON_ATI for certain Samsung SSDs
5ba4f58ec2de tracing: tprobe-events: Fix to clean up tprobe correctly when module unload
dfc80ed249b6 ARM: davinci: da850: fix selecting ARCH_DAVINCI_DA8XX
1be40f79d36d accel/qaic: Fix possible data corruption in BOs > 2G
e8f50474037f Bluetooth: hci_event: Fix connection regression between LE and non-LE adapters
761b7c36addd Bluetooth: Fix error code in chan_alloc_skb_cb()
bc6824b3aaff RDMA/hns: Fix wrong value of max_sge_rd
abf7f5be159a RDMA/hns: Fix missing xa_destroy()
0fa35d93d50a RDMA/hns: Fix a missing rollback in error path of hns_roce_create_qp_common()
7912097c9304 RDMA/hns: Fix invalid sq params not being blocked
4e4c2571aac4 RDMA/hns: Fix unmatched condition in error path of alloc_user_qp_db()
13a52f6c9ff9 RDMA/hns: Fix soft lockup during bt pages loop
d7b8dc4a0dce RDMA/bnxt_re: Avoid clearing VLAN_ID mask in modify qp path
ca3c033a4fe1 dma-mapping: fix missing clear bdr in check_ram_in_range_map()
db7dd032eeb2 ARM: dts: BCM5301X: Fix switch port labels of ASUS RT-AC3200
2c74f29eaa0d ARM: dts: BCM5301X: Fix switch port labels of ASUS RT-AC5300
d4ebdbbd4603 ARM: dts: bcm2711: Don't mark timer regs unconfigured
49d3178ea54a ARM: OMAP1: select CONFIG_GENERIC_IRQ_CHIP
7c2a5a535cbd RDMA/mlx5: Handle errors returned from mlx5r_ib_rate()
adeba5b0d120 RDMA/bnxt_re: Add missing paranthesis in map_qp_id_to_tbl_indx
2776978d2fac RDMA/rxe: Fix the failure of ibv_query_device() and ibv_query_device_ex() tests
9d22afe499d0 arm64: dts: rockchip: Remove undocumented sdmmc property from lubancat-1
be96850f9ed2 arm64: dts: bcm2712: PL011 UARTs are actually r1p5
98c175b8eb2b ARM: dts: bcm2711: PL011 UARTs are actually r1p5
b8a47aa0b3df ARM: dts: bcm2711: Fix xHCI power-domain
11ae21f1b926 soc: imx8m: Unregister cpufreq and soc dev in cleanup path
224d8bf798fb soc: imx8m: Use devm_* to simplify probe failure handling
4d709816638d soc: imx8m: Remove global soc_uid
25e4700489cf xfrm_output: Force software GSO only in tunnel mode
a0395e96831a xfrm: fix tunnel mode TX datapath in packet offload mode
a64df69c9718 arm64: dts: rockchip: remove supports-cqe from rk3588 tiger
02396956ad89 arm64: dts: rockchip: remove supports-cqe from rk3588 jaguar
5e203693ebf2 arm64: dts: freescale: tqma8mpql: Fix vqmmc-supply
ea835113e5d0 firmware: imx-scu: fix OF node leak in .probe()
d78510d151b5 firmware: qcom: scm: Fix error code in probe()
f491dd2afe1c Linux 6.12.20
62b9ad7e52d4 fs/netfs/read_collect: add to next->prev_donated
8f324d99306b HID: apple: disable Fn key handling on the Omoton KB066
888bcd6c5832 nvme-fc: rely on state transitions to handle connectivity loss
f87271d21dd4 Bluetooth: L2CAP: Fix corrupted list in hci_chan_del
ee06d5c81041 tools/sched_ext: Add helper to check task migration state
46db29a2c8b1 sched_ext: selftests/dsp_local_on: Fix selftest on UP systems
9d9d87e44dd7 smb: client: Fix match_session bug preventing session reuse
beb97eba4cd8 smb3: add support for IAKerb
f41514828296 mm/hugetlb: wait for hugetlb folios to be freed
3b699bcc2667 i2c: sis630: Fix an error handling path in sis630_probe()
ee2ae325f78e i2c: ali15x3: Fix an error handling path in ali15x3_probe()
be05097610f0 i2c: ali1535: Fix an error handling path in ali1535_probe()
9233b85afb47 x86/vmware: Parse MP tables for SEV-SNP enabled guests under VMware hypervisors
1c46673be93d cifs: Fix integer overflow while processing closetimeo mount option
4740cef2a9d0 cifs: Fix integer overflow while processing actimeo mount option
2809a79bc649 cifs: Fix integer overflow while processing acdirmax mount option
833f2903eb8b cifs: Fix integer overflow while processing acregmax mount option
527bde0d9cac block: change blk_mq_add_to_batch() third argument type to bool
0dfe4a7957a5 scripts: generate_rust_analyzer: add uapi crate
4614939363bb scripts: generate_rust_analyzer: add missing include_dirs
657f5e3eeceb scripts: generate_rust_analyzer: add missing macros deps
7c29e8fd1f0e drm/i915: Increase I915_PARAM_MMAP_GTT_VERSION version to indicate support for partial mmaps
e72a52a5cf18 ASoC: codecs: wm0010: Fix error handling path in wm0010_spi_probe()
77213a424a48 nvme: move error logging from nvme_end_req() to __nvme_end_req()
6f33bb8664b8 drm/xe/pm: Temporarily disable D3Cold on BMG
b99b5c254442 drm/xe/userptr: Fix an incorrect assert
0e9989bea707 drm/xe: Release guc ids before cancelling work
084c46a133c1 drm/xe: cancel pending job timer before freeing scheduler
90d1cf2fad80 ASoC: rt722-sdca: add missing readable registers
9dcd2b72ea05 rust: init: add missing newline to pr_info! calls
c79a462560d0 ASoC: cs42l43: Fix maximum ADC Volume
cebcc1f336a6 drm/gma500: Add NULL check for pci_gfx_root in mid_get_vbt_data()
4ec50b0cead5 rust: error: add missing newline to pr_warn! calls
a46a9371f8b9 ASoC: ops: Consistently treat platform_max as control value
752b56bb76e2 sched_ext: Validate prev_cpu in scx_bpf_select_cpu_dfl()
72833a339f1f net: phy: nxp-c45-tja11xx: add TJA112XB SGMII PCS restart errata
d52d624f3d70 net: phy: nxp-c45-tja11xx: add TJA112X PHY configuration errata
b9004fe68878 smb: client: fix regression with guest option
9721f3a79345 qlcnic: fix memory leak issues in qlcnic_sriov_common.c
608bbf7ff5a5 Fix mmu notifiers for range-based invalidates
f6bbea2ffea7 arm64: mm: Populate vmemmap at the page level if not section aligned
5a87e46da241 dm-flakey: Fix memory corruption in optional corrupt_bio_byte feature
454825019d2f netmem: prevent TX of unreadable skbs
e2c89427e08b ASoC: amd: yc: Support mic on another Lenovo ThinkPad E16 Gen 2 model
ac4b32cb59ff ASoC: Intel: sof_sdw: Fix unlikely uninitialized variable use in create_sdw_dailinks()
0a024f992500 clk: samsung: gs101: fix synchronous external abort in samsung_clk_save()
d14ef11b1d1e clk: samsung: update PLL locktime for PLL142XX used on FSD platform
a4261bbc33fb ksmbd: prevent connection release during oplock break notification
62746ae3f541 ksmbd: fix use-after-free in ksmbd_free_work_struct
bac7b8b1a3f1 drm/amd/display: Fix slab-use-after-free on hdcp_work
04f90b505ad3 drm/amd/display: Assign normalized_pix_clk when color depth = 14
6d669a3b031a drm/amd/display: Restore correct backlight brightness after a GPU reset
fefa811e616b drm/amd/display: fix missing .is_two_pixels_per_container
9826fd36ff20 drm/amd/display: fix default brightness
d1227b94d75c drm/amd/display: Disable unneeded hpd interrupts during dm_init
60ae74e367ae drm/amdgpu/display: Allow DCC for video formats on GFX12
c5c5e76aea80 drm/amd/amdkfd: Evict all queues even HWS remove queue failed
72235808eabe drm/amdgpu: NULL-check BO's backing store when determining GFX12 PTE flags
beb47bc67363 drm/dp_mst: Fix locking when skipping CSN before topology probing
962912aaf8d1 drm/atomic: Filter out redundant DPMS calls
e487d35964fb drm/panic: fix overindented list items in documentation
8232ec53bcdd drm/panic: use `div_ceil` to clean Clippy warning
8f55d4414d55 drm/i915/cdclk: Do cdclk post plane programming later
220e26960ef4 spi: microchip-core: prevent RX overflows when transmit size > FIFO size
488ffc0cac38 x86/microcode/AMD: Fix out-of-bounds on systems with CPU-less NUMA nodes
677088b7fa88 rust: init: fix `Zeroable` implementation for `Option<NonNull<T>>` and `Option<KBox<T>>`
514d35a745b8 rust: Disallow BTF generation with Rust + LTO
28d472f153f9 rust: alloc: satisfy POSIX alignment requirement
6db379b34a06 rust: remove leftover mentions of the `alloc` crate
2ef7bdb84620 rust: lockdep: Remove support for dynamically allocated LockClassKeys
ccffb475c133 USB: serial: option: match on interface class for Telit FN990B
d233dbf101b1 USB: serial: option: fix Telit Cinterion FE990A name
3bfa629f4516 USB: serial: option: add Telit Cinterion FE990B compositions
87ede08ef245 USB: serial: ftdi_sio: add support for Altera USB Blaster 3
1a7493a2b899 Input: i8042 - swap old quirk combination with new quirk for more devices
64c6abf1b427 Input: i8042 - swap old quirk combination with new quirk for several devices
ee554ffa3731 Input: i8042 - add required quirks for missing old boardnames
3d6fa8c56bb1 Input: i8042 - swap old quirk combination with new quirk for NHxxRZQ
0ff93d895619 Input: xpad - rename QH controller to Legion Go S
f7ccf4eb4bac Input: xpad - add support for TECNO Pocket Go
d91dd818f1fc Input: xpad - add support for ZOTAC Gaming Zone
e2304bbf8789 Input: xpad - add multiple supported devices
1936b189fa7d Input: xpad - add 8BitDo SN30 Pro, Hyperkin X91 and Gamesir G7 SE controllers
84f7b6f1d63a Input: iqs7222 - preserve system status register
2daccd3b50dd Input: ads7846 - fix gpiod allocation
eff502828bb4 Input: goodix-berlin - fix vddio regulator references
fef9d44b24be cifs: Throw -EOPNOTSUPP error on unsupported reparse point type from parse_reparse_point()
b2bccc729b93 cifs: Validate content of WSL reparse point buffers
061ea46c56f6 vhost: return task creation error instead of NULL
7184e996107c block: fix 'kmem_cache of name 'bio-108' already exists'
d1ceef54b239 net: Handle napi_schedule() calls from non-interrupt
1cf295ac531c drm/nouveau: Do not override forced connector status
27fcaf0afe16 mptcp: safety check before fallback
d7e94211d12d perf/x86/rapl: Add support for Intel Arrow Lake U
2d2b4bdf083d x86/irq: Define trace events conditionally
c481ada21a72 x86/of: Don't use DTB for SMP setup if ACPI is enabled
b1d5a2c0501f perf/x86/intel: Use better start period for frequency mode
665de082f3cb drm/vkms: Round fixp2int conversion in lerp_u16
7b67d2671481 ASoC: SOF: Intel: don't check number of sdw links when set dmic_fixup
e5c9f8d2202d ASoC: dapm-graph: set fill colour of turned on nodes
df2ae00d9605 fuse: don't truncate cached, mutated symlink
c54e42985189 ASoC: tas2764: Set the SDOUT polarity correctly
1769f5cb5395 ASoC: tas2764: Fix power control mask
e43334e1dc09 ASoC: tas2770: Fix volume scale
06d7337799dc phy: ti: gmii-sel: Do not use syscon helper to build regmap
bfe7f298eedc nvme: only allow entering LIVE from CONNECTING state
94e7476fa7c5 sctp: Fix undefined behavior in left shift operation
7ece63c977c1 cifs: Treat unhandled directory name surrogate reparse points as mount directory nodes
317fb015fe58 apple-nvme: Release power domains when probe fails
1f07456a5a66 nvmet-rdma: recheck queue state is LIVE in state lock in recv done
fd903dd30122 nvme-pci: quirk Acer FA100 for non-uniqueue identifiers
b349a3d1b15e io-wq: backoff when retrying worker creation
4fd9f51368a2 net: wwan: mhi_wwan_mbim: Silence sequence number glitch errors
a14be80a82c8 ASoC: SOF: amd: Handle IPC replies before FW_BOOT_COMPLETE
985c2c69a5e4 ASoC: SOF: amd: Add post_fw_run_delay ACP quirk
eb49f80b8a6f ALSA: hda: hda-intel: add Panther Lake-H support
458173e86d77 ASoC: SOF: Intel: pci-ptl: Add support for PTL-H
c51c8ec76cfc ALSA: hda: intel-dsp-config: Add PTL-H support
4ed43c26b7dc PCI: pci_ids: add INTEL_HDA_PTL_H
8aac6256919d ASoC: SOF: Intel: hda: add softdep pre to snd-hda-codec-hdmi module
5b27776a2beb ASoC: arizona/madera: use fsleep() in up/down DAPM event delays.
f6eaaf1f5bcf ASoC: rsnd: adjust convert rate limitation
6ff121ffe87c ASoC: rsnd: don't indicate warning on rsnd_kctrl_accept_runtime()
e96e1000be20 ASoC: rsnd: indicate unsupported clock rate
d44418f5024f ALSA: hda/realtek: Limit mic boost on Positivo ARN50
a402f90da448 ASoC: simple-card-utils.c: add missing dlc->of_node
c18fc7e6bbd0 ASoC: Intel: soc-acpi-intel-mtl-match: declare adr as ull
ed05ae9a27c9 ASoC: Intel: sof_sdw: Add quirk for Asus Zenbook S14
d5742c484f52 ASoC: Intel: sof_sdw: Add lookup of quirk using PCI subsystem ID
45fb7e0d0cab selftests/bpf: Fix invalid flag of recv()
02a12760d7c9 drm/tests: hdmi: Fix recursive locking
b0f9bb67869d drm/tests: hdmi: Reorder DRM entities variables assignment
9828d2f2a6ee drm/tests: hdmi: Remove redundant assignments
f8094625a591 Bluetooth: L2CAP: Fix slab-use-after-free Read in l2cap_send_cmd
2139811c3f79 Xen/swiotlb: mark xen_swiotlb_fixup() __init
aa3b0ea4742a arm64: amu: Delay allocating cpumask for AMU FIE support
8aa4c89378ed LoongArch: KVM: Set host with kernel mode when switch to VM mode
f30b7b949ed8 LoongArch: Fix kernel_page_present() for KPRANGE/XKPRANGE
a91922e9eab5 thermal/cpufreq_cooling: Remove structure member documentation
e129f7291506 s390/cio: Fix CHPID "configure" attribute caching
7e759fb01512 platform/x86: int3472: Call "reset" GPIO "enable" for INT347E
515b17dcd4cf platform/x86: int3472: Use correct type for "polarity", call it gpio_flags
f6ee81371e70 platform/x86: thinkpad_acpi: Support for V9 DYTC platform profiles
f92324135f09 platform/x86: thinkpad_acpi: Fix invalid fan speed on ThinkPad X120e
30a40b592594 sched: Clarify wake_up_q()'s write to task->wake_q.next
c39bd0df25b4 objtool: Ignore dangling jump table entries
d5ca39d3369a btrfs: fix two misuses of folio_shift()
3ceaafa26f30 HID: apple: fix up the F6 key on the Omoton KB066 keyboard
024d7e006aa4 HID: hid-apple: Apple Magic Keyboard a3203 USB-C support
08fde0878480 selftests/cgroup: use bash in test_cpuset_v1_hp.sh
fb019cf04211 HID: topre: Fix n-key rollover on Realforce R3S TKL boards
2501c9ce2da7 HID: intel-ish-hid: ipc: Add Panther Lake PCI device IDs
25736fe5893d usb: phy: generic: Use proper helper for property detection
705f2515189c HID: hid-steam: Fix issues with disabling both gamepad mode and lizard mode
6ca3d4d87af4 HID: ignore non-functional sensor in HP 5MP Camera
3cef11955f29 HID: intel-ish-hid: Send clock sync message immediately after reset
e9275a19e271 HID: intel-ish-hid: fix the length of MNG_SYNC_FW_CLOCK in doorbell
05db4968d4bb sched_ext: selftests/dsp_local_on: Fix sporadic failures
7963b379a37c selftests: always check mask returned by statmount(2)
37e638d4cae4 vboxsf: fix building with GCC 15
3b477a0296f4 alpha/elf: Fix misc/setarch test of util-linux by removing 32bit support
ef35c36fb4f1 smb: client: fix noisy when tree connecting to DFS interlink targets
61699cb2534f ACPI: resource: IRQ override for Eluktronics MECH-17
af71ba921d08 scsi: qla1280: Fix kernel oops when debug level > 2
3be04084517e scsi: ufs: core: Fix error return with query response
1207e5d1a268 scsi: core: Use GFP_NOIO to avoid circular locking dependency
36793d90d76f drm/amd/display: Fix out-of-bound accesses
8bf1b5eeaf94 platform/x86/intel: pmc: fix ltr decode in pmc_core_ltr_show()
20d6994b6f1f sched/debug: Provide slice length for fair tasks
b253660fac5e iscsi_ibft: Fix UBSAN shift-out-of-bounds warning in ibft_attr_show_nic()
aa189c394168 futex: Pass in task to futex_queue()
fb51a7209398 btrfs: avoid starting new transaction when cleaning qgroup during subvolume drop
ccdec7ea9a3d powercap: call put_device() on an error path in powercap_register_control_type()
ae5716b4631f hrtimers: Mark is_migration_base() with __always_inline
18bee525aa9a nvme-fc: do not ignore connectivity loss during connecting
50ef04270048 nvme-fc: go straight to connecting state when initializing
d6402fb37720 net/mlx5e: Prevent bridge link show failure for non-eswitch-allowed devices
f7bf259a0427 net/mlx5: Bridge, fix the crash caused by LAG state check
b22fae6a7aaf net/mlx5: Lag, Check shared fdb before creating MultiPort E-Switch
4251e73182c3 net/mlx5: Fix incorrect IRQ pool usage when releasing IRQs
5f634c972be8 net/mlx5: HWS, Rightsize bwc matcher priority
9e79fdabd52c Revert "openvswitch: switch to per-action label counting in conntrack"
e6610f9c08b4 net: openvswitch: remove misbehaving actions length check
a4d42b590115 gre: Fix IPv6 link-local address generation.
931681bc821f netfilter: nft_exthdr: fix offset with ipv4_find_option()
5c3ca9cb48b5 net_sched: Prevent creation of classes with TC_H_ROOT
e6cb63fac7fd ipvs: prevent integer overflow in do_ip_vs_get_ctl()
db1e0c085682 netfilter: nf_conncount: Fully initialize struct nf_conncount_tuple in insert_tree()
992a60cdfd9f rtase: Fix improper release of ring list entries in rtase_sw_reset
247347fe0cdd selftests: bonding: fix incorrect mac address
4cf224c45fe7 bonding: fix incorrect MAC address setting to receive NS messages
5c47d5bfa7b0 net: mctp: unshare packets when reassembling
a597d4b75669 net: switchdev: Convert blocking notification chain to a raw one
187ef72a8438 eth: bnxt: fix memory leak in queue reset
0997443906b9 bnxt_en: handle tpa_info in queue API implementation
fa36f457eec3 bnxt_en: refactor tpa_info alloc/free into helpers
f49bc4d7ff3d eth: bnxt: use page pool for head frags
f059a0fd7330 eth: bnxt: fix kernel panic in the bnxt_get_queue_stats{rx | tx}
5b57ed14a1b8 eth: bnxt: do not update checksum in bnxt_xdp_build_skb()
a6604717850e eth: bnxt: do not use BNXT_VNIC_NTUPLE unconditionally in queue restart logic
14eb5f0d6554 eth: bnxt: return fail if interface is down in bnxt_queue_mem_alloc()
19107e71be33 eth: bnxt: fix truesize for mb-xdp-pass case
1d34296409a5 net/mlx5: handle errors in mlx5_chains_create_table()
102d02874911 Drivers: hv: vmbus: Don't release fb_mmio resource in vmbus_free_mmio()
4545e2aa121a fbdev: hyperv_fb: Allow graceful removal of framebuffer
ae833890703c fbdev: hyperv_fb: Simplify hvfb_putmem
cfffe46a994a fbdev: hyperv_fb: Fix hang in kdump kernel when on Hyper-V Gen 2 VMs
24f1bbfb2be7 drm/hyperv: Fix address space leak when Hyper-V DRM device is removed
be7188d7f1f6 netpoll: hold rcu read lock in __netpoll_send_skb()
caff87addf19 net: mctp i2c: Copy headers if cloned
370dacb7edc2 net: mctp i3c: Copy headers if cloned
956d8ef54a42 net: dsa: mv88e6xxx: Verify after ATU Load ops
251841a71c4f net/mlx5: Fill out devlink dev info only for PFs
55b098a2beec Revert "Bluetooth: hci_core: Fix sleeping function called from invalid context"
0677a4f3c067 Bluetooth: hci_event: Fix enabling passive scanning
a5158d67bff0 wifi: cfg80211: cancel wiphy_work before freeing wiphy
83a73cb88f1d wifi: mac80211: don't queue sdata::work for a non-running sdata
6114d2e6efda wifi: iwlwifi: mvm: fix PNVM timeout for non-MSI-X platforms
68896dd50180 sched: address a potential NULL pointer dereference in the GRED scheduler.
0befa32ac3f9 netfilter: nf_tables: make destruction work queue pernet
a5396ee0f541 netfilter: nf_conncount: garbage collection is not skipped when jiffies wrap around
198907fa1444 ice: Fix switchdev slow-path in LAG
3b27e6e10a32 ice: fix memory leak in aRFS after reset
44386eb2d9b7 ice: do not configure destination override for switchdev
2231d7c821f3 netfilter: nft_ct: Use __refcount_inc() for per-CPU nft_ct_pcpu_template.
a585f6ea42ec pinctrl: nuvoton: npcm8xx: Add NULL check in npcm8xx_gpio_fw
319900a10835 pinctrl: bcm281xx: Fix incorrect regmap max_registers value
ea8411db9fba fbdev: hyperv_fb: iounmap() the correct memory when removing a device
99012b24ca23 userfaultfd: fix PTE unmapping stack-allocated PTE copies
4e9507246298 mm: fix kernel BUG when userfaultfd_move encounters swapcache
a74979dce9e9 mm/slab/kvfree_rcu: Switch to WQ_MEM_RECLAIM wq
b2c792d89ac5 yaffs2: switch from readlink_copy() to vfs_readlink()
807165b1ec1c tools/power/x86/intel-speed-select: Prefix header search path with sysroot
e97df805b938 drm/tilcdc: Set preferred depth
7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650
6d8ac5ebe6e8 aufs6: core
587abc1b64c4 aufs6: standalone
1af41d30ef42 aufs6: mmap
6ee2464d2e9d aufs6: base
103b676505f7 aufs6: kbuild
67281562943f qemux86: add configuration symbol to select values
73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs
1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter
918e7a825e8b clear_warn_once: bind a timer to written reset value
f533f87c3758 clear_warn_once: expand debugfs to include read support
f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS
e633abe9c44e libbpf: Fix build warning on ref_ctr_off
ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel.
03721ceb5626 perf: x86-32: explicitly include <errno.h>
4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long
b0200449610d perf: fix bench numa compilation
aff0940b2212 perf: add SLANG_INC for slang.h
ef912018d28c perf: add sgidefs.h to for mips builds
d8860f858b87 perf: change --root to --prefix for python install
dc38a0eee6e5 perf: add 'libperl not found' warning
6ed51f8786da perf: force include of <stdbool.h>
c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32()
63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat
7816667451ef FAT: Added FAT_NO_83NAME
f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option
771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option
a24784fd8f88 yaffs2: update to v6.12 folio changes
d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes
d097e4d4115a yaffs: fix mtime/itime field access
4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+
1b6619086e8b yaffs2: v6.5 fixups
25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length
5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap
55986a1284b3 yaffs2: replace bdevname call with sprintf
6f5508f8db8f yaffs2: convert read_page -> readfolio
fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL
c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name
78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested)
8d2dddba272c yaffs: include blkdev.h
8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API
27005cbac2ed yaffs2: v5.6 build fixups
668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read
285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super
ffc2ed489ccf yaffs: repair yaffs_get_mtd_device
6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API
19f283abc5d1 yaffs2: fix memory leak in mount/umount
04e84672b571 yaffs: Avoid setting any ACL releated xattr
4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1
81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis
26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY
a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020)
feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation
874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility
1d42508faee8 tools: use basename to identify file in gen-mach-types
4b055eca593d iwlwifi: select MAC80211_LEDS conditionally
97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119)
6dec58319165 defconfigs: drop obselete options
a416ccb5b6c9 linux-yocto: Handle /bin/awk issues
7efe8a1e5158 uvesafb: provide option to specify timeout for task completion
78d10ae07eca uvesafb: print error message when task timeout occurs
80473b7eb8ca compiler.h: Undef before redefining __attribute_const__
ddeff2f1a9a7 vmware: include jiffies.h
3dcdda8912b4 Resolve jiffies wrapping about arp
3b1507db6735 nfs: Allow default io size to be configured.
c2fedad05f77 check console device file on fs when booting
208d6fbada3f mount_root: clarify error messages for when no rootfs found
dbe9454c8ea0 mconf: fix output of cflags and libraries
7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location
b6c189c81397 modpost: mask trivial warnings
a5cc21325ba9 kbuild: exclude meta directory from distclean processing
361ec143c23f powerpc: serialize image targets
605e6ccb304c arm: serialize build targets
e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition
44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86
a08cb65331e6 x86_64_defconfig: Fix warnings
8ad332ef777b mips: make current_cpu_data preempt safe
754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code
325ff78ff44d mips: Kconfig: add QEMUMIPS64 option
99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency
c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c
8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018
16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var
6b60c874cbb0 arm64: defconfig: cleanup config options
8e44673ecd89 vexpress: Pass LOADADDR to Makefile
f34e6805aad5 arm: ARM EABI socketcall
94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault
(From OE-Core rev: dc1f7b326cd2aa8b074158e24af4ee41614cd459)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Integrating the following commit(s) to linux-yocto/6.12:
1/1 [
Author: Khem Raj
Email: raj.khem@gmail.com
Subject: mips: Add '-std=gnu11' to vdso CFLAGS
Date: Wed, 26 Mar 2025 20:24:36 -0700
GCC 15 changed the default C standard dialect from gnu17 to gnu23,
which should not have impacted the kernel because it explicitly requests
the gnu11 standard in the main Makefile. However, mips/vdso code uses
its own CFLAGS without a '-std=' value, which break with this dialect
change because of the kernel's own definitions of bool, false, and true
conflicting with the C23 reserved keywords.
include/linux/stddef.h:11:9: error: cannot use keyword 'false' as enumeration constant
11 | false = 0,
| ^~~~~
include/linux/stddef.h:11:9: note: 'false' is a keyword with '-std=c23' onwards
include/linux/types.h:35:33: error: 'bool' cannot be defined via 'typedef'
35 | typedef _Bool bool;
| ^~~~
include/linux/types.h:35:33: note: 'bool' is a keyword with '-std=c23' onwards
Add '-std=gnu11' to the decompressor and purgatory CFLAGS to eliminate
these errors and make the C standard version of these areas match the
rest of the kernel.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: stable@vger.kernel.org
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
]
(From OE-Core rev: 832657740c76c63b2e2e9229eb3934c04a5d5ca1)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
After introducing the DISTRO_LATEST_TAG and DISTRO_REL_LATEST_TAG
macros, use them in links that currently use DISTRO/DISTRO_REL_TAG. When
building for the tip of a branch, this will replace the current A.B.999
in links to the latest existing tag.
The links were found across the documentation by running 'grep -r
"http.*5\.2\.999"' inside the _build/html output after building the
docs.
[YOCTO #14802]
(From yocto-docs rev: 29be069ebbf2c55d72fc51d99ed5a558af37c05e)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Introduce the DISTRO_LATEST_TAG macro, which should always point to the
latest existing tag in the documentation, unlike DISTRO which may point
to A.B.999 to represent the tip of a branch.
This variable is needed to fix dead links in the documentation that
currently use the DISTRO macro.
Also, make DISTRO_REL_TAG use the DISTRO macro directly, to avoid
repetition, and add a DISTRO_REL_LATEST_TAG macro that has the same role
as DISTRO_LATEST_TAG but with "yocto-" prepended to it.
In set_versions.py, run the "git describe --abbrev=0 --tags
--match='yocto-*'" command to get the latest existing tag on the
currently checked out commit. Fallback to ourversion in case we didn't
find any.
(From yocto-docs rev: a85b0e500c94921f77fa7b7dbb877e4945f96d1e)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Document changes between 1c3020f173 ("expat: Upgrade 2.7.0 -> 2.7.1")
up to e894acce6e ("build-appliance-image: Update to master head
revision") in Poky:
- Add a note on the devtool upgrade-status change.
- Be more precise about the usage of multiple repositories in SRC_URI,
mention that it makes sense for bare clones only.
As the walnascar branch has now frozen and is up for QA, these should be
the one of the last changes to these documents.
(From yocto-docs rev: 322355ead2be9e267368ca47d805f41ae10ad6cc)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
It may be confusing for users that source control information is not
present in the BitBake environment. Document it as a warning block.
(From yocto-docs rev: 39967b9cc87cf216c4658598806fd7a68db5053a)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
NVD responses changed to an invalid json between:
* April 5, 2025 at 3:03:44 AM GMT+2
* April 5, 2025 at 4:19:48 AM GMT+2
The last response is since then in format
{
"resultsPerPage": 625,
"startIndex": 288000,
"totalResults": 288625,
"format": "NVD_CVE",
"version": "2.0",
"timestamp": "2025-04-07T07:17:17.534",
"vulnerabilities": [
{...},
...
{...},
]
}
Json does not allow trailing , in responses, that is json5 format.
So cve-update-nvd2-native do_Fetch task fails with log backtrace ending:
...
File: '/builds/ccp/meta-siemens/projects/ccp/../../poky/meta/recipes-core/meta/cve-update-nvd2-native.bb', lineno: 234, function: update_db_file
0230: if raw_data is None:
0231: # We haven't managed to download data
0232: return False
0233:
*** 0234: data = json.loads(raw_data)
0235:
0236: index = data["startIndex"]
0237: total = data["totalResults"]
0238: per_page = data["resultsPerPage"]
...
File: '/usr/lib/python3.11/json/decoder.py', lineno: 355, function: raw_decode
0351: """
0352: try:
0353: obj, end = self.scan_once(s, idx)
0354: except StopIteration as err:
*** 0355: raise JSONDecodeError("Expecting value", s, err.value) from None
0356: return obj, end
Exception: json.decoder.JSONDecodeError: Expecting value: line 1 column 1442633 (char 1442632)
...
There was no announcement about json format of API v2.0 by nvd.
Also this happens only if whole database is queried (database update is
fine, even when multiple pages as queried).
And lastly it's only the cve list, all other lists inside are fine.
So this looks like a bug in NVD 2.0 introduced with some update.
Patch this with simple character deletion for now and let's monitor the
situation and possibly switch to json5 in the future.
Note that there is no native json5 support in python, we'd have to use
one of external libraries for it.
(From OE-Core rev: 131d983dd19ae12bf0746f772b7d7a058e549fb1)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
These variables control the flags for the assembler, compiler and
linker, but depend on the context.
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
(From yocto-docs rev: 8f070b788c9cd6cc16e03505d978177b4c82de03)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit f8eb33569a5e8cadc036855e2d95eee77e627cb4)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
These variables control the flags for the assembler, compiler and linker
when building for nativesdk recipes.
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
(From yocto-docs rev: 978300e5f14874f2586efa3474c6f3803e3d9031)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit c08f6d3c8aee86264c069b7c30850cb02de76076)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
These toolchain variables are used in a native context. Some of the
BUILD_* variables missed documentation. Also, some of the base commands
were also not there so document them.
Some of existing BUILD_* variable documentation were missing the note
about their usage in a native context, so add it too so that all BUILD_*
variables are documented the same way.
[YOCTO #15719]
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
(From yocto-docs rev: e42d49218945a030f300dbb608e7cfb0611f5733)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 87103afa1cb6690e9aaa87ca1f23e45eaaa359ac)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Use the :manpage: role to provide links to common toolchain utilities.
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
(From yocto-docs rev: 8a25963c8dfc36482582294f0d2e7c7555d96399)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 7023e5f176efde05a6798476712c8a4e006a6b0d)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Address some of the reviews received on the release notes and migration
guide for 5.2:
- Remove the wget fetcher addition, I misread commit 0a9f90ff658e
("tests/fetch: support setting PV in the wget fetcher") from BitBake,
and it actually affects the tests for the wget fetcher, not the
fetcher itself.
- Add a way to transition from the branch=nameX,nameY syntax. From what
I have tested, I achieve the same behavior when using one or the other
syntax.
- Remove the default value for SPDX_PACKAGE_VERSION in the release note.
- Fix a couple of typos.
Suggested-by: Quentin Schulz <quentin.schulz@cherry.de>
(From yocto-docs rev: 39bf43a6009a46d4979337d7401eb46ece618f67)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Improve the current ptest-python-pytest documentation and
PTEST_PYTEST_DIR variable definition. Namely remove the default value
that may evolve over time.
Suggested-by: Quentin Schulz <quentin.schulz@cherry.de>
(From yocto-docs rev: a83406103ca73d84fc8f5c50a8968faf91276a62)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2025-04-03 16:29:51 +01:00
402 changed files with 29538 additions and 11601 deletions
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;fill:#fffefe;fill-opacity:1;stroke:none"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;fill:#fffefe;fill-opacity:1;stroke:none"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;fill:#fffefe;fill-opacity:1;stroke:none"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;fill:#fffefe;fill-opacity:1;stroke:none"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;fill:#fffefe;fill-opacity:1;stroke:none"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;fill:#fffefe;fill-opacity:1;stroke:none"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;fill:#fffefe;fill-opacity:1;stroke:none"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;fill:#fffefe;fill-opacity:1;stroke:none"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"
self.assertTrue(distro_specific_files,msg="Could not find sstate files for: %s"%', '.join(map(str,targets)))
self.assertFalse(distro_non_specific_files,msg="Found sstate files in the wrong place for: %s (found %s)"%(', '.join(map(str,targets)),str(distro_non_specific_files)))
else:
self.assertTrue(notfile_tracker,msg="Found sstate files in the wrong place for: %s (found %s)"%(', '.join(map(str,targets)),str(file_tracker)))
self.assertTrue(distro_non_specific_files,msg="Could not find sstate files for: %s"%', '.join(map(str,targets)))
self.assertFalse(distro_specific_files,msg="Found sstate files in the wrong place for: %s (found %s)"%(', '.join(map(str,targets)),str(distro_specific_files)))
# Now we'll walk the tree to check the mode and see if things are incorrect.
From 1fa4d0eb9631771bd751f04ce898433580996e5e Mon Sep 17 00:00:00 2001
From 1393cbf6b0084128fdfc9b5afb3bcc307265d094 Mon Sep 17 00:00:00 2001
From: Chen Qi <Qi.Chen@windriver.com>
Date: Thu, 27 Mar 2014 02:34:41 +0000
Subject: [PATCH] init.d: add support for read-only rootfs
Some files were not shown because too many files have changed in this diff
Show More
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.