From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Felix Gu <ustc.gu@gmail.com>,
Frank Li <Frank.Li@nxp.com>, Peng Fan <peng.fan@nxp.com>,
Abel Vesa <abel.vesa@oss.qualcomm.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 544/776] clk: imx: imx6q: Fix device node reference leak in of_assigned_ldb_sels()
Date: Sat, 30 May 2026 18:04:18 +0200 [thread overview]
Message-ID: <20260530160254.233905191@linuxfoundation.org> (raw)
In-Reply-To: <20260530160240.228940103@linuxfoundation.org>
5.15-stable review patch. If anyone has any objections, please let me know.
------------------
From: Felix Gu <ustc.gu@gmail.com>
[ Upstream commit 9faf207208951460f3f7eefbc112246c8d28ff1b ]
The function of_assigned_ldb_sels() calls of_parse_phandle_with_args()
but never calls of_node_put() to release the reference, causing a memory
leak.
Fix this by adding proper cleanup calls on all exit paths.
Fixes: 5d283b083800 ("clk: imx6: Fix procedure to switch the parent of LDB_DI_CLK")
Signed-off-by: Felix Gu <ustc.gu@gmail.com>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Link: https://patch.msgid.link/20260203-clk-imx6q-v3-2-6cd2696bb371@gmail.com
Signed-off-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/clk/imx/clk-imx6q.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/clk/imx/clk-imx6q.c b/drivers/clk/imx/clk-imx6q.c
index b14c1606466d7..a95f07718b653 100644
--- a/drivers/clk/imx/clk-imx6q.c
+++ b/drivers/clk/imx/clk-imx6q.c
@@ -183,9 +183,11 @@ static void of_assigned_ldb_sels(struct device_node *node,
}
if (clkspec.np != node || clkspec.args[0] >= IMX6QDL_CLK_END) {
pr_err("ccm: parent clock %d not in ccm\n", index);
+ of_node_put(clkspec.np);
return;
}
parent = clkspec.args[0];
+ of_node_put(clkspec.np);
rc = of_parse_phandle_with_args(node, "assigned-clocks",
"#clock-cells", index, &clkspec);
@@ -193,9 +195,11 @@ static void of_assigned_ldb_sels(struct device_node *node,
return;
if (clkspec.np != node || clkspec.args[0] >= IMX6QDL_CLK_END) {
pr_err("ccm: child clock %d not in ccm\n", index);
+ of_node_put(clkspec.np);
return;
}
child = clkspec.args[0];
+ of_node_put(clkspec.np);
if (child != IMX6QDL_CLK_LDB_DI0_SEL &&
child != IMX6QDL_CLK_LDB_DI1_SEL)
--
2.53.0
next prev parent reply other threads:[~2026-05-30 18:06 UTC|newest]
Thread overview: 781+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-30 15:55 [PATCH 5.15 000/776] 5.15.209-rc1 review Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 001/776] ALSA: asihpi: avoid write overflow check warning Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 002/776] ASoC: SOF: topology: reject invalid vendor array size in token parser Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 003/776] can: mcp251x: add error handling for power enable in open and resume Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 004/776] btrfs: tracepoints: get correct superblock from dentry in event btrfs_sync_file() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 005/776] ALSA: hda/realtek: Add mute LED quirk for HP Pavilion 15-eg0xxx Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 006/776] netfilter: nft_set_pipapo_avx2: dont return non-matching entry on expiry Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 007/776] wifi: wl1251: validate packet IDs before indexing tx_frames Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 008/776] ASoC: soc-core: call missing INIT_LIST_HEAD() for card_aux_list Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 009/776] ALSA: usb-audio: Fix quirk flags for NeuralDSP Quad Cortex Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 010/776] fs/smb/client: fix out-of-bounds read in cifs_sanitize_prepath Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 011/776] pinctrl: intel: Fix the revision for new features (1kOhm PD, HW debouncer) Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 012/776] HID: quirks: add HID_QUIRK_ALWAYS_POLL for 8BitDo Pro 3 Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 013/776] HID: roccat: fix use-after-free in roccat_report_event Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 014/776] ata: ahci: force 32-bit DMA for JMicron JMB582/JMB585 Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 015/776] wifi: brcmfmac: validate bsscfg indices in IF events Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 016/776] ASoC: stm32_sai: fix incorrect BCLK polarity for DSP_A/B, LEFT_J Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 017/776] soc: aspeed: socinfo: Mask table entries for accurate SoC ID matching Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 018/776] arm64: dts: imx8mq: Set the correct gpu_ahb clock frequency Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 019/776] PCI: hv: Set default NUMA node to 0 for devices without affinity info Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 020/776] drm/vc4: Fix memory leak of BO array in hang state Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 021/776] drm/vc4: Fix a memory leak in hang state error path Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 022/776] drm/vc4: Protect madv read in vc4_gem_object_mmap() with madv_lock Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 023/776] epoll: use refcount to reduce ep_mutex contention Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 024/776] eventpoll: defer struct eventpoll free to RCU grace period Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 025/776] net: sched: act_csum: validate nested VLAN headers Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 026/776] net: lapbether: handle NETDEV_PRE_TYPE_CHANGE Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 027/776] ipv4: icmp: fix null-ptr-deref in icmp_build_probe() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 028/776] nfc: s3fwrn5: allocate rx skb before consuming bytes Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 029/776] tracing/probe: reject non-closed empty immediate strings Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 030/776] e1000: check return value of e1000_read_eeprom Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 031/776] xsk: tighten UMEM headroom validation to account for tailroom and min frame Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 032/776] xfrm: Wait for RCU readers during policy netns exit Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 033/776] xfrm_user: fix info leak in build_mapping() Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 034/776] netfilter: nfnetlink_log: initialize nfgenmsg in NLMSG_DONE terminator Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 035/776] netfilter: xt_multiport: validate range encoding in checkentry Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 036/776] netfilter: ip6t_eui64: reject invalid MAC header for all packets Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 037/776] af_unix: read UNIX_DIAG_VFS data under unix_state_lock Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 038/776] l2tp: Drop large packets with UDP encap Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 039/776] gpio: tegra: fix irq_release_resources calling enable instead of disable Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 040/776] perf/x86/intel/uncore: Skip discovery table for offline dies Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 041/776] i3c: fix uninitialized variable use in i2c setup Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 042/776] netfilter: conntrack: add missing netlink policy validations Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 043/776] MIPS: mm: kmalloc tlb_vpn array to avoid stack overflow Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 044/776] mips: mm: Allocate tlb_vpn array atomically Greg Kroah-Hartman
2026-05-30 15:55 ` [PATCH 5.15 045/776] MIPS: Always record SEGBITS in cpu_data.vmbits Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 046/776] MIPS: mm: Suppress TLB uniquification on EHINV hardware Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 047/776] MIPS: mm: Rewrite TLB uniquification for the hidden bit feature Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 048/776] ALSA: usb-audio: Improve Focusrite sample rate filtering Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 049/776] ALSA: usb-audio: Update for native DSD support quirks Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 050/776] ALSA: usb-audio: Remove VALIDATE_RATES quirk for Focusrite devices Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 051/776] batman-adv: hold claim backbone gateways by reference Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 052/776] nfc: llcp: add missing return after LLCP_CLOSED checks Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 053/776] can: raw: fix ro->uniq use-after-free in raw_rcv() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 054/776] i2c: s3c24xx: check the size of the SMBUS message before using it Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 055/776] staging: rtl8723bs: initialize le_tmp64 in rtw_BIP_verify() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 056/776] HID: alps: fix NULL pointer dereference in alps_raw_event() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 057/776] HID: core: clamp report_size in s32ton() to avoid undefined shift Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 058/776] net: usb: cdc-phonet: fix skb frags[] overflow in rx_complete() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 059/776] NFC: digital: Bounds check NFC-A cascade depth in SDD response handler Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 060/776] ALSA: fireworks: bound device-supplied status before string array lookup Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 061/776] fbdev: tdfxfb: avoid divide-by-zero on FBIOPUT_VSCREENINFO Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 062/776] usb: gadget: f_ncm: validate minimum block_len in ncm_unwrap_ntb() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 063/776] usb: gadget: f_phonet: fix skb frags[] overflow in pn_rx_complete() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 064/776] usb: gadget: renesas_usb3: validate endpoint index in standard request handlers Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 065/776] usbip: validate number_of_packets in usbip_pack_ret_submit() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 066/776] usb: storage: Expand range of matched versions for VL817 quirks entry Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 067/776] fbdev: udlfb: avoid divide-by-zero on FBIOPUT_VSCREENINFO Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 068/776] staging: sm750fb: fix division by zero in ps_to_hz() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 069/776] USB: serial: option: add Telit Cinterion FN990A MBIM composition Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 070/776] ALSA: ctxfi: Limit PTP to a single page Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 071/776] media: vidtv: fix NULL pointer dereference in vidtv_channel_pmt_match_sections Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 072/776] ocfs2: fix use-after-free in ocfs2_fault() when VM_FAULT_RETRY Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 073/776] ocfs2: handle invalid dinode in ocfs2_group_extend Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 074/776] KVM: SEV: Drop WARN on large size for KVM_MEMORY_ENCRYPT_REG_REGION Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 075/776] fsl-mc: Use driver_set_override() instead of open-coding Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 076/776] smb: client: fix potential UAF in smb2_is_valid_oplock_break() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 077/776] nf_tables: nft_dynset: fix possible stateful expression memleak in error path Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 078/776] rxrpc: proc: size address buffers for %pISpc output Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 079/776] checkpatch: add support for Assisted-by tag Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 080/776] KVM: x86: Use scratch field in MMIO fragment to hold small write values Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 081/776] mm/kasan: fix double free for kasan pXds Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 082/776] media: vidtv: fix nfeeds state corruption on start_streaming failure Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 083/776] media: em28xx: fix use-after-free in em28xx_v4l2_open() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 084/776] ALSA: 6fire: fix use-after-free on disconnect Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 085/776] bcache: fix cached_dev.sb_bio use-after-free and crash Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 086/776] media: as102: fix to not free memory after the device is registered in as102_usb_probe() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 087/776] nilfs2: fix NULL i_assoc_inode dereference in nilfs_mdt_save_to_shadow_map Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 088/776] media: vidtv: fix pass-by-value structs causing MSAN warnings Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 089/776] media: hackrf: fix to not free memory after the device is registered in hackrf_probe() Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 090/776] net: tap: NULL pointer derefence in dev_parse_header_protocol when skb->dev is null Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 091/776] PCI: endpoint: pci-epf-vntb: Remove duplicate resource teardown Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 092/776] Revert "net: ethernet: xscale: Check for PTP support properly" Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 093/776] Revert "net: ixp4xx_eth: convert to ndo_hwtstamp_get() and ndo_hwtstamp_set()" Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 094/776] ipv6: add NULL checks for idev in SRv6 paths Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 095/776] gfs2: Improve gfs2_consist_inode() usage Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 096/776] gfs2: Validate i_depth for exhash directories Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 097/776] wifi: mac80211: always free skb on ieee80211_tx_prepare_skb() failure Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 098/776] PCI/ACPI: Restrict program_hpx_type2() to AER bits Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 099/776] netfilter: nft_set_pipapo: do not rely on ZERO_SIZE_PTR Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 100/776] powerpc64/bpf: do not increment tailcall count when prog is NULL Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 101/776] arm64: dts: imx8mq-librem5: Set the DVS voltages lower Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 102/776] arm64: dts: imx8mq-librem5: Bump BUCK1 suspend voltage to 0.81V Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 103/776] Revert "arm64: dts: imx8mq-librem5: Set the DVS voltages lower" Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 104/776] arm64: dts: imx8mq-librem5: Bump BUCK1 suspend voltage up to 0.85V Greg Kroah-Hartman
2026-05-30 15:56 ` [PATCH 5.15 105/776] ocfs2: add inline inode consistency check to ocfs2_validate_inode_block() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 106/776] ocfs2: validate inline data i_size during inode read Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 107/776] ocfs2: fix out-of-bounds write in ocfs2_write_end_inline Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 108/776] xfrm: clear trailing padding in build_polexpire() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 109/776] rxrpc: Fix key quota calculation for multitoken keys Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 110/776] rxrpc: Fix call removal to use RCU safe deletion Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 111/776] rxrpc: reject undecryptable rxkad response tickets Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 112/776] fs/ocfs2: fix comments mentioning i_mutex Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 113/776] ocfs2: fix possible deadlock between unlink and dio_end_io_write Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 114/776] mm: blk-cgroup: fix use-after-free in cgwb_release_workfn() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 115/776] MPTCP: fix lock class name family in pm_nl_create_listen_socket Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 116/776] tty: n_gsm: fix deadlock and link starvation in outgoing data path Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 117/776] netdevsim: Fix memory leak of nsim_dev->fa_cookie Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 118/776] Revert "nvme: nvme-fc: Ensure ->ioerr_work is cancelled in nvme_fc_delete_ctrl()" Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 119/776] nvme: nvme-fc: Ensure ->ioerr_work is cancelled in nvme_fc_delete_ctrl() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 120/776] ALSA: control: Avoid WARN() for symlink errors Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 121/776] s390/xor: Fix xor_xc_2() inline assembly constraints Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 122/776] f2fs: fix null-ptr-deref in f2fs_submit_page_bio() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 123/776] wifi: iwlwifi: read txq->read_ptr under lock Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 124/776] blk-mq: use quiesced elevator switch when reinitializing queues Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 125/776] dm-verity: disable recursive forward error correction Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 126/776] net: add skb_header_pointer_careful() helper Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 127/776] net/sched: cls_u32: use skb_header_pointer_careful() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 128/776] dmaengine: mmp_pdma: Fix race condition in mmp_pdma_residue() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 129/776] fs: dlm: fix use after free in midcomms commit Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 130/776] spi: cadence-quadspi: Implement refcount to handle unbind during busy Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 131/776] x86/uprobes: Fix XOL allocation failure for 32-bit tasks Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 132/776] btrfs: send: check for inline extents in range_is_hole_in_parent() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 133/776] btrfs: do not strictly require dirty metadata threshold for metadata writepages Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 134/776] mailbox: Prevent out-of-bounds access in of_mbox_index_xlate() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 135/776] Bluetooth: hci_core: Fix use-after-free in vhci_flush() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 136/776] dlm: fix possible lkb_resource null dereference Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 137/776] bpf: Do mark_chain_precision for ARG_CONST_ALLOC_SIZE_OR_ZERO Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 138/776] gfs2: No more self recovery Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 139/776] binfmt_misc: restore write access before closing files opened by open_exec() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 140/776] drm/amdgpu: unmap and remove csa_va properly Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 141/776] nvmet: always initialize cqe.result Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 142/776] net: stmmac: fix TSO DMA API usage causing oops Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 143/776] f2fs: fix to wait on block writeback for post_read case Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 144/776] pstore: inode: Only d_invalidate() is needed Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 145/776] ALSA: usb-audio: Kill timer properly at removal Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 146/776] ice: Add netif_device_attach/detach into PF reset flow Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 147/776] iio: imu: inv_icm42600: fix odr switch when turning buffer off Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 148/776] Bluetooth: af_bluetooth: Fix deadlock Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 149/776] can: gs_usb: gs_usb_xmit_callback(): fix handling of failed transmitted URBs Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 150/776] vdpa: Add max vqp attr to vdpa_nl_policy for nlattr length check Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 151/776] f2fs: fix to trigger foreground gc during f2fs_map_blocks() in lfs mode Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 152/776] SUNRPC: lock against ->sock changing during sysfs read Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 153/776] net: usb: lan78xx: Fix double free issue with interrupt buffer allocation Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 154/776] btrfs: lock the inode in shared mode before starting fiemap Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 155/776] fs/ntfs3: Add more attributes checks in mi_enum_attr() Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 156/776] rxrpc: Fix recvmsg() unconditional requeue Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 157/776] cpufreq: governor: Free dbs_data directly when gov->init() fails Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 158/776] cpufreq: governor: fix double free in cpufreq_dbs_governor_init() error path Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 159/776] md/md-bitmap: Synchronize bitmap_get_stats() with bitmap lifetime Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 160/776] fbdev: efifb: Register sysfs groups through driver core Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 161/776] net: clear the dst when changing skb protocol Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 162/776] cpufreq: Avoid a bad reference count on CPU node Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 163/776] drivers: base: Free devm resources when unregistering a device Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 164/776] Revert "wifi: cfg80211: stop NAN and P2P in cfg80211_leave" Greg Kroah-Hartman
2026-05-30 15:57 ` [PATCH 5.15 165/776] scripts/dtc: Remove unused dts_version in dtc-lexer.l Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 166/776] ksmbd: unset conn->binding on failed binding request Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 167/776] rxrpc: only handle RESPONSE during service challenge Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 168/776] rxrpc: Fix anonymous key handling Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 169/776] iommu: fix a reference count leak in iommu_sva_bind_device() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 170/776] fs/ntfs3: validate rec->used in journal-replay file record check Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 171/776] fuse: reject oversized dirents in page cache Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 172/776] fuse: quiet down complaints in fuse_conn_limit_write Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 173/776] ALSA: usb-audio: apply quirk for MOONDROP JU Jiu Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 174/776] ALSA: caiaq: take a reference on the USB device in create_card() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 175/776] crypto: ccp: Dont attempt to copy CSR to userspace if PSP command failed Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 176/776] crypto: ccp: Dont attempt to copy PDH cert " Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 177/776] crypto: ccp: Dont attempt to copy ID " Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 178/776] rxrpc: Fix missing validation of ticket length in non-XDR key preparsing Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 179/776] tty: n_gsm: fix flow control handling in tx path Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 180/776] ALSA: usb-audio: fix race condition to UAF in snd_usbmidi_free Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 181/776] ALSA: usb-audio: stop parsing UAC2 rates at MAX_NR_RATES Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 182/776] ALSA: usb-audio: Avoid false E-MU sample-rate notifications Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 183/776] ALSA: usb-audio: Fix Audio Advantage Micro II SPDIF switch Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 184/776] usb: xhci: Make usb_host_endpoint.hcpriv survive endpoint_disable() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 185/776] ALSA: usb-audio: Evaluate packsize caps at the right place Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 186/776] drm/nouveau: fix u32 overflow in pushbuf reloc bounds check Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 187/776] misc: ibmasm: fix OOB MMIO read in ibmasm_handle_mouse_interrupt() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 188/776] ibmasm: fix OOB reads in command_file_write due to missing size checks Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 189/776] ibmasm: fix heap over-read in ibmasm_send_i2o_message() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 190/776] firmware: google: framebuffer: Do not mark framebuffer as busy Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 191/776] scsi: ufs: core: Fix use-after free in init error and remove paths Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 192/776] device property: Make modifications of fwnode "flags" thread safe Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 193/776] ocfs2: split transactions in dio completion to avoid credit exhaustion Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 194/776] padata: Fix pd UAF once and for all Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 195/776] padata: Remove comment for reorder_work Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 196/776] driver core: Dont let a device probe until its ready Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 197/776] um: drivers: call kernel_strrchr() explicitly in cow_user.c Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 198/776] crypto: pcrypt - Fix handling of MAY_BACKLOG requests Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 199/776] ALSA: control: Validate buf_len before strnlen() in snd_ctl_elem_init_enum_names() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 200/776] net: caif: clear client service pointer on teardown Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 201/776] net: strparser: fix skb_head leak in strp_abort_strp() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 202/776] PCI: endpoint: pci-epf-ntb: Remove duplicate resource teardown Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 203/776] Revert "ALSA: usb: Increase volume range that triggers a warning" Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 204/776] lib/ts_kmp: fix integer overflow in pattern length calculation Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 205/776] media: i2c: imx219: Check return value of devm_gpiod_get_optional() in imx219_probe() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 206/776] net: qrtr: ns: Fix use-after-free in driver remove() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 207/776] ext2: reject inodes with zero i_nlink and valid mode in ext2_iget() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 208/776] ALSA: aoa: i2sbus: fix OF node lifetime handling Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 209/776] ALSA: ctxfi: Add fallback to default RSR for S/PDIF Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 210/776] ALSA: seq_oss: return full count for successful SEQ_FULLSIZE writes Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 211/776] md/raid10: fix deadlock with check operation and nowait requests Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 212/776] nvme-pci: add NVME_QUIRK_DISABLE_WRITE_ZEROES for Kingston OM3SGP4 Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 213/776] parisc: _llseek syscall is only available for 32-bit userspace Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 214/776] selftests/mqueue: Fix incorrectly named file Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 215/776] ALSA: caiaq: Fix control_put() result and cache rollback Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 216/776] ALSA: caiaq: Handle probe errors properly Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 217/776] ALSA: 6fire: Fix input volume change detection Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 218/776] iio: adc: ad7768-1: fix one-shot mode data acquisition Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 219/776] net: rds: fix MR cleanup on copy error Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 220/776] net/smc: avoid early lgr access in smc_clc_wait_msg Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 221/776] drm/arcpgu: fix device node leak Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 222/776] RDMA/rxe: Validate pad and ICRC before payload_size() in rxe_rcv Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 223/776] ipv4: icmp: validate reply type before using icmp_pointers Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 224/776] libceph: Prevent potential null-ptr-deref in ceph_handle_auth_reply() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.15 225/776] tpm: avoid -Wunused-but-set-variable Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 226/776] power: supply: axp288_charger: Do not cancel work before initializing it Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 227/776] mmc: block: use single block write in retry Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 228/776] tpm: tpm_tis: add error logging for data transfer Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 229/776] rtc: ntxec: fix OF node reference imbalance Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 230/776] userfaultfd: allow registration of ranges below mmap_min_addr Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 231/776] KVM: nSVM: Mark all of vmcb02 dirty when restoring nested state Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 232/776] KVM: nSVM: Sync NextRIP to cached vmcb12 after VMRUN of L2 Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 233/776] KVM: nSVM: Sync interrupt shadow " Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 234/776] KVM: SVM: Inject #UD for INVLPGA if EFER.SVME=0 Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 235/776] KVM: SVM: Explicitly mark vmcb01 dirty after modifying VMCB intercepts Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 236/776] KVM: nSVM: Ensure AVIC is inhibited when restoring a vCPU to guest mode Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 237/776] KVM: nSVM: Always inject a #GP if mapping VMCB12 fails on nested VMRUN Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 238/776] KVM: nSVM: Clear GIF on nested #VMEXIT(INVALID) Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 239/776] KVM: nSVM: Add missing consistency check for nCR3 validity Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 240/776] io_uring/poll: fix EPOLL_URING_WAKE sometimes not being honored Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 241/776] io_uring/poll: fix backport of io_poll_add() changes Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 242/776] mtd: docg3: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 243/776] mtd: docg3: fix use-after-free in docg3_release() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 244/776] ext4: fix missing brelse() in ext4_xattr_inode_dec_ref_all() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 245/776] md/raid5: fix soft lockup in retry_aligned_read() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 246/776] md/raid5: validate payload size before accessing journal metadata Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 247/776] inotify: fix watch count leak when fsnotify_add_inode_mark_locked() fails Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 248/776] tcp: call sk_data_ready() after listener migration Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 249/776] taskstats: set version in TGID exit notifications Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 250/776] crypto: arm64/aes - Fix 32-bit aes_mac_update() arg treated as 64-bit Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 251/776] crypto: atmel-aes - Fix 3-page memory leak in atmel_aes_buff_cleanup Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 252/776] crypto: atmel-ecc - Release client on allocation failure Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 253/776] crypto: hisilicon - Fix dma_unmap_single() direction Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 254/776] crypto: ccree - fix a memory leak in cc_mac_digest() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 255/776] crypto: atmel-tdes - fix DMA sync direction Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 256/776] dm mirror: fix integer overflow in create_dirty_log() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 257/776] IB/core: Fix zero dmac race in neighbor resolution Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 258/776] ktest: Fix the month in the name of the failure directory Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 259/776] ntfs3: add buffer boundary checks to run_unpack() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 260/776] ntfs3: fix integer overflow in run_unpack() volume boundary check Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 261/776] seg6: fix seg6 lwtunnel output redirect for L2 reduced encap mode Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 262/776] crypto: authencesn - reject short ahash digests during instance creation Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 263/776] driver core: Add kernel-doc for DEV_FLAG_COUNT enum value Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 264/776] ALSA: caiaq: Fix potentially leftover ep1_in_urb at error path Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 265/776] ALSA: caiaq: Dont abort when no input device is available Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 266/776] ipv6: rpl: reserve mac_len headroom when recompressed SRH grows Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 267/776] drm/amdgpu: fix zero-size GDS range init on RDNA4 Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 268/776] ALSA: caiaq: fix usb_dev refcount leak on probe failure Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 269/776] net: ipv6: fix NOREF dst use in seg6 and rpl lwtunnels Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 270/776] netfilter: reject zero shift in nft_bitwise Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 271/776] scsi: target: configfs: Bound snprintf() return in tg_pt_gp_members_show() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 272/776] ipmi: Add limits to event and receive message requests Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 273/776] ipmi: Check event message buffer response for bad data Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 274/776] ipmi:si: Return state to normal if message allocation fails Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 275/776] fbdev: udlfb: add vm_ops to dlfb_ops_mmap to prevent use-after-free Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 276/776] ACPI: scan: Use acpi_dev_put() in object add error paths Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 277/776] ACPI: CPPC: Fix related_cpus inconsistency during CPU hotplug Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 278/776] ACPI: video: force native backlight on HP OMEN 16 (8A44) Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 279/776] spi: rockchip: fix controller deregistration Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 280/776] ksmbd: do not expire session on binding failure Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 281/776] spi: meson-spicc: Fix double-put in remove path Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 282/776] um: virt-pci: Fix build failure Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 283/776] octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_flows.c Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 284/776] net/sched: sch_red: Replace direct dequeue call with peek and qdisc_dequeue_peeked Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.15 285/776] ipmi:ssif: Fix a shutdown race Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 286/776] ipmi:ssif: Clean up kthread on errors Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 287/776] ipmi:ssif: Remove unnecessary indention Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 288/776] ipmi:ssif: NULL thread on error Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 289/776] wifi: b43legacy: enforce bounds check on firmware key index in RX path Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 290/776] wifi: rsi: fix kthread lifetime race between self-exit and external-stop Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 291/776] wifi: ath5k: do not access array OOB Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 292/776] wifi: b43: enforce bounds check on firmware key index in b43_rx() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 293/776] usb: usblp: fix heap leak in IEEE 1284 device ID via short response Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 294/776] usb: usblp: fix uninitialized heap leak via LPGETSTATUS ioctl Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 295/776] ALSA: usb-audio: Avoid potential endless loop in convert_chmap_v3() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 296/776] ALSA: usb-audio: Fix UAC3 cluster descriptor size check Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 297/776] USB: omap_udc: DMA: Dont enable burst 4 mode Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 298/776] USB: serial: option: add Telit Cinterion LE910Cx compositions Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 299/776] usb: ulpi: fix memory leak on ulpi_register() error paths Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 300/776] ALSA: firewire-tascam: Do not drop unread control events Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 301/776] xfrm: provide message size for XFRM_MSG_MAPPING Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 302/776] ipv6: xfrm6: release dst on error in xfrm6_rcv_encap() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 303/776] Bluetooth: virtio_bt: clamp rx length before skb_put Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 304/776] Bluetooth: virtio_bt: validate rx pkt_type header length Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 305/776] Bluetooth: L2CAP: Fix null-ptr-deref in l2cap_sock_new_connection_cb() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 306/776] Bluetooth: L2CAP: Fix null-ptr-deref in l2cap_sock_state_change_cb() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 307/776] spi: zynqmp-gqspi: fix controller deregistration Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 308/776] fanotify: fix false positive on permission events Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 309/776] net: rtnetlink: zero ifla_vf_broadcast to avoid stack infoleak in rtnl_fill_vfinfo Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 310/776] sound: ua101: fix division by zero at probe Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 311/776] ip6_gre: Use cached t->net in ip6erspan_changelink() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 312/776] net/rds: handle zerocopy send cleanup before the message is queued Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 313/776] parisc: Fix IRQ leak in LASI driver Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 314/776] hwmon: (ltc2992) Clamp threshold writes to hardware range Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 315/776] hwmon: (ltc2992) Fix u32 overflow in power read path Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 316/776] hwmon: (corsair-psu) Close HID device on probe errors Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 317/776] extcon: ptn5150: handle pending IRQ events during system resume Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 318/776] hv_sock: fix ARM64 support Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 319/776] ibmveth: Disable GSO for packets with small MSS Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 320/776] udf: reject descriptors with oversized CRC length Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 321/776] thermal/drivers/sprd: Fix temperature clamping in sprd_thm_temp_to_rawdata Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 322/776] thermal/drivers/sprd: Fix raw temperature clamping in sprd_thm_rawdata_to_temp Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 323/776] spi: topcliff-pch: fix use-after-free on unbind Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 324/776] cpuidle: powerpc: avoid double clear when breaking snooze Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 325/776] ASoC: fsl_easrc: fix comment typo Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 326/776] ASoC: Intel: bytcr_wm5102: Fix MCLK leak on platform_clock_control error Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 327/776] dm-thin: fix metadata refcount underflow Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 328/776] dm: dont report warning when doing deferred remove Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 329/776] dm: fix a buffer overflow in ioctl processing Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 330/776] dm-verity-fec: correctly reject too-small FEC devices Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 331/776] dm-verity-fec: correctly reject too-small hash devices Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 332/776] isofs: validate Rock Ridge CE continuation extent against volume size Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 333/776] isofs: validate block number from NFS file handle in isofs_export_iget Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 334/776] libceph: Fix slab-out-of-bounds access in auth message processing Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 335/776] md/raid10: fix divide-by-zero in setup_geo() with zero far_copies Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 336/776] nvmet: avoid recursive nvmet-wq flush in nvmet_ctrl_free Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 337/776] RDMA/hns: Fix unlocked call to hns_roce_qp_remove() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 338/776] s390/debug: Reject zero-length input in debug_input_flush_fn() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 339/776] PCI/AER: Clear only error bits in PCIe Device Status Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 340/776] PCI/AER: Stop ruling out unbound devices as error source Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 341/776] power: supply: max17042: avoid overflow when determining health Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 342/776] RDMA/mlx4: Fix resource leak on error in mlx4_ib_create_srq() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 343/776] RDMA/ocrdma: Dont NULL deref uctx on errors in ocrdma_copy_pd_uresp() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 344/776] RDMA/rxe: Reject unknown opcodes before ICRC processing Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.15 345/776] RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 346/776] mptcp: use MPJoinSynAckHMacFailure for SynAck HMAC failure Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 347/776] mptcp: use MPTCP_RST_EMPTCP for ACK HMAC validation failure Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 348/776] mptcp: sockopt: set timestamp flags on subflow socket, not msk Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 349/776] mptcp: fix scheduling with atomic in timestamp sockopt Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 350/776] platform/x86: hp-wmi: Ignore backlight and FnLock events Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 351/776] media: uvcvideo: Enable VB2_DMABUF for metadata stream Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 352/776] media: i2c: ov8856: free control handler on error in ov8856_init_controls() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 353/776] staging: media: atomisp: Disallow all private IOCTLs Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 354/776] regulator: max77650: fix OF node reference imbalance Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 355/776] media: rc: xbox_remote: heed DMA restrictions Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 356/776] media: rc: streamzap: Error handling in probe Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 357/776] regulator: act8945a: fix OF node reference imbalance Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 358/776] regulator: bd9571mwv: " Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 359/776] media: dib8000: avoid division by 0 in dib8000_set_dds() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 360/776] media: i2c: imx412: Assert reset GPIO during probe Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 361/776] spi: mtk-nor: fix controller deregistration Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 362/776] spi: imx: fix runtime pm leak on probe deferral Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 363/776] spi: orion: fix clock imbalance on registration failure Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 364/776] spi: mpc52xx: fix use-after-free on unbind Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 365/776] drm/amdgpu/vcn3: Prevent OOB reads when parsing dec msg Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 366/776] drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 367/776] drm/amdkfd: validate SVM ioctl nattr against buffer size Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 368/776] drm/radeon: add missing revision check for CI Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 369/776] drm/amdgpu/gfx9: drop unnecessary 64-bit fence flag check in KIQ Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 370/776] drm/amdgpu/sdma4: replace BUG_ON with WARN_ON in fence emission Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 371/776] drm/amdgpu/pm: add missing revision check for CI Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 372/776] drm/amdgpu/pm: align Hawaii mclk workaround with radeon Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 373/776] sctp: revalidate list cursor after sctp_sendmsg_to_asoc() in SCTP_SENDALL Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 374/776] batman-adv: fix integer overflow on buff_pos Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 375/776] batman-adv: reject new tp_meter sessions during teardown Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 376/776] batman-adv: stop caching unowned originator pointers in BAT IV Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 377/776] batman-adv: bla: prevent use-after-free when deleting claims Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 378/776] batman-adv: bla: only purge non-released claims Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 379/776] batman-adv: bla: put backbone reference on failed claim hash insert Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 380/776] Bluetooth: L2CAP: Fix null-ptr-deref in l2cap_sock_get_sndtimeo_cb() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 381/776] vsock: fix buffer size clamping order Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 382/776] vsock/virtio: fix accept queue count leak on transport mismatch Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 383/776] drm/amdgpu/vcn3: Avoid overflow on msg bound check Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 384/776] bcache: fix uninitialized closure object Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 385/776] fs/omfs: reject s_sys_blocksize smaller than OMFS_DIR_START Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 386/776] drbd: Balance RCU calls in drbd_adm_dump_devices() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 387/776] nilfs2: reject zero bd_oblocknr in nilfs_ioctl_mark_blocks_dirty() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 388/776] pstore/ram: fix resource leak when ioremap() fails Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 389/776] devres: fix missing node debug info in devm_krealloc() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 390/776] thermal/drivers/spear: Fix error condition for reading st,thermal-flags Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 391/776] debugfs: check for NULL pointer in debugfs_create_str() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 392/776] irqchip/irq-pic32-evic: Address warning related to wrong printf() formatter Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 393/776] locking: Fix rwlock support in <linux/spinlock_up.h> Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 394/776] firmware: dmi: Correct an indexing error in dmi.h Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 395/776] wifi: mwifiex: Fix memory leak in mwifiex_11n_aggregate_pkt() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 396/776] wifi: rtlwifi: pci: fix possible use-after-free caused by unfinished irq_prepare_bcn_tasklet Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 397/776] dpaa2: add independent dependencies for FSL_DPAA2_SWITCH Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 398/776] dpaa2: compile dpaa2 even CONFIG_FSL_DPAA2_ETH=n Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 399/776] kernel: param: rename locate_module_kobject Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 400/776] kernel: globalize lookup_or_create_module_kobject() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 401/776] params: Replace __modinit with __init_or_module Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 402/776] module: Fix freeing of charp module parameters when CONFIG_SYSFS=n Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 403/776] bpf, devmap: Remove unnecessary if check in for loop Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 404/776] bpf: Use RCU-safe iteration in dev_map_redirect_multi() SKB path Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.15 405/776] r8152: fix incorrect register write to USB_UPHY_XTAL Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 406/776] powerpc/crash: fix backup region offset update to elfcorehdr Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 407/776] macvlan: annotate data-races around port->bc_queue_len_used Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 408/776] bpf: fix end-of-list detection in cgroup_storage_get_next_key() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 409/776] wifi: brcmfmac: Fix error pointer dereference Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 410/776] bpf-lsm: Make bpf_lsm_userns_create() sleepable Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 411/776] bpf: Drop task_to_inode and inet_conn_established from lsm sleepable hooks Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 412/776] bpf: reject negative CO-RE accessor indices in bpf_core_parse_spec() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 413/776] net: bcmgenet: fix off-by-one in bcmgenet_put_txcb Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 414/776] netfilter: xt_socket: enable defrag after all other checks Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 415/776] netfilter: nft_fwd_netdev: check ttl/hl before forwarding Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 416/776] 6pack: propagage new tty types Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 417/776] net: hamradio: 6pack: fix uninit-value in sixpack_receive_buf Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 418/776] net/sched: act_ct: Only release RCU read lock after ct_ft Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 419/776] net/rds: Optimize rds_ib_laddr_check Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 420/776] net/rds: Restrict use of RDS/IB to the initial network namespace Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 421/776] ppp: require CAP_NET_ADMIN in target netns for unattached ioctls Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 422/776] bpf: reject short IPv4/IPv6 inputs in bpf_prog_test_run_skb Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 423/776] Bluetooth: L2CAP: Fix printing wrong information if SDU length exceeds MTU Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 424/776] Bluetooth: hci_ldisc: Clear HCI_UART_PROTO_INIT on error Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 425/776] Bluetooth: fix locking in hci_conn_request_evt() with HCI_PROTO_DEFER Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 426/776] Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 427/776] net: phy: qcom: at803x: Use the correct bit to disable extended next page Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 428/776] sctp: fix missing encap_port propagation for GSO fragments Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 429/776] net, bpf: fix null-ptr-deref in xdp_master_redirect() for down master Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 430/776] drm/komeda: fix integer overflow in AFBC framebuffer size check Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 431/776] ASoC: sti: Return errors from regmap_field_alloc() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 432/776] ASoC: sti: use managed regmap_field allocations Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 433/776] dm cache: fix null-deref with concurrent writes in passthrough mode Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 434/776] dm cache: fix write path cache coherency " Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 435/776] dm cache policy smq: fix missing locks in invalidating cache blocks Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 436/776] dm cache: fix concurrent write failure in passthrough mode Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 437/776] dm cache: support shrinking the origin device Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 438/776] dm cache: fix dirty mapping checking in passthrough mode switching Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 439/776] dm cache metadata: fix memory leak on metadata abort retry Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 440/776] dm log: fix out-of-bounds write due to region_count overflow Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 441/776] spi: fsl-qspi: Use reinit_completion() for repeated operations Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 442/776] drm/sun4i: Fix resource leaks Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 443/776] dm init: ensure device probing has finished in dm-mod.waitfor= Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 444/776] fbdev: matroxfb: Mark variable with __maybe_unused to avoid W=1 build break Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 445/776] spi: hisi-kunpeng: prevent infinite while() loop in hisi_spi_flush_fifo Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 446/776] drm/msm/dsi: rename MSM8998 DSI version from V2_2_0 to V2_0_0 Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 447/776] drm/panel: simple: Correct G190EAN01 prepare timing Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 448/776] ALSA: core: Validate compress device numbers without dynamic minors Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 449/776] drm/amd/pm/ci: Use highest MCLK on CI when MCLK DPM is disabled Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 450/776] drm/amd/pm/ci: Disable MCLK DPM on problematic CI ASICs Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 451/776] drm/amd/pm/smu7: Fix SMU7 voltage dependency on display clock Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 452/776] drm/amd/pm/ci: Fix powertune defaults for Hawaii 0x67B0 Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 453/776] drm/amd/pm/ci: Clear EnabledForActivity field for memory levels Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 454/776] drm/amd/pm/ci: Fill DW8 fields from SMC Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 455/776] drm/amd/pm/smu7: Add SCLK cap for quirky Hawaii board Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 456/776] ALSA: hda/realtek: Whitespace fix Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 457/776] ALSA: hda/realtek: fix code style (ERROR: else should follow close brace }) Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 458/776] drm/msm/a6xx: Fix HLSQ register dumping Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 459/776] drm/msm/a6xx: Use barriers while updating HFI Q headers Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 460/776] pmdomain: ti: omap_prm: Fix a reference leak on device node Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 461/776] pmdomain: imx: scu-pd: Fix device_node reference leak during ->probe() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 462/776] ASoC: fsl_xcvr: Fix event generation in fsl_xcvr_arc_mode_put() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 463/776] ASoC: fsl_xcvr: Fix event generation in fsl_xcvr_mode_put() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 464/776] ASoC: fsl_easrc: Check the variable range in fsl_easrc_iec958_put_bits() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.15 465/776] ASoC: fsl_easrc: Fix value type in fsl_easrc_iec958_get_bits() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 466/776] ASoC: fsl_easrc: Change the type for iec958 channel status controls Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 467/776] PCI: Enable AtomicOps only if Root Port supports them Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 468/776] Documentation: fix a hugetlbfs reservation statement Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 469/776] selftest: memcg: skip memcg_sock test if address family not supported Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 470/776] PCI: Add PCIE_PME_TO_L2_TIMEOUT_US L2 ready timeout value Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 471/776] PCI: tegra194: Fix polling delay for L2 state Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 472/776] PCI: tegra194: Increase LTSSM poll time on surprise link down Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 473/776] PCI: tegra194: Disable LTSSM after transition to Detect " Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 474/776] PCI: tegra194: Use devm_gpiod_get_optional() to parse "nvidia,refclk-select" Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 475/776] PCI: tegra194: Disable direct speed change for Endpoint mode Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 476/776] ALSA: sc6000: Use standard print API Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 477/776] ALSA: sc6000: Keep the programmed board state in card-private data Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 478/776] ktest: Avoid undef warning when WARNINGS_FILE is unset Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 479/776] ktest: Honor empty per-test option overrides Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 480/776] ktest: Run POST_KTEST hooks on failure and cancellation Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 481/776] quota: Fix race of dquot_scan_active() with quota deactivation Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 482/776] gfs2: add some missing log locking Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 483/776] gfs2: prevent NULL pointer dereference during unmount Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 484/776] efi/capsule-loader: fix incorrect sizeof in phys array reallocation Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 485/776] ksmbd: fix use-after-free from async crypto on Qualcomm crypto engine Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 486/776] ARM: dts: mediatek: mt7623: fix efuse fallback compatible Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 487/776] memory: tegra124-emc: Fix dll_change check Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 488/776] memory: tegra30-emc: " Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 489/776] soc: qcom: ocmem: use scoped device node handling to simplify error paths Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 490/776] soc: qcom: ocmem: register reasons for probe deferrals Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 491/776] soc: qcom: ocmem: return -EPROBE_DEFER is ocmem is not available Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 492/776] arm64: dts: qcom: sdm845-xiaomi-beryllium: Mark l1a regulator as powered during boot Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 493/776] unshare: fix nsproxy leak in ksys_unshare() on set_cred_ucounts() failure Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 494/776] ocfs2/dlm: validate qr_numregions in dlm_match_regions() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 495/776] ocfs2/dlm: fix off-by-one in dlm_match_regions() region comparison Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 496/776] soc: qcom: aoss: compare against normalized cooling state Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 497/776] ocfs2: fix listxattr handling when the buffer is full Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 498/776] ocfs2: validate bg_bits during freefrag scan Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 499/776] ocfs2: validate group add input before caching Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 500/776] dmaengine: dw-axi-dmac: Remove unnecessary return statement from void function Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 501/776] dmaengine: mxs-dma: Fix missing return value from of_dma_controller_register() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 502/776] tracing: Rebuild full_name on each hist_field_name() call Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 503/776] ima: check return value of crypto_shash_final() in boot aggregate Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 504/776] HID: asus: make asus_resume adhere to linux kernel coding standards Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 505/776] HID: asus: do not abort probe when not necessary Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 506/776] mtd: physmap_of_gemini: Fix disabled pinctrl state check Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 507/776] mtd: spi-nor: core: correct the op.dummy.nbytes when check read operations Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 508/776] mtd: spi-nor: swp: check SR_TB flag when getting tb_mask Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 509/776] mtd: parsers: ofpart: call of_node_put() only in ofpart_fail path Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 510/776] mtd: parsers: ofpart: call of_node_get() for dedicated subpartitions Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 511/776] mtd: rawnand: sunxi: fix sunxi_nfc_hw_ecc_read_extra_oob Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 512/776] HID: usbhid: fix deadlock in hid_post_reset() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 513/776] pinctrl: pinctrl-pic32: Fix resource leak Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 514/776] perf branch: Avoid incrementing NULL Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 515/776] perf: tools: cs-etm: Fix print issue for Coresight debug in ETE/TRBE trace Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 516/776] pinctrl: abx500: Fix type of argument variable Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 517/776] perf expr: Return -EINVAL for syntax error in expr__find_ids() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 518/776] perf util: Kill die() prototype, dead for a long time Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 519/776] i3c: mipi-i3c-hci: fix IBI payload length calculation for final status Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 520/776] driver core: device.h: remove extern from function prototypes Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 521/776] driver core: Move dev_err_probe() to where it belogs Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 522/776] dev_printk: add new dev_err_probe() helpers Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 523/776] backlight: sky81452-backlight: Check return value of devm_gpiod_get_optional() in sky81452_bl_parse_dt() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 524/776] platform/surface: surfacepro3_button: Drop wakeup source on remove Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.15 525/776] leds: lgm-sso: Remove duplicate assignments for priv->mmap Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 526/776] tty: hvc: remove HVC_IUCV_MAGIC Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 527/776] tty: hvc_iucv: fix off-by-one in number of supported devices Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 528/776] platform/x86: panasonic-laptop: Fix OPTD notifier registration and cleanup Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 529/776] mfd: mc13xxx-core: Fix memory leak in mc13xxx_add_subdevice_pdata() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 530/776] nfs/blocklayout: Fix compilation error (`make W=1`) in bl_write_pagelist() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 531/776] fs/ntfs3: terminate the cached volume label after UTF-8 conversion Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 532/776] platform/x86: dell_rbu: avoid uninit value usage in packet_size_write() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 533/776] platform/x86: dell-wmi-sysman: bound enumeration string aggregation Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 534/776] RDMA/core: Prefer NLA_NUL_STRING Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 535/776] scsi: sg: Resolve soft lockup issue when opening /dev/sgX Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 536/776] scsi: target: core: Fix integer overflow in UNMAP bounds check Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 537/776] dt-bindings: clock: qcom,gcc-sc8180x: Add missing GDSCs Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 538/776] clk: qcom: gcc-sc8180x: " Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 539/776] clk: qcom: gcc-sc8180x: Use retention for USB power domains Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 540/776] clk: qcom: gcc-sc8180x: Use retention for PCIe " Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 541/776] clk: qcom: dispcc-sm8250: Use shared ops on the mdss vsync clk Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 542/776] clk: qcom: dispcc-sm8250: Enable parents for pixel clocks Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 543/776] clk: imx: imx6q: Fix device node reference leak in pll6_bypassed() Greg Kroah-Hartman
2026-05-30 16:04 ` Greg Kroah-Hartman [this message]
2026-05-30 16:04 ` [PATCH 5.15 545/776] clk: imx8mq: Correct the CSI PHY sels Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 546/776] clk: qoriq: avoid format string warning Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 547/776] clk: xgene: Fix mapping leak in xgene_pllclk_init() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 548/776] dt-bindings: clock: qcom,dispcc-sc7180: Define MDSS resets Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 549/776] clk: qcom: dispcc-sc7180: Add missing " Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 550/776] lib/hexdump: print_hex_dump_bytes() calls print_hex_dump_debug() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 551/776] crypto: sa2ul - Fix AEAD fallback algorithm names Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 552/776] crypto: ccp - copy IV using skcipher ivsize Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 553/776] PCMCIA: Fix garbled log messages for KERN_CONT Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 554/776] net/sched: sch_cake: fix NAT destination port not being updated in cake_update_flowkeys Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 555/776] nexthop: fix IPv6 route referencing IPv4 nexthop Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 556/776] net/sched: taprio: stop going through private ops for dequeue and peek Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 557/776] net/sched: taprio: replace safety precautions with comments Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 558/776] net/sched: taprio: continue with other TXQs if one dequeue() failed Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 559/776] net/sched: taprio: refactor one skb dequeue from TXQ to separate function Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 560/776] net/sched: taprio: rename close_time to end_time Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 561/776] net/sched: taprio: fix use-after-free in advance_sched() on schedule switch Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 562/776] tcp: annotate data-races around (tp->write_seq - tp->snd_nxt) Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 563/776] i40e: dont advertise IFF_SUPP_NOFCS Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 564/776] e1000e: Unroll PTP in probe error handling Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 565/776] ipv6: fix possible UAF in icmpv6_rcv() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 566/776] sctp: fix OOB write to userspace in sctp_getsockopt_peer_auth_chunks Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 567/776] dissector: do not set invalid PPP protocol Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 568/776] flow_dissector: Add number of vlan tags dissector Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 569/776] flow_dissector: Add PPPoE dissectors Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 570/776] pppoe: drop PFC frames Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 571/776] openvswitch: cap upcall PID array size and pre-size vport replies Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 572/776] netfilter: nft_osf: restrict it to ipv4 Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 573/776] netfilter: nfnetlink_osf: fix divide-by-zero in OSF_WSS_MODULO Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 574/776] netfilter: conntrack: remove sprintf usage Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 575/776] netfilter: xtables: restrict several matches to inet family Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 576/776] ipvs: fix MTU check for GSO packets in tunnel mode Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 577/776] netfilter: nfnetlink_osf: fix out-of-bounds read on option matching Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 578/776] netfilter: nfnetlink_osf: fix potential NULL dereference in ttl check Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 579/776] slip: reject VJ receive packets on instances with no rstate array Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 580/776] slip: bound decode() reads against the compressed packet length Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 581/776] arm64: dts: meson-gxl-p230: fix ethernet PHY interrupt number Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 582/776] ksmbd: destroy tree_conn_ida in ksmbd_session_destroy() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 583/776] ksmbd: scope conn->binding slowpath to bound sessions only Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 584/776] net/rds: zero per-item info buffer before handing it to visitors Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.15 585/776] net_sched: sch_hhf: annotate data-races in hhf_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 586/776] net/sched: sch_pie: annotate data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 587/776] net/sched: sch_fq_codel: remove data-races from fq_codel_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 588/776] net: sched: gred/red: remove unused variables in struct red_stats Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 589/776] net/sched: sch_red: annotate data-races in red_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 590/776] net/sched: sch_sfb: annotate data-races in sfb_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 591/776] nfp: fix swapped arguments in nfp_encode_basic_qdr() calls Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 592/776] tipc: fix double-free in tipc_buf_append() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 593/776] vhost_net: fix sleeping with preempt-disabled in vhost_net_busy_poll() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 594/776] fs/adfs: validate nzones in adfs_validate_bblk() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 595/776] rtc: abx80x: Disable alarm feature if no interrupt attached Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 596/776] fbdev: offb: fix PCI device reference leak on probe failure Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 597/776] mailbox: mailbox-test: free channels on probe error Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 598/776] cgroup/rdma: fix integer overflow in rdmacg_try_charge() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 599/776] mailbox: add sanity check for channel array Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 600/776] mailbox: mailbox-test: dont free the reused channel Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 601/776] mailbox: mailbox-test: initialize struct earlier Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 602/776] mailbox: mailbox-test: make data_ready a per-instance variable Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 603/776] btrfs: fix double-decrement of bytes_may_use in submit_one_async_extent() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 604/776] tracing: branch: Fix inverted check on stat tracer registration Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 605/776] netfilter: arp_tables: fix IEEE1394 ARP payload parsing Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 606/776] drm/amdgpu: fix spelling typos Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 607/776] drm/amdgpu/uvd3.1: Dont validate the firmware when already validated Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 608/776] drm/amdgpu/gfx6: Support harvested SI chips with disabled TCCs (v2) Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 609/776] netfilter: xt_policy: fix strict mode inbound policy matching Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 610/776] netfilter: nf_conntrack_sip: dont use simple_strtoul Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 611/776] scsi: sr: Add memory allocation failure handling for get_capabilities() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 612/776] cdrom, scsi: sr: propagate read-only status to block layer via set_disk_ro() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 613/776] netdevsim: zero initialize struct iphdr in dummy sk_buff Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 614/776] net: sched: sch_netem: Refactor code in 4-state loss generator Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 615/776] net/sched: netem: fix probability gaps in 4-state loss model Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 616/776] net/sched: netem: fix queue limit check to include reordered packets Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 617/776] net/sched: netem: validate slot configuration Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 618/776] net: sched: choke: remove unused variables in struct choke_sched_data Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 619/776] net/sched: sch_choke: annotate data-races in choke_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 620/776] net/sched: sch_fq_pie: annotate data-races in fq_pie_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 621/776] vrf: Fix a potential NPD when removing a port from a VRF Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 622/776] net: usb: rtl8150: fix use-after-free in rtl8150_start_xmit() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 623/776] net: usb: rtl8150: free skb on usb_submit_urb() failure in xmit Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 624/776] NFC: trf7970a: Ignore antenna noise when checking for RF field Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 625/776] net: phy: dp83869: fix setting CLK_O_SEL field Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 626/776] ASoC: codecs: ab8500: Fix casting of private data Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 627/776] netfilter: skip recording stale or retransmitted INIT Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 628/776] sctp: discard stale INIT after handshake completion Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 629/776] ipv4: rename and move ip_route_output_tunnel() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 630/776] ipv4: remove "proto" argument from udp_tunnel_dst_lookup() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 631/776] ipv4: add new arguments to udp_tunnel_dst_lookup() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 632/776] ipv6: rename and move ip6_dst_lookup_tunnel() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 633/776] bareudp: fix NULL pointer dereference in bareudp_fill_metadata_dst() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 634/776] net/sched: sch_cake: annotate data-races in cake_dump_stats() (V) Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 635/776] ALSA: hda/conexant: add a new hda codec SN6140 Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 636/776] ALSA: hda/conexant: fix some typos Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 637/776] ALSA: hda/conexant: Renaming the codec with device ID 0x1f86 and 0x1f87 Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 638/776] ALSA: hda/conexant: Fix missing error check for jack detection Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 639/776] drm/amd/display: Allow DCE link encoder without AUX registers Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 640/776] drm/amd/display: Read EDID from VBIOS embedded panel info Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 641/776] btrfs: tracepoints: fix sleep while in atomic context in btrfs_sync_file() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 642/776] SUNRPC: Check if the xprt is connected before handling sysfs reads Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 643/776] SUNRPC: Do not dereference non-socket transports in sysfs Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 644/776] flow_dissector: do not dissect PPPoE PFC frames Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.15 645/776] flow_dissector: Do not count vlan tags inside tunnel payload Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 646/776] net/sched: sch_pie: annotate more data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 647/776] crypto: af_alg - Cap AEAD AD length to 0x80000000 Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 648/776] i40e: Cleanup PTP pins on probe failure Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 649/776] audit: fix incorrect inheritable capability in CAPSET records Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 650/776] netfilter: nft_ct: fix missing expect put in obj eval Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 651/776] net: atlantic: preserve PCI wake-from-D3 on shutdown when WOL enabled Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 652/776] audit: enforce AUDIT_LOCKED for AUDIT_TRIM and AUDIT_MAKE_EQUIV Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 653/776] KVM: Reject wrapped offset in kvm_reset_dirty_gfn() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 654/776] KVM: x86: Fix Xen hypercall tracepoint argument assignment Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 655/776] drm/i915/dp: Fix VSC dynamic range signaling for RGB formats Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 656/776] ALSA: usb-audio: Bound MIDI endpoint descriptor scans Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 657/776] ceph: fix a buffer leak in __ceph_setxattr() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 658/776] powerpc/warp: Fix error handling in pika_dtm_thread Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 659/776] libceph: Fix potential out-of-bounds access in osdmap_decode() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 660/776] libceph: Fix potential null-ptr-deref in decode_choose_args() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 661/776] libceph: Fix potential out-of-bounds access in crush_decode() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 662/776] libceph: handle rbtree insertion error in decode_choose_args() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 663/776] iommu/vt-d: Disable DMAR for Intel Q35 IGFX Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 664/776] drm/i915: skip __i915_request_skip() for already signaled requests Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 665/776] drm/panfrost: Fix wait_bo ioctl leaking positive return from dma_resv_wait_timeout() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 666/776] drm/gma500/oaktrail_hdmi: fix i2c adapter leak on setup Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 667/776] io-wq: check that the predecessor is hashed in io_wq_remove_pending() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 668/776] net/rds: reset op_nents when zerocopy page pin fails Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 669/776] io_uring: prevent opcode speculation Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 670/776] s390/debug: Reject zero-length input before trimming a newline Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 671/776] Revert "x86/vdso: Fix output operand size of RDPID" Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 672/776] net: dsa: sja1105: fix kasan out-of-bounds warning in sja1105_table_delete_entry() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 673/776] wifi: mac80211: check tdls flag in ieee80211_tdls_oper Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 674/776] KVM: x86: Acquire SRCU in KVM_GET_MP_STATE to protect guest memory accesses Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 675/776] Revert "s390/cio: Fix device lifecycle handling in css_alloc_subchannel()" Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 676/776] smb: client: reject userspace cifs.spnego descriptions Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 677/776] i3c: mipi-i3c-hci: Correct RING_CTRL_ABORT handling in DMA dequeue Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 678/776] sysfs: dont remove existing directory on update failure Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 679/776] hwmon: (pmbus/adm1266) widen blackbox-info buffer to I2C_SMBUS_BLOCK_MAX Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 680/776] ALSA: ua101: Reject too-short USB descriptors Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 681/776] ALSA: asihpi: Fix potential OOB array access at reading cache Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 682/776] net: wwan: iosm: fix potential memory leaks in ipc_imem_init() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 683/776] Bluetooth: bnep: Fix UAF read of dev->name Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 684/776] Bluetooth: hci_uart: fix UAFs and race conditions in close and init paths Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 685/776] phonet/pep: disable BH around forwarded sk_receive_skb() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 686/776] net: bcmgenet: keep RBUF EEE/PM disabled Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 687/776] netfilter: ip6t_hbh: reject oversized option lists Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 688/776] netfilter: nf_queue: hold bridge skb->dev while queued Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 689/776] netfilter: ipset: stop hash:* range iteration at end Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 690/776] ring-buffer: Fix reporting of missed events in iterator Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 691/776] vsock/vmci: fix UAF when peer resets connection during handshake Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 692/776] wifi: ath11k: clear shared SRNG pointer state on restart Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 693/776] ipv4: raw: reject IP_HDRINCL packets with ihl < 5 Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 694/776] ixgbevf: fix use-after-free in VEPA multicast source pruning Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 695/776] wifi: cfg80211: advance loop vars in cfg80211_merge_profile() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 696/776] tracing: Do not call map->ops->elt_free() if elt_alloc() fails Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 697/776] scsi: isci: Fix use-after-free in device removal path Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 698/776] spi: sprd: fix error pointer deref after DMA setup failure Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 699/776] spi: ti-qspi: fix use-after-free " Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 700/776] RDMA/siw: Reject MPA FPDU length underflow before signed receive math Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 701/776] device property: set fwnode->secondary to NULL in fwnode_init() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 702/776] drm/bridge: it66121: acquire reset GPIO in probe Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 703/776] drm/bridge: megachips: remove bridge when irq request fails Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 704/776] drm/amd/display: Fix integer overflow in bios_get_image() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.15 705/776] drm/amd/display: Validate payload length and link_index in dc_process_dmub_aux_transfer_async Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 706/776] batman-adv: mcast: fix use-after-free in orig_node RCU release Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 707/776] batman-adv: clear current gateway during teardown Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 708/776] batman-adv: dat: handle forward allocation error Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 709/776] batman-adv: fix fragment reassembly length accounting Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 710/776] batman-adv: fix tp_meter counter underflow during shutdown Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 711/776] batman-adv: frag: disallow unicast fragment in fragment Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 712/776] batman-adv: bla: fix report_work leak on backbone_gw purge Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 713/776] batman-adv: tp_meter: avoid use of uninit sender vars Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 714/776] batman-adv: tt: fix negative last_changeset_len Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 715/776] batman-adv: tt: fix negative tt_buff_len Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 716/776] hwmon: (pmbus/adm1266) seed timestamp from the real-time clock Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 717/776] hwmon: (pmbus/adm1266) reject implausible blackbox record_count Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 718/776] hwmon: (pmbus/adm1266) include PEC byte in pmbus_block_xfer read buffer Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 719/776] hwmon: (pmbus/adm1266) bounce blackbox records through a protocol-sized buffer Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 720/776] hwmon: (pmbus/adm1266) cap PDIO scan in get_multiple at ADM1266_PDIO_NR Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 721/776] hwmon: (pmbus/adm1266) dont clobber GPIO bits before PDIO read in get_multiple Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 722/776] hwmon: (pmbus/adm1266) register the gpio_chip after pmbus_do_probe() Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 723/776] hwmon: (pmbus/adm1266) register the nvmem device " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 724/776] hwmon: (pmbus/adm1266) reject short block-read responses in the GPIO accessors Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 725/776] firmware: arm_ffa: Check for NULL FF-A ID table while driver registration Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 726/776] firmware: arm_ffa: Skip free_pages on RX buffer alloc failure Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 727/776] kunit: config: Enable KUNIT_DEBUGFS by default Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 728/776] kunit: config: KUNIT_DEBUGFS should depend on DEBUG_FS Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 729/776] ARM: integrator: Fix early initialization Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 730/776] netfilter: x_tables: unregister the templates first Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 731/776] netfilter: arp_tables: allow use of arpt_do_table as hookfn Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 732/776] netfilter: arptables: allow xtables-nft only builds Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 733/776] netfilter: xtables: " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 734/776] netfilter: ebtables: " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 735/776] netfilter: xtables: fix up kconfig dependencies Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 736/776] netfilter: arptables: Select NETFILTER_FAMILY_ARP when building arp_tables.c Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 737/776] netfilter: Make legacy configs user selectable Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 738/776] netfilter: Exclude LEGACY TABLES on PREEMPT_RT Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 739/776] netfilter: x_tables: add and use xt_unregister_table_pre_exit Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 740/776] netfilter: x_tables: add and use xtables_unregister_table_exit Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 741/776] netfilter: ebtables: move to two-stage removal scheme Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 742/776] netfilter: ebtables: close dangling table module init race Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 743/776] netfilter: bridge: eb_tables: close " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 744/776] tcp: Fix imbalanced icsk_accept_queue count Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 745/776] ice: fix locking in ice_dcb_rebuild() Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 746/776] phy: marvell: mvebu-a3700-utmi: fix incorrect USB2_PHY_CTRL register access Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 747/776] irqchip/ath79-cpu: Remove unused function Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 748/776] net: ethernet: cortina: Make RX SKB per-port Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 749/776] net: ethernet: cortina: Drop half-assembled SKB Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 750/776] net: ethernet: cortina: Carry over frag counter Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 751/776] net: ethernet: cs89x0: remove stale CONFIG_MACH_MX31ADS reference Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 752/776] wifi: ath11k: fix error path leaks in some WMI WOW calls Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 753/776] HID: quirks: really enable the intended work around for appledisplay Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 754/776] ethtool: fix ethnl_bitmap32_not_zero() bit interval semantics Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 755/776] drm/msm: Fix iommu_map_sgtable() return value check and avoid WARN Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 756/776] 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 5.15 757/776] net: tls: prevent chain-after-chain in plain text SG Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 758/776] drm/msm/snapshot: fix dumping of the unaligned regions Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 759/776] net: dsa: mt7530: sync driver-specific behavior of MT7531 variants Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 760/776] net: dsa: mt7530: fix FDB entries not aging out with short timeout Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 761/776] net: dsa: mt7530: rename mt753x_bpdu_port_fw enum to mt753x_to_cpu_fw Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 762/776] net: dsa: mt7530: preserve VLAN tags on trapped link-local frames Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 763/776] net: mana: Fix TOCTOU double-fetch of hwc_msg_id from DMA buffer Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 764/776] platform/x86: adv_swbutton: Check ACPI_HANDLE() against NULL Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.15 765/776] platform/x86: hp_accel: Check ACPI_COMPANION() " Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 766/776] platform/x86: intel-hid: Check ACPI_HANDLE() " Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 767/776] platform/x86: intel-vbtn: " Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 768/776] RDMA/rtrs: Fix use-after-free in path file creation cleanup Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 769/776] net: bridge: Flush multicast groups when snooping is disabled Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 770/776] bridge: mcast: Fix a possible use-after-free when removing a bridge port Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 771/776] tracing: Avoid NULL return from hist_field_name() on truncation Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 772/776] net: ag71xx: check error for platform_get_irq Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 773/776] string: add mem_is_zero() helper to check if memory area is all zeros Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 774/776] gpiolib: cdev: use !mem_is_zero() instead of memchr_inv(s, 0, n) Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 775/776] gpio: cdev: check if uAPI v2 config attributes are correctly zeroed Greg Kroah-Hartman
2026-05-30 16:08 ` [PATCH 5.15 776/776] net: mana: validate rx_req_idx to prevent out-of-bounds array access Greg Kroah-Hartman
2026-05-30 17:15 ` [PATCH 5.15 000/776] 5.15.209-rc1 review Brett A C Sheffield
2026-06-01 2:10 ` Ron Economos
2026-06-01 8:57 ` Pavel Machek
2026-06-01 17:14 ` 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=20260530160254.233905191@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=Frank.Li@nxp.com \
--cc=abel.vesa@oss.qualcomm.com \
--cc=patches@lists.linux.dev \
--cc=peng.fan@nxp.com \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=ustc.gu@gmail.com \
/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