Archive-only list for patches
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Johan Hovold <johan@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 186/522] USB: serial: cypress_m8: fix memory corruption with small endpoint
Date: Tue, 16 Jun 2026 20:25:33 +0530	[thread overview]
Message-ID: <20260616145134.816000690@linuxfoundation.org> (raw)
In-Reply-To: <20260616145125.307082728@linuxfoundation.org>

6.1-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Johan Hovold <johan@kernel.org>

commit e1a9d791fd66ab2431b9e6f6f835823809869047 upstream.

Make sure that the interrupt-out endpoint max packet size is at least
eight bytes to avoid user-controlled slab corruption or NULL-pointer
dereference should a malicious device report a smaller size.

Fixes: 3416eaa1f8f8 ("USB: cypress_m8: Packet format is separate from characteristic size")
Cc: stable@vger.kernel.org	# 2.6.26
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
[ johan: adjust context for 6.18 ]
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/usb/serial/cypress_m8.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/usb/serial/cypress_m8.c b/drivers/usb/serial/cypress_m8.c
index 4c625e77da3a8f..f567617c8f2314 100644
--- a/drivers/usb/serial/cypress_m8.c
+++ b/drivers/usb/serial/cypress_m8.c
@@ -448,6 +448,14 @@ static int cypress_generic_port_probe(struct usb_serial_port *port)
 		return -ENODEV;
 	}
 
+	/*
+	 * The buffer must be large enough for the one or two-byte header (and
+	 * following data), but assume anything smaller than eight bytes is
+	 * broken.
+	 */
+	if (port->interrupt_out_size < 8)
+		return -EINVAL;
+
 	priv = kzalloc(sizeof(struct cypress_private), GFP_KERNEL);
 	if (!priv)
 		return -ENOMEM;
-- 
2.53.0




  parent reply	other threads:[~2026-06-16 17:34 UTC|newest]

Thread overview: 908+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-16 14:52 [PATCH 6.1 000/522] 6.1.176-rc1 review Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 001/522] Input: usbtouchscreen - clamp NEXIO data_len/x_len to URB buffer size Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 002/522] net/sched: cls_fw: fix NULL dereference of "old" filters before change() Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 003/522] net: mctp: ensure our nlmsg responses are initialised Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 004/522] net/sched: sch_sfb: Replace direct dequeue call with peek and qdisc_dequeue_peeked Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 005/522] drm: Remove plane hsub/vsub alignment requirement for core helpers Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 006/522] net: cpsw_new: Fix potential unregister of netdev that has not been registered yet Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 007/522] nfc: llcp: Fix use-after-free in llcp_sock_release() Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 008/522] nfc: llcp: Fix use-after-free race in nfc_llcp_recv_cc() Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 009/522] xfrm: Check for underflow in xfrm_state_mtu Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 010/522] nfc: nxp-nci: i2c: use rising-edge IRQ on ACPI systems Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 011/522] tools/bootconfig: Cleanup bootconfig footer size calculations Greg Kroah-Hartman
2026-06-16 21:06   ` Ben Hutchings
2026-06-16 14:52 ` [PATCH 6.1 012/522] tools/bootconfig: Fix buf leaks in apply_xbc Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 013/522] netfilter: synproxy: refresh tcphdr after skb_ensure_writable Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 014/522] netfilter: xt_cpu: prefer raw_smp_processor_id Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 015/522] netfilter: ebtables: fix OOB read in compat_mtw_from_user Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 017/522] tun: free page on build_skb failure in tun_xdp_one() Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 018/522] net: netlink: fix sending unassigned nsid after assigned one Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 019/522] net: netlink: dont set nsid on local notifications Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 020/522] net/smc: Do not re-initialize smc hashtables Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 021/522] net/iucv: fix locking in .getsockopt Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 022/522] ipv4: free net->ipv4.sysctl_local_reserved_ports after unregister_net_sysctl_table() Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 023/522] ASoC: Intel: bytcht_es8316: Fix MCLK leak on init errors Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 024/522] net: hsr: fix potential OOB access in supervision frame handling Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 025/522] tunnels: load network headers after skb_cow() in iptunnel_pmtud_build_icmp[v6]() Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 026/522] vxlan: do not reuse cached ip_hdr() value after skb_tunnel_check_pmtu() Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 027/522] tunnels: do not assume transport header in iptunnel_pmtud_check_icmp() Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 028/522] ASoC: codecs: simple-mux: Fix enum control bounds check Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 029/522] Bluetooth: 6lowpan: check skb_clone() return value in send_mcast_pkt() Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 030/522] bonding: refuse to enslave CAN devices Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 031/522] ethtool: eeprom: add more safeties to EEPROM Netlink fallback Greg Kroah-Hartman
2026-06-16 14:52 ` [PATCH 6.1 032/522] ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 033/522] net/sched: Revert "net/sched: Restrict conditions for adding duplicating netems to qdisc tree" Greg Kroah-Hartman
2026-06-16 22:17   ` Ben Hutchings
2026-06-16 22:31     ` Stephen Hemminger
2026-06-16 14:53 ` [PATCH 6.1 034/522] Bluetooth: l2cap: clear chan->ident on ECRED reconfiguration success Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 035/522] Bluetooth: L2CAP: Fix possible crash on l2cap_ecred_conn_rsp Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 036/522] gpio: rockchip: convert bank->clk to devm_clk_get_enabled() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 037/522] net: mana: Add NULL guards in teardown path to prevent panic on attach failure Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 038/522] sctp: fix race between sctp_wait_for_connect and peeloff Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 039/522] ipv6: fix possible infinite loop in rt6_fill_node() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 040/522] ipv6: fix possible infinite loop in fib6_select_path() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 041/522] net: skbuff: fix pskb_carve leaking zcopy pages Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 042/522] batman-adv: v: stop OGMv2 on disabled interface Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 043/522] batman-adv: tvlv: abort OGM send on tvlv append failure Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 044/522] batman-adv: tt: reject oversized local TVLV buffers Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 045/522] batman-adv: bla: avoid NULL-ptr deref for claim via dropped interface Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 046/522] batman-adv: tvlv: reject oversized TVLV packets Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 047/522] batman-adv: iv: recover OGM scheduling after forward packet error Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 048/522] selftests: forwarding: lib: Add helpers for checksum handling Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 049/522] batman-adv: tp_meter: directly shut down timer on cleanup Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 050/522] batman-adv: tt: fix TOCTOU race for reported vlans Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 051/522] batman-adv: tt: avoid empty VLAN responses Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 052/522] batman-adv: bla: avoid double decrement of bla.num_requests Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 053/522] mm/page_alloc: clear page->private in free_pages_prepare() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 054/522] selftests/bpf: add generic BPF program tester-loader Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 055/522] selftests/bpf: Convert test_global_funcs test to test_loader framework Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 056/522] Revert "selftests/bpf: Workaround strict bpf_lsm return value check." Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 057/522] Revert "selftests/bpf: Add tests for _opts variants of bpf_*_get_fd_by_id()" Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 058/522] selftests/bpf: Add read_build_id function Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 059/522] bpf: Fix a few selftest failures due to llvm18 change Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 060/522] selftests/bpf: Update bpf_clone_redirect expected return code Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 061/522] selftests/bpf: enhance align selftests expected log matching Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 062/522] Revert "selftests/bpf: Add a cgroup prog bpf_get_ns_current_pid_tgid() test" Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 063/522] selftests/bpf: Fix ARG_PTR_TO_LONG {half-,}uninitialized test Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 064/522] selftests/bpf: S/iptables/iptables-legacy/ in the bpf_nf and xdp_synproxy test Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 065/522] net/packet: convert po->tp_tx_has_off to an atomic flag Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 066/522] net/packet: convert po->tp_loss " Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 067/522] net/packet: convert po->has_vnet_hdr " Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 068/522] net/packet: convert po->running " Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 069/522] net/packet: fix TOCTOU race on mmapd vnet_hdr in tpacket_snd() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 070/522] drm/i915/psr: Add defininitions for INTEL_WA_REGISTER_CAPS DPCD register Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 071/522] drm/dp: Add eDP 1.5 bit definition Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 072/522] drm/i915/psr: Read Intel DPCD workaround register Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 073/522] drm/i915/psr: Apply Intel DPCD workaround when SDP on prior line used Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 074/522] Revert "RDMA/rxe: Fix double free in rxe_srq_from_init" Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 075/522] RDMA/rxe: Fix double free in rxe_srq_from_init Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 076/522] net: gro: dont merge zcopy skbs Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 077/522] phy: mscc: Use PHY_ID_MATCH_VENDOR to minimize PHY ID table Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 078/522] phy: mscc: Use PHY_ID_MATCH_EXACT for VSC8584, VSC8582, VSC8575, VSC856X Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 079/522] hwmon: (pmbus/adm1266) serialize GPIO PMBus accesses with pmbus_lock Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 080/522] hwmon: (pmbus/adm1266) serialize sequencer_state debugfs read " Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 081/522] hwmon: (pmbus/adm1266) serialize NVMEM blackbox " Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 082/522] iio: imu: st_lsm6dsx: fix stack leak in tagged FIFO buffer Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 083/522] usb: typec: ucsi: ccg: reject firmware images without a : record header Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 084/522] usb: typec: ucsi: displayport: NAK DP_CMD_CONFIGURE without a payload VDO Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 085/522] usb: typec: altmodes/displayport: validate count before reading Status Update VDO Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 086/522] usb: typec: wcove: dont write past struct pd_message in wcove_read_rx_buffer() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 087/522] usb: typec: ucsi: validate connector number in ucsi_connector_change() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 088/522] USB: serial: safe_serial: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 089/522] Input: ims-pcu - fix usb_free_coherent() size in ims_pcu_buffers_free() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 090/522] HID: quirks: Add ALWAYS_POLL quirk for SIGMACHIP USB mouse Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 091/522] Bluetooth: btusb: Allow firmware re-download when version matches Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.1 092/522] hpfs: fix a crash if hpfs_map_dnode_bitmap fails Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 093/522] ipc: limit next_id allocation to the valid ID range Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 094/522] auxdisplay: line-display: fix OOB read on zero-length message_store() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 095/522] Bluetooth: L2CAP: use chan timer to close channels in cleanup_listen() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 096/522] Bluetooth: L2CAP: fix chan ref leak in l2cap_chan_timeout() on !conn Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 097/522] Bluetooth: HIDP: fix missing length checks in hidp_input_report() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 098/522] Bluetooth: ISO: fix UAF in iso_recv_frame Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 099/522] Bluetooth: ISO: serialize iso_sock_clear_timer with socket lock Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 100/522] parport: Fix race between port and client registration Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 101/522] USB: cdc-acm: Fix bit overlap and move quirk definitions to header Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 102/522] wireguard: send: append trailer after expanding head Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 103/522] iio: adc: xilinx-xadc: Fix sequencer mode in postdisable for dual mux Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 104/522] iio: dac: max5821: fix return value check in powerdown sync Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 105/522] iio: dac: ad5686: fix input raw value check Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 106/522] iio: dac: ad5686: acquire lock when doing powerdown control Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 107/522] iio: adc: viperboard: Fix error handling in vprbrd_iio_read_raw Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 108/522] iio: gyro: itg3200: fix i2c read into the wrong stack location Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 109/522] iio: ssp_sensors: cancel delayed work_refresh on remove Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 110/522] iio: temperature: tsys01: fix broken PROM checksum validation Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 111/522] iio: magnetometer: st_magn: fix default DRDY pin selection for LIS2MDL Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 112/522] iio: light: cm3323: fix reg_conf not being initialized correctly Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 113/522] iio: buffer: hw-consumer: fix use-after-free in error path Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 114/522] USB: serial: omninet: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 115/522] usb: cdns3: gadget: fix request skipping after clearing halt Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 116/522] usb: cdns3: plat: fix unbalanced pm_runtime_forbid() call permanently leaks the runtime PM usage counter across bind/unbind cycles Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 117/522] usb: dwc2: Fix use after free in debug code Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 118/522] Input: elan_i2c - validate firmware size before use Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 119/522] bpf: sockmap: fix tail fragment offset in bpf_msg_push_data Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 120/522] macsec: fix replay protection at XPN lower-PN wrap Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 121/522] ipv6: exthdrs: refresh nh pointer after ipv6_hop_jumbo() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 122/522] ASoC: qcom: q6asm-dai: fix error handling in prepare and set_params Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 123/522] ipv6: exthdrs: refresh nh after handling HAO option Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 124/522] ip6: vti: Use ip6_tnl.net in vti6_siocdevprivate() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 125/522] ipv6: validate extension header length before copying to cmsg Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 126/522] xfrm: input: hold netns during deferred transport reinjection Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 127/522] ip6: vti: Use ip6_tnl.net in vti6_changelink() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 128/522] HID: wacom: Fix OOB write in wacom_hid_set_device_mode() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 129/522] iommu, debugobjects: avoid gcc-16.1 section mismatch warnings Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 130/522] nfc: hci: fix out-of-bounds read in HCP header parsing Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 131/522] xfrm: route MIGRATE notifications to callers netns Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 132/522] xfrm: ah: use skb_to_full_sk in async output callbacks Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 133/522] netfilter: conntrack: tcp: do not force CLOSE on invalid-seq RST without direction check Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 134/522] ASoC: qcom: q6asm-dai: close stream only when running Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 135/522] ASoC: qcom: q6asm-dai: do not set stream state in event and trigger callbacks Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 136/522] xfrm: esp: restore combined single-frag length gate Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 137/522] Input: atmel_mxt_ts - fix boundary check in mxt_prepare_cfg_mem Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 138/522] Input: synaptics - add LEN2058 to SMBus passlist for ThinkPad E490 Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 139/522] comedi: comedi_test: fix check for valid scan_begin_src in waveform_ai_cmdtest() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 140/522] comedi: comedi_test: Fix limiting of convert_arg " Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 141/522] counter: Fix refcount leak in counter_alloc() error path Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 142/522] tty: serial: pch_uart: add check for dma_alloc_coherent() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 143/522] usb: chipidea: core: convert ci_role_switch to local variable Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 144/522] usb: core: Fix up Interrupt IN endpoints with bogus wBytesPerInterval Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 145/522] USB: quirks: add NO_LPM for Lenovo ThinkPad USB-C Dock Gen2 hub controllers Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 146/522] usb: storage: Add quirks for PNY Elite Portable SSD Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 147/522] usbip: vudc: Fix use after free bug in vudc_remove due to race condition Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 148/522] usb: usbtmc: check URB actual_length for interrupt-IN notifications Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 149/522] usb: usbtmc: reject interrupt endpoints with small wMaxPacketSize Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 150/522] USB: serial: option: add MeiG SRM813Q Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 151/522] USB: serial: option: add missing RSVD(5) flag for Rolling RW135R-GL Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.1 152/522] USB: serial: belkin_sa: validate interrupt status length Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 153/522] USB: serial: cypress_m8: validate interrupt packet headers Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 154/522] USB: serial: keyspan: fix missing indat transfer sanity check Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 155/522] USB: serial: mxuport: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 156/522] USB: serial: mct_u232: fix missing interrupt-in transfer sanity check Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 157/522] usb: gadget: net2280: Fix double free in probe error path Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 158/522] usb: gadget: dummy_hcd: Reject hub port requests for non-existent ports Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 159/522] usb: gadget: f_fs: copy only received bytes on short ep0 read Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 160/522] thunderbolt: property: Reject u32 wrap in tb_property_entry_valid() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 161/522] thunderbolt: property: Reject dir_len < 4 to prevent size_t underflow Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 162/522] scsi: fcoe: Reject FIP descriptors with zero fip_dlen in CVL walker Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 163/522] scsi: scsi_transport_fc: Widen FPIN pname walker counter to u32 Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 164/522] scsi: target: iscsi: Bound iscsi_encode_text_output() appends to rsp_buf Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 165/522] scsi: target: iscsi: Validate CHAP_R length before base64 decode Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 166/522] drm/hyperv: validate resolution_count and fix WIN8 fallback Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 167/522] drm/hyperv: validate VMBus packet size in receive callback Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 168/522] drm/i915: Fix potential UAF in TTM object purge Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 169/522] drm/amd/pm/si: Disregard vblank time when no displays are connected Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 170/522] serial: altera_jtaguart: handle uart_add_one_port() failures Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 171/522] serial: sh-sci: fix memory region release in error path Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 172/522] serial: zs: Fix swapped RI/DSR modem line transition counting Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 173/522] serial: fsl_lpuart: fix rx buffer and DMA map leaks in start_rx_dma Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 174/522] drm/amdkfd: fix NULL pointer bug in svm_range_set_attr Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 175/522] drm/amdkfd: Check for pdd drm file first in CRIU restore path Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 176/522] serial: dz: Fix bootconsole message clobbering at chip reset Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 177/522] serial: zs: Fix bootconsole handover lockup Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 178/522] serial: zs: Switch to using channel reset Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 179/522] HID: core: Add printk_ratelimited variants to hid_warn() etc Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 180/522] HID: pass the buffer size to hid_report_raw_event Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 181/522] HID: core: Fix size_t specifier in hid_report_raw_event() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 182/522] RDMA/rxe: Complete the rxe_cleanup_task backport Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 183/522] USB: serial: digi_acceleport: fix memory corruption with small endpoints Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 184/522] xhci: tegra: Fix ghost USB device on dual-role port unplug Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 185/522] netfilter: nf_tables: restore set elements when delete set fails Greg Kroah-Hartman
2026-06-16 14:55 ` Greg Kroah-Hartman [this message]
2026-06-16 14:55 ` [PATCH 6.1 187/522] serial: dz: Fix bootconsole handover lockup Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 188/522] bpf/bonding: reject vlan+srcmac xmit_hash_policy change when XDP is loaded Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 189/522] usb: core: Fix SuperSpeed root hub wMaxPacketSize Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 190/522] bpf: Free reuseport cBPF prog after RCU grace period Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 191/522] USB: serial: mct_u232: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 192/522] dmaengine: idxd: Fix not releasing workqueue on .release() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 193/522] Disable -Wattribute-alias for clang-23 and newer Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 194/522] i2c: dev: prevent integer overflow in I2C_TIMEOUT ioctl Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 195/522] ipv6: mcast: Fix use-after-free when processing MLD queries Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 196/522] net/smc: fix sleep-inside-lock in __smc_setsockopt() causing local DoS Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 197/522] tee: optee: prevent use-after-free when the client exits before the supplicant Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 198/522] netfilter: xt_NFQUEUE: prefer raw_smp_processor_id Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 199/522] ipvs: clear the svc scheduler ptr early on edit Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 200/522] netfilter: synproxy: add mutex to guard hook reference counting Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 201/522] netfilter: conntrack_irc: fix possible out-of-bounds read Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 202/522] netfilter: bridge: make ebt_snat ARP rewrite writable Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 203/522] dm cache policy smq: check allocation under invalidate lock Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 204/522] net/sched: act_api: use RCU with deferred freeing for action lifecycle Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 205/522] 6lowpan: fix off-by-one in multicast context address compression Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 206/522] drm/imx: Fix three kernel-doc warnings in dcss-scaler.c Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 207/522] pcnet32: stop holding device spin lock during napi_complete_done Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 208/522] net: Annotate sk->sk_write_space() for UDP SOCKMAP Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 209/522] net: garp: fix unsigned integer underflow in garp_pdu_parse_attr Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 210/522] net: lan743x: permit VLAN-tagged packets up to configured MTU Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 211/522] net: fec: fix pinctrl default state restore order on resume Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.1 212/522] Bluetooth: RFCOMM: hold listener socket in rfcomm_connect_ind() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 213/522] Bluetooth: MGMT: validate advertising TLV before type checks Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 214/522] Bluetooth: RFCOMM: validate skb length in MCC handlers Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 215/522] Bluetooth: bnep: fix incorrect length parsing in bnep_rx_frame() extension handling Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 216/522] Bluetooth: bnep: reject short frames before parsing Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 217/522] Bluetooth: fix memory leak in error path of hci_alloc_dev() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 218/522] Bluetooth: MGMT: Fix backward compatibility with userspace Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 219/522] ipv4: restrict IPOPT_SSRR and IPOPT_LSRR options Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 220/522] ptp: vclock: Switch from RCU to SRCU Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 221/522] octeontx2-af: npc: Fix CPT channel mask in npc_install_flow Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 222/522] vxlan: vnifilter: send notification on VNI add Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 223/522] vxlan: vnifilter: fix spurious notification on VNI update Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 224/522] ieee802154: 6lowpan: only accept IPv6 packets in lowpan_xmit() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 225/522] net/802/mrp: fix vector attribute parsing in mrp_pdu_parse_vecattr Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 226/522] sctp: purge outqueue on stale COOKIE-ECHO handling Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 227/522] ipmi: Fix rcu_read_unlock to srcu_read_unlock in handle_read_event_rsp Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 228/522] signal: clear JOBCTL_PENDING_MASK for caller in zap_other_threads() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 229/522] time: Fix off-by-one in settimeofday() usec validation Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 230/522] ALSA: PCM: Fix wait queue list corruption in snd_pcm_drain() on linked streams Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 231/522] fs/ntfs3: Return error for inconsistent extended attributes Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 232/522] usb: gadget: f_ncm: Fix net_device lifecycle with device_move Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 233/522] usb: gadget: u_ether: Fix NULL pointer deref in eth_get_drvinfo Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 234/522] net: skbuff: fix missing zerocopy reference in pskb_carve helpers Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 235/522] tap: free page on error paths in tap_get_user_xdp() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 236/522] KVM: arm64: Remove VPIPT I-cache handling Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 237/522] arm64: tlb: Allow XZR argument to TLBI ops Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 238/522] arm64: tlb: Optimize ARM64_WORKAROUND_REPEAT_TLBI Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 239/522] iomap: dont revert iov_iter on partially completed buffered writes Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 240/522] xfrm: policy: fix use-after-free on inexact bin in xfrm_policy_bysel_ctx() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 241/522] netlabel: validate unlabeled address and mask attribute lengths Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 242/522] ASoC: wm_adsp: Fix NULL dereference when removing firmware controls Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 243/522] tcp: restrict SO_ATTACH_FILTER to priv users Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 244/522] net/mlx4: avoid GCC 10 __bad_copy_from() false positive Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 245/522] net: qrtr: fix refcount saturation and potential UAF in qrtr_port_remove Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 246/522] ipv6: sit: reload inner IPv6 header after GSO offloads Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 247/522] net: openvswitch: fix possible kfree_skb of ERR_PTR Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 248/522] r8152: reduce the control transfer of rtl8152_get_version() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 249/522] r8152: Block future register access if register access fails Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 250/522] r8152: handle the return value of usb_reset_device() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 251/522] sctp: fix uninit-value in __sctp_rcv_asconf_lookup() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 252/522] net: guard timestamp cmsgs to real error queue skbs Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 253/522] net/rds: fix NULL deref in rds_ib_send_cqe_handler() on masked atomic completion Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 254/522] ip6_vti: fix incorrect tunnel matching in vti6_tnl_lookup() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 255/522] rds: mark snapshot pages dirty in rds_info_getsockopt() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 256/522] netfilter: nf_conntrack: destroy stale expectfn expectations on unregister Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 257/522] netfilter: x_tables: avoid leaking percpu counter pointers Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 258/522] netfilter: nf_log: validate MAC header was set before dumping it Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 259/522] netfilter: nft_exthdr: fix register tracking for F_PRESENT flag Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 260/522] net: mvpp2: sync RX data at the hardware packet offset Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 261/522] net: mvpp2: limit XDP frame size to the RX buffer Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 262/522] net: mvpp2: Add metadata support for xdp mode Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 263/522] net: mvpp2: refill RX buffers before XDP or skb use Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 264/522] net: mvpp2: build skb from XDP-adjusted data on XDP_PASS Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 265/522] netfilter: ctnetlink: ensure safe access to master conntrack Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 266/522] drm/vc4: fix krealloc() memory leak Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 267/522] netfilter: nft_tunnel: fix use-after-free on object destroy Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 268/522] Bluetooth: hci_sync: reject oversized Broadcast Announcement prepend Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 269/522] Bluetooth: L2CAP: reject BR/EDR signaling packets over MTUsig Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 270/522] mmc: litex_mmc: Use DIV_ROUND_UP for more accurate clock calculation Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 271/522] drm/i915/gem: Fix phys BO pread/pwrite with offset Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.1 272/522] ksmbd: fix use-after-free of a deferred file_lock on double SMB2_CANCEL Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 273/522] xfrm: espintcp: do not reuse an in-progress partial send Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 274/522] USB: serial: io_ti: fix heap overflow in get_manuf_info() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 275/522] USB: serial: io_ti: fix heap overflow in build_i2c_fw_hdr() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 276/522] USB: serial: option: add usb-id for Dell Wireless DW5826e-m Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 277/522] USB: serial: kl5kusb105: fix bulk-out buffer overflow Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 278/522] ALSA: timer: Fix UAF at snd_timer_user_params() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 279/522] drm/amd/display: Reject gpio_bitshift >= 32 in bios_parser_get_gpio_pin_info() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 280/522] RDMA/srp: bound SRP_RSP sense copy by the received length Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 281/522] udp: clear skb->dev before running a sockmap verdict Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 282/522] ARM: socfpga: Fix OF node refcount leak in SMP setup Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 283/522] ARM: 9474/1: io: avoid KASAN instrumentation of raw halfword I/O Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 284/522] ARM: 9475/1: entry: use byte load for KASAN VMAP stack shadow Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 285/522] mptcp: fix retransmission loop when csum is enabled Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 286/522] mptcp: close TOCTOU race while computing rcv_wnd Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 287/522] mptcp: allow subflow rcv wnd to shrink Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 288/522] mptcp: sockopt: check timestamping ret value Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 289/522] wifi: nl80211: reject oversized EMA RNR lists Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 290/522] vsock/vmci: fix sk_ack_backlog leak on failed handshake Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 291/522] bnxt_en: Fix NULL pointer dereference Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 292/522] IB/isert: Reject login PDUs shorter than ISER_HEADERS_LEN Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 293/522] pidfd: refuse access to tasks that have started exiting harder Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 294/522] fuse: reject fuse_notify() pagecache ops on directories Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 295/522] i2c: qcom-cci: Fix NULL pointer dereference in cci_remove() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 296/522] i2c: stm32f7: fix timing computation ignoring i2c-analog-filter Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 297/522] i2c: tegra: Fix NOIRQ suspend/resume Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 298/522] Input: atkbd - add DMI quirk for Lenovo Yoga Air 14 (83QK) Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 299/522] Input: atkbd - skip deactivate for HONOR BCC-Ns internal keyboard Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 300/522] ipc/shm: serialize orphan cleanup with shm_nattch updates Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 301/522] misc: fastrpc: fix use-after-free of fastrpc_user in workqueue context Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 302/522] misc: fastrpc: fix use-after-free race in fastrpc_map_create Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 303/522] misc: fastrpc: fix DMA address corruption due to find_vma misuse Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 304/522] net/mlx5: Reorder completion before putting command entry in cmd_work_handler Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 305/522] net: bonding: fix NULL pointer dereference in bond_do_ioctl() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 306/522] net: mv643xx: fix OF node refcount Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 307/522] net: rds: clear i_sends on setup unwind Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 308/522] octeontx2-af: fix memory leak in rvu_setup_hw_resources() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 309/522] mmc: core: Fix host controller programming for fixed driver type Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 310/522] mmc: litex_mmc: Set mandatory idle clocks before CMD0 Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 311/522] mmc: renesas_sdhi: Add OF entry for RZ/G2H SoC Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 312/522] mmc: sdhci: add signal voltage switch in sdhci_resume_host Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 313/522] sctp: diag: reject stale associations in dump_one path Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 314/522] sctp: stream: fully roll back denied add-stream state Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 315/522] thunderbolt: Reject zero-length property entries in validator Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 316/522] thunderbolt: Bound root directory content to block size Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 317/522] thunderbolt: Clamp XDomain response data copy to allocation size Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 318/522] thunderbolt: Validate XDomain request packet size before type cast Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 319/522] thunderbolt: Limit XDomain response copy to actual frame size Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 320/522] slimbus: qcom-ngd-ctrl: fix OF node refcount Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 321/522] slimbus: qcom-ngd-ctrl: Avoid ABBA on tx_lock/ctrl->lock Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 322/522] drm/amdgpu: restart the CS if some parts of the VM are still invalidated Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 323/522] drm/amd/display: Clamp HDMI HDCP2 rx_id_list read to buffer size Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 324/522] drm/amd/display: Clamp VBIOS HDMI retimer register count to array size Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 325/522] drm/amd/display: Fix NULL deref and buffer over-read in SDP debugfs Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 326/522] drm/amd/display: Use krealloc_array() in dal_vector_reserve() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 327/522] fs/fcntl: fix SOFTIRQ-unsafe lock order in fasync signaling Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 328/522] mm/hugetlb: avoid false positive lockdep assertion Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 329/522] mm/damon/ops-common: call folio_test_lru() after folio_get() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 330/522] mm/huge_memory: update file PMD counter before folio_put() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 331/522] f2fs: use kfree() instead of kvfree() to free some memory Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.1 332/522] f2fs: fix to do sanity check on dcc->discard_cmd_cnt conditionally Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 333/522] f2fs: fix UAF caused by decrementing sbi->nr_pages[] in f2fs_write_end_io() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 334/522] ksmbd: require minimum ACE size in smb_check_perm_dacl() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 335/522] smb: client: validate the whole DACL before rewriting it in cifsacl Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 336/522] LoongArch: Add spectre boundry for syscall dispatch table Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 337/522] arm64/mm: Enable batched TLB flush in unmap_hotplug_range() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 338/522] lib: test_hmm: evict device pages on file close to avoid use-after-free Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 339/522] wifi: mwifiex: fix use-after-free in mwifiex_adapter_cleanup() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 340/522] spi: imx: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 341/522] spi: imx: fix use-after-free on unbind Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 342/522] thermal: core: Fix thermal zone governor cleanup issues Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 343/522] ALSA: aoa: Use guard() for mutex locks Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 344/522] ALSA: aoa: i2sbus: clear stale prepared state Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 345/522] media: rc: ttusbir: respect DMA coherency rules Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 346/522] ALSA: aoa: Skip devices with no codecs in i2sbus_resume() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 347/522] media: rc: igorplugusb: heed coherency rules Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 348/522] sched: Use u64 for bandwidth ratio calculations Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 349/522] net: qrtr: ns: Limit the maximum number of lookups Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 350/522] net: qrtr: ns: Change servers radix tree to xarray Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 351/522] net: qrtr: ns: Free the node during ctrl_cmd_bye() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 352/522] net: mctp: fix dont require received header reserved bits to be zero Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 353/522] net: qrtr: ns: Limit the total number of nodes Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 354/522] net: bridge: use a stable FDB dst snapshot in RCU readers Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 355/522] spi: fix resource leaks on device setup failure Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 356/522] fbdev: defio: Disconnect deferred I/O from the lifetime of struct fb_info Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 357/522] xfs: fix a resource leak in xfs_alloc_buftarg() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 358/522] udf: fix partition descriptor append bookkeeping Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 359/522] hfsplus: fix uninit-value by validating catalog record size Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 360/522] hfsplus: fix held lock freed on hfsplus_fill_super() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 361/522] crypto: nx - Avoid -Wflex-array-member-not-at-end warning Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 362/522] crypto: nx - Migrate to scomp API Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 363/522] crypto: nx - fix bounce buffer leaks in nx842_crypto_{alloc,free}_ctx Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 364/522] erofs: fix unsigned underflow in z_erofs_lz4_handle_overlap() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 365/522] ceph: only d_add() negative dentries when they are unhashed Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 366/522] printk: add print_hex_dump_devel() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 367/522] crypto: caam - guard HMAC key hex dumps in hash_digest_key Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 368/522] net: stmmac: avoid shadowing global buf_sz Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 369/522] net: stmmac: rename STMMAC_GET_ENTRY() -> STMMAC_NEXT_ENTRY() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 370/522] net: stmmac: Prevent NULL deref when RX memory exhausted Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 371/522] tracepoint: balance regfunc() on func_add() failure in tracepoint_add_func() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 372/522] wifi: mac80211: remove station if connection prep fails Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 373/522] wifi: brcmfmac: Fix potential use-after-free issue when stopping watchdog task Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 374/522] usb: dwc3: Move GUID programming after PHY initialization Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 375/522] net: ipv4: stop checking crypto_ahash_alignmask Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 376/522] net: ipv6: " Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 377/522] xfrm: ah: account for ESN high bits in async callbacks Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 378/522] xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 379/522] spi: synquacer: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 380/522] spi: synquacer: switch to use modern name Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 381/522] spi: syncuacer: fix controller deregistration Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 382/522] spi: sun4i: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 383/522] spi: sun4i: switch to use modern name Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 384/522] spi: sun4i: fix controller deregistration Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 385/522] spi: Convert to SPI_CONTROLLER_HALF_DUPLEX Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 386/522] spi: spi-ti-qspi: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 387/522] spi: spi-ti-qspi: switch to use modern name Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 388/522] spi: ti-qspi: fix controller deregistration Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 389/522] spi: zynq-qspi: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 390/522] spi: spi-zynq: Do not check for 0 return after calling platform_get_irq() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 391/522] spi: zynq-qspi: switch to use modern name Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.1 392/522] spi: zynq-qspi: Simplify clock handling with devm_clk_get_enabled() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 393/522] spi: zynq-qspi: fix controller deregistration Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 394/522] spi: sun6i: " Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 395/522] spi: s3c64xx: Use devm_clk_get_enabled() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 396/522] spi: s3c64xx: fix NULL-deref on driver unbind Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 397/522] mtd: spi-nor: core: fix implicit declaration warning Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 398/522] mtd: spi-nor: debugfs: fix out-of-bounds read in spi_nor_params_show() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 399/522] spi: tegra114: fix controller deregistration Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 400/522] spi: tegra20-sflash: " Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 401/522] spi: uniphier: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 402/522] spi: uniphier: switch to use modern name Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 403/522] spi: uniphier: Simplify clock handling with devm_clk_get_enabled() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 404/522] spi: uniphier: fix controller deregistration Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 405/522] mm/hugetlb_cma: round up per_node before logging it Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 406/522] net: wwan: t7xx: validate port_count against message length in t7xx_port_enum_msg_handler Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 407/522] spi: microchip-core-qspi: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 408/522] spi: microchip-core-qspi: Use helper function devm_clk_get_enabled() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 409/522] spi: microchip-core-qspi: fix controller deregistration Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 410/522] fbcon: Avoid OOB font access if console rotation fails Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 411/522] spi: topcliff-pch: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 412/522] btrfs: fix btrfs_ioctl_space_info() slot_count TOCTOU which can lead to info-leak Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 413/522] tracing/probes: Limit size of event probe to 3K Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 414/522] btrfs: remove fs_info argument from btrfs_sysfs_add_space_info_type() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 415/522] btrfs: fix double free in create_space_info_sub_group() error path Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 416/522] pmdomain: core: Fix detach procedure for virtual devices in genpd Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 417/522] smb: client: validate dacloffset before building DACL pointers Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 418/522] smb: client: Use FullSessionKey for AES-256 encryption key derivation Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 419/522] btrfs: fix missing last_unlink_trans update when removing a directory Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 420/522] mptcp: fastclose msk when linger time is 0 Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 421/522] mptcp: pm: prio: skip closed subflows Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 422/522] mptcp: pm: kernel: correctly retransmit ADD_ADDR ID 0 Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 423/522] mptcp: pm: ADD_ADDR rtx: allow " Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 424/522] mptcp: pm: ADD_ADDR rtx: fix potential data-race Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 425/522] mptcp: pm: ADD_ADDR rtx: resched blocked ADD_ADDR quicker Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 426/522] f2fs: fix incorrect file address mapping when inline inode is unwritten Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 427/522] f2fs: fix false alarm of lockdep on cp_global_sem lock Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 428/522] spi: st-ssc4: switch to use modern name Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 429/522] spi: st-ssc4: fix controller deregistration Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 430/522] spi: lantiq-ssc: " Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 431/522] cgroup/cpuset: Reset DL migration state on can_attach() failure Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 432/522] genetlink: Use internal flags for multicast groups Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 433/522] smb: client: require net admin for CIFS SWN netlink Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 434/522] Bluetooth: hci_qca: Convert timeout from jiffies to ms Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 435/522] mm/memory: fix spurious warning when unmapping device-private/exclusive pages Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 436/522] Bluetooth: Init sk_peer_* on bt_sock_alloc Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 437/522] Bluetooth: serialize accept_q access Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 438/522] net: hsr: defer node table free until after RCU readers Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 439/522] ipv6: ioam: add NULL check for idev in ipv6_hop_ioam() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 440/522] ice: fix VF queue configuration with low MTU values Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 441/522] mptcp: pm: fix ADD_ADDR timer infinite retry on option space insufficient Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 442/522] selftests: mptcp: drop nanoseconds width specifier Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 443/522] octeontx2-af: replace deprecated strncpy with strscpy Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 444/522] octeontx2-af: CGX: add bounds check to cgx_speed_mbps index Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 445/522] mptcp: reset rcv wnd on disconnect Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 446/522] mptcp: do not drop partial packets Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 447/522] platform/x86/intel/vsec: Add private data for per-device data Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 448/522] platform/x86/intel/vsec: Create wrapper to walk PCI config space Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 449/522] platform/x86/intel/vsec: Make driver_data info const Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 450/522] platform/x86/intel/vsec: Fix enable_cnt imbalance on PCIe error recovery Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 451/522] octeontx2-pf: avoid double free of pool->stack on AQ init failure Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.1 452/522] spi: qup: switch to use modern name Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 453/522] spi: qup: fix error pointer deref after DMA setup failure Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 454/522] arm64: tlb: Flush walk cache when unsharing PMD tables Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 455/522] phy: tegra: xusb: Disable trk clk when not in use Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 456/522] phy: tegra: xusb: Fix per-pad high-speed termination calibration Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 457/522] iio: adc: fix the return value handle for platform_get_irq() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 458/522] iio: adc: npcm: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 459/522] iio: adc: npcm: fix unbalanced clk_disable_unprepare() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 460/522] iio: gyro: adis16260: fix division by zero in write_raw Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 461/522] iio: chemical: scd30: Use guard(mutex) to allow early returns Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 462/522] iio: chemical: scd30: fix division by zero in write_raw Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 463/522] usb: cdns3: plat: fix leaked usb2_phy initialization on usb3_phy acquisition failure Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 464/522] iio: dac: ad5686: fix ref bit initialization for single-channel parts Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 465/522] ALSA: firewire-motu: Protect register DSP event queue positions Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 466/522] serial: samsung_tty: Use port lock wrappers Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 467/522] tty: serial: samsung: use u32 for register interactions Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 468/522] tty: serial: samsung: Remove redundant port lock acquisition in rx helpers Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 469/522] usb: dwc3: xilinx: fix error handling in zynqmp init error paths Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 470/522] usb: musb: omap2430: Fix use-after-free in omap2430_probe() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 471/522] usb: gadget: f_hid: tidy error handling in hidg_alloc Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 472/522] usb: gadget: f_hid: fix device reference leak in hidg_alloc() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 473/522] usb: typec: ucsi: Check if power role change actually happened before handling Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 474/522] thunderbolt: property: Cap recursion depth in __tb_property_parse_dir() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 475/522] tty: serial: qcom-geni-serial: remove unused symbols Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 476/522] tty: serial: qcom-geni-serial: align #define values Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 477/522] serial: qcom-geni: fix UART_RX_PAR_EN bit position Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 478/522] scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 479/522] usb: typec: ucsi: Dont update power_supply on power role change if not connected Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 480/522] netfilter: nft_fib: fix stale stack leak via the OIFNAME register Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 481/522] hv_netvsc: use kmap_local_page in netvsc_copy_to_send_buf Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 482/522] mm/hugetlb: rename isolate_hugetlb() to folio_isolate_hugetlb() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 483/522] mm/migrate: dont call folio_putback_active_hugetlb() on dst hugetlb folio Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 484/522] mm/hugetlb: rename folio_putback_active_hugetlb() to folio_putback_hugetlb() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 485/522] mm/memory-failure: fix missing ->mf_stats count in hugetlb poison Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 486/522] mm/memory-failure: fix hugetlb_lock AA deadlock in get_huge_page_for_hwpoison Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 487/522] RDMA/umem: fix kernel-doc warnings Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 488/522] RDMA: Move DMA block iterator logic into dedicated files Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 489/522] RDMA/umem: Fix truncation for block sizes >= 4G Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 490/522] ipvs: skip ipv6 extension headers for csum checks Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 491/522] blk-cgroup: Fix NULL deref caused by blkg_policy_data being installed before init Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 492/522] batman-adv: stop tp_meter sessions during mesh teardown Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 493/522] batman-adv: tp_meter: fix tp_num leak on kmalloc failure Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 494/522] ALSA: hda/hdmi: Add quirk for TUXEDO IBS14G6 Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 495/522] perf build: Conditionally define NDEBUG Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 496/522] perf parse-events: Make YYDEBUG dependent on doing a debug build Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 497/522] perf build: Disable fewer bison warnings Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 498/522] tools build: Add 3-component logical version comparators Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 499/522] perf build: Remove -Wno-unused-but-set-variable from the flex flags when building with clang < 13.0.0 Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 500/522] KVM: arm64: Wake-up from WFI when iqrchip is in userspace Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 501/522] ipmi:ssif: Fix a shutdown race Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 502/522] ipmi:ssif: Clean up kthread on errors Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 503/522] mm/damon/core: use time_in_range_open() for damos quota window start Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 504/522] mm/damon/core: disallow time-quota setting zero esz Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 505/522] usb: typec: tcpm: reset internal port states on soft reset AMS Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 506/522] lib/crypto: mpi: Fix integer underflow in mpi_read_raw_from_sgl() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 507/522] ipmi:ssif: Remove unnecessary indention Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 508/522] ipmi:ssif: NULL thread on error Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 509/522] mm/damon/core: implement damon_kdamond_pid() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 510/522] mm/damon/lru_sort: detect and use fresh enabled and kdamond_pid values Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 511/522] mm/damon/reclaim: " Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.1 512/522] drm/v3d: Reject empty multisync extension to prevent infinite loop Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.1 513/522] arm64: cputype: Add NVIDIA Olympus definitions Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.1 514/522] arm64: cputype: Add C1-Ultra definitions Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.1 515/522] arm64: cputype: Add C1-Premium definitions Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.1 516/522] arm64: errata: Mitigate TLBI errata on various Arm CPUs Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.1 517/522] arm64: errata: Mitigate TLBI errata on NVIDIA Olympus CPU Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.1 518/522] arm64: errata: Mitigate TLBI errata on Microsoft Azure Cobalt 100 CPU Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.1 519/522] Revert "selftest/ptp: update ptp selftest to exercise the gettimex options" Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.1 520/522] fbdev: vt8500lcdfb: Fix dma_free_coherent() cpu_addr parameter Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.1 521/522] apparmor: validate default DFA states are in bounds Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.1 522/522] x86/CPU/AMD: Move the Zen3 BTC_NO detection to the Zen3 init function Greg Kroah-Hartman
2026-06-16 16:55 ` [PATCH 6.1 000/522] 6.1.176-rc1 review Brett A C Sheffield
  -- strict thread matches above, loose matches on Subject: below --
2026-06-16 14:53 [PATCH 7.0 000/378] 7.0.13-rc1 review Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 7.0 001/378] bpf: Free reuseport cBPF prog after RCU grace period Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 7.0 002/378] KVM: arm64: Take the SRCU lock for page table walks in fault injection and AT emulation Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 7.0 003/378] i2c: dev: prevent integer overflow in I2C_TIMEOUT ioctl Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 7.0 004/378] Bluetooth: ISO: Fix a use-after-free of the hci_conn pointer Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 7.0 005/378] ipv6: mcast: Fix use-after-free when processing MLD queries Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 7.0 006/378] net/smc: fix sleep-inside-lock in __smc_setsockopt() causing local DoS Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 7.0 007/378] tee: optee: prevent use-after-free when the client exits before the supplicant Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 7.0 008/378] soc: qcom: ice: Allow explicit votes on iface clock for ICE Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 009/378] arm64: dts: qcom: x1-dell-thena: remove i2c20 (battery SMBus) and reserve its pins Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 010/378] ARM: dts: microchip: sam9x7: fix GMAC clock configuration Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 011/378] soc: qcom: ice: Return -ENODEV if the ICE platform device is not found Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 012/378] tee: fix tee_ioctl_object_invoke_arg padding Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 013/378] tee: qcomtee: add missing va_end in early return qcomtee_object_user_init() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 014/378] s390/bug: Always emit format word in __BUG_ENTRY Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 015/378] ARM: dts: gemini: Fix partition offsets Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 016/378] erofs: fix use-after-free on sbi->sync_decompress Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 017/378] wifi: iwlwifi: mvm: dont support the reset handshake for old firmwares Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 018/378] ksmbd: fix NULL-deref of opinfo->conn in oplock/lease break notifiers Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 019/378] netfilter: xt_NFQUEUE: prefer raw_smp_processor_id Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 020/378] ipvs: clear the svc scheduler ptr early on edit Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 021/378] netfilter: synproxy: add mutex to guard hook reference counting Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 022/378] netfilter: conntrack_irc: fix possible out-of-bounds read Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 023/378] netfilter: nft_ct: bail out on template ct in get eval Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 024/378] netfilter: bridge: make ebt_snat ARP rewrite writable Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 025/378] dm cache policy smq: check allocation under invalidate lock Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 026/378] net/sched: act_api: use RCU with deferred freeing for action lifecycle Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 027/378] 6lowpan: fix off-by-one in multicast context address compression Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 028/378] l2tp: pppol2tp: hold reference to session in pppol2tp_ioctl() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 029/378] devlink: Release nested relation on devlink free Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 030/378] drm/imx: Fix three kernel-doc warnings in dcss-scaler.c Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 031/378] wifi: mac80211: limit injected antenna index in ieee80211_parse_tx_radiotap Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 032/378] pcnet32: stop holding device spin lock during napi_complete_done Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 033/378] net: Annotate sk->sk_write_space() for UDP SOCKMAP Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 034/378] tcp: Add preempt_{disable,enable}_nested() in reqsk_queue_hash_req() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 035/378] hsr: Remove WARN_ONCE() in hsr_addr_is_self() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 036/378] net: garp: fix unsigned integer underflow in garp_pdu_parse_attr Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 037/378] net: lan743x: permit VLAN-tagged packets up to configured MTU Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 038/378] net: fec: fix pinctrl default state restore order on resume Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 039/378] ipv6: anycast: insert aca into global hash under idev->lock Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 040/378] wifi: fix leak if split 6 GHz scanning fails Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 041/378] wifi: cfg80211: add support to handle incumbent signal detected event from mac80211/driver Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 042/378] wifi: nl80211: split out UHR operation information Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 043/378] wifi: cfg80211: enforce HE/EHT cap/oper consistency Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 044/378] Bluetooth: RFCOMM: hold listener socket in rfcomm_connect_ind() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 045/378] Bluetooth: MGMT: validate advertising TLV before type checks Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 046/378] Bluetooth: RFCOMM: validate skb length in MCC handlers Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 047/378] Bluetooth: bnep: fix incorrect length parsing in bnep_rx_frame() extension handling Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 048/378] Bluetooth: bnep: reject short frames before parsing Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 049/378] Bluetooth: fix memory leak in error path of hci_alloc_dev() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 050/378] Bluetooth: ISO: Fix not releasing hdev reference on iso_conn_big_sync Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 051/378] Bluetooth: ISO: Fix data-race on iso_pi fields in hci_get_route calls Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 052/378] Bluetooth: SCO: Fix data-race on sco_pi fields in sco_connect Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 053/378] Bluetooth: MGMT: Fix backward compatibility with userspace Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 054/378] xsk: cache csum_start/csum_offset to fix TOCTOU in xsk_skb_metadata() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 055/378] octeontx2-pf: Fix NDC sync operation errors Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 056/378] octeontx2-af: Fix initialization of mcams entry2target_pffunc field Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 057/378] af_unix: Fix inq_len update problem in partial read Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 058/378] ipv4: restrict IPOPT_SSRR and IPOPT_LSRR options Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 059/378] ptp: vclock: Switch from RCU to SRCU Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 060/378] net: airoha: Fix use-after-free in metadata dst teardown Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 061/378] net: ethernet: mtk_eth_soc: " Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 062/378] geneve: fix length used in GRO hint UDP checksum adjustment Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 063/378] net/sched: fix pedit partial COW leading to page cache corruption Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 064/378] sctp: validate cached peer INIT chunk length in COOKIE_ECHO processing Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 065/378] octeontx2-af: npc: Fix CPT channel mask in npc_install_flow Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 066/378] vxlan: vnifilter: send notification on VNI add Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 067/378] vxlan: vnifilter: fix spurious notification on VNI update Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 7.0 068/378] ieee802154: 6lowpan: only accept IPv6 packets in lowpan_xmit() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 069/378] net/802/mrp: fix vector attribute parsing in mrp_pdu_parse_vecattr Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 070/378] bonding: annotate data-races arcound churn variables Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 071/378] sctp: purge outqueue on stale COOKIE-ECHO handling Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 072/378] fwctl/bnxt_en: Move common definitions to include/linux/bnxt/ Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 073/378] fwctl/bnxt_en: Refactor aux bus functions to be more generic Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 074/378] Reapply "bnxt_en: bring back rtnl_lock() in the bnxt_open() path" Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 075/378] Drivers: hv: vmbus: Provide option to skip VMBus unload on panic Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 076/378] drm/hyperv: During panic do VMBus unload after frame buffer is flushed Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 077/378] selftests: harness: fix pidfd leak in __wait_for_test Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 078/378] signal: clear JOBCTL_PENDING_MASK for caller in zap_other_threads() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 079/378] regulator: mt6363: select CONFIG_IRQ_DOMAIN Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 080/378] hyperv: Clean up and fix the guest ID comment in hvgdk.h Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 081/378] VFS: fix possible failure to unlock in nfsd4_create_file() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 082/378] crypto: s390 - add select CRYPTO_AEAD for aes Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 083/378] rseq: Fix using an uninitialized stack variable in rseq_exit_user_update() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 084/378] time: Fix off-by-one in settimeofday() usec validation Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 085/378] ALSA: PCM: Fix wait queue list corruption in snd_pcm_drain() on linked streams Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 086/378] ALSA: seq: dummy: fix UMP event stack overread Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 087/378] x86/resctrl: Only check Intel systems for SNC Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 088/378] cpufreq/amd-pstate: drop stale @epp_cached kdoc Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 089/378] rtla: Fix parsing of multi-character short options Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 090/378] tools/rv: Ensure monitor name and desc are NUL-terminated Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 091/378] tools/rv: Fix substring match bug in monitor name search Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 092/378] tools/rv: Fix substring match when listing container monitors Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 093/378] tools/rv: Fix cleanup after failed trace setup Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 094/378] verification/rvgen: Fix options shared among commands Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 095/378] verification/rvgen: Fix ltl2k writing True as a literal Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 096/378] riscv/ptrace: Use USER_REGSET_NOTE_TYPE for REGSET_CFI Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 097/378] riscv: cfi: reject unknown flags in PR_SET_CFI Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 098/378] xfrm: iptfs: fix use-after-free on first_skb in __input_process_payload Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 099/378] dma-mapping: direct: fix missing mapping for THRU_HOST_BRIDGE segments Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 100/378] dma-debug: fix physical address retrieval in debug_dma_sync_sg_for_device Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 101/378] xfrm: policy: fix use-after-free on inexact bin in xfrm_policy_bysel_ctx() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 102/378] ice: fix missing priority callbacks for U.FL DPLL pins Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 103/378] idpf: fix mailbox capability for set device clock time Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 104/378] net: ena: PHC: Add missing barrier Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 105/378] bnge: fix context mem iteration Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 106/378] netlabel: validate unlabeled address and mask attribute lengths Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 107/378] gpio: mvebu: fix NULL pointer dereference in suspend/resume Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 108/378] ASoC: wm_adsp: Fix NULL dereference when removing firmware controls Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 109/378] tcp: restrict SO_ATTACH_FILTER to priv users Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 110/378] net: add pskb_may_pull() to skb_gro_receive_list() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 111/378] net/mlx4: avoid GCC 10 __bad_copy_from() false positive Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 112/378] net: ibm: emac: Fix use-after-free during device removal Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 113/378] netdev: fix double-free in netdev_nl_bind_rx_doit() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 114/378] net: phy: clean the sfp upstream if phy probing fails Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 115/378] net: phy: remove phy ports upon probe failure Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 116/378] net: phy: Clean the phy_ports after unregistering the downstream SFP bus Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 117/378] net: phy: dont try to setup PHY-driven SFP cages when using genphy Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 118/378] net: qrtr: fix refcount saturation and potential UAF in qrtr_port_remove Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 119/378] net/mlx5: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 120/378] net/mlx5e: xsk: Fix DMA and xdp_frame leak on XDP_TX xmit failure Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 121/378] net/mlx5: Use effective affinity mask for IRQ selection Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 122/378] ipv6: sit: reload inner IPv6 header after GSO offloads Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 123/378] net: openvswitch: fix possible kfree_skb of ERR_PTR Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 124/378] r8152: handle the return value of usb_reset_device() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 125/378] gpio: zynq: fix runtime PM leak on remove Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 126/378] gpio: rockchip: fix generic IRQ chip " Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 127/378] net: mctp: usb: fix race between urb completion and rx_retry cancellation Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 7.0 128/378] net: mctp: usb: dont fail mctp_usb_rx_queue on a deferred submission Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 129/378] esp: fix page frag reference leak on skb_to_sgvec failure Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 130/378] ASoC: SOF: amd: fix for ipc flags check Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 131/378] sctp: fix uninit-value in __sctp_rcv_asconf_lookup() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 132/378] ip6_vti: set netns_immutable on the fallback device Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 133/378] sctp: validate embedded INIT chunk and address list lengths in cookie Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 134/378] net: guard timestamp cmsgs to real error queue skbs Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 135/378] net/rds: fix NULL deref in rds_ib_send_cqe_handler() on masked atomic completion Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 136/378] tun: zero the whole vnet header in tun_put_user() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 137/378] ptp: ocp: fix resource freeing order Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 138/378] ip6_vti: fix incorrect tunnel matching in vti6_tnl_lookup() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 139/378] rds: mark snapshot pages dirty in rds_info_getsockopt() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 140/378] spi: rzv2h-rspi: Fix SPDR read access width for 16-bit RX Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 141/378] netfilter: revalidate bridge ports Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 142/378] netfilter: nf_conntrack: destroy stale expectfn expectations on unregister Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 143/378] netfilter: x_tables: avoid leaking percpu counter pointers Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 144/378] netfilter: nf_log: validate MAC header was set before dumping it Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 145/378] netfilter: nft_exthdr: fix register tracking for F_PRESENT flag Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 146/378] net: mvpp2: sync RX data at the hardware packet offset Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 147/378] net: mvpp2: limit XDP frame size to the RX buffer Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 148/378] net: mvpp2: refill RX buffers before XDP or skb use Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 149/378] net: mvpp2: build skb from XDP-adjusted data on XDP_PASS Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 150/378] net: txgbe: initialize module info buffer Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 151/378] net: txgbe: distinguish module types by checking identifier Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 152/378] net: txgbe: initialize PHY interface to 0 Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 153/378] ipv6: Fix a potential NPD in cleanup_prefix_route() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 154/378] ASoC: SDCA: fix NULL pointer dereference in sdca_dev_unregister_functions Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 155/378] clk: qcom: x1e80100-dispcc: Stop disp_cc_mdss_mdp_clk_src from getting parked Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 156/378] clk: samsung: gs101: Fix missing USI7_USI DIV clock in peric0_clk_regs Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 157/378] clk: qcom: dispcc-sc8280xp: Dont park mdp_clk_src at registration time Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 158/378] drm/i915/edp: Check supported link rates DPCD read Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 159/378] drm/virtio: Fix driver removal with disabled KMS Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 160/378] drm/vc4: fix krealloc() memory leak Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 161/378] drm/colorop: Remove read-only comments from interpolation fields Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 162/378] drm/colorop: make lut(1/3)d_interpolation props correctly behave as mutable Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 163/378] drm/atomic: track individual colorop updates Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 164/378] drm/amd/display: use plane color_mgmt_changed to track colorop changes Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 165/378] drm/xe: fix refcount leak in xe_range_fence_insert() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 166/378] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 167/378] accel/amdxdna: Fix mm_struct reference leak in aie2_populate_range() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 168/378] namespace: restrict OPEN_TREE_NAMESPACE/FSMOUNT_NAMESPACE to directories Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 169/378] netfilter: nft_tunnel: fix use-after-free on object destroy Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 170/378] netfilter: nft_meta_bridge: fix stale stack leak via IIFHWADDR register Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 171/378] tee: shm: fix shm leak in register_shm_helper() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 172/378] Bluetooth: hci_sync: reject oversized Broadcast Announcement prepend Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 173/378] Bluetooth: L2CAP: reject BR/EDR signaling packets over MTUsig Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 174/378] soc: qcom: ice: Fix race between qcom_ice_probe() and of_qcom_ice_get() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 175/378] mm/memory-failure: fix hugetlb_lock AA deadlock in get_huge_page_for_hwpoison Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 176/378] Revert "drm/xe/nvls: Define GuC firmware for NVL-S" Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 177/378] accel/ivpu: Add bounds check for firmware runtime memory Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 178/378] accel/ivpu: Add bounds checks for firmware log indices Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 179/378] firmware: stratix10-svc: Dont fail probe when async ops unsupported Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 180/378] firmware: stratix10-svc: Return -EOPNOTSUPP when ATF async unsupported Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 181/378] firmware: stratix10-rsu: Fix NULL deref on rsu_send_msg() timeout in probe Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 182/378] accel/ivpu: Add buffer overflow check in MS get_info_ioctl Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 183/378] accel/ivpu: Fix signed integer truncation in IPC receive Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 184/378] tracing: Fix CFI violation in probestub being called by tprobes Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 185/378] tracing/probes: Point the error offset correctly for eprobe argument error Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 186/378] cgroup/cpuset: Use effective_xcpus in partcmd_update add/del mask calculation Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 187/378] Revert "drm/xe: Skip exec queue schedule toggle if queue is idle during suspend" Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 7.0 188/378] rust: x86: support Rust >= 1.98.0 target spec Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 189/378] ARM: Do not select HAVE_RUST when KASAN is enabled Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 190/378] rust: arm64: set uwtable llvm module flag for CONFIG_UNWIND_TABLES Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 191/378] rust: kasan/kbuild: fix rustc-option when cross-compiling Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 192/378] mmc: litex_mmc: Use DIV_ROUND_UP for more accurate clock calculation Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 193/378] cfi: Include uaccess.h for get_kernel_nofault() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 194/378] mshv: add a missing padding field Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 195/378] KVM: Dont WARN if memory is dirtied without a vCPU when the VM is dying Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 196/378] KVM: SEV: Decouple the need to sync the GHCB SA from the need to free the SA Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 197/378] KVM: arm64: nv: Fix handling of XN[0] when !FEAT_XNX Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 198/378] KVM: arm64: Correctly identify executable PTEs at stage-2 Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 199/378] KVM: arm64: Restore POR_EL0 access to host EL0 Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 200/378] drm/i915/gem: Fix phys BO pread/pwrite with offset Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 201/378] hv_netvsc: use kmap_local_page in netvsc_copy_to_send_buf Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 202/378] pinctrl: mcp23s08: Initialize mcp->dev and mcp->addr before regmap init Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 203/378] ksmbd: fix use-after-free of a deferred file_lock on double SMB2_CANCEL Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 204/378] xfrm: espintcp: do not reuse an in-progress partial send Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 205/378] xfrm: iptfs: preserve shared-frag marker in iptfs_consume_frags() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 206/378] xfrm: iptfs: fix ABBA deadlock in iptfs_destroy_state() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 207/378] USB: serial: io_ti: fix heap overflow in get_manuf_info() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 208/378] USB: serial: io_ti: fix heap overflow in build_i2c_fw_hdr() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 209/378] USB: serial: option: add usb-id for Dell Wireless DW5826e-m Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 210/378] USB: serial: kl5kusb105: fix bulk-out buffer overflow Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 211/378] ALSA: timer: Forcibly close timer instances at closing Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 212/378] ALSA: timer: Fix UAF at snd_timer_user_params() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 213/378] io_uring/wait: fix min_timeout behavior Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 214/378] io_uring/kbuf: dont truncate end buffer for bundles Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 215/378] io_uring/net: inherit IORING_CQE_F_BUF_MORE across bundle recv retries Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 216/378] drm/virtio: fix dma_fence refcount leak on error in virtio_gpu_dma_fence_wait() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 217/378] drm/amd/display: Reject gpio_bitshift >= 32 in bios_parser_get_gpio_pin_info() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 218/378] mm/huge_memory: update file PMD counter before folio_put() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 219/378] mm/damon/ops-common: call folio_test_lru() after folio_get() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 220/378] mm/huge_memory: update file PUD counter before folio_put() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 221/378] RDMA/core: Validate the passed in fops for ib_get_ucaps() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 222/378] RDMA/core: Validate cpu_id against nr_cpu_ids in DMAH alloc Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 223/378] RDMA/srp: bound SRP_RSP sense copy by the received length Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 224/378] zram: fix use-after-free in zram_bvec_write_partial() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 225/378] udp: clear skb->dev before running a sockmap verdict Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 226/378] ARM: socfpga: Fix OF node refcount leak in SMP setup Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 227/378] ARM: 9474/1: io: avoid KASAN instrumentation of raw halfword I/O Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 228/378] ARM: 9475/1: entry: use byte load for KASAN VMAP stack shadow Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 229/378] arm64: mm: call pagetable dtor when freeing hot-removed page tables Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 230/378] mptcp: fix missing wakeups in edge scenarios Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 231/378] mptcp: fix retransmission loop when csum is enabled Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 232/378] mptcp: close TOCTOU race while computing rcv_wnd Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 233/378] mptcp: allow subflow rcv wnd to shrink Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 234/378] mptcp: pm: fix extra_subflows underflow on userspace PM subflow creation Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 235/378] mptcp: check desc->count in read_sock Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 236/378] mptcp: sockopt: check timestamping ret value Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 237/378] mptcp: sockopt: set sockopt on all subflows Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 238/378] selftests: mptcp: add test for extra_subflows underflow on userspace PM Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 239/378] mptcp: add-addr: always drop other suboptions Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 240/378] xfs: fix error returns in CoW fork repair Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 241/378] xfs: fix rtgroup cleanup " Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 242/378] wifi: iwlwifi: pcie: simplify the resume flow if fast resume is not used Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 243/378] wifi: nl80211: reject oversized EMA RNR lists Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 244/378] vsock/vmci: fix sk_ack_backlog leak on failed handshake Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 245/378] timers/migration: Fix livelock in tmigr_handle_remote_up() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 246/378] spi: qcom-geni: Fix cs_change handling on the last transfer Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 247/378] staging: rtl8723bs: fix buffer over-read in rtw_update_protection Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 7.0 248/378] staging: rtl8723bs: rtw_mlme: add bounds checks before ie_length subtraction Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 249/378] ASoC: fsl_sai: Fix 32 slots TDM broken by integer shift UB in xMR write Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 250/378] bnxt_en: Fix NULL pointer dereference Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 251/378] Drivers: hv: vmbus: Improve the logic of reserving fb_mmio on Gen2 VMs Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 252/378] fhandle: fix UAF due to unlocked ->mnt_ns read in may_decode_fh() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 253/378] hv: utils: handle and propagate errors in kvp_register Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 254/378] IB/isert: Reject login PDUs shorter than ISER_HEADERS_LEN Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 255/378] inet: frags: fix use-after-free caused by the fqdir_pre_exit() flush Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 256/378] ovl: keep err zero after successful ovl_cache_get() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 257/378] pidfd: refuse access to tasks that have started exiting harder Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 258/378] s390: Remove GENERIC_LOCKBREAK Kconfig option Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 259/378] accel/ethosu: fix OOB write in ethosu_gem_cmdstream_copy_and_validate() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 260/378] accel/ethosu: fix IFM region index out-of-bounds in command stream parser Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 261/378] accel/ethosu: fix wrong weight index in NPU_SET_SCALE1_LENGTH on U85 Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 262/378] accel/ethosu: fix arithmetic issues in dma_length() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 263/378] accel/ethosu: reject DMA commands with uninitialized length Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 264/378] accel/ethosu: reject NPU_OP_RESIZE commands from userspace Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 265/378] fs/qnx6: fix pointer arithmetic in directory iteration Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 266/378] fuse: reject fuse_notify() pagecache ops on directories Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 267/378] fuse: limit FUSE_NOTIFY_RETRIEVE to uptodate folios Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 268/378] futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 269/378] i2c: imx-lpi2c: fix resource leaks switching to devm_dma_request_chan() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 270/378] i2c: imx: fix clock and pinctrl state inconsistency in runtime PM Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 271/378] i2c: qcom-cci: Fix NULL pointer dereference in cci_remove() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 272/378] i2c: stm32f7: fix timing computation ignoring i2c-analog-filter Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 273/378] i2c: tegra: Fix NOIRQ suspend/resume Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 274/378] Input: atkbd - add DMI quirk for Lenovo Yoga Air 14 (83QK) Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 275/378] Input: atkbd - skip deactivate for HONOR BCC-Ns internal keyboard Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 276/378] iomap: avoid potential null folio->mapping deref during error reporting Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 277/378] iommu/dma: Do not try to iommu_map a 0 length region in swiotlb Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 278/378] ipc/shm: serialize orphan cleanup with shm_nattch updates Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 279/378] locking/rtmutex: Skip remove_waiter() when waiter is not enqueued Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 280/378] memcg: use round-robin victim selection in refill_stock Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 281/378] memory: atmel-ebi: Allow deferred probing Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 282/378] misc: fastrpc: fix use-after-free of fastrpc_user in workqueue context Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 283/378] misc: fastrpc: fix use-after-free race in fastrpc_map_create Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 284/378] misc: fastrpc: fix DMA address corruption due to find_vma misuse Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 285/378] misc: fastrpc: Fix NULL pointer dereference in rpmsg callback Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 286/378] firmware: samsung: acpm: Fix mailbox channel leak on probe error Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 287/378] net/mlx5: Reorder completion before putting command entry in cmd_work_handler Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 288/378] net: airoha: Add NULL check for of_reserved_mem_lookup() in airoha_qdma_init_hfwd_queues() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 289/378] net: bonding: fix NULL pointer dereference in bond_do_ioctl() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 290/378] net: mv643xx: fix OF node refcount Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 291/378] net: phonet: free phonet_device after RCU grace period Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 292/378] net: rds: clear i_sends on setup unwind Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 293/378] net: sfp: initialize i2c_block_size at adapter configure time Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 294/378] nvmem: core: fix use-after-free bugs in error paths Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 295/378] nvmem: layouts: onie-tlv: fix hang on unknown types Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 296/378] octeontx2-af: fix memory leak in rvu_setup_hw_resources() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 297/378] pinctrl: mcp23s08: Read spi-present-mask as u8 not u32 Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 298/378] mm/cma: fix reserved page leak on activation failure Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 299/378] mm/cma_debug: fix invalid accesses for inactive CMA areas Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 300/378] mm/damon/lru_sort: handle ctx allocation failure Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 301/378] mm/damon/reclaim: " Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 302/378] mm/huge_memory: use correct flags for device private PMD entry Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 303/378] mm/hugetlb: avoid false positive lockdep assertion Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 304/378] mm/hugetlb: restore reservation on error in hugetlb folio copy paths Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 305/378] mm/list_lru: drain before clearing xarray entry on reparent Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 306/378] mm/mincore: handle non-swap entries before !CONFIG_SWAP guard Greg Kroah-Hartman
2026-06-16 14:52   ` [PATCH 6.1 016/522] tun: free page on short-frame rejection in tun_xdp_one() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 307/378] mmc: core: Fix host controller programming for fixed driver type Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 7.0 308/378] mmc: dw_mmc-rockchip: Add missing private data for very old controllers Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 309/378] mmc: litex_mmc: Set mandatory idle clocks before CMD0 Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 310/378] mmc: renesas_sdhi: Add OF entry for RZ/G2H SoC Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 311/378] mmc: sdhci-of-dwcmshc: Fix reset, clk, and SDIO support for Eswin EIC7700 Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 312/378] mmc: sdhci: add signal voltage switch in sdhci_resume_host Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 313/378] pmdomain: imx: fix OF node refcount Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 314/378] pmdomain: ti_sci: add wakeup constraint to parent devices of wakeup source Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 315/378] rtase: Avoid sleeping in get_stats64() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 316/378] rtase: Reset TX subqueue when clearing TX ring Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 317/378] rxrpc: Fix the ACK parser to extract the SACK table for parsing Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 318/378] sctp: diag: reject stale associations in dump_one path Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 319/378] sctp: stream: fully roll back denied add-stream state Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 320/378] thunderbolt: Reject zero-length property entries in validator Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 321/378] thunderbolt: Bound root directory content to block size Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 322/378] thunderbolt: Clamp XDomain response data copy to allocation size Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 323/378] thunderbolt: Validate XDomain request packet size before type cast Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 324/378] thunderbolt: Limit XDomain response copy to actual frame size Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 325/378] slimbus: qcom-ngd-ctrl: fix OF node refcount Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 326/378] slimbus: qcom-ngd-ctrl: Fix up platform_driver registration Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 327/378] slimbus: qcom-ngd-ctrl: Fix probe error path ordering Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 328/378] slimbus: qcom-ngd-ctrl: Register callbacks after creating the ngd Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 329/378] slimbus: qcom-ngd-ctrl: Initialize controller resources in controller Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 330/378] slimbus: qcom-ngd-ctrl: Correct PDR and SSR cleanup ownership Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 331/378] slimbus: qcom-ngd-ctrl: Balance pm_runtime enablement for NGD Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 332/378] slimbus: qcom-ngd-ctrl: Avoid ABBA on tx_lock/ctrl->lock Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 333/378] drm/gem: Try to fix change_handle ioctl, attempt 4 Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 334/378] drm/i915: Fix color blob reference handling in intel_plane_state Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 335/378] drm/amdkfd: fix NULL dereference in get_queue_ids() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 336/378] drm/amdkfd: Fix buffer overflow in SDMA queue checkpoint/restore on GFX11 Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 337/378] drm/xe/display: fix oops in suspend/shutdown without display Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 338/378] drm/xe/multi_queue: skip submit when primary queue is suspended Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 339/378] drm/xe: Clear pending_disable before signaling suspend fence Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 340/378] drm/v3d: Wait for pending L2T flush before cleaning caches Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 341/378] drm/v3d: Fix global performance monitor reference counting Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 342/378] drm/v3d: Fix vaddr leak when indirect CSD has zeroed workgroups Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 343/378] drm/v3d: Skip CSD when it " Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 344/378] drm/amdgpu: fix waiting for all submissions for userptrs Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 345/378] drm/amdgpu: restart the CS if some parts of the VM are still invalidated Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 346/378] drm/amdgpu: set noretry=1 as default for GFX 10.1.x (Navi10/12/14) Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 347/378] drm/amdgpu: Fix incorrect VRAM GART mappings on non-4K page size systems Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 348/378] drm/amd/pm: apply SMU 13.0.10 workaround during MP1 unload Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 349/378] drm/amd/pm: fix smu13 power limit default/cap calculation Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 350/378] drm/amd/pm: mark metrics.energy_accumulator is invalid for smu 14.0.2 Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 351/378] drm/amd/pm: smu_v14_0_0: use SoftMin for gfxclk in set_soft_freq_limited_range Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 352/378] drm/amd/display: Bound VBIOS record-chain walk loops Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 353/378] drm/amd/display: Clamp HDMI HDCP2 rx_id_list read to buffer size Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 354/378] drm/amd/display: Clamp VBIOS HDMI retimer register count to array size Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 355/378] drm/amd/display: add missing CSC entries for BT.2020 for DCE IPs Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 356/378] drm/amd/display: Fix NULL deref and buffer over-read in SDP debugfs Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 357/378] drm/amd/display: Fix out-of-bounds read in dp_get_eq_aux_rd_interval() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 358/378] drm/amd/display: Use krealloc_array() in dal_vector_reserve() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 359/378] fs/fcntl: fix SOFTIRQ-unsafe lock order in fasync signaling Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 360/378] driver core: faux: fix root device registration Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 361/378] driver core: reject devices with unregistered buses Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 362/378] RDMA: During rereg_mr ensure that REREG_ACCESS is compatible Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 363/378] netfilter: nft_fib: fix stale stack leak via the OIFNAME register Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 364/378] sched_ext: Dont warn on NULL cgrp_moving_from in scx_cgroup_move_task() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 365/378] wifi: mac80211: skip ieee80211_verify_sta_ht_mcs_support check in non-strict mode Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 366/378] wifi: mac80211: tests: mark HT check strict Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 367/378] RDMA/umem: fix kernel-doc warnings Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 7.0 368/378] RDMA: Move DMA block iterator logic into dedicated files Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 7.0 369/378] RDMA/umem: Fix truncation for block sizes >= 4G Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 7.0 370/378] vsock/virtio: fix potential unbounded skb queue Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 7.0 371/378] vsock/virtio: fix skb overhead accounting to preserve full buf_alloc Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 7.0 372/378] debugobjects: Do not fill_pool() if pi_blocked_on Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 7.0 373/378] debugobjects: Dont call fill_pool() in early boot hardirq context Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 7.0 374/378] arm64: cputype: Add C1-Ultra definitions Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 7.0 375/378] arm64: cputype: Add C1-Premium definitions Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 7.0 376/378] arm64: errata: Mitigate TLBI errata on various Arm CPUs Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 7.0 377/378] arm64: errata: Mitigate TLBI errata on NVIDIA Olympus CPU Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 7.0 378/378] arm64: errata: Mitigate TLBI errata on Microsoft Azure Cobalt 100 CPU Greg Kroah-Hartman
2026-06-16 15:37 ` [PATCH 7.0 000/378] 7.0.13-rc1 review Ronald Warsow
2026-06-16 16:55 ` 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=20260616145134.816000690@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=johan@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --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