From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Davide Ornaghi <d.ornaghi97@gmail.com>,
Pablo Neira Ayuso <pablo@netfilter.org>
Subject: [PATCH 6.18 148/325] netfilter: nft_meta_bridge: fix stale stack leak via IIFHWADDR register
Date: Tue, 16 Jun 2026 20:29:04 +0530 [thread overview]
Message-ID: <20260616145105.092681738@linuxfoundation.org> (raw)
In-Reply-To: <20260616145057.827196531@linuxfoundation.org>
6.18-stable review patch. If anyone has any objections, please let me know.
------------------
From: Davide Ornaghi <d.ornaghi97@gmail.com>
commit c7d573551f9286100a055ef696cde6af54549677 upstream.
NFT_META_BRI_IIFHWADDR declares its destination register with
len = ETH_ALEN (6 bytes), which the register-init tracking rounds up to
two 32-bit registers (8 bytes). nft_meta_bridge_get_eval() then does
memcpy(dest, br_dev->dev_addr, ETH_ALEN), writing only 6 bytes and
leaving the upper 2 bytes of the second register as uninitialised
nft_do_chain() stack. A downstream load of that register span leaks
those stale bytes to userspace.
Zero the second register before the memcpy so the full declared span is
written.
Fixes: cbd2257dc96e ("netfilter: nft_meta_bridge: introduce NFT_META_BRI_IIFHWADDR support")
Cc: stable@vger.kernel.org
Signed-off-by: Davide Ornaghi <d.ornaghi97@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
net/bridge/netfilter/nft_meta_bridge.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/bridge/netfilter/nft_meta_bridge.c b/net/bridge/netfilter/nft_meta_bridge.c
index 7763e78abb00..219c40680260 100644
--- a/net/bridge/netfilter/nft_meta_bridge.c
+++ b/net/bridge/netfilter/nft_meta_bridge.c
@@ -64,6 +64,8 @@ static void nft_meta_bridge_get_eval(const struct nft_expr *expr,
if (!br_dev)
goto err;
+ /* ETH_ALEN (6) is shorter than the destination register span (8) */
+ dest[1] = 0;
memcpy(dest, br_dev->dev_addr, ETH_ALEN);
return;
default:
--
2.54.0
next prev parent reply other threads:[~2026-06-16 15:57 UTC|newest]
Thread overview: 327+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-16 14:56 [PATCH 6.18 000/325] 6.18.36-rc1 review Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 001/325] bpf: Free reuseport cBPF prog after RCU grace period Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 002/325] ARM: group is_permission_fault() with is_translation_fault() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 003/325] ARM: allow __do_kernel_fault() to report execution of memory faults Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 004/325] ARM: fix hash_name() fault Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 005/325] ARM: fix branch predictor hardening Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 006/325] KVM: arm64: Take the SRCU lock for page table walks in fault injection and AT emulation Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 007/325] i2c: dev: prevent integer overflow in I2C_TIMEOUT ioctl Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 008/325] ipv6: mcast: Fix use-after-free when processing MLD queries Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 009/325] net/smc: fix sleep-inside-lock in __smc_setsockopt() causing local DoS Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 010/325] tee: optee: prevent use-after-free when the client exits before the supplicant Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 011/325] soc: qcom: ice: Allow explicit votes on iface clock for ICE Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 012/325] arm64: dts: qcom: x1-dell-thena: remove i2c20 (battery SMBus) and reserve its pins Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 013/325] ARM: dts: microchip: sam9x7: fix GMAC clock configuration Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 014/325] soc: qcom: ice: Return -ENODEV if the ICE platform device is not found Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 015/325] tee: fix tee_ioctl_object_invoke_arg padding Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 016/325] tee: qcomtee: add missing va_end in early return qcomtee_object_user_init() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 017/325] erofs: tidy up synchronous decompression Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 018/325] erofs: fix use-after-free on sbi->sync_decompress Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 019/325] wifi: iwlwifi: mvm: dont support the reset handshake for old firmwares Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 020/325] ksmbd: fix NULL-deref of opinfo->conn in oplock/lease break notifiers Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 021/325] netfilter: xt_NFQUEUE: prefer raw_smp_processor_id Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 022/325] ipvs: clear the svc scheduler ptr early on edit Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.18 023/325] netfilter: synproxy: add mutex to guard hook reference counting Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 024/325] netfilter: conntrack_irc: fix possible out-of-bounds read Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 025/325] netfilter: nft_ct: bail out on template ct in get eval Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 026/325] netfilter: bridge: make ebt_snat ARP rewrite writable Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 027/325] dm cache policy smq: check allocation under invalidate lock Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 028/325] net/sched: act_api: use RCU with deferred freeing for action lifecycle Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 029/325] 6lowpan: fix off-by-one in multicast context address compression Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 030/325] l2tp: pppol2tp: hold reference to session in pppol2tp_ioctl() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 031/325] devlink: Release nested relation on devlink free Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 032/325] drm/imx: Fix three kernel-doc warnings in dcss-scaler.c Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 033/325] wifi: mac80211: limit injected antenna index in ieee80211_parse_tx_radiotap Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 034/325] pcnet32: stop holding device spin lock during napi_complete_done Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 035/325] net: Annotate sk->sk_write_space() for UDP SOCKMAP Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 036/325] hsr: Remove WARN_ONCE() in hsr_addr_is_self() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 037/325] net: garp: fix unsigned integer underflow in garp_pdu_parse_attr Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 038/325] net: lan743x: permit VLAN-tagged packets up to configured MTU Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 039/325] net: fec: fix pinctrl default state restore order on resume Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 040/325] ipv6: anycast: insert aca into global hash under idev->lock Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 041/325] wifi: fix leak if split 6 GHz scanning fails Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 042/325] Bluetooth: RFCOMM: hold listener socket in rfcomm_connect_ind() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 043/325] Bluetooth: MGMT: validate advertising TLV before type checks Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 044/325] Bluetooth: RFCOMM: validate skb length in MCC handlers Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 045/325] Bluetooth: bnep: fix incorrect length parsing in bnep_rx_frame() extension handling Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 046/325] Bluetooth: bnep: reject short frames before parsing Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 047/325] Bluetooth: fix memory leak in error path of hci_alloc_dev() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 048/325] Bluetooth: ISO: Fix not releasing hdev reference on iso_conn_big_sync Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 049/325] Bluetooth: ISO: Fix data-race on iso_pi fields in hci_get_route calls Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 050/325] Bluetooth: SCO: Fix data-race on sco_pi fields in sco_connect Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 051/325] Bluetooth: MGMT: Fix backward compatibility with userspace Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 052/325] xsk: cache csum_start/csum_offset to fix TOCTOU in xsk_skb_metadata() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 053/325] octeontx2-pf: Fix NDC sync operation errors Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 054/325] octeontx2-af: Fix initialization of mcams entry2target_pffunc field Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 055/325] af_unix: Fix inq_len update problem in partial read Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 056/325] ipv4: restrict IPOPT_SSRR and IPOPT_LSRR options Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 057/325] ptp: vclock: Switch from RCU to SRCU Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 058/325] net: airoha: Fix use-after-free in metadata dst teardown Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 059/325] net: ethernet: mtk_eth_soc: " Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 060/325] net/sched: fix pedit partial COW leading to page cache corruption Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 061/325] sctp: validate cached peer INIT chunk length in COOKIE_ECHO processing Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 062/325] octeontx2-af: npc: Fix CPT channel mask in npc_install_flow Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 063/325] vxlan: vnifilter: send notification on VNI add Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 064/325] vxlan: vnifilter: fix spurious notification on VNI update Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 065/325] ieee802154: 6lowpan: only accept IPv6 packets in lowpan_xmit() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 066/325] net/802/mrp: fix vector attribute parsing in mrp_pdu_parse_vecattr Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 067/325] sctp: purge outqueue on stale COOKIE-ECHO handling Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 068/325] Drivers: hv: VMBus protocol version 6.0 Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 069/325] Drivers: hv: vmbus: Provide option to skip VMBus unload on panic Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 070/325] drm/hyperv: During panic do VMBus unload after frame buffer is flushed Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 071/325] selftests: harness: fix pidfd leak in __wait_for_test Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 072/325] signal: clear JOBCTL_PENDING_MASK for caller in zap_other_threads() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 073/325] hyperv: Clean up and fix the guest ID comment in hvgdk.h Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 074/325] time: Fix off-by-one in settimeofday() usec validation Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 075/325] ALSA: PCM: Fix wait queue list corruption in snd_pcm_drain() on linked streams Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 076/325] ALSA: seq: dummy: fix UMP event stack overread Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 077/325] spi: cadence-quadspi: fix unclocked access on unbind Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 078/325] cpufreq/amd-pstate: drop stale @epp_cached kdoc Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 079/325] tools/rv: Ensure monitor name and desc are NUL-terminated Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 080/325] tools/rv: Fix substring match bug in monitor name search Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 081/325] tools/rv: Fix substring match when listing container monitors Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 082/325] tools/rv: Fix cleanup after failed trace setup Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.18 083/325] verification/rvgen: Fix options shared among commands Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 084/325] verification/rvgen: Fix ltl2k writing True as a literal Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 085/325] tap: free page on error paths in tap_get_user_xdp() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 086/325] xfrm: iptfs: fix use-after-free on first_skb in __input_process_payload Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 087/325] dma-mapping: direct: fix missing mapping for THRU_HOST_BRIDGE segments Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 088/325] dma-debug: fix physical address retrieval in debug_dma_sync_sg_for_device Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 089/325] xfrm: policy: fix use-after-free on inexact bin in xfrm_policy_bysel_ctx() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 090/325] ice: fix missing priority callbacks for U.FL DPLL pins Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 091/325] idpf: fix mailbox capability for set device clock time Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 092/325] net: ena: PHC: Add missing barrier Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 093/325] bnge: fix context mem iteration Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 094/325] netlabel: validate unlabeled address and mask attribute lengths Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 095/325] gpio: mvebu: fix NULL pointer dereference in suspend/resume Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 096/325] ASoC: wm_adsp: Fix NULL dereference when removing firmware controls Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 097/325] tcp: restrict SO_ATTACH_FILTER to priv users Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 098/325] net: add pskb_may_pull() to skb_gro_receive_list() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 099/325] net/mlx4: avoid GCC 10 __bad_copy_from() false positive Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 100/325] net: ibm: emac: Fix use-after-free during device removal Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 101/325] netdev: fix double-free in netdev_nl_bind_rx_doit() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 102/325] net: phy: clean the sfp upstream if phy probing fails Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 103/325] net: qrtr: fix refcount saturation and potential UAF in qrtr_port_remove Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 104/325] net/mlx5: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 105/325] net/mlx5e: xsk: Fix DMA and xdp_frame leak on XDP_TX xmit failure Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 106/325] net/mlx5: Use effective affinity mask for IRQ selection Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 107/325] ipv6: sit: reload inner IPv6 header after GSO offloads Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 108/325] net: openvswitch: fix possible kfree_skb of ERR_PTR Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 109/325] r8152: handle the return value of usb_reset_device() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 110/325] gpio: zynq: fix runtime PM leak on remove Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 111/325] gpio: rockchip: fix generic IRQ chip " Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 112/325] net: mctp: usb: fix race between urb completion and rx_retry cancellation Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 113/325] net: mctp: usb: dont fail mctp_usb_rx_queue on a deferred submission Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 114/325] ASoC: SOF: amd: fix for ipc flags check Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 115/325] sctp: fix uninit-value in __sctp_rcv_asconf_lookup() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 116/325] ip6_vti: set netns_immutable on the fallback device Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 117/325] sctp: validate embedded INIT chunk and address list lengths in cookie Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 118/325] net: guard timestamp cmsgs to real error queue skbs Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 119/325] net/rds: fix NULL deref in rds_ib_send_cqe_handler() on masked atomic completion Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 120/325] tun: zero the whole vnet header in tun_put_user() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 121/325] ip6_vti: fix incorrect tunnel matching in vti6_tnl_lookup() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 122/325] rds: mark snapshot pages dirty in rds_info_getsockopt() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 123/325] spi: rzv2h-rspi: Fix SPDR read access width for 16-bit RX Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 124/325] netfilter: revalidate bridge ports Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 125/325] netfilter: nf_conntrack: destroy stale expectfn expectations on unregister Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 126/325] netfilter: x_tables: avoid leaking percpu counter pointers Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 127/325] netfilter: nf_log: validate MAC header was set before dumping it Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 128/325] netfilter: nft_exthdr: fix register tracking for F_PRESENT flag Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 129/325] net: mvpp2: sync RX data at the hardware packet offset Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 130/325] net: mvpp2: limit XDP frame size to the RX buffer Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 131/325] net: mvpp2: refill RX buffers before XDP or skb use Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 132/325] net: mvpp2: build skb from XDP-adjusted data on XDP_PASS Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 133/325] net: txgbe: optimize the flow to setup PHY for AML devices Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 134/325] net: txgbe: support CR modules " Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 135/325] net: txgbe: rename the SFP related Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 136/325] net: txgbe: initialize module info buffer Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 137/325] ipv6: Fix a potential NPD in cleanup_prefix_route() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 138/325] KVM: VMX: Update SVI during runtime APICv activation Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 139/325] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 140/325] clk: samsung: gs101: Fix missing USI7_USI DIV clock in peric0_clk_regs Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 141/325] clk: qcom: dispcc-sc8280xp: Dont park mdp_clk_src at registration time Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 142/325] drm/i915/edp: Check supported link rates DPCD read Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.18 143/325] drm/virtio: Fix driver removal with disabled KMS Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 144/325] drm/vc4: fix krealloc() memory leak Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 145/325] drm/xe: fix refcount leak in xe_range_fence_insert() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 146/325] accel/amdxdna: Fix mm_struct reference leak in aie2_populate_range() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 147/325] netfilter: nft_tunnel: fix use-after-free on object destroy Greg Kroah-Hartman
2026-06-16 14:59 ` Greg Kroah-Hartman [this message]
2026-06-16 14:59 ` [PATCH 6.18 149/325] tee: shm: fix shm leak in register_shm_helper() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 150/325] Bluetooth: hci_sync: reject oversized Broadcast Announcement prepend Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 151/325] Bluetooth: L2CAP: reject BR/EDR signaling packets over MTUsig Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 152/325] soc: qcom: ice: Fix race between qcom_ice_probe() and of_qcom_ice_get() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 153/325] mm/memory-failure: fix hugetlb_lock AA deadlock in get_huge_page_for_hwpoison Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 154/325] accel/ivpu: Add bounds checks for firmware log indices Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 155/325] accel/ivpu: Add buffer overflow check in MS get_info_ioctl Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 156/325] accel/ivpu: Fix signed integer truncation in IPC receive Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 157/325] tracing: Fix CFI violation in probestub being called by tprobes Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 158/325] tracing/probes: Point the error offset correctly for eprobe argument error Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 159/325] rust: x86: support Rust >= 1.98.0 target spec Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 160/325] ARM: Do not select HAVE_RUST when KASAN is enabled Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 161/325] rust: arm64: set uwtable llvm module flag for CONFIG_UNWIND_TABLES Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 162/325] rust: kasan/kbuild: fix rustc-option when cross-compiling Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 163/325] mmc: litex_mmc: Use DIV_ROUND_UP for more accurate clock calculation Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 164/325] mshv: add a missing padding field Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 165/325] KVM: Dont WARN if memory is dirtied without a vCPU when the VM is dying Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 166/325] KVM: SEV: Decouple the need to sync the GHCB SA from the need to free the SA Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 167/325] KVM: arm64: Restore POR_EL0 access to host EL0 Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 168/325] drm/i915/gem: Fix phys BO pread/pwrite with offset Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 169/325] hv_netvsc: use kmap_local_page in netvsc_copy_to_send_buf Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 170/325] ksmbd: fix use-after-free of a deferred file_lock on double SMB2_CANCEL Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 171/325] xfrm: espintcp: do not reuse an in-progress partial send Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 172/325] xfrm: iptfs: preserve shared-frag marker in iptfs_consume_frags() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 173/325] xfrm: iptfs: fix ABBA deadlock in iptfs_destroy_state() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 174/325] USB: serial: io_ti: fix heap overflow in get_manuf_info() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 175/325] USB: serial: io_ti: fix heap overflow in build_i2c_fw_hdr() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 176/325] USB: serial: option: add usb-id for Dell Wireless DW5826e-m Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 177/325] USB: serial: kl5kusb105: fix bulk-out buffer overflow Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 178/325] ALSA: timer: Forcibly close timer instances at closing Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 179/325] ALSA: timer: Fix UAF at snd_timer_user_params() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 180/325] io_uring/net: inherit IORING_CQE_F_BUF_MORE across bundle recv retries Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 181/325] drm/virtio: fix dma_fence refcount leak on error in virtio_gpu_dma_fence_wait() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 182/325] drm/amd/display: Reject gpio_bitshift >= 32 in bios_parser_get_gpio_pin_info() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 183/325] mm/huge_memory: update file PMD counter before folio_put() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 184/325] mm/damon/ops-common: call folio_test_lru() after folio_get() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 185/325] mm/huge_memory: update file PUD counter before folio_put() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 186/325] RDMA/core: Validate the passed in fops for ib_get_ucaps() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 187/325] RDMA/core: Validate cpu_id against nr_cpu_ids in DMAH alloc Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 188/325] RDMA/srp: bound SRP_RSP sense copy by the received length Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 189/325] zram: fix use-after-free in zram_bvec_write_partial() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 190/325] udp: clear skb->dev before running a sockmap verdict Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 191/325] ARM: socfpga: Fix OF node refcount leak in SMP setup Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 192/325] ARM: 9474/1: io: avoid KASAN instrumentation of raw halfword I/O Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 193/325] ARM: 9475/1: entry: use byte load for KASAN VMAP stack shadow Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 194/325] arm64: mm: call pagetable dtor when freeing hot-removed page tables Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 195/325] mptcp: fix retransmission loop when csum is enabled Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 196/325] mptcp: close TOCTOU race while computing rcv_wnd Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 197/325] mptcp: allow subflow rcv wnd to shrink Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 198/325] mptcp: pm: fix extra_subflows underflow on userspace PM subflow creation Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 199/325] mptcp: sockopt: check timestamping ret value Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 200/325] mptcp: sockopt: set sockopt on all subflows Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 201/325] selftests: mptcp: add test for extra_subflows underflow on userspace PM Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 202/325] mptcp: add-addr: always drop other suboptions Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.18 203/325] xfs: fix error returns in CoW fork repair Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 204/325] xfs: fix rtgroup cleanup " Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 205/325] wifi: iwlwifi: pcie: simplify the resume flow if fast resume is not used Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 206/325] wifi: nl80211: reject oversized EMA RNR lists Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 207/325] vsock/vmci: fix sk_ack_backlog leak on failed handshake Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 208/325] timers/migration: Fix livelock in tmigr_handle_remote_up() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 209/325] staging: rtl8723bs: fix buffer over-read in rtw_update_protection Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 210/325] ASoC: fsl_sai: Fix 32 slots TDM broken by integer shift UB in xMR write Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 211/325] bnxt_en: Fix NULL pointer dereference Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 212/325] fhandle: fix UAF due to unlocked ->mnt_ns read in may_decode_fh() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 213/325] IB/isert: Reject login PDUs shorter than ISER_HEADERS_LEN Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 214/325] inet: frags: fix use-after-free caused by the fqdir_pre_exit() flush Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 215/325] pidfd: refuse access to tasks that have started exiting harder Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 216/325] fs/qnx6: fix pointer arithmetic in directory iteration Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 217/325] fuse: reject fuse_notify() pagecache ops on directories Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 218/325] fuse: limit FUSE_NOTIFY_RETRIEVE to uptodate folios Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 219/325] futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 220/325] i2c: imx-lpi2c: fix resource leaks switching to devm_dma_request_chan() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 221/325] i2c: imx: fix clock and pinctrl state inconsistency in runtime PM Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 222/325] i2c: qcom-cci: Fix NULL pointer dereference in cci_remove() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 223/325] i2c: stm32f7: fix timing computation ignoring i2c-analog-filter Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 224/325] i2c: tegra: Fix NOIRQ suspend/resume Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 225/325] Input: atkbd - add DMI quirk for Lenovo Yoga Air 14 (83QK) Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 226/325] Input: atkbd - skip deactivate for HONOR BCC-Ns internal keyboard Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 227/325] iommu/dma: Do not try to iommu_map a 0 length region in swiotlb Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 228/325] ipc/shm: serialize orphan cleanup with shm_nattch updates Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 229/325] locking/rtmutex: Skip remove_waiter() when waiter is not enqueued Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 230/325] memcg: use round-robin victim selection in refill_stock Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 231/325] misc: fastrpc: fix use-after-free of fastrpc_user in workqueue context Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 232/325] misc: fastrpc: fix use-after-free race in fastrpc_map_create Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 233/325] misc: fastrpc: fix DMA address corruption due to find_vma misuse Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 234/325] misc: fastrpc: Fix NULL pointer dereference in rpmsg callback Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 235/325] firmware: samsung: acpm: Fix mailbox channel leak on probe error Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 236/325] net/mlx5: Reorder completion before putting command entry in cmd_work_handler Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 237/325] net: airoha: Add NULL check for of_reserved_mem_lookup() in airoha_qdma_init_hfwd_queues() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 238/325] net: bonding: fix NULL pointer dereference in bond_do_ioctl() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 239/325] net: mv643xx: fix OF node refcount Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 240/325] net: phonet: free phonet_device after RCU grace period Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 241/325] net: rds: clear i_sends on setup unwind Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 242/325] net: sfp: initialize i2c_block_size at adapter configure time Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 243/325] nvmem: core: fix use-after-free bugs in error paths Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 244/325] nvmem: layouts: onie-tlv: fix hang on unknown types Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 245/325] octeontx2-af: fix memory leak in rvu_setup_hw_resources() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 246/325] pinctrl: mcp23s08: Read spi-present-mask as u8 not u32 Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 247/325] io_uring/kbuf: dont truncate end buffer for bundles Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 248/325] io_uring/wait: fix min_timeout behavior Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 249/325] mm/cma: fix reserved page leak on activation failure Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 250/325] mm/cma_debug: fix invalid accesses for inactive CMA areas Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 251/325] mm/damon/lru_sort: handle ctx allocation failure Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 252/325] mm/damon/reclaim: " Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 253/325] mm/hugetlb: avoid false positive lockdep assertion Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 254/325] mm/hugetlb: restore reservation on error in hugetlb folio copy paths Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 255/325] mm/list_lru: drain before clearing xarray entry on reparent Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 256/325] mm/mincore: handle non-swap entries before !CONFIG_SWAP guard Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 257/325] mmc: core: Fix host controller programming for fixed driver type Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 258/325] mmc: dw_mmc-rockchip: Add missing private data for very old controllers Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 259/325] mmc: litex_mmc: Set mandatory idle clocks before CMD0 Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 260/325] mmc: renesas_sdhi: Add OF entry for RZ/G2H SoC Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 261/325] mmc: sdhci: add signal voltage switch in sdhci_resume_host Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 262/325] pmdomain: imx: fix OF node refcount Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.18 263/325] pmdomain: ti_sci: add wakeup constraint to parent devices of wakeup source Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 264/325] rtase: Avoid sleeping in get_stats64() Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 265/325] rtase: Reset TX subqueue when clearing TX ring Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 266/325] rxrpc: Fix the ACK parser to extract the SACK table for parsing Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 267/325] sctp: diag: reject stale associations in dump_one path Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 268/325] sctp: stream: fully roll back denied add-stream state Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 269/325] thunderbolt: Reject zero-length property entries in validator Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 270/325] thunderbolt: Bound root directory content to block size Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 271/325] thunderbolt: Clamp XDomain response data copy to allocation size Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 272/325] thunderbolt: Validate XDomain request packet size before type cast Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 273/325] thunderbolt: Limit XDomain response copy to actual frame size Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 274/325] slimbus: qcom-ngd-ctrl: fix OF node refcount Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 275/325] slimbus: qcom-ngd-ctrl: Fix up platform_driver registration Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 276/325] slimbus: qcom-ngd-ctrl: Fix probe error path ordering Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 277/325] slimbus: qcom-ngd-ctrl: Register callbacks after creating the ngd Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 278/325] slimbus: qcom-ngd-ctrl: Initialize controller resources in controller Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 279/325] slimbus: qcom-ngd-ctrl: Correct PDR and SSR cleanup ownership Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 280/325] slimbus: qcom-ngd-ctrl: Balance pm_runtime enablement for NGD Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 281/325] slimbus: qcom-ngd-ctrl: Avoid ABBA on tx_lock/ctrl->lock Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 282/325] drm/gem: Try to fix change_handle ioctl, attempt 4 Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 283/325] drm/amdkfd: fix NULL dereference in get_queue_ids() Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 284/325] drm/amdkfd: Fix buffer overflow in SDMA queue checkpoint/restore on GFX11 Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 285/325] drm/xe/display: fix oops in suspend/shutdown without display Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 286/325] drm/xe: Clear pending_disable before signaling suspend fence Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 287/325] drm/v3d: Wait for pending L2T flush before cleaning caches Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 288/325] drm/v3d: Fix global performance monitor reference counting Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 289/325] drm/v3d: Fix vaddr leak when indirect CSD has zeroed workgroups Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 290/325] drm/v3d: Skip CSD when it " Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 291/325] drm/amdgpu: fix waiting for all submissions for userptrs Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 292/325] drm/amdgpu: restart the CS if some parts of the VM are still invalidated Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 293/325] drm/amdgpu: set noretry=1 as default for GFX 10.1.x (Navi10/12/14) Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 294/325] drm/amd/pm: fix smu13 power limit default/cap calculation Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 295/325] drm/amd/pm: mark metrics.energy_accumulator is invalid for smu 14.0.2 Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 296/325] drm/amd/pm: smu_v14_0_0: use SoftMin for gfxclk in set_soft_freq_limited_range Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 297/325] drm/amd/display: Bound VBIOS record-chain walk loops Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 298/325] drm/amd/display: Clamp HDMI HDCP2 rx_id_list read to buffer size Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 299/325] drm/amd/display: Clamp VBIOS HDMI retimer register count to array size Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 300/325] drm/amd/display: add missing CSC entries for BT.2020 for DCE IPs Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 301/325] drm/amd/display: Fix NULL deref and buffer over-read in SDP debugfs Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 302/325] drm/amd/display: Fix out-of-bounds read in dp_get_eq_aux_rd_interval() Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 303/325] drm/amd/display: Use krealloc_array() in dal_vector_reserve() Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 304/325] fs/fcntl: fix SOFTIRQ-unsafe lock order in fasync signaling Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 305/325] driver core: reject devices with unregistered buses Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 306/325] wifi: mac80211: skip ieee80211_verify_sta_ht_mcs_support check in non-strict mode Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 307/325] wifi: mac80211: tests: mark HT check strict Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 308/325] sched_ext: Dont warn on NULL cgrp_moving_from in scx_cgroup_move_task() Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 309/325] RDMA/umem: Add ib_umem_dmabuf_get_pinned_and_lock helper Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 310/325] RDMA/umem: Move umem dmabuf revoke logic into helper function Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 311/325] RDMA/umem: Add helpers for umem dmabuf revoke lock Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 312/325] RDMA: During rereg_mr ensure that REREG_ACCESS is compatible Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 313/325] netfilter: nft_fib: fix stale stack leak via the OIFNAME register Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 314/325] RDMA/umem: fix kernel-doc warnings Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 315/325] RDMA: Move DMA block iterator logic into dedicated files Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 316/325] RDMA/umem: Fix truncation for block sizes >= 4G Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 317/325] ipvs: skip ipv6 extension headers for csum checks Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 318/325] vsock/virtio: fix potential unbounded skb queue Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 319/325] vsock/virtio: fix skb overhead accounting to preserve full buf_alloc Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 320/325] arm64: cputype: Add C1-Ultra definitions Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 321/325] arm64: cputype: Add C1-Premium definitions Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 322/325] arm64: errata: Mitigate TLBI errata on various Arm CPUs Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.18 323/325] arm64: errata: Mitigate TLBI errata on NVIDIA Olympus CPU Greg Kroah-Hartman
2026-06-16 15:02 ` [PATCH 6.18 324/325] arm64: errata: Mitigate TLBI errata on Microsoft Azure Cobalt 100 CPU Greg Kroah-Hartman
2026-06-16 15:02 ` [PATCH 6.18 325/325] block: fix handling of dead zone write plugs Greg Kroah-Hartman
2026-06-16 16:55 ` [PATCH 6.18 000/325] 6.18.36-rc1 review Brett A C Sheffield
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260616145105.092681738@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=d.ornaghi97@gmail.com \
--cc=pablo@netfilter.org \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox