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, Eric Dumazet <edumazet@google.com>,
	Jamal Hadi Salim <jhs@mojatatu.com>,
	Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 751/969] net/sched: sch_fq_pie: annotate data-races in fq_pie_dump_stats()
Date: Sat, 30 May 2026 18:04:35 +0200	[thread overview]
Message-ID: <20260530160321.300971656@linuxfoundation.org> (raw)
In-Reply-To: <20260530160300.485627683@linuxfoundation.org>

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

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

From: Eric Dumazet <edumazet@google.com>

[ Upstream commit 59b145771c7982cfe9020d4e9e22da92d6b5ae31 ]

fq_codel_dump_stats() acquires the qdisc spinlock a bit too late.

Move this acquisition before we fill tc_fq_pie_xstats with live data.

Alternative would be to add READ_ONCE() and WRITE_ONCE() annotations,
but the spinlock is needed anyway to scan q->new_flows and q->old_flows.

Fixes: ec97ecf1ebe4 ("net: sched: add Flow Queue PIE packet scheduler")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Jamal Hadi Salim <jhs@mojatatu.com>
Link: https://patch.msgid.link/20260423063527.2568262-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/sched/sch_fq_pie.c | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/net/sched/sch_fq_pie.c b/net/sched/sch_fq_pie.c
index 607c580d75e4b..4bd5ca9acc53f 100644
--- a/net/sched/sch_fq_pie.c
+++ b/net/sched/sch_fq_pie.c
@@ -498,18 +498,19 @@ static int fq_pie_dump(struct Qdisc *sch, struct sk_buff *skb)
 static int fq_pie_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
 {
 	struct fq_pie_sched_data *q = qdisc_priv(sch);
-	struct tc_fq_pie_xstats st = {
-		.packets_in	= q->stats.packets_in,
-		.overlimit	= q->stats.overlimit,
-		.overmemory	= q->overmemory,
-		.dropped	= q->stats.dropped,
-		.ecn_mark	= q->stats.ecn_mark,
-		.new_flow_count = q->new_flow_count,
-		.memory_usage   = q->memory_usage,
-	};
+	struct tc_fq_pie_xstats st = { 0 };
 	struct list_head *pos;
 
 	sch_tree_lock(sch);
+
+	st.packets_in	= q->stats.packets_in;
+	st.overlimit	= q->stats.overlimit;
+	st.overmemory	= q->overmemory;
+	st.dropped	= q->stats.dropped;
+	st.ecn_mark	= q->stats.ecn_mark;
+	st.new_flow_count = q->new_flow_count;
+	st.memory_usage   = q->memory_usage;
+
 	list_for_each(pos, &q->new_flows)
 		st.new_flows_len++;
 
-- 
2.53.0




  parent reply	other threads:[~2026-05-30 17:24 UTC|newest]

Thread overview: 981+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-30 15:52 [PATCH 6.1 000/969] 6.1.175-rc1 review Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 001/969] ASoC: amd: yc: Add DMI quirk for ASUS EXPERTBOOK BM1403CDA Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 002/969] ALSA: hda/realtek: Add HP ENVY Laptop 13-ba0xxx quirk Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 003/969] media: rkvdec: reduce stack usage in rkvdec_init_v4l2_vp9_count_tbl() Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 004/969] ALSA: asihpi: avoid write overflow check warning Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 005/969] ASoC: amd: yc: Add DMI quirk for Thin A15 B7VF Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 006/969] ASoC: SOF: topology: reject invalid vendor array size in token parser Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 007/969] can: mcp251x: add error handling for power enable in open and resume Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 008/969] btrfs: tracepoints: get correct superblock from dentry in event btrfs_sync_file() Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 009/969] ALSA: hda/realtek: Add mute LED quirk for HP Pavilion 15-eg0xxx Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 010/969] netfilter: nft_set_pipapo_avx2: dont return non-matching entry on expiry Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 011/969] ALSA: hda/realtek: add quirk for Framework F111:000F Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 012/969] wifi: wl1251: validate packet IDs before indexing tx_frames Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 013/969] ASoC: soc-core: call missing INIT_LIST_HEAD() for card_aux_list Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 014/969] ALSA: usb-audio: Fix quirk flags for NeuralDSP Quad Cortex Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 015/969] fs/smb/client: fix out-of-bounds read in cifs_sanitize_prepath Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 016/969] ASoC: amd: yc: Add DMI entry for HP Laptop 15-fc0xxx Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 017/969] pinctrl: intel: Fix the revision for new features (1kOhm PD, HW debouncer) Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 018/969] HID: quirks: add HID_QUIRK_ALWAYS_POLL for 8BitDo Pro 3 Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 019/969] ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14IAH10 Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 020/969] HID: roccat: fix use-after-free in roccat_report_event Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 021/969] ata: ahci: force 32-bit DMA for JMicron JMB582/JMB585 Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 022/969] wifi: brcmfmac: validate bsscfg indices in IF events Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 023/969] ASoC: stm32_sai: fix incorrect BCLK polarity for DSP_A/B, LEFT_J Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 024/969] soc: aspeed: socinfo: Mask table entries for accurate SoC ID matching Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 025/969] arm64: dts: imx8mq: Set the correct gpu_ahb clock frequency Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 026/969] PCI: hv: Set default NUMA node to 0 for devices without affinity info Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 027/969] drm/vc4: Release runtime PM reference after binding V3D Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 028/969] drm/vc4: Fix memory leak of BO array in hang state Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 029/969] drm/vc4: Fix a memory leak in hang state error path Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 030/969] drm/vc4: Protect madv read in vc4_gem_object_mmap() with madv_lock Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 031/969] epoll: use refcount to reduce ep_mutex contention Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 032/969] eventpoll: defer struct eventpoll free to RCU grace period Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 033/969] net: sched: act_csum: validate nested VLAN headers Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 034/969] net: lapbether: handle NETDEV_PRE_TYPE_CHANGE Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 035/969] ipv4: icmp: fix null-ptr-deref in icmp_build_probe() Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 036/969] nfc: s3fwrn5: allocate rx skb before consuming bytes Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 037/969] dt-bindings: net: Fix Tegra234 MGBE PTP clock Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 038/969] tracing/probe: reject non-closed empty immediate strings Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 039/969] ixgbevf: add missing negotiate_features op to Hyper-V ops table Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 040/969] e1000: check return value of e1000_read_eeprom Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 041/969] xsk: tighten UMEM headroom validation to account for tailroom and min frame Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 042/969] xfrm: Wait for RCU readers during policy netns exit Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 043/969] xfrm_user: fix info leak in build_mapping() Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 044/969] selftests: net: bridge_vlan_mcast: wait for h1 before querier check Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 045/969] netfilter: nfnetlink_log: initialize nfgenmsg in NLMSG_DONE terminator Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 046/969] netfilter: xt_multiport: validate range encoding in checkentry Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 047/969] netfilter: ip6t_eui64: reject invalid MAC header for all packets Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 048/969] af_unix: read UNIX_DIAG_VFS data under unix_state_lock Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 049/969] l2tp: Drop large packets with UDP encap Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 050/969] gpio: tegra: fix irq_release_resources calling enable instead of disable Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 051/969] perf/x86/intel/uncore: Skip discovery table for offline dies Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 052/969] Revert "drm: Fix use-after-free on framebuffers and property blobs when calling drm_dev_unplug" Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 053/969] netfilter: conntrack: add missing netlink policy validations Greg Kroah-Hartman
2026-05-30 15:52 ` [PATCH 6.1 054/969] ALSA: usb-audio: Improve Focusrite sample rate filtering Greg Kroah-Hartman
2026-05-31 15:13   ` Geoffrey D. Bennett
2026-06-01  2:11     ` Sasha Levin
2026-05-30 15:52 ` [PATCH 6.1 055/969] drm/i915/psr: Do not use pipe_src as borders for SU area Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 056/969] nfc: llcp: add missing return after LLCP_CLOSED checks Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 057/969] can: raw: fix ro->uniq use-after-free in raw_rcv() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 058/969] i2c: s3c24xx: check the size of the SMBUS message before using it Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 059/969] staging: rtl8723bs: initialize le_tmp64 in rtw_BIP_verify() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 060/969] HID: alps: fix NULL pointer dereference in alps_raw_event() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 061/969] HID: core: clamp report_size in s32ton() to avoid undefined shift Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 062/969] net: usb: cdc-phonet: fix skb frags[] overflow in rx_complete() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 063/969] NFC: digital: Bounds check NFC-A cascade depth in SDD response handler Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 064/969] drm/vc4: platform_get_irq_byname() returns an int Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 065/969] ALSA: fireworks: bound device-supplied status before string array lookup Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 066/969] fbdev: tdfxfb: avoid divide-by-zero on FBIOPUT_VSCREENINFO Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 067/969] usb: gadget: f_ncm: validate minimum block_len in ncm_unwrap_ntb() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 068/969] usb: gadget: f_phonet: fix skb frags[] overflow in pn_rx_complete() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 069/969] usb: gadget: renesas_usb3: validate endpoint index in standard request handlers Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 070/969] ksmbd: validate EaNameLength in smb2_get_ea() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 071/969] ksmbd: require 3 sub-authorities before reading sub_auth[2] Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 072/969] usbip: validate number_of_packets in usbip_pack_ret_submit() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 073/969] usb: storage: Expand range of matched versions for VL817 quirks entry Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 074/969] USB: cdc-acm: Add quirks for Yoga Book 9 14IAH10 INGENIC touchscreen Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 075/969] usb: port: add delay after usb_hub_set_port_power() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 076/969] fbdev: udlfb: avoid divide-by-zero on FBIOPUT_VSCREENINFO Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 077/969] scripts: generate_rust_analyzer.py: avoid FD leak Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 078/969] staging: sm750fb: fix division by zero in ps_to_hz() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 079/969] USB: serial: option: add Telit Cinterion FN990A MBIM composition Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 080/969] Docs/admin-guide/mm/damon/reclaim: warn commit_inputs vs param updates race Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 081/969] ALSA: ctxfi: Limit PTP to a single page Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 082/969] dcache: Limit the minimal number of bucket to two Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 083/969] media: vidtv: fix NULL pointer dereference in vidtv_channel_pmt_match_sections Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 084/969] ocfs2: fix possible deadlock between unlink and dio_end_io_write Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 085/969] ocfs2: fix use-after-free in ocfs2_fault() when VM_FAULT_RETRY Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 086/969] ocfs2: handle invalid dinode in ocfs2_group_extend Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 087/969] KVM: SEV: Drop WARN on large size for KVM_MEMORY_ENCRYPT_REG_REGION Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 088/969] Revert "dmaengine: idxd: Fix not releasing workqueue on .release()" Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 089/969] ALSA: usb-audio: fix race condition to UAF in snd_usbmidi_free Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 090/969] net: add proper RCU protection to /proc/net/ptype Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 091/969] net: sched: fix TCF_LAYER_TRANSPORT handling in tcf_get_base_ptr() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 092/969] bonding: return detailed error when loading native XDP fails Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 093/969] bonding: check xdp prog when set bond mode Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 094/969] drm/amdgpu: remove two invalid BUG_ON()s Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 095/969] nf_tables: nft_dynset: fix possible stateful expression memleak in error path Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 096/969] rxrpc: proc: size address buffers for %pISpc output Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 097/969] checkpatch: add support for Assisted-by tag Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 098/969] KVM: x86: Use scratch field in MMIO fragment to hold small write values Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 099/969] mm/kasan: fix double free for kasan pXds Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 100/969] mm: blk-cgroup: fix use-after-free in cgwb_release_workfn() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 101/969] media: vidtv: fix nfeeds state corruption on start_streaming failure Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 102/969] media: em28xx: fix use-after-free in em28xx_v4l2_open() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 103/969] ALSA: 6fire: fix use-after-free on disconnect Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 104/969] bcache: fix cached_dev.sb_bio use-after-free and crash Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 105/969] media: as102: fix to not free memory after the device is registered in as102_usb_probe() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 106/969] nilfs2: fix NULL i_assoc_inode dereference in nilfs_mdt_save_to_shadow_map Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 107/969] media: vidtv: fix pass-by-value structs causing MSAN warnings Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 108/969] media: hackrf: fix to not free memory after the device is registered in hackrf_probe() Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 109/969] PCI: endpoint: pci-epf-vntb: Remove duplicate resource teardown Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 110/969] Revert "net: ethernet: xscale: Check for PTP support properly" Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 111/969] Revert "net: ixp4xx_eth: convert to ndo_hwtstamp_get() and ndo_hwtstamp_set()" Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 112/969] ipv6: add NULL checks for idev in SRv6 paths Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 113/969] gfs2: Improve gfs2_consist_inode() usage Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 114/969] gfs2: Validate i_depth for exhash directories Greg Kroah-Hartman
2026-05-30 15:53 ` [PATCH 6.1 115/969] wifi: mac80211: always free skb on ieee80211_tx_prepare_skb() failure Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 116/969] net: dsa: clean up FDB, MDB, VLAN entries on unbind Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 117/969] arm64: dts: imx8mq-librem5: Set the DVS voltages lower Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 118/969] arm64: dts: imx8mq-librem5: Bump BUCK1 suspend voltage to 0.81V Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 119/969] Revert "arm64: dts: imx8mq-librem5: Set the DVS voltages lower" Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 120/969] arm64: dts: imx8mq-librem5: Bump BUCK1 suspend voltage up to 0.85V Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 121/969] ocfs2: add inline inode consistency check to ocfs2_validate_inode_block() Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 122/969] ocfs2: validate inline data i_size during inode read Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 123/969] ocfs2: fix out-of-bounds write in ocfs2_write_end_inline Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 124/969] rxrpc: Fix key quota calculation for multitoken keys Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 125/969] rxrpc: Fix call removal to use RCU safe deletion Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 126/969] Revert "wifi: cfg80211: stop NAN and P2P in cfg80211_leave" Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 127/969] rxrpc: reject undecryptable rxkad response tickets Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 128/969] KVM: x86: Use __DECLARE_FLEX_ARRAY() for UAPI structures with VLAs Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 129/969] ublk: fix deadlock when reading partition table Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 130/969] scripts: generate_rust_analyzer.py: define scripts Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 131/969] PCI: endpoint: pci-epf-vntb: Stop cmd_handler work in epf_ntb_epc_cleanup Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 132/969] soc: qcom: apr: make remove callback of apr driver void returned Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 133/969] ASoC: qcom: q6apm: move component registration to unmanaged version Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 134/969] rxrpc: Fix recvmsg() unconditional requeue Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 135/969] scsi: ufs: core: Fix use-after free in init error and remove paths Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 136/969] ALSA: control: Avoid WARN() for symlink errors Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 137/969] f2fs: fix null-ptr-deref in f2fs_submit_page_bio() Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 138/969] wifi: iwlwifi: read txq->read_ptr under lock Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 139/969] scripts/dtc: Remove unused dts_version in dtc-lexer.l Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 140/969] arm64: mm: fix VA-range sanity check Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 141/969] rxrpc: Fix anonymous key handling Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 142/969] rxrpc: only handle RESPONSE during service challenge Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 143/969] fs/ntfs3: validate rec->used in journal-replay file record check Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 144/969] fuse: reject oversized dirents in page cache Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 145/969] fuse: quiet down complaints in fuse_conn_limit_write Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 146/969] smb: server: fix active_num_conn leak on transport allocation failure Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 147/969] smb: server: fix max_connections off-by-one in tcp accept path Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 148/969] smb: client: require a full NFS mode SID before reading mode bits Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 149/969] smb: client: fix OOB read in smb2_ioctl_query_info QUERY_INFO path Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 150/969] ksmbd: fix out-of-bounds write in smb2_get_ea() EA alignment Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 151/969] ksmbd: use check_add_overflow() to prevent u16 DACL size overflow Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 152/969] f2fs: fix use-after-free of sbi in f2fs_compress_write_end_io() Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 153/969] ALSA: usb-audio: apply quirk for MOONDROP JU Jiu Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 154/969] ALSA: caiaq: take a reference on the USB device in create_card() Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 155/969] crypto: ccp: Dont attempt to copy CSR to userspace if PSP command failed Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 156/969] crypto: ccp: Dont attempt to copy PDH cert " Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 157/969] crypto: ccp: Dont attempt to copy ID " Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 158/969] rxrpc: Fix missing validation of ticket length in non-XDR key preparsing Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 159/969] ALSA: usb-audio: stop parsing UAC2 rates at MAX_NR_RATES Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 160/969] ALSA: usb-audio: Avoid false E-MU sample-rate notifications Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 161/969] ALSA: usb-audio: Fix Audio Advantage Micro II SPDIF switch Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 162/969] usb: xhci: Make usb_host_endpoint.hcpriv survive endpoint_disable() Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 163/969] ALSA: usb-audio: Evaluate packsize caps at the right place Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 164/969] drm/nouveau: fix u32 overflow in pushbuf reloc bounds check Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 165/969] misc: ibmasm: fix OOB MMIO read in ibmasm_handle_mouse_interrupt() Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 166/969] ibmasm: fix OOB reads in command_file_write due to missing size checks Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 167/969] ibmasm: fix heap over-read in ibmasm_send_i2o_message() Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 168/969] firmware: google: framebuffer: Do not mark framebuffer as busy Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 169/969] padata: Fix pd UAF once and for all Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 170/969] padata: Remove comment for reorder_work Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 171/969] drm/amdgpu: Use vmemdup_array_user in amdgpu_bo_create_list_entry_array Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 172/969] drm/amdgpu: Limit BO list entry count to prevent resource exhaustion Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 173/969] net: enetc: fix the deadlock of enetc_mdio_lock Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 174/969] blk-mq: fix NULL dereference on q->elevator in blk_mq_elv_switch_none Greg Kroah-Hartman
2026-05-30 15:54 ` [PATCH 6.1 175/969] arm64: set __exception_irq_entry with __irq_entry as a default Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 176/969] regset: use kvzalloc() for regset_get_alloc() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 177/969] device property: Make modifications of fwnode "flags" thread safe Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 178/969] ocfs2: split transactions in dio completion to avoid credit exhaustion Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 179/969] driver core: Dont let a device probe until its ready Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 180/969] wifi: rtw88: check for PCI upstream bridge existence Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 181/969] um: drivers: call kernel_strrchr() explicitly in cow_user.c Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 182/969] f2fs: fix to detect potential corrupted nid in free_nid_list Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 183/969] crypto: pcrypt - Fix handling of MAY_BACKLOG requests Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 184/969] media: amphion: Fix race between m2m job_abort and device_run Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 185/969] ALSA: control: Validate buf_len before strnlen() in snd_ctl_elem_init_enum_names() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 186/969] net: caif: clear client service pointer on teardown Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 187/969] net: strparser: fix skb_head leak in strp_abort_strp() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 188/969] PCI: endpoint: pci-epf-ntb: Remove duplicate resource teardown Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 189/969] Revert "ALSA: usb: Increase volume range that triggers a warning" Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 190/969] lib/ts_kmp: fix integer overflow in pattern length calculation Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 191/969] media: i2c: imx219: Check return value of devm_gpiod_get_optional() in imx219_probe() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 192/969] net: qrtr: ns: Fix use-after-free in driver remove() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 193/969] ext2: reject inodes with zero i_nlink and valid mode in ext2_iget() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 194/969] ALSA: aoa: i2sbus: fix OF node lifetime handling Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 195/969] ALSA: ctxfi: Add fallback to default RSR for S/PDIF Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 196/969] ALSA: seq_oss: return full count for successful SEQ_FULLSIZE writes Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 197/969] erofs: fix the out-of-bounds nameoff handling for trailing dirents Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 198/969] md/raid10: fix deadlock with check operation and nowait requests Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 199/969] nvme-pci: add NVME_QUIRK_DISABLE_WRITE_ZEROES for Kingston OM3SGP4 Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 200/969] nvme: respect NVME_QUIRK_DISABLE_WRITE_ZEROES when wzsl is set Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 201/969] parisc: _llseek syscall is only available for 32-bit userspace Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 202/969] selftests/mqueue: Fix incorrectly named file Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 203/969] rbd: fix null-ptr-deref when device_add_disk() fails Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 204/969] io_uring/timeout: check unused sqe fields Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 205/969] iio: adc: ti-ads7950: use iio_push_to_buffers_with_ts_unaligned() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 206/969] io_uring/poll: fix signed comparison in io_poll_get_ownership() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 207/969] io_uring/poll: ensure EPOLL_ONESHOT is propagated for EPOLL_URING_WAKE Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 208/969] ALSA: core: Fix potential data race at fasync handling Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 209/969] ALSA: caiaq: Fix control_put() result and cache rollback Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 210/969] ALSA: caiaq: Handle probe errors properly Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 211/969] ALSA: 6fire: Fix input volume change detection Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 212/969] iio: adc: ad7768-1: fix one-shot mode data acquisition Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 213/969] tools/accounting: handle truncated taskstats netlink messages Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 214/969] net: rds: fix MR cleanup on copy error Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 215/969] net/smc: avoid early lgr access in smc_clc_wait_msg Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 216/969] net: ks8851: Reinstate disabling of BHs around IRQ handler Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 217/969] net: ks8851: Avoid excess softirq scheduling Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 218/969] drm/arcpgu: fix device node leak Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 219/969] RDMA/rxe: Validate pad and ICRC before payload_size() in rxe_rcv Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 220/969] ipv4: icmp: validate reply type before using icmp_pointers Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 221/969] libceph: Prevent potential null-ptr-deref in ceph_handle_auth_reply() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 222/969] extract-cert: Wrap key_pass with #ifdef USE_PKCS11_ENGINE Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 223/969] tpm: avoid -Wunused-but-set-variable Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 224/969] LoongArch: Show CPU vulnerabilites correctly Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 225/969] power: supply: axp288_charger: Do not cancel work before initializing it Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 226/969] randomize_kstack: Maintain kstack_offset per task Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 227/969] mmc: block: use single block write in retry Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 228/969] mmc: sdhci-of-dwcmshc: Disable clock before DLL configuration Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 229/969] tpm: tpm_tis: add error logging for data transfer Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 230/969] rtc: ntxec: fix OF node reference imbalance Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 231/969] userfaultfd: allow registration of ranges below mmap_min_addr Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 232/969] KVM: nSVM: Mark all of vmcb02 dirty when restoring nested state Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 233/969] KVM: nSVM: Sync NextRIP to cached vmcb12 after VMRUN of L2 Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 234/969] KVM: nSVM: Sync interrupt shadow " Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 6.1 235/969] KVM: SVM: Inject #UD for INVLPGA if EFER.SVME=0 Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 236/969] KVM: SVM: Explicitly mark vmcb01 dirty after modifying VMCB intercepts Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 237/969] KVM: nSVM: Ensure AVIC is inhibited when restoring a vCPU to guest mode Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 238/969] KVM: nSVM: Use vcpu->arch.cr2 when updating vmcb12 on nested #VMEXIT Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 239/969] KVM: nSVM: Always inject a #GP if mapping VMCB12 fails on nested VMRUN Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 240/969] KVM: nSVM: Clear GIF on nested #VMEXIT(INVALID) Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 241/969] KVM: nSVM: Clear tracking of L1->L2 NMI and soft IRQ on nested #VMEXIT Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 242/969] KVM: nSVM: Add missing consistency check for EFER, CR0, CR4, and CS Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 243/969] KVM: nSVM: Add missing consistency check for nCR3 validity Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 244/969] mtd: docg3: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 245/969] mtd: docg3: fix use-after-free in docg3_release() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 246/969] io_uring/poll: fix multishot recv missing EOF on wakeup race Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 247/969] ext4: fix missing brelse() in ext4_xattr_inode_dec_ref_all() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 248/969] md/raid5: fix soft lockup in retry_aligned_read() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 249/969] md/raid5: validate payload size before accessing journal metadata Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 250/969] inotify: fix watch count leak when fsnotify_add_inode_mark_locked() fails Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 251/969] tcp: call sk_data_ready() after listener migration Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 252/969] taskstats: set version in TGID exit notifications Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 253/969] Bluetooth: hci_event: fix potential UAF in SSP passkey handlers Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 254/969] can: ucan: fix devres lifetime Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 255/969] crypto: arm64/aes - Fix 32-bit aes_mac_update() arg treated as 64-bit Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 256/969] crypto: atmel-aes - Fix 3-page memory leak in atmel_aes_buff_cleanup Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 257/969] crypto: atmel-ecc - Release client on allocation failure Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 258/969] crypto: hisilicon - Fix dma_unmap_single() direction Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 259/969] crypto: ccree - fix a memory leak in cc_mac_digest() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 260/969] crypto: atmel-tdes - fix DMA sync direction Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 261/969] crypto: atmel-sha204a - Fix potential UAF and memory leak in remove path Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 262/969] dm mirror: fix integer overflow in create_dirty_log() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 263/969] IB/core: Fix zero dmac race in neighbor resolution Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 264/969] ktest: Fix the month in the name of the failure directory Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 265/969] ntfs3: add buffer boundary checks to run_unpack() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 266/969] ntfs3: fix integer overflow in run_unpack() volume boundary check Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 267/969] rtmutex: Use waiter::task instead of current in remove_waiter() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 268/969] scsi: sd: fix missing put_disk() when device_add(&disk_dev) fails Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 269/969] seg6: fix seg6 lwtunnel output redirect for L2 reduced encap mode Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 270/969] crypto: authencesn - reject short ahash digests during instance creation Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 271/969] driver core: Add kernel-doc for DEV_FLAG_COUNT enum value Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 272/969] ALSA: caiaq: Fix potentially leftover ep1_in_urb at error path Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 273/969] ALSA: caiaq: Dont abort when no input device is available Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 274/969] ipv6: rpl: reserve mac_len headroom when recompressed SRH grows Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 275/969] drm/amdgpu: fix zero-size GDS range init on RDNA4 Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 276/969] ALSA: caiaq: fix usb_dev refcount leak on probe failure Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 277/969] net: ipv6: fix NOREF dst use in seg6 and rpl lwtunnels Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 278/969] netfilter: reject zero shift in nft_bitwise Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 279/969] scsi: target: configfs: Bound snprintf() return in tg_pt_gp_members_show() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 280/969] ipmi: Add limits to event and receive message requests Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 281/969] ipmi: Check event message buffer response for bad data Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 282/969] ipmi:si: Return state to normal if message allocation fails Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 283/969] fbdev: udlfb: add vm_ops to dlfb_ops_mmap to prevent use-after-free Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 284/969] ACPI: scan: Use acpi_dev_put() in object add error paths Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 285/969] ACPI: CPPC: Fix related_cpus inconsistency during CPU hotplug Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 286/969] ACPI: video: force native backlight on HP OMEN 16 (8A44) Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 287/969] ASoC: SOF: Dont allow pointer operations on unconfigured streams Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 288/969] spi: rockchip: fix controller deregistration Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 289/969] drm/amd/display: Do not skip unrelated mode changes in DSC validation Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 290/969] spi: meson-spicc: Fix double-put in remove path Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 291/969] ext4: validate p_idx bounds in ext4_ext_correct_indexes Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 292/969] KVM: x86: Fix shadow paging use-after-free due to unexpected GFN Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 293/969] net: Fix icmp host relookup triggering ip_rt_bug Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 294/969] flow_dissector: do not dissect PPPoE PFC frames Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 6.1 295/969] net/sched: sch_red: Replace direct dequeue call with peek and qdisc_dequeue_peeked Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 296/969] Bluetooth: hci_sync: Remove remaining dependencies of hci_request Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 297/969] Bluetooth: btintel: serialize btintel_hw_error() with hci_req_sync_lock Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 298/969] ice: Fix memory leak in ice_set_ringparam() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 299/969] exit: prevent preemption of oopsing TASK_DEAD task Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 300/969] wifi: mt76: mt7921: fix a potential clc buffer length underflow Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 301/969] wifi: b43legacy: enforce bounds check on firmware key index in RX path Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 302/969] wifi: rsi: fix kthread lifetime race between self-exit and external-stop Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 303/969] wifi: ath5k: do not access array OOB Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 304/969] wifi: b43: enforce bounds check on firmware key index in b43_rx() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 305/969] usb: usblp: fix heap leak in IEEE 1284 device ID via short response Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 306/969] usb: usblp: fix uninitialized heap leak via LPGETSTATUS ioctl Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 307/969] ALSA: usb-audio: Avoid potential endless loop in convert_chmap_v3() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 308/969] ALSA: usb-audio: Fix UAC3 cluster descriptor size check Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 309/969] USB: omap_udc: DMA: Dont enable burst 4 mode Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 310/969] USB: serial: option: add Telit Cinterion LE910Cx compositions Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 311/969] usb: ulpi: fix memory leak on ulpi_register() error paths Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 312/969] ALSA: firewire-tascam: Do not drop unread control events Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 313/969] powerpc/kdump: fix KASAN sanitization flag for core_$(BITS).o Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 314/969] xfrm: provide message size for XFRM_MSG_MAPPING Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 315/969] ipv6: xfrm6: release dst on error in xfrm6_rcv_encap() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 316/969] Bluetooth: virtio_bt: clamp rx length before skb_put Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 317/969] Bluetooth: virtio_bt: validate rx pkt_type header length Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 318/969] Bluetooth: L2CAP: Fix null-ptr-deref in l2cap_sock_new_connection_cb() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 319/969] Bluetooth: L2CAP: Fix null-ptr-deref in l2cap_sock_state_change_cb() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 320/969] spi: zynqmp-gqspi: fix controller deregistration Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 321/969] staging: vme_user: fix root device leak on init failure Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 322/969] fanotify: fix false positive on permission events Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 323/969] net: rtnetlink: zero ifla_vf_broadcast to avoid stack infoleak in rtnl_fill_vfinfo Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 324/969] sound: ua101: fix division by zero at probe Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 325/969] ip6_gre: Use cached t->net in ip6erspan_changelink() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 326/969] net/rds: handle zerocopy send cleanup before the message is queued Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 327/969] parisc: Fix IRQ leak in LASI driver Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 328/969] hwmon: (ltc2992) Clamp threshold writes to hardware range Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 329/969] hwmon: (ltc2992) Fix u32 overflow in power read path Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 330/969] hwmon: (corsair-psu) Close HID device on probe errors Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 331/969] cifs: abort open_cached_dir if we dont request leases Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 332/969] cifs: change_conf needs to be called for session setup Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 333/969] extcon: ptn5150: handle pending IRQ events during system resume Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 334/969] hv_sock: fix ARM64 support Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 335/969] ibmveth: Disable GSO for packets with small MSS Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 336/969] udf: reject descriptors with oversized CRC length Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 337/969] thermal/drivers/sprd: Fix temperature clamping in sprd_thm_temp_to_rawdata Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 338/969] thermal/drivers/sprd: Fix raw temperature clamping in sprd_thm_rawdata_to_temp Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 339/969] spi: topcliff-pch: fix use-after-free on unbind Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 340/969] clk: microchip: mpfs-ccc: fix out of bounds access during output registration Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 341/969] cpuidle: powerpc: avoid double clear when breaking snooze Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 342/969] ASoC: amd: yc: Add HP OMEN Gaming Laptop 16-ap0xxx product line in quirk table Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 343/969] ASoC: fsl_easrc: fix comment typo Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 344/969] ASoC: Intel: bytcr_wm5102: Fix MCLK leak on platform_clock_control error Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 345/969] ASoC: qcom: q6apm-dai: reset queue ptr on trigger stop Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 346/969] ASoC: qcom: q6apm-lpass-dai: Fix multiple graph opens Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 347/969] ASoC: qcom: q6apm: remove child devices when apm is removed Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 348/969] btrfs: fix double free in create_space_info() error path Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 349/969] dm-thin: fix metadata refcount underflow Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 350/969] dm: dont report warning when doing deferred remove Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 351/969] dm: fix a buffer overflow in ioctl processing Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 352/969] dm-verity-fec: correctly reject too-small FEC devices Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 353/969] dm-verity-fec: correctly reject too-small hash devices Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 354/969] isofs: validate Rock Ridge CE continuation extent against volume size Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 6.1 355/969] isofs: validate block number from NFS file handle in isofs_export_iget Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 356/969] libceph: Fix slab-out-of-bounds access in auth message processing Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 357/969] md/raid10: fix divide-by-zero in setup_geo() with zero far_copies Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 358/969] nvme-apple: drop invalid put of admin queue reference count Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 359/969] nvmet: avoid recursive nvmet-wq flush in nvmet_ctrl_free Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 360/969] openvswitch: vport: fix self-deadlock on release of tunnel ports Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 361/969] RDMA/hns: Fix unlocked call to hns_roce_qp_remove() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 362/969] s390/debug: Reject zero-length input in debug_input_flush_fn() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 363/969] smb/client: fix out-of-bounds read in symlink_data() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 364/969] PCI/AER: Clear only error bits in PCIe Device Status Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 365/969] PCI/AER: Stop ruling out unbound devices as error source Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 366/969] power: supply: max17042: avoid overflow when determining health Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 367/969] RDMA/mlx4: Fix resource leak on error in mlx4_ib_create_srq() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 368/969] RDMA/ocrdma: Dont NULL deref uctx on errors in ocrdma_copy_pd_uresp() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 369/969] RDMA/rxe: Reject unknown opcodes before ICRC processing Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 370/969] RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 371/969] mptcp: use MPJoinSynAckHMacFailure for SynAck HMAC failure Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 372/969] mptcp: use MPTCP_RST_EMPTCP for ACK HMAC validation failure Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 373/969] mptcp: sockopt: set timestamp flags on subflow socket, not msk Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 374/969] mptcp: fix scheduling with atomic in timestamp sockopt Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 375/969] f2fs: add READ_ONCE() for i_blocks in f2fs_update_inode() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 376/969] f2fs: fix fiemap boundary handling when read extent cache is incomplete Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 377/969] f2fs: fix incorrect multidevice info in trace_f2fs_map_blocks() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 378/969] KVM: arm64: vgic: Fix IIDR revision field extracted from wrong value Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 379/969] LoongArch: Fix potential ADE in loongson_gpu_fixup_dma_hang() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 380/969] LoongArch: Use per-root-bridge PCIH flag to skip mem resource fixup Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 381/969] f2fs: compress: change the first parameter of page_array_{alloc,free} to sbi Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 382/969] f2fs: compress: fix UAF of f2fs_inode_info in f2fs_free_dic Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 383/969] exit: Sleep at TASK_IDLE when waiting for application core dump Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 384/969] media: uvcvideo: Enable VB2_DMABUF for metadata stream Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 385/969] media: i2c: ov8856: free control handler on error in ov8856_init_controls() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 386/969] staging: media: atomisp: Disallow all private IOCTLs Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 387/969] regulator: max77650: fix OF node reference imbalance Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 388/969] media: rc: xbox_remote: heed DMA restrictions Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 389/969] media: rc: streamzap: Error handling in probe Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 390/969] regulator: act8945a: fix OF node reference imbalance Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 391/969] regulator: bd9571mwv: " Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 392/969] media: saa7164: add ioremap return checks and cleanups Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 393/969] platform/x86: hp-wmi: Ignore backlight and FnLock events Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 394/969] media: pci: zoran: fix potential memory leak in zoran_probe() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 395/969] media: dib8000: avoid division by 0 in dib8000_set_dds() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 396/969] media: i2c: imx412: Assert reset GPIO during probe Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 397/969] media: i2c: ov08d10: fix image vertical start setting Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 398/969] media: omap3isp: drop the use count of v4l2 pipeline Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 399/969] spi: mtk-nor: fix controller deregistration Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 400/969] spi: imx: fix runtime pm leak on probe deferral Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 401/969] spi: orion: fix clock imbalance on registration failure Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 402/969] spi: mpc52xx: fix use-after-free on unbind Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 403/969] drm/amdgpu: Add bounds checking to ib_{get,set}_value Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 404/969] drm/amdgpu/vce: Prevent partial address patches Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 405/969] drm/amdgpu/vcn4: Prevent OOB reads when parsing dec msg Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 406/969] drm/amdgpu/vcn3: " Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 407/969] drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 408/969] drm/amdkfd: validate SVM ioctl nattr against buffer size Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 409/969] drm/radeon: add missing revision check for CI Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 410/969] drm/amdgpu: zero-initialize GART table on allocation Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 411/969] drm/amdgpu/gfx9: drop unnecessary 64-bit fence flag check in KIQ Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 412/969] drm/amdgpu/sdma4: replace BUG_ON with WARN_ON in fence emission Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 413/969] drm/amdgpu/pm: add missing revision check for CI Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 414/969] drm/amdgpu/pm: align Hawaii mclk workaround with radeon Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 6.1 415/969] sctp: revalidate list cursor after sctp_sendmsg_to_asoc() in SCTP_SENDALL Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 416/969] batman-adv: fix integer overflow on buff_pos Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 417/969] batman-adv: reject new tp_meter sessions during teardown Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 418/969] batman-adv: stop caching unowned originator pointers in BAT IV Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 419/969] batman-adv: bla: prevent use-after-free when deleting claims Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 420/969] batman-adv: bla: only purge non-released claims Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 421/969] batman-adv: bla: put backbone reference on failed claim hash insert Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 422/969] Bluetooth: L2CAP: Fix null-ptr-deref in l2cap_sock_get_sndtimeo_cb() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 423/969] mtd: spi-nor: sst: Factor out common write operation to `sst_nor_write_data()` Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 424/969] mtd: spi-nor: sst: Fix write enable before AAI sequence Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 425/969] pwm: imx-tpm: Count the number of enabled channels in probe Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 426/969] vsock: fix buffer size clamping order Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 427/969] vsock/virtio: fix accept queue count leak on transport mismatch Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 428/969] drm/amdgpu/vcn3: Avoid overflow on msg bound check Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 429/969] drm/amdgpu/vcn4: " Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 430/969] mtd: spi-nor: sst: Fix SST write failure Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 431/969] bcache: fix uninitialized closure object Greg Kroah-Hartman
2026-06-01 17:34   ` Mahmoud Nagy Adam
2026-06-02 18:21     ` Sasha Levin
2026-05-30 15:59 ` [PATCH 6.1 432/969] blk-cgroup: wait for blkcg cleanup before initializing new disk Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 433/969] fs/omfs: reject s_sys_blocksize smaller than OMFS_DIR_START Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 434/969] drbd: Balance RCU calls in drbd_adm_dump_devices() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 435/969] nilfs2: reject zero bd_oblocknr in nilfs_ioctl_mark_blocks_dirty() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 436/969] pstore/ram: fix resource leak when ioremap() fails Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 437/969] devres: fix missing node debug info in devm_krealloc() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 438/969] thermal/drivers/spear: Fix error condition for reading st,thermal-flags Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 439/969] debugfs: check for NULL pointer in debugfs_create_str() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 440/969] irqchip/irq-pic32-evic: Address warning related to wrong printf() formatter Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 441/969] hrtimers: Update the return type of enqueue_hrtimer() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 442/969] hrtimer: Avoid pointless reprogramming in __hrtimer_start_range_ns() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 443/969] hrtimer: Reduce trace noise in hrtimer_start() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 444/969] locking: Fix rwlock support in <linux/spinlock_up.h> Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 445/969] firmware: dmi: Correct an indexing error in dmi.h Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 446/969] wifi: mwifiex: Fix memory leak in mwifiex_11n_aggregate_pkt() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 447/969] wifi: rtlwifi: pci: fix possible use-after-free caused by unfinished irq_prepare_bcn_tasklet Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 448/969] bpf: Add CHECKSUM_COMPLETE to bpf test progs Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 449/969] bpf: test_run: Fix the null pointer dereference issue in bpf_lwt_xmit_push_encap Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 450/969] dpaa2: add independent dependencies for FSL_DPAA2_SWITCH Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 451/969] dpaa2: compile dpaa2 even CONFIG_FSL_DPAA2_ETH=n Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 452/969] kernel: param: rename locate_module_kobject Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 453/969] kernel: globalize lookup_or_create_module_kobject() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 454/969] params: Replace __modinit with __init_or_module Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 455/969] module: Fix freeing of charp module parameters when CONFIG_SYSFS=n Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 456/969] bpf, devmap: Remove unnecessary if check in for loop Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 457/969] bpf: Use RCU-safe iteration in dev_map_redirect_multi() SKB path Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 458/969] wifi: rtw89: phy: fix uninitialized variable access in rtw89_phy_cfo_set_crystal_cap() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 459/969] r8152: fix incorrect register write to USB_UPHY_XTAL Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 460/969] powerpc/crash: fix backup region offset update to elfcorehdr Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 461/969] macvlan: annotate data-races around port->bc_queue_len_used Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 462/969] bpf: fix end-of-list detection in cgroup_storage_get_next_key() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 463/969] wifi: brcmfmac: Fix error pointer dereference Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 464/969] bpf: Drop task_to_inode and inet_conn_established from lsm sleepable hooks Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 465/969] bpf: reject negative CO-RE accessor indices in bpf_core_parse_spec() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 466/969] ACPI: AGDI: fix missing newline in error message Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 467/969] arm64: kexec: Remove duplicate allocation for trans_pgd Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 468/969] net: bcmgenet: fix off-by-one in bcmgenet_put_txcb Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 469/969] net: bcmgenet: Remove TX ring full logging Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 470/969] net: bcmgenet: Remove custom ndo_poll_controller() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 471/969] net: bcmgenet: add bcmgenet_has_* helpers Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 472/969] net: bcmgenet: move DESC_INDEX flow to ring 0 Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 473/969] net: bcmgenet: support reclaiming unsent Tx packets Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 474/969] net: bcmgenet: switch to use 64bit statistics Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 6.1 475/969] net: bcmgenet: fix racing timeout handler Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 476/969] netfilter: xt_socket: enable defrag after all other checks Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 477/969] netfilter: nft_fwd_netdev: check ttl/hl before forwarding Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 478/969] 6pack: propagage new tty types Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 479/969] net: hamradio: 6pack: fix uninit-value in sixpack_receive_buf Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 480/969] net/sched: act_ct: Only release RCU read lock after ct_ft Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 481/969] net/rds: Optimize rds_ib_laddr_check Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 482/969] net/rds: Restrict use of RDS/IB to the initial network namespace Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 483/969] ppp: require CAP_NET_ADMIN in target netns for unattached ioctls Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 484/969] bpf: reject short IPv4/IPv6 inputs in bpf_prog_test_run_skb Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 485/969] Bluetooth: L2CAP: Fix printing wrong information if SDU length exceeds MTU Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 486/969] Bluetooth: hci_ldisc: Clear HCI_UART_PROTO_INIT on error Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 487/969] Bluetooth: fix locking in hci_conn_request_evt() with HCI_PROTO_DEFER Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 488/969] Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 489/969] sctp: fix missing encap_port propagation for GSO fragments Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 490/969] net, bpf: fix null-ptr-deref in xdp_master_redirect() for down master Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 491/969] drm/komeda: fix integer overflow in AFBC framebuffer size check Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 492/969] drm/sun4i: backend: fix error pointer dereference Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 493/969] ASoC: sti: Return errors from regmap_field_alloc() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 494/969] ASoC: sti: use managed regmap_field allocations Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 495/969] dm cache: fix null-deref with concurrent writes in passthrough mode Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 496/969] dm cache: fix write path cache coherency " Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 497/969] dm cache: fix write hang " Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 498/969] dm cache policy smq: fix missing locks in invalidating cache blocks Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 499/969] dm cache: fix concurrent write failure in passthrough mode Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 500/969] dm cache: support shrinking the origin device Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 501/969] dm cache: fix dirty mapping checking in passthrough mode switching Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 502/969] dm cache metadata: fix memory leak on metadata abort retry Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 503/969] dm log: fix out-of-bounds write due to region_count overflow Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 504/969] spi: fsl-qspi: Use reinit_completion() for repeated operations Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 505/969] drm/sun4i: Fix resource leaks Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 506/969] drm/amdgpu: Add default case in DVI mode validation Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 507/969] dm init: ensure device probing has finished in dm-mod.waitfor= Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 508/969] fbdev: matroxfb: Mark variable with __maybe_unused to avoid W=1 build break Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 509/969] padata: Remove cpu online check from cpu add and removal Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 510/969] padata: Put CPU offline callback in ONLINE section to allow failure Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 511/969] drm/amdgpu/gfx10: look at the right prop for gfx queue priority Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 512/969] spi: hisi-kunpeng: prevent infinite while() loop in hisi_spi_flush_fifo Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 513/969] drm/msm/dpu: fix mismatch between power and frequency Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 514/969] drm/msm/dsi: rename MSM8998 DSI version from V2_2_0 to V2_0_0 Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 515/969] drm/panel: simple: Correct G190EAN01 prepare timing Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 516/969] ALSA: core: Validate compress device numbers without dynamic minors Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 517/969] drm/amd/pm/ci: Use highest MCLK on CI when MCLK DPM is disabled Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 518/969] drm/amd/pm/ci: Disable MCLK DPM on problematic CI ASICs Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 519/969] drm/amd/pm/smu7: Fix SMU7 voltage dependency on display clock Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 520/969] drm/amd/pm/ci: Fix powertune defaults for Hawaii 0x67B0 Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 521/969] drm/amd/pm/ci: Clear EnabledForActivity field for memory levels Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 522/969] drm/amd/pm/ci: Fill DW8 fields from SMC Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 523/969] drm/amd/pm/smu7: Add SCLK cap for quirky Hawaii board Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 524/969] ALSA: hda/realtek: Whitespace fix Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 525/969] ALSA: hda/realtek: fix code style (ERROR: else should follow close brace }) Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 526/969] drm/msm/a6xx: Fix HLSQ register dumping Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 527/969] drm/msm/shrinker: Fix can_block() logic Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 528/969] drm/msm/a6xx: Use barriers while updating HFI Q headers Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 529/969] pmdomain: ti: omap_prm: Fix a reference leak on device node Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 530/969] pmdomain: imx: scu-pd: Fix device_node reference leak during ->probe() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 531/969] ASoC: fsl_micfil: Fix event generation in micfil_quality_set() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 532/969] ASoC: fsl_xcvr: Fix event generation in fsl_xcvr_arc_mode_put() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 533/969] ASoC: fsl_xcvr: Fix event generation in fsl_xcvr_mode_put() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 534/969] ASoC: fsl_easrc: Check the variable range in fsl_easrc_iec958_put_bits() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 6.1 535/969] ASoC: fsl_easrc: Fix value type in fsl_easrc_iec958_get_bits() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 536/969] ASoC: fsl_easrc: Change the type for iec958 channel status controls Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 537/969] ASoC: qcom: qdsp6: topology: check widget type before accessing data Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 538/969] PCI: Enable AtomicOps only if Root Port supports them Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 539/969] PCI: mediatek-gen3: Prevent leaking IRQ domains when IRQ not found Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 540/969] selftests/mm: skip migration tests if NUMA is unavailable Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 541/969] Documentation: fix a hugetlbfs reservation statement Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 542/969] selftest: memcg: skip memcg_sock test if address family not supported Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 543/969] ALSA: scarlett2: Add missing sentinel initializer field Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 544/969] ASoC: SOF: amd: Fix for reading position updates from stream box Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 545/969] ASoC: SOF: Prepare ipc_msg_data to be used with compress API Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 546/969] ASoC: SOF: Prepare set_stream_data_offset for " Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 547/969] ASoC: SOF: Add support for compress API for stream data/offset Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 548/969] ASoC: SOF: compress: return the configured codec from get_params Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 549/969] PCI: Add PCIE_PME_TO_L2_TIMEOUT_US L2 ready timeout value Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 550/969] PCI: tegra194: Fix polling delay for L2 state Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 551/969] PCI: tegra194: Increase LTSSM poll time on surprise link down Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 552/969] PCI: tegra194: Disable LTSSM after transition to Detect " Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 553/969] PCI: tegra194: Rename root_bus to root_port_bus in tegra_pcie_downstream_dev_to_D0() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 554/969] PCI: tegra194: Dont force the device into the D0 state before L2 Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 555/969] PCI: tegra194: Disable PERST# IRQ only in Endpoint mode Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 556/969] PCI: tegra194: Use devm_gpiod_get_optional() to parse "nvidia,refclk-select" Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 557/969] PCI: tegra194: Disable direct speed change for Endpoint mode Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 558/969] PCI: tegra194: Allow system suspend when the Endpoint link is not up Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 559/969] spi: mtk-snfi: unregister ECC engine on probe failure and remove() callback Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 560/969] ALSA: sc6000: Use standard print API Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 561/969] ALSA: sc6000: Keep the programmed board state in card-private data Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 562/969] dm cache: fix missing return in invalidate_committeds error path Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 563/969] gfs2: Call unlock_new_inode before d_instantiate Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 564/969] ktest: Avoid undef warning when WARNINGS_FILE is unset Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 565/969] ktest: Honor empty per-test option overrides Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 566/969] ktest: Run POST_KTEST hooks on failure and cancellation Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 567/969] quota: Fix race of dquot_scan_active() with quota deactivation Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 568/969] gfs2: add some missing log locking Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 569/969] gfs2: prevent NULL pointer dereference during unmount Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 570/969] efi/capsule-loader: fix incorrect sizeof in phys array reallocation Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 571/969] ksmbd: fix use-after-free from async crypto on Qualcomm crypto engine Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 572/969] ARM: dts: mediatek: mt7623: fix efuse fallback compatible Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 573/969] memory: tegra124-emc: Fix dll_change check Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 574/969] memory: tegra30-emc: " Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 575/969] arm64: dts: imx8mp-evk: Enable pull select bit for PCIe regulator GPIO (M.2 W_DISABLE1) Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 576/969] arm64: dts: mediatek: mt6795: Fix gpio-ranges pin count Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 577/969] arm64: dts: mediatek: mt7986a: " Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 578/969] soc: qcom: ocmem: use scoped device node handling to simplify error paths Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 579/969] soc: qcom: ocmem: register reasons for probe deferrals Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 580/969] soc: qcom: ocmem: return -EPROBE_DEFER is ocmem is not available Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 581/969] arm64: dts: qcom: sm8450: Fix GIC_ITS range length Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 582/969] arm64: dts: qcom: sm8450: Enable UHS-I SDR50 and SDR104 SD card modes Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 583/969] arm64: dts: qcom: sdm845-xiaomi-beryllium: Mark l1a regulator as powered during boot Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 584/969] soc/tegra: cbb: Set ERD on resume for err interrupt Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 585/969] unshare: fix nsproxy leak in ksys_unshare() on set_cred_ucounts() failure Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 586/969] ocfs2/dlm: validate qr_numregions in dlm_match_regions() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 587/969] ocfs2/dlm: fix off-by-one in dlm_match_regions() region comparison Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 588/969] soc: qcom: llcc: fix v1 SB syndrome register offset Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 589/969] soc: qcom: aoss: compare against normalized cooling state Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 590/969] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 591/969] ARM: OMAP1: Fix DEBUG_LL and earlyprintk on OMAP16XX Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 592/969] arm64/xor: fix conflicting attributes for xor_block_template Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 593/969] ocfs2: fix listxattr handling when the buffer is full Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 594/969] ocfs2: validate bg_bits during freefrag scan Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 6.1 595/969] ocfs2: validate group add input before caching Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 596/969] dmaengine: dw-axi-dmac: Remove unnecessary return statement from void function Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 597/969] soundwire: bus: demote UNATTACHED state warnings to dev_dbg() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 598/969] dmaengine: mxs-dma: Fix missing return value from of_dma_controller_register() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 599/969] tracing: Rebuild full_name on each hist_field_name() call Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 600/969] ima: check return value of crypto_shash_final() in boot aggregate Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 601/969] HID: asus: make asus_resume adhere to linux kernel coding standards Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 602/969] HID: asus: do not abort probe when not necessary Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 603/969] mtd: physmap_of_gemini: Fix disabled pinctrl state check Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 604/969] mtd: spi-nor: core: correct the op.dummy.nbytes when check read operations Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 605/969] mtd: spi-nor: spansion: Rename s28hs512t prefix Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 606/969] mtd: spi-nor: spansion: Replace hardcoded values for addr_nbytes/addr_mode_nbytes Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 607/969] mtd: spi-nor: spansion: Make RD_ANY_REG_OP macro take number of dummy bytes Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 608/969] mtd: spi-nor: spansion: Add support for Infineon S25FS256T Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 609/969] mtd: spi-nor: Allow post_sfdp hook to return errors Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 610/969] mtd: spi-nor: sfdp: introduce smpt_read_dummy fixup hook Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 611/969] mtd: spi-nor: sfdp: introduce smpt_map_id " Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 612/969] mtd: spi-nor: update spi_nor_fixups::post_sfdp() documentation Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 613/969] mtd: spi-nor: swp: check SR_TB flag when getting tb_mask Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 614/969] mtd: parsers: ofpart: call of_node_put() only in ofpart_fail path Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 615/969] mtd: parsers: ofpart: call of_node_get() for dedicated subpartitions Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 616/969] mtd: rawnand: sunxi: fix sunxi_nfc_hw_ecc_read_extra_oob Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 617/969] HID: usbhid: fix deadlock in hid_post_reset() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 618/969] bpf, arm64: Fix off-by-one in check_imm signed range check Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 619/969] bpf, sockmap: Fix af_unix iter deadlock Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 620/969] bpf, sockmap: Fix af_unix null-ptr-deref in proto update Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 621/969] bpf, sockmap: Take state lock for af_unix iter Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 622/969] bpf: Fix precedence bug in convert_bpf_ld_abs alignment check Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 623/969] bpf: allow UTF-8 literals in bpf_bprintf_prepare() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 624/969] bpf, arm32: Reject BPF-to-BPF calls and callbacks in the JIT Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 625/969] pinctrl: pinctrl-pic32: Fix resource leak Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 626/969] pinctrl: cy8c95x0: remove duplicate error message Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 627/969] pinctrl: cy8c95x0: Unify messages with help of dev_err_probe() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 628/969] pinctrl: cy8c95x0: Avoid returning positive values to user space Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 629/969] perf branch: Avoid incrementing NULL Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 630/969] perf: tools: cs-etm: Fix print issue for Coresight debug in ETE/TRBE trace Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 631/969] pinctrl: abx500: Fix type of argument variable Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 632/969] perf expr: Return -EINVAL for syntax error in expr__find_ids() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 633/969] perf util: Kill die() prototype, dead for a long time Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 634/969] i3c: mipi-i3c-hci: fix IBI payload length calculation for final status Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 635/969] driver core: device.h: remove extern from function prototypes Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 636/969] driver core: Move dev_err_probe() to where it belogs Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 637/969] dev_printk: add new dev_err_probe() helpers Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 638/969] backlight: sky81452-backlight: Check return value of devm_gpiod_get_optional() in sky81452_bl_parse_dt() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 639/969] platform/surface: surfacepro3_button: Drop wakeup source on remove Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 640/969] leds: lgm-sso: Remove duplicate assignments for priv->mmap Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 641/969] tty: hvc_iucv: fix off-by-one in number of supported devices Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 642/969] platform/x86: panasonic-laptop: Fix OPTD notifier registration and cleanup Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 643/969] mfd: mc13xxx-core: Fix memory leak in mc13xxx_add_subdevice_pdata() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 644/969] nfs/blocklayout: Fix compilation error (`make W=1`) in bl_write_pagelist() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 645/969] fs/ntfs3: terminate the cached volume label after UTF-8 conversion Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 646/969] platform/x86: dell_rbu: avoid uninit value usage in packet_size_write() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 647/969] platform/x86: dell-wmi-sysman: bound enumeration string aggregation Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 648/969] RDMA/core: Prefer NLA_NUL_STRING Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 649/969] clk: qcom: dispcc-sm8450: use RCG2 ops for DPTX1 AUX clock source Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 650/969] scsi: sg: Resolve soft lockup issue when opening /dev/sgX Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 651/969] scsi: target: core: Fix integer overflow in UNMAP bounds check Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 652/969] dt-bindings: clock: qcom,gcc-sc8180x: Add missing GDSCs Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 653/969] clk: qcom: gcc-sc8180x: " Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 654/969] clk: qcom: gcc-sc8180x: Use retention for USB power domains Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 6.1 655/969] clk: qcom: gcc-sc8180x: Use retention for PCIe " Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 656/969] clk: qcom: dispcc-sm8250: Use shared ops on the mdss vsync clk Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 657/969] clk: qcom: dispcc-sm8250: Enable parents for pixel clocks Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 658/969] clk: imx: imx6q: Fix device node reference leak in pll6_bypassed() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 659/969] clk: imx: imx6q: Fix device node reference leak in of_assigned_ldb_sels() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 660/969] clk: imx8mq: Correct the CSI PHY sels Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 661/969] clk: qoriq: avoid format string warning Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 662/969] clk: xgene: Fix mapping leak in xgene_pllclk_init() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 663/969] dt-bindings: clock: qcom,dispcc-sc7180: Define MDSS resets Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 664/969] clk: qcom: dispcc-sc7180: Add missing " Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 665/969] lib/hexdump: print_hex_dump_bytes() calls print_hex_dump_debug() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 666/969] clk: visconti: pll: initialize clk_init_data to zero Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 667/969] f2fs: Use sysfs_emit_at() to simplify code Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 668/969] f2fs: protect extension_list reading with sb_lock in f2fs_sbi_show() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 669/969] drm/i915: Constify watermark state checker Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 670/969] drm/i915: Extract intel_dbuf_mdclk_cdclk_ratio_update() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 671/969] drm/i915: Loop over all active pipes in intel_mbus_dbox_update Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 672/969] drm/i915/wm: Verify the correct plane DDB entry Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 673/969] crypto: sa2ul - Fix AEAD fallback algorithm names Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 674/969] crypto: ccp - copy IV using skcipher ivsize Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 675/969] arm64: dts: imx8mp-icore-mx8mp: Correct PAD settings for PMIC_nINT Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 676/969] arm64: dts: imx8mp-dhcom-som: " Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 677/969] PCMCIA: Fix garbled log messages for KERN_CONT Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 678/969] arm64: dts: imx8mn-tqma8mqnl: Correct PAD settings for PMIC_nINT Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 679/969] arm64: dts: imx8mm-tqma8mqml: " Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 680/969] net/sched: sch_cake: fix NAT destination port not being updated in cake_update_flowkeys Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 681/969] nexthop: fix IPv6 route referencing IPv4 nexthop Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 682/969] net/sched: taprio: continue with other TXQs if one dequeue() failed Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 683/969] net/sched: taprio: refactor one skb dequeue from TXQ to separate function Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 684/969] net/sched: taprio: rename close_time to end_time Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 685/969] net/sched: taprio: fix use-after-free in advance_sched() on schedule switch Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 686/969] container_of: remove container_of_safe() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 687/969] container_of: add container_of_const() that preserves const-ness of the pointer Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 688/969] tcp: preserve const qualifier in tcp_sk() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 689/969] tcp: add data-race annotations around tp->data_segs_out and tp->total_retrans Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 690/969] tcp: annotate data-races around tp->bytes_sent Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 691/969] tcp: annotate data-races around tp->bytes_retrans Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 692/969] tcp: annotate data-races around tp->dsack_dups Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 693/969] tcp: annotate data-races around (tp->write_seq - tp->snd_nxt) Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 694/969] i40e: dont advertise IFF_SUPP_NOFCS Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 695/969] e1000e: Unroll PTP in probe error handling Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 696/969] ipv6: fix possible UAF in icmpv6_rcv() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 697/969] sctp: fix OOB write to userspace in sctp_getsockopt_peer_auth_chunks Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 698/969] pppoe: drop PFC frames Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 699/969] openvswitch: cap upcall PID array size and pre-size vport replies Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 700/969] netfilter: nft_osf: restrict it to ipv4 Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 701/969] netfilter: nfnetlink_osf: fix divide-by-zero in OSF_WSS_MODULO Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 702/969] netfilter: conntrack: remove sprintf usage Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 703/969] netfilter: xtables: restrict several matches to inet family Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 704/969] ipvs: fix MTU check for GSO packets in tunnel mode Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 705/969] netfilter: nfnetlink_osf: fix out-of-bounds read on option matching Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 706/969] netfilter: nfnetlink_osf: fix potential NULL dereference in ttl check Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 707/969] slip: reject VJ receive packets on instances with no rstate array Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 708/969] slip: bound decode() reads against the compressed packet length Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 709/969] arm64: dts: meson-gxl-p230: fix ethernet PHY interrupt number Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 710/969] ksmbd: destroy tree_conn_ida in ksmbd_session_destroy() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 711/969] ksmbd: scope conn->binding slowpath to bound sessions only Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 712/969] net/rds: zero per-item info buffer before handing it to visitors Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 713/969] net_sched: sch_hhf: annotate data-races in hhf_dump_stats() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 714/969] net/sched: sch_pie: annotate data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 6.1 715/969] net/sched: sch_fq_codel: remove data-races from fq_codel_dump_stats() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 716/969] net/sched: sch_red: annotate data-races in red_dump_stats() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 717/969] net/sched: sch_sfb: annotate data-races in sfb_dump_stats() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 718/969] net: dsa: realtek: rtl8365mb: fix mode mask calculation Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 719/969] nfp: fix swapped arguments in nfp_encode_basic_qdr() calls Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 720/969] tipc: fix double-free in tipc_buf_append() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 721/969] vhost_net: fix sleeping with preempt-disabled in vhost_net_busy_poll() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 722/969] fs/adfs: validate nzones in adfs_validate_bblk() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 723/969] rtc: abx80x: Disable alarm feature if no interrupt attached Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 724/969] fbdev: offb: fix PCI device reference leak on probe failure Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 725/969] mailbox: mailbox-test: free channels on probe error Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 726/969] cgroup/rdma: fix integer overflow in rdmacg_try_charge() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 727/969] mailbox: add sanity check for channel array Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 728/969] mailbox: mailbox-test: dont free the reused channel Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 729/969] mailbox: mailbox-test: initialize struct earlier Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 730/969] mailbox: mailbox-test: make data_ready a per-instance variable Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 731/969] btrfs: fix double-decrement of bytes_may_use in submit_one_async_extent() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 732/969] tracing: branch: Fix inverted check on stat tracer registration Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 733/969] nvmet-tcp: propagate nvmet_tcp_build_pdu_iovec() errors to its callers Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 734/969] netfilter: arp_tables: fix IEEE1394 ARP payload parsing Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 735/969] nvme-pci: fix missed admin queue sq doorbell write Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 736/969] drm/amdgpu: fix spelling typos Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 737/969] drm/amdgpu/uvd3.1: Dont validate the firmware when already validated Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 738/969] drm/amdgpu/gfx6: Support harvested SI chips with disabled TCCs (v2) Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 739/969] netfilter: xt_policy: fix strict mode inbound policy matching Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 740/969] netfilter: nf_conntrack_sip: dont use simple_strtoul Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 741/969] drivers/spi-rockchip.c : Remove redundant variable slave Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 742/969] spi: rockchip: switch to use modern name Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 743/969] spi: rockchip: Read ISR, not IMR, to detect cs-inactive IRQ Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 744/969] cdrom, scsi: sr: propagate read-only status to block layer via set_disk_ro() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 745/969] netdevsim: zero initialize struct iphdr in dummy sk_buff Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 746/969] net/sched: netem: fix probability gaps in 4-state loss model Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 747/969] net/sched: netem: fix queue limit check to include reordered packets Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 748/969] net/sched: netem: validate slot configuration Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 749/969] net/sched: netem: fix slot delay calculation overflow Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 750/969] net/sched: sch_choke: annotate data-races in choke_dump_stats() Greg Kroah-Hartman
2026-05-30 16:04 ` Greg Kroah-Hartman [this message]
2026-05-30 16:04 ` [PATCH 6.1 752/969] vrf: Fix a potential NPD when removing a port from a VRF Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 753/969] net: usb: rtl8150: fix use-after-free in rtl8150_start_xmit() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 754/969] net: usb: rtl8150: free skb on usb_submit_urb() failure in xmit Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 755/969] NFC: trf7970a: Ignore antenna noise when checking for RF field Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 756/969] neighbour: add RCU protection to neigh_tables[] Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 757/969] neigh: let neigh_xmit take skb ownership Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 758/969] ALSA: usb-audio: Fix potential leak of pd at parsing UAC3 streams Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 759/969] net: mctp i2c: check length before marking flow active Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 760/969] net: phy: dp83869: fix setting CLK_O_SEL field Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 761/969] ASoC: codecs: ab8500: Fix casting of private data Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 762/969] netfilter: skip recording stale or retransmitted INIT Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 763/969] sctp: discard stale INIT after handshake completion Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 764/969] ipv4: rename and move ip_route_output_tunnel() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 765/969] ipv4: remove "proto" argument from udp_tunnel_dst_lookup() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 766/969] ipv4: add new arguments to udp_tunnel_dst_lookup() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 767/969] ipv6: rename and move ip6_dst_lookup_tunnel() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 768/969] bareudp: fix NULL pointer dereference in bareudp_fill_metadata_dst() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 769/969] net/sched: sch_cake: annotate data-races in cake_dump_stats() (V) Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 770/969] net: netconsole: move newline trimming to function Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 771/969] netconsole: propagate device name truncation in dev_name_store() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 772/969] ALSA: hda/conexant: fix some typos Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 773/969] ALSA: hda/conexant: Renaming the codec with device ID 0x1f86 and 0x1f87 Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 774/969] ALSA: hda/conexant: Fix missing error check for jack detection Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 6.1 775/969] futex: Prevent lockup in requeue-PI during signal/ timeout wakeup Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 776/969] drm/amd/display: Allow DCE link encoder without AUX registers Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 777/969] drm/amd/display: Read EDID from VBIOS embedded panel info Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 778/969] bonding: 802.3ad replace MAC_ADDRESS_EQUAL with __agg_has_partner Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 779/969] net: bonding: add broadcast_neighbor option for 802.3ad Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 780/969] bonding: add support for per-port LACP actor priority Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 781/969] bonding: print churn state via netlink Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 782/969] bonding: 3ad: implement proper RCU rules for port->aggregator Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 783/969] iavf: rename IAVF_VLAN_IS_NEW to IAVF_VLAN_ADDING Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 784/969] iavf: stop removing VLAN filters from PF on interface down Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 785/969] iavf: wait for PF confirmation before removing VLAN filters Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 786/969] iavf: add VIRTCHNL_OP_ADD_VLAN to success completion handler Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 787/969] ice: Pull common tasks into ice_vf_post_vsi_rebuild Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 788/969] ice: fix NULL pointer dereference in ice_reset_all_vfs() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 789/969] net: tls: fix strparser anchor skb leak on offload RX setup failure Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 790/969] net/sched: cls_flower: revert unintended changes Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 791/969] smb: client: correctly handle ErrorContextData as a flexible array Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 792/969] smb: client: fix OOB reads parsing symlink error response Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 793/969] net/sched: sch_pie: annotate more data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 794/969] net: bcmgenet: Initialize u64 stats seq counter Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 795/969] net: bcmgenet: fix leaking free_bds Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 796/969] btrfs: tracepoints: fix sleep while in atomic context in btrfs_sync_file() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 797/969] ALSA: misc: Use guard() for spin locks Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 798/969] ALSA: core: Serialize deferred fasync state checks Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 799/969] ASoC: SOF: pcm: Clear the susbstream pointer to NULL on close Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 800/969] ASoC: SOF: stream-ipc: Check for cstream nullity in sof_ipc_msg_data() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 801/969] mtd: spi-nor: spansion: Enable JFFS2 write buffer for S25FS256T Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 802/969] netconsole: avoid out-of-bounds access on empty string in trim_newline() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 803/969] bonding: fix NULL pointer dereference in actor_port_prio setting Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 804/969] net: bonding: update the slave array for broadcast mode Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 805/969] crypto: af_alg - Cap AEAD AD length to 0x80000000 Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 806/969] i40e: Cleanup PTP pins on probe failure Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 807/969] netfilter: nf_conntrack_sip: get helper before allocating expectation Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 808/969] audit: fix incorrect inheritable capability in CAPSET records Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 809/969] netfilter: nft_ct: fix missing expect put in obj eval Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 810/969] net: atlantic: preserve PCI wake-from-D3 on shutdown when WOL enabled Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 811/969] audit: enforce AUDIT_LOCKED for AUDIT_TRIM and AUDIT_MAKE_EQUIV Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 812/969] KVM: Reject wrapped offset in kvm_reset_dirty_gfn() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 813/969] KVM: s390: pci: fix GAIT table indexing due to double-scaling pointer arithmetic Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 814/969] KVM: x86: Fix Xen hypercall tracepoint argument assignment Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 815/969] smb/client: fix possible infinite loop and oob read in symlink_data() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 816/969] drm/i915/dp: Fix VSC dynamic range signaling for RGB formats Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 817/969] ALSA: usb-audio: Bound MIDI endpoint descriptor scans Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 818/969] ceph: fix a buffer leak in __ceph_setxattr() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 819/969] powerpc/warp: Fix error handling in pika_dtm_thread Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 820/969] libceph: Fix potential out-of-bounds access in osdmap_decode() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 821/969] libceph: Fix potential null-ptr-deref in decode_choose_args() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 822/969] libceph: Fix potential out-of-bounds access in crush_decode() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 823/969] libceph: handle rbtree insertion error in decode_choose_args() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 824/969] iommu/vt-d: Disable DMAR for Intel Q35 IGFX Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 825/969] drm/i915: skip __i915_request_skip() for already signaled requests Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 826/969] drm/panfrost: Fix wait_bo ioctl leaking positive return from dma_resv_wait_timeout() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 827/969] drm/gma500/oaktrail_hdmi: fix i2c adapter leak on setup Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 828/969] drm/gma500/oaktrail_lvds: fix hang on init failure Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 829/969] drm/gma500/oaktrail_lvds: fix i2c adapter leaks on init Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 830/969] io-wq: check that the predecessor is hashed in io_wq_remove_pending() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 831/969] net/rds: reset op_nents when zerocopy page pin fails Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 832/969] io_uring: prevent opcode speculation Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 833/969] s390/debug: Reject zero-length input before trimming a newline Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 834/969] wifi: mac80211: check tdls flag in ieee80211_tdls_oper Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 6.1 835/969] Revert "x86/vdso: Fix output operand size of RDPID" Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 836/969] Revert "s390/cio: Fix device lifecycle handling in css_alloc_subchannel()" Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 837/969] smb: client: reject userspace cifs.spnego descriptions Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 838/969] i3c: mipi-i3c-hci: Correct RING_CTRL_ABORT handling in DMA dequeue Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 839/969] sysfs: dont remove existing directory on update failure Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 840/969] hwmon: (pmbus/adm1266) widen blackbox-info buffer to I2C_SMBUS_BLOCK_MAX Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 841/969] ALSA: ua101: Reject too-short USB descriptors Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 842/969] ALSA: asihpi: Fix potential OOB array access at reading cache Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 843/969] net: wwan: iosm: fix potential memory leaks in ipc_imem_init() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 844/969] Bluetooth: fix UAF in l2cap_sock_cleanup_listen() vs l2cap_conn_del() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 845/969] Bluetooth: ISO: drop ISO_END frames received without prior ISO_START Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 846/969] Bluetooth: bnep: Fix UAF read of dev->name Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 847/969] Bluetooth: hci_uart: fix UAFs and race conditions in close and init paths Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 848/969] Bluetooth: MGMT: validate Add Extended Advertising Data length Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 849/969] phonet/pep: disable BH around forwarded sk_receive_skb() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 850/969] net: bcmgenet: keep RBUF EEE/PM disabled Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 851/969] net: ifb: report ethtool stats over num_tx_queues Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 852/969] netfilter: ip6t_hbh: reject oversized option lists Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 853/969] netfilter: nf_queue: hold bridge skb->dev while queued Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 854/969] netfilter: ipset: stop hash:* range iteration at end Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 855/969] qed: fix double free in qed_cxt_tables_alloc() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 856/969] ring-buffer: Fix reporting of missed events in iterator Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 857/969] vsock/vmci: fix UAF when peer resets connection during handshake Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 858/969] vsock/virtio: reset connection on receiving queue overflow Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 859/969] wifi: ath11k: clear shared SRNG pointer state on restart Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 860/969] ipv4: raw: reject IP_HDRINCL packets with ihl < 5 Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 861/969] ixgbevf: fix use-after-free in VEPA multicast source pruning Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 862/969] ice: fix setting promisc mode while adding VID filter Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 863/969] wifi: cfg80211: advance loop vars in cfg80211_merge_profile() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 864/969] cifs: Fix busy dentry used after unmounting Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 865/969] tracing: Do not call map->ops->elt_free() if elt_alloc() fails Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 866/969] KVM: arm64: vgic-its: Reject restored DTE with out-of-range num_eventid_bits Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 867/969] drm/bridge: chipone-icn6211: use devm_drm_bridge_add in i2c probe Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 868/969] scsi: isci: Fix use-after-free in device removal path Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 869/969] spi: sprd: fix error pointer deref after DMA setup failure Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 870/969] spi: ti-qspi: fix use-after-free " Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 871/969] RDMA/siw: Reject MPA FPDU length underflow before signed receive math Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 872/969] LoongArch: Remove unused code to avoid build warning Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 873/969] device property: set fwnode->secondary to NULL in fwnode_init() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 874/969] drm/virtio: use uninterruptible resv lock for plane updates Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 875/969] drm/bridge: it66121: acquire reset GPIO in probe Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 876/969] drm/bridge: megachips: remove bridge when irq request fails Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 877/969] drm/amd/display: Fix integer overflow in bios_get_image() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 878/969] drm/amd/display: Validate GPIO pin LUT table size before iterating Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 879/969] drm/amd/display: Validate payload length and link_index in dc_process_dmub_aux_transfer_async Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 880/969] batman-adv: mcast: fix use-after-free in orig_node RCU release Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 881/969] batman-adv: clear current gateway during teardown Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 882/969] batman-adv: dat: handle forward allocation error Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 883/969] batman-adv: fix fragment reassembly length accounting Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 884/969] batman-adv: fix tp_meter counter underflow during shutdown Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 885/969] batman-adv: frag: disallow unicast fragment in fragment Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 886/969] batman-adv: bla: fix report_work leak on backbone_gw purge Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 887/969] batman-adv: tp_meter: avoid use of uninit sender vars Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 888/969] batman-adv: tt: fix negative last_changeset_len Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 889/969] batman-adv: tt: fix negative tt_buff_len Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 890/969] hwmon: (pmbus/adm1266) seed timestamp from the real-time clock Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 891/969] hwmon: (pmbus/adm1266) reject implausible blackbox record_count Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 892/969] hwmon: (pmbus/adm1266) include PEC byte in pmbus_block_xfer read buffer Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 893/969] hwmon: (pmbus/adm1266) bounce blackbox records through a protocol-sized buffer Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 894/969] hwmon: (pmbus/adm1266) cap PDIO scan in get_multiple at ADM1266_PDIO_NR Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 6.1 895/969] hwmon: (pmbus/adm1266) dont clobber GPIO bits before PDIO read in get_multiple Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 896/969] hwmon: (pmbus/adm1266) register the gpio_chip after pmbus_do_probe() Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 897/969] hwmon: (pmbus/adm1266) register the nvmem device " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 898/969] hwmon: (pmbus/adm1266) reject short block-read responses in the GPIO accessors Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 899/969] HID: uclogic: Fix regression of input name assignment Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 900/969] firmware: arm_ffa: Check for NULL FF-A ID table while driver registration Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 901/969] firmware: arm_ffa: Skip free_pages on RX buffer alloc failure Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 902/969] kunit: config: Enable KUNIT_DEBUGFS by default Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 903/969] kunit: config: KUNIT_DEBUGFS should depend on DEBUG_FS Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 904/969] pinctrl: qcom: Fix wakeirq map by removing disconnected irqs for sm8150 Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 905/969] ARM: integrator: Fix early initialization Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 906/969] netfilter: x_tables: unregister the templates first Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 907/969] netfilter: arptables: allow xtables-nft only builds Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 908/969] netfilter: xtables: " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 909/969] netfilter: ebtables: " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 910/969] netfilter: xtables: fix up kconfig dependencies Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 911/969] netfilter: arptables: Select NETFILTER_FAMILY_ARP when building arp_tables.c Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 912/969] netfilter: Make legacy configs user selectable Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 913/969] netfilter: Exclude LEGACY TABLES on PREEMPT_RT Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 914/969] netfilter: x_tables: add and use xt_unregister_table_pre_exit Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 915/969] netfilter: x_tables: add and use xtables_unregister_table_exit Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 916/969] netfilter: ebtables: move to two-stage removal scheme Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 917/969] netfilter: ebtables: close dangling table module init race Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 918/969] netfilter: x_tables: " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 919/969] netfilter: bridge: eb_tables: close " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 920/969] tcp: Fix imbalanced icsk_accept_queue count Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 921/969] ice: fix locking in ice_dcb_rebuild() Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 922/969] net: lan966x: avoid unregistering netdev on register failure Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 923/969] phy: marvell: mvebu-a3700-utmi: fix incorrect USB2_PHY_CTRL register access Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 924/969] irqchip/ath79-cpu: Remove unused function Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 925/969] irq_work: Fix use-after-free in irq_work_single() on PREEMPT_RT Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 926/969] net: ethernet: cortina: Make RX SKB per-port Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 927/969] net: ethernet: cortina: Drop half-assembled SKB Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 928/969] net: ethernet: cortina: Carry over frag counter Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 929/969] net: ethernet: cs89x0: remove stale CONFIG_MACH_MX31ADS reference Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 930/969] wifi: ath11k: fix error path leaks in some WMI WOW calls Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 931/969] HID: quirks: really enable the intended work around for appledisplay Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 932/969] net/smc: avoid NULL deref of conn->lnk in smc_msg_event tracepoint Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 933/969] ethtool: fix ethnl_bitmap32_not_zero() bit interval semantics Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 934/969] drm/msm/dsi: dont dump registers past the mapped region Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 935/969] drm/msm: Fix iommu_map_sgtable() return value check and avoid WARN Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 936/969] powerpc/time: Remove redundant preempt_disable|enable() calls from arch_irq_work_raise() Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 937/969] net/smc: reject CHID-0 ACCEPT that matches an empty ism_dev slot Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 938/969] net: tls: fix off-by-one in sg_chain entry count for wrapped sk_msg ring Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 939/969] net: tls: prevent chain-after-chain in plain text SG Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 940/969] spi: mtk-snfi: Fix resource leak in mtk_snand_read_page_cache() Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 941/969] drm/msm/snapshot: fix dumping of the unaligned regions Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 942/969] wifi: ath11k: Trigger sta disconnect on hardware restart Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 943/969] wifi: ath11k: update hw params for IPQ5018 Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 944/969] wifi: ath11k: update ce configurations " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 945/969] wifi: ath11k: remap ce register space " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 946/969] wifi: ath11k: update hal srng regs " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 947/969] wifi: ath11k: initialize hw_ops " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 948/969] wifi: ath11k: add new hw ops for IPQ5018 to get rx dest ring hashmap Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 949/969] wifi: ath11k: fix rssi station dump not updated in QCN9074 Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 950/969] wifi: ath11k: fix peer resolution on rx path when peer_id=0 Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 951/969] net: dsa: mt7530: sync driver-specific behavior of MT7531 variants Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 952/969] net: dsa: mt7530: fix FDB entries not aging out with short timeout Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 953/969] net: dsa: mt7530: rename mt753x_bpdu_port_fw enum to mt753x_to_cpu_fw Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 954/969] net: dsa: mt7530: preserve VLAN tags on trapped link-local frames Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 6.1 955/969] net: mana: Fix TOCTOU double-fetch of hwc_msg_id from DMA buffer Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 956/969] platform/x86: adv_swbutton: Check ACPI_HANDLE() against NULL Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 957/969] platform/x86: hp_accel: Check ACPI_COMPANION() " Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 958/969] platform/x86: intel-hid: Check ACPI_HANDLE() " Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 959/969] platform/x86: intel-vbtn: " Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 960/969] RDMA/rtrs: Fix use-after-free in path file creation cleanup Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 961/969] net: bridge: Flush multicast groups when snooping is disabled Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 962/969] bridge: mcast: Fix a possible use-after-free when removing a bridge port Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 963/969] tracing: Avoid NULL return from hist_field_name() on truncation Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 964/969] net: ag71xx: check error for platform_get_irq Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 965/969] string: add mem_is_zero() helper to check if memory area is all zeros Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 966/969] gpiolib: cdev: use !mem_is_zero() instead of memchr_inv(s, 0, n) Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 967/969] gpio: cdev: check if uAPI v2 config attributes are correctly zeroed Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 968/969] net: mana: validate rx_req_idx to prevent out-of-bounds array access Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 6.1 969/969] security/keys: fix missed RCU read section on lookup Greg Kroah-Hartman
2026-05-30 17:15 ` [PATCH 6.1 000/969] 6.1.175-rc1 review Brett A C Sheffield
2026-05-30 20:18 ` Peter Schneider
2026-05-31  6:36 ` Miguel Ojeda
2026-06-01  2:01 ` Ron Economos
2026-06-01  8:56 ` Pavel Machek
2026-06-01 10:51 ` Francesco Dolcini
2026-06-01 17:30 ` Florian Fainelli

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=20260530160321.300971656@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=edumazet@google.com \
    --cc=jhs@mojatatu.com \
    --cc=kuba@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