Linux kernel -stable discussions
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Wei Fang <wei.fang@nxp.com>,
	Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.18 625/957] net: enetc: correct the command BD ring consumer index
Date: Wed, 20 May 2026 18:18:28 +0200	[thread overview]
Message-ID: <20260520162148.084294989@linuxfoundation.org> (raw)
In-Reply-To: <20260520162134.554764788@linuxfoundation.org>

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

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

From: Wei Fang <wei.fang@nxp.com>

[ Upstream commit 759a32900b6f3db3d0f34a3b61123742723b50b4 ]

The command BD ring cousumer index register has the consumer index as
the lower 10 bits, and the bit 31 is SBE, which indicates whether a
system bus error occurred during execution of the CBD command. So if a
system bus error occurs, reading the register will get the SBE bit set.

However, the current implementation directly uses the register value as
the consumer index without masking it. Therefore, if a system bus error
occurs, an incorrect consumer index will be obtained, causing errors in
the processing of the command BD ring. Thus, we need to mask out the
other bits to obtain the correct consumer index.

In addition, this patch adds a check for the SBE bit after the polling
loop and returns an error if the bit is set.

Fixes: 4701073c3deb ("net: enetc: add initial netc-lib driver to support NTMP")
Signed-off-by: Wei Fang <wei.fang@nxp.com>
Link: https://patch.msgid.link/20260415060833.2303846-2-wei.fang@nxp.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/ethernet/freescale/enetc/ntmp.c         | 13 ++++++++++---
 drivers/net/ethernet/freescale/enetc/ntmp_private.h |  2 ++
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ethernet/freescale/enetc/ntmp.c b/drivers/net/ethernet/freescale/enetc/ntmp.c
index 0c1d343253bfb..b188eb2d40c0d 100644
--- a/drivers/net/ethernet/freescale/enetc/ntmp.c
+++ b/drivers/net/ethernet/freescale/enetc/ntmp.c
@@ -55,7 +55,7 @@ int ntmp_init_cbdr(struct netc_cbdr *cbdr, struct device *dev,
 	spin_lock_init(&cbdr->ring_lock);
 
 	cbdr->next_to_use = netc_read(cbdr->regs.pir);
-	cbdr->next_to_clean = netc_read(cbdr->regs.cir);
+	cbdr->next_to_clean = netc_read(cbdr->regs.cir) & NETC_CBDRCIR_INDEX;
 
 	/* Step 1: Configure the base address of the Control BD Ring */
 	netc_write(cbdr->regs.bar0, lower_32_bits(cbdr->dma_base_align));
@@ -98,7 +98,7 @@ static void ntmp_clean_cbdr(struct netc_cbdr *cbdr)
 	int i;
 
 	i = cbdr->next_to_clean;
-	while (netc_read(cbdr->regs.cir) != i) {
+	while ((netc_read(cbdr->regs.cir) & NETC_CBDRCIR_INDEX) != i) {
 		cbd = ntmp_get_cbd(cbdr, i);
 		memset(cbd, 0, sizeof(*cbd));
 		i = (i + 1) % cbdr->bd_num;
@@ -135,12 +135,19 @@ static int netc_xmit_ntmp_cmd(struct ntmp_user *user, union netc_cbd *cbd)
 	cbdr->next_to_use = i;
 	netc_write(cbdr->regs.pir, i);
 
-	err = read_poll_timeout_atomic(netc_read, val, val == i,
+	err = read_poll_timeout_atomic(netc_read, val,
+				       (val & NETC_CBDRCIR_INDEX) == i,
 				       NETC_CBDR_DELAY_US, NETC_CBDR_TIMEOUT,
 				       true, cbdr->regs.cir);
 	if (unlikely(err))
 		goto cbdr_unlock;
 
+	if (unlikely(val & NETC_CBDRCIR_SBE)) {
+		dev_err(user->dev, "Command BD system bus error\n");
+		err = -EIO;
+		goto cbdr_unlock;
+	}
+
 	dma_rmb();
 	/* Get the writeback command BD, because the caller may need
 	 * to check some other fields of the response header.
diff --git a/drivers/net/ethernet/freescale/enetc/ntmp_private.h b/drivers/net/ethernet/freescale/enetc/ntmp_private.h
index 34394e40fddd4..3459cc45b6103 100644
--- a/drivers/net/ethernet/freescale/enetc/ntmp_private.h
+++ b/drivers/net/ethernet/freescale/enetc/ntmp_private.h
@@ -12,6 +12,8 @@
 
 #define NTMP_EID_REQ_LEN	8
 #define NETC_CBDR_BD_NUM	256
+#define NETC_CBDRCIR_INDEX	GENMASK(9, 0)
+#define NETC_CBDRCIR_SBE	BIT(31)
 
 union netc_cbd {
 	struct {
-- 
2.53.0




  parent reply	other threads:[~2026-05-20 17:45 UTC|newest]

Thread overview: 970+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-20 16:08 [PATCH 6.18 000/957] 6.18.32-rc1 review Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 001/957] blk-cgroup: wait for blkcg cleanup before initializing new disk Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 002/957] fs/omfs: reject s_sys_blocksize smaller than OMFS_DIR_START Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 003/957] fs/mbcache: cancel shrink work before destroying the cache Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 004/957] md/raid1: fix the comparing region of interval tree Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 005/957] drbd: Balance RCU calls in drbd_adm_dump_devices() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 006/957] loop: fix partition scan race between udev and loop_reread_partitions() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 007/957] nilfs2: reject zero bd_oblocknr in nilfs_ioctl_mark_blocks_dirty() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 008/957] blk-cgroup: fix disk reference leak in blkcg_maybe_throttle_current() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 009/957] pstore/ram: fix resource leak when ioremap() fails Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 010/957] erofs: verify metadata accesses for file-backed mounts Greg Kroah-Hartman
2026-05-20 17:22   ` Gao Xiang
2026-05-20 16:08 ` [PATCH 6.18 011/957] erofs: include the trailing NUL in FS_IOC_GETFSLABEL Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 012/957] md: fix array_state=clear sysfs deadlock Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 013/957] erofs: handle 48-bit blocks/uniaddr for extra devices Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 014/957] dm: add WQ_PERCPU to alloc_workqueue users Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 015/957] md: remove unused static md_wq workqueue Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 016/957] md: wake raid456 reshape waiters before suspend Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 017/957] btrfs: fix deadlock between reflink and transaction commit when using flushoncommit Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 018/957] OPP: debugfs: Use performance level if available to distinguish between rates Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 019/957] OPP: Move break out of scoped_guard in dev_pm_opp_xlate_required_opp() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 020/957] ACPI: x86: cmos_rtc: Clean up address space handler driver Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 021/957] ACPI: x86: cmos_rtc: Improve coordination with ACPI TAD driver Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 022/957] devres: fix missing node debug info in devm_krealloc() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 023/957] thermal/drivers/spear: Fix error condition for reading st,thermal-flags Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 024/957] debugfs: check for NULL pointer in debugfs_create_str() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 025/957] debugfs: fix placement of EXPORT_SYMBOL_GPL for debugfs_create_str() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 026/957] soundwire: debugfs: initialize firmware_file to empty string Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 027/957] amd-pstate: Fix memory leak in amd_pstate_epp_cpu_init() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 028/957] amd-pstate: Update cppc_req_cached in fast_switch case Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 029/957] cpufreq: Pass the policy to cpufreq_driver->adjust_perf() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 030/957] PCI: use generic driver_override infrastructure Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 031/957] platform/wmi: " Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 032/957] vdpa: " Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 033/957] s390/cio: " Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 034/957] bus: fsl-mc: " Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 035/957] irqchip/irq-pic32-evic: Address warning related to wrong printf() formatter Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 036/957] hrtimer: Avoid pointless reprogramming in __hrtimer_start_range_ns() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 037/957] hrtimer: Reduce trace noise in hrtimer_start() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 038/957] perf/amd/ibs: Preserve PhyAddrVal bit when clearing PhyAddr MSR Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 039/957] perf/amd/ibs: Avoid calling perf_allow_kernel() from the IBS NMI handler Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 040/957] x86/tdx: Fix the typo in TDX_ATTR_MIGRTABLE Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 041/957] rust: sync: atomic: Remove bound `T: Sync` for `Atomic::from_ptr()` Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 042/957] sparc64: vdso: Link with -z noexecstack Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 043/957] scripts/gdb: timerlist: Adapt to move of tk_core Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 044/957] locking: Fix rwlock support in <linux/spinlock_up.h> Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 045/957] sched/topology: Compute sd_weight considering cpuset partitions Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 046/957] sched/topology: Fix sched_domain_span() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 047/957] irqchip/renesas-rzg2l: Fix error path in rzg2l_irqc_common_probe() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 048/957] ASoC: Intel: avs: Check maximum valid CPUID leaf Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 049/957] ASoC: Intel: avs: Include CPUID header at file scope Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 050/957] x86/vdso: Clean up remnants of VDSO32_NOTE_MASK Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 051/957] firmware: dmi: Correct an indexing error in dmi.h Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 052/957] sched: Make class_schedulers avoid pushing current, and get rid of proxy_tag_curr() Greg Kroah-Hartman
2026-05-20 18:32   ` John Stultz
2026-05-20 16:08 ` [PATCH 6.18 053/957] sched/rt: Skip group schedulable check with rt_group_sched=0 Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 054/957] wifi: mwifiex: Fix memory leak in mwifiex_11n_aggregate_pkt() Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 055/957] wifi: rtlwifi: pci: fix possible use-after-free caused by unfinished irq_prepare_bcn_tasklet Greg Kroah-Hartman
2026-05-20 16:08 ` [PATCH 6.18 056/957] bpf: test_run: Fix the null pointer dereference issue in bpf_lwt_xmit_push_encap Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 057/957] wifi: ieee80211: split mesh definitions out Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 058/957] wifi: ieee80211: split HT " Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 059/957] wifi: ieee80211: split VHT " Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 060/957] wifi: ieee80211: split HE " Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 061/957] wifi: ieee80211: split EHT " Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 062/957] wifi: ieee80211: fix definition of EHT-MCS 15 in MRU Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 063/957] dpaa2: add independent dependencies for FSL_DPAA2_SWITCH Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 064/957] dpaa2: compile dpaa2 even CONFIG_FSL_DPAA2_ETH=n Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 065/957] s390/bpf: Zero-extend bpf prog return values and kfunc arguments Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 066/957] powerpc/pgtable-frag: Fix bad page state in pte_frag_destroy Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 067/957] params: Replace __modinit with __init_or_module Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 068/957] module: Fix freeing of charp module parameters when CONFIG_SYSFS=n Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 069/957] wifi: libertas: use USB anchors for tracking in-flight URBs Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 070/957] wifi: libertas: dont kill URBs in interrupt context Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 071/957] tools/nolibc: implement %m if errno is not defined Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 072/957] tools/nolibc/printf: Change variables c to ch and tmpbuf[] to outbuf[] Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 073/957] tools/nolibc/printf: Move snprintf length check to callback Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 074/957] wifi: mt76: mt7996: fix the behavior of radar detection Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 075/957] wifi: mt76: mt7996: fix iface combination for different chipsets Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 076/957] wifi: mt76: mt7996: Set mtxq->wcid just for primary link Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 077/957] wifi: mt76: mt7996: Reset mtxq->idx if primary link is removed in mt7996_vif_link_remove() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 078/957] wifi: mt76: mt7996: Clear wcid pointer in mt7996_mac_sta_deinit_link() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 079/957] wifi: mt76: mt7996: Reset ampdu_state state in case of failure in mt7996_tx_check_aggr() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 080/957] wifi: mt76: mt7921: Reset ampdu_state state in case of failure in mt76_connac2_tx_check_aggr() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 081/957] wifi: mt76: mt7925: Fix incorrect MLO mode in firmware control Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 082/957] wifi: mt76: mt7615: fix use_cts_prot support Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 083/957] wifi: mt76: mt7915: " Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 084/957] wifi: mt76: mt7925: prevent NULL pointer dereference in mt7925_tx_check_aggr() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 085/957] wifi: mt76: mt7925: prevent NULL vif dereference in mt7925_mac_write_txwi Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 086/957] wifi: mt76: mt7996: fix FCS error flag check in RX descriptor Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 087/957] wifi: mt76: mt7921: Place upper limit on station AID Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 088/957] wifi: mt76: Fix memory leak destroying device Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 089/957] wifi: mt76: mt7925: cqm rssi low/high event notify Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 090/957] wifi: mt76: mt7925: drop puncturing handling from BSS change path Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 091/957] wifi: mt76: mt7925: fix potential deadlock in mt7925_roc_abort_sync Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 092/957] wifi: mt76: mt7921: fix potential deadlock in mt7921_roc_abort_sync Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 093/957] wifi: mt76: fix deadlock in remain-on-channel Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 094/957] arm64: cpufeature: Make PMUVer and PerfMon unsigned Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 095/957] wifi: mt76: mt7996: fix wrong DMAD length when using MAC TXP Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 096/957] wifi: mt76: mt7996: fix struct mt7996_mcu_uni_event Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 097/957] wifi: mt76: mt7915: fix use-after-free bugs in mt7915_mac_dump_work() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 098/957] wifi: mt76: mt7996: fix use-after-free bugs in mt7996_mac_dump_work() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 099/957] wifi: mt76: mt7921: fix 6GHz regulatory update on connection Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 100/957] wifi: mt76: mt7996: Add missing CHANCTX_STA_CSA property Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 101/957] wifi: mt76: mt7996: Remove link pointer dependency in mt7996_mac_sta_remove_links() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 102/957] wifi: mt76: mt7996: use correct link_id when filling TXD and TXP Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 103/957] wifi: mt76: mt7996: Switch to the secondary link if the default one is removed Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 104/957] wifi: mt76: mt7996: Decrement sta counter removing the link in mt7996_mac_reset_sta_iter() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 105/957] wifi: mt76: fix multi-radio on-channel scanning Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 106/957] wifi: mt76: support upgrading passive scans to active Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 107/957] wifi: mt76: mt7996: fix RRO EMU configuration Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 108/957] bpf: Fix refcount check in check_struct_ops_btf_id() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 109/957] bpf: Use RCU-safe iteration in dev_map_redirect_multi() SKB path Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 110/957] bpf: Fix variable length stack write over spilled pointers Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 111/957] bpf,arc_jit: Fix missing newline in pr_err messages Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 112/957] wifi: rtw89: phy: fix uninitialized variable access in rtw89_phy_cfo_set_crystal_cap() Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 113/957] vfio: refactor vfio_pci_mmap_huge_fault function Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 114/957] drivers/vfio_pci_core: Change PXD_ORDER check from switch case to if/else block Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 115/957] r8152: fix incorrect register write to USB_UPHY_XTAL Greg Kroah-Hartman
2026-05-20 16:09 ` [PATCH 6.18 116/957] powerpc/crash: fix backup region offset update to elfcorehdr Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 117/957] powerpc/crash: Update backup region offset in elfcorehdr on memory hotplug Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 118/957] selftests/powerpc: Suppress -Wmaybe-uninitialized with GCC 15 Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 119/957] bpf: Fix abuse of kprobe_write_ctx via freplace Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 120/957] macvlan: annotate data-races around port->bc_queue_len_used Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 121/957] bpf: fix end-of-list detection in cgroup_storage_get_next_key() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 122/957] bpf: Fix stale offload->prog pointer after constant blinding Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 123/957] net: ethernet: ti-cpsw:: rename soft_reset() function Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 124/957] net: ethernet: ti-cpsw: fix linking built-in code to modules Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 125/957] wifi: brcmfmac: Fix error pointer dereference Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 126/957] wifi: mac80211: handle VHT EXT NSS in ieee80211_determine_our_sta_mode() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 127/957] bpf: Drop task_to_inode and inet_conn_established from lsm sleepable hooks Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 128/957] bpf: reject negative CO-RE accessor indices in bpf_core_parse_spec() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 129/957] wifi: ath10k: fix station lookup failure during disconnect Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 130/957] bpf: Support negative offsets, BPF_SUB, and alu32 for linked register tracking Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 131/957] bpf: Fix linked reg delta tracking when src_reg == dst_reg Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 132/957] arm64: entry: Dont preempt with SError or Debug masked Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 133/957] ACPI: AGDI: fix missing newline in error message Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 134/957] arm64: kexec: Remove duplicate allocation for trans_pgd Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 135/957] macsec: Support VLAN-filtering lower devices Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 136/957] net: bcmgenet: fix off-by-one in bcmgenet_put_txcb Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 137/957] net: bcmgenet: fix leaking free_bds Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 138/957] net: bcmgenet: fix racing timeout handler Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 139/957] net: airoha: Add dma_rmb() and READ_ONCE() in airoha_qdma_rx_process() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 140/957] eth: fbnic: Use wake instead of start Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 141/957] netfilter: xt_socket: enable defrag after all other checks Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 142/957] netfilter: nft_fwd_netdev: check ttl/hl before forwarding Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 143/957] bpf: fix mm lifecycle in open-coded task_vma iterator Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 144/957] bpf: switch task_vma iterator from mmap_lock to per-VMA locks Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 145/957] bpf: return VMA snapshot from task_vma iterator Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 146/957] bpf: Fix RCU stall in bpf_fd_array_map_clear() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 147/957] net: hamradio: 6pack: fix uninit-value in sixpack_receive_buf Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 148/957] net: airoha: Add airoha_ppe_get_num_stats_entries() and airoha_ppe_get_num_total_stats_entries() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 149/957] net: airoha: Add airoha_eth_soc_data struct Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 150/957] net: airoha: Generalize airoha_ppe2_is_enabled routine Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 151/957] net: airoha: Fix FE_PSE_BUF_SET configuration if PPE2 is available Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 152/957] bpf: Relax scalar id equivalence for state pruning Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 153/957] bpf: Enforce regsafe base id consistency for BPF_ADD_CONST scalars Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 154/957] selftests/bpf: fix __jited_unpriv tag name Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 155/957] net/sched: act_ct: Only release RCU read lock after ct_ft Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 156/957] selftests: netfilter: nft_tproxy.sh: adjust to socat changes Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 157/957] net: mana: Use pci_name() for debugfs directory naming Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 158/957] net: mana: Support HW link state events Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 159/957] net: mana: Move current_speed debugfs file to mana_init_port() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 160/957] net: airoha: Add missing RX_CPU_IDX() configuration in airoha_qdma_cleanup_rx_queue() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 161/957] bpf: Allow instructions with arena source and non-arena dest registers Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 162/957] selftests/bpf: Fix reg_bounds to match new tnum-based refinement Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 163/957] net/rds: Optimize rds_ib_laddr_check Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 164/957] net/rds: Restrict use of RDS/IB to the initial network namespace Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 165/957] bpf: Fix OOB in pcpu_init_value Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 166/957] ppp: require CAP_NET_ADMIN in target netns for unattached ioctls Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 167/957] net: ipa: Fix programming of QTIME_TIMESTAMP_CFG Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 168/957] net: ipa: Fix decoding EV_PER_EE for IPA v5.0+ Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 169/957] dt-bindings: net: dsa: nxp,sja1105: make spi-cpol optional for sja1110 Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 170/957] net: phy: fix a return path in get_phy_c45_ids() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 171/957] net/mlx5e: Fix features not applied during netdev registration Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 172/957] net/mlx5e: IPsec, fix ASO poll timeout with read_poll_timeout_atomic() Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 173/957] bpf: reject short IPv4/IPv6 inputs in bpf_prog_test_run_skb Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 174/957] Bluetooth: L2CAP: Fix printing wrong information if SDU length exceeds MTU Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 175/957] Bluetooth: hci_ldisc: Clear HCI_UART_PROTO_INIT on error Greg Kroah-Hartman
2026-05-20 16:10 ` [PATCH 6.18 176/957] Bluetooth: fix locking in hci_conn_request_evt() with HCI_PROTO_DEFER Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 177/957] Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 178/957] Bluetooth: SCO: check for codecs->num_codecs == 1 before assigning to sco_pi(sk)->codec Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 179/957] net: phy: qcom: at803x: Use the correct bit to disable extended next page Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 180/957] udp: Force compute_score to always inline Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 181/957] tcp: Dont set treq->req_usec_ts in cookie_tcp_reqsk_init() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 182/957] sctp: fix missing encap_port propagation for GSO fragments Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 183/957] net, bpf: fix null-ptr-deref in xdp_master_redirect() for down master Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 184/957] net: airoha: Add missing PPE configurations in airoha_ppe_hw_init() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 185/957] selftests/futex: Fix incorrect result reporting of futex_requeue test item Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 186/957] drm/komeda: fix integer overflow in AFBC framebuffer size check Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 187/957] drm/virtio: Allow importing prime buffers when 3D is enabled Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 188/957] ASoC: soc-compress: use function to clear symmetric params Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 189/957] PCI/TPH: Allow TPH enable for RCiEPs Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 190/957] PCI: endpoint: pci-epf-test: Dont free doorbell IRQ unless requested Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 191/957] PCI: endpoint: pci-ep-msi: Fix error unwind and prevent double alloc Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 192/957] drm/sun4i: backend: fix error pointer dereference Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 193/957] PCI: imx6: Fix device node reference leak in imx_pcie_probe() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 194/957] ASoC: SDCA: Update counting of SU/GE DAPM routes Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 195/957] crypto: inside-secure/eip93 - fix register definition Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 196/957] ASoC: sti: Return errors from regmap_field_alloc() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 197/957] ASoC: sti: use managed regmap_field allocations Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 198/957] dm cache: fix null-deref with concurrent writes in passthrough mode Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 199/957] dm cache: fix write path cache coherency " Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 200/957] dm cache: fix write hang " Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 201/957] dm cache policy smq: fix missing locks in invalidating cache blocks Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 202/957] dm cache: fix concurrent write failure in passthrough mode Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 203/957] dm cache: fix dirty mapping checking in passthrough mode switching Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 204/957] dm-mpath: dont stop probing paths at presuspend Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 205/957] platform/chrome: chromeos_tbmc: Drop wakeup source on remove Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 206/957] PCI: dwc: ep: Fix MSI-X Table Size configuration in dw_pcie_ep_set_msix() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 207/957] PCI: dwc: Invoke post_init in dw_pcie_resume_noirq() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 208/957] PCI: dwc: Perform cleanup in the error path of dw_pcie_resume_noirq() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 209/957] dm cache metadata: fix memory leak on metadata abort retry Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 210/957] dm log: fix out-of-bounds write due to region_count overflow Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 211/957] iopoll: fix function parameter names in read_poll_timeout_atomic() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 212/957] drm/bridge: cadence: cdns-mhdp8546-core: Set the mhdp connector earlier in atomic_enable() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 213/957] drm/bridge: cadence: cdns-mhdp8546-core: Add mode_valid hook to drm_bridge_funcs Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 214/957] drm/bridge: cadence: cdns-mhdp8546-core: Handle HDCP state in bridge atomic check Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 215/957] spi: nxp-fspi: Use reinit_completion() for repeated operations Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 216/957] spi: fsl-qspi: " Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 217/957] media: i2c: og01a1b: Fix V4L2 subdevice data initialization on probe Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 218/957] drm/amd/pm: Fix xgmi max speed reporting Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 219/957] selftests/sched_ext: Add missing error check for exit__load() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 220/957] drm/v3d: Handle error from drm_sched_entity_init() Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 221/957] drm/sun4i: Fix resource leaks Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 222/957] crypto: inside-secure/eip93 - register hash before authenc algorithms Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 223/957] iommu/riscv: Add IOTINVAL after updating DDT/PDT entries Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 224/957] iommu/riscv: Add missing GENERIC_MSI_IRQ Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 225/957] iommu/riscv: Stop polling when CQCSR reports an error Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 226/957] drm/amdgpu: Add default case in DVI mode validation Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 227/957] dm init: ensure device probing has finished in dm-mod.waitfor= Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 228/957] fbdev: matroxfb: Mark variable with __maybe_unused to avoid W=1 build break Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 229/957] crypto: tegra - Disable softirqs before finalizing request Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 230/957] crypto: atmel - Use unregister_{aeads,ahashes,skciphers} Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 231/957] crypto: atmel-aes - guard unregister on error in atmel_aes_register_algs Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 232/957] padata: Remove cpu online check from cpu add and removal Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 233/957] padata: Put CPU offline callback in ONLINE section to allow failure Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 234/957] PCI: dwc: rcar-gen4: Change EPC BAR alignment to 4K as per the documentation Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 235/957] drm/amdgpu/gfx10: look at the right prop for gfx queue priority Greg Kroah-Hartman
2026-05-20 16:11 ` [PATCH 6.18 236/957] drm/amdgpu/gfx11: " Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 237/957] spi: hisi-kunpeng: prevent infinite while() loop in hisi_spi_flush_fifo Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 238/957] drm/imagination: Switch reset_reason fields from enum to u32 Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 239/957] iommu/tegra241-cmdqv: Set supports_cmd op in tegra241_vcmdq_hw_init() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 240/957] iommu/tegra241-cmdqv: Update uAPI to clarify HYP_OWN requirement Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 241/957] drm/msm: add missing MODULE_DEVICE_ID definitions Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 242/957] drm/msm/dpu: fix mismatch between power and frequency Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 243/957] drm/msm/dsi: add the missing parameter description Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 244/957] drm/msm/dpu: dont try using 2 LMs if only one DSC is available Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 245/957] drm/msm/dsi: fix bits_per_pclk Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 246/957] drm/msm/dsi: fix hdisplay calculation for CMD mode panel Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 247/957] drm/msm/dsi: rename MSM8998 DSI version from V2_2_0 to V2_0_0 Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 248/957] ASoC: rockchip: rockchip_sai: Set slot width for non-TDM mode Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 249/957] drm/panel: sharp-ls043t1le01: make use of prepare_prev_first Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 250/957] drm/panel: simple: Correct G190EAN01 prepare timing Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 251/957] PCI: qcom: Advertise Hotplug Slot Capability with no Command Completion support Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 252/957] PCI: Use res_to_dev_res() in reassign_resources_sorted() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 253/957] PCI: Fix premature removal from realloc_head list during resource assignment Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 254/957] crypto: hisilicon/sec2 - prevent req used-after-free for sec Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 255/957] PCI: Fix alignment calculation for resource size larger than align Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 256/957] iommu/riscv: Skip IRQ count check when using MSI interrupts Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 257/957] iommu/riscv: Fix signedness bug Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 258/957] ALSA: core: Validate compress device numbers without dynamic minors Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 259/957] ASoC: amd: acp: update dmic_num logic for acp pdm dmic Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 260/957] drm/amd/pm/ci: Use highest MCLK on CI when MCLK DPM is disabled Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 261/957] drm/amd/pm/ci: Disable MCLK DPM on problematic CI ASICs Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 262/957] drm/amd/pm/smu7: Fix SMU7 voltage dependency on display clock Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 263/957] drm/amd/pm/ci: Fix powertune defaults for Hawaii 0x67B0 Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 264/957] drm/amd/pm/ci: Clear EnabledForActivity field for memory levels Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 265/957] drm/amd/pm/ci: Fill DW8 fields from SMC Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 266/957] drm/amd/pm/smu7: Add SCLK cap for quirky Hawaii board Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 267/957] drm/amdgpu/uvd4.2: Dont initialize UVD 4.2 when DPM is disabled Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 268/957] PCI/DPC: Log AER error info for DPC/EDR uncorrectable errors Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 269/957] hwmon: (aspeed-g6-pwm-tach): remove redundant driver remove callback Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 270/957] ALSA: hda/realtek: fix code style (ERROR: else should follow close brace }) Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 271/957] ASoC: SOF: Intel: hda: Place check before dereference Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 272/957] drm/msm/vma: Avoid lock in VM_BIND fence signaling path Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 273/957] drm/msm: Reject fb creation from _NO_SHARE objs Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 274/957] drm/msm: Fix VM_BIND UNMAP locking Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 275/957] drm/msm/a6xx: Fix HLSQ register dumping Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 276/957] drm/msm/shrinker: Fix can_block() logic Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 277/957] drm/msm/a6xx: Fix dumping A650+ debugbus blocks Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 278/957] drm/msm/a6xx: Use barriers while updating HFI Q headers Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 279/957] ALSA: hda/cmedia: Remove duplicate pin configuration parsing Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 280/957] pmdomain: ti: omap_prm: Fix a reference leak on device node Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 281/957] pmdomain: imx: scu-pd: Fix device_node reference leak during ->probe() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 282/957] PM: domains: De-constify fields in struct dev_pm_domain_attach_data Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 283/957] drm/msm/dpu: drop INTF_0 on MSM8953 Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 284/957] ASoC: fsl_micfil: Add access property for "VAD Detected" Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 285/957] ASoC: fsl_micfil: Fix event generation in hwvad_put_enable() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 286/957] ASoC: fsl_micfil: Fix event generation in hwvad_put_init_mode() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 287/957] ASoC: fsl_micfil: Fix event generation in micfil_put_dc_remover_state() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 288/957] ASoC: fsl_micfil: Fix event generation in micfil_quality_set() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 289/957] ASoC: fsl_xcvr: Fix event generation in fsl_xcvr_arc_mode_put() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 290/957] ASoC: fsl_xcvr: Fix event generation in fsl_xcvr_mode_put() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 291/957] ASoC: fsl_easrc: Check the variable range in fsl_easrc_iec958_put_bits() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 292/957] ASoC: fsl_easrc: Fix value type in fsl_easrc_iec958_get_bits() Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 293/957] ASoC: fsl_easrc: Change the type for iec958 channel status controls Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 294/957] iommu/amd: Fix clone_alias() to use the original devices devid Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 295/957] iommu/riscv: Remove overflows on the invalidation path Greg Kroah-Hartman
2026-05-20 16:12 ` [PATCH 6.18 296/957] ASoC: qcom: qdsp6: topology: check widget type before accessing data Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 297/957] PCI: dwc: Fix type mismatch for kstrtou32_from_user() return value Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 298/957] crypto: qat - disable 4xxx AE cluster when lead engine is fused off Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 299/957] crypto: qat - disable 420xx " Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 300/957] crypto: qat - fix compression instance leak Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 301/957] crypto: qat - fix type mismatch in RAS sysfs show functions Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 302/957] crypto: iaa - fix per-node CPU counter reset in rebalance_wq_table() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 303/957] crypto: qat - use swab32 macro Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 304/957] ASoC: rsnd: Fix potential out-of-bounds access of component_dais[] Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 305/957] PCI: Enable AtomicOps only if Root Port supports them Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 306/957] PCI: mediatek-gen3: Prevent leaking IRQ domains when IRQ not found Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 307/957] gpu: nova-core: register: use field type for Into implementation Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 308/957] gpu: nova-core: bitfield: Move bitfield-specific code from register! into new macro Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 309/957] gpu: nova-core: bitfield: fix broken Default implementation Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 310/957] selftests/mm: skip migration tests if NUMA is unavailable Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 311/957] kho: make debugfs interface optional Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 312/957] Documentation: fix a hugetlbfs reservation statement Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 313/957] selftest: memcg: skip memcg_sock test if address family not supported Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 314/957] ALSA: scarlett2: Add missing sentinel initializer field Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 315/957] ASoC: SOF: compress: return the configured codec from get_params Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 316/957] PCI/NPEM: Set LED_HW_PLUGGABLE for hotplug-capable ports Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 317/957] ALSA: usb-audio: qcom: Fix incorrect type in enable_audio_stream Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 318/957] PCI: tegra194: Fix polling delay for L2 state Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 319/957] PCI: tegra194: Increase LTSSM poll time on surprise link down Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 320/957] PCI: tegra194: Disable LTSSM after transition to Detect " Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 321/957] PCI: tegra194: Dont force the device into the D0 state before L2 Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 322/957] PCI: tegra194: Disable PERST# IRQ only in Endpoint mode Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 323/957] PCI: tegra194: Use devm_gpiod_get_optional() to parse "nvidia,refclk-select" Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 324/957] PCI: tegra194: Disable direct speed change for Endpoint mode Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 325/957] PCI: tegra194: Set LTR message request before PCIe link up in " Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 326/957] PCI: tegra194: Allow system suspend when the Endpoint link is not up Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 327/957] PCI: tegra194: Free up Endpoint resources during remove() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 328/957] PCI: tegra194: Use DWC IP core version Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 329/957] PCI: dwc: Apply ECRC workaround to DesignWare 5.00a as well Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 330/957] PCI: tegra194: Remove unnecessary L1SS disable code Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 331/957] PCI: tegra194: Disable L1.2 capability of Tegra234 EP Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 332/957] PCI: tegra194: Fix CBB timeout caused by DBI access before core power-on Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 333/957] spi: mtk-snfi: unregister ECC engine on probe failure and remove() callback Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 334/957] ALSA: sc6000: Keep the programmed board state in card-private data Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 335/957] dm cache: fix missing return in invalidate_committeds error path Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 336/957] sched_ext: Track @ps rq lock across set_cpus_allowed_scx -> ops.set_cpumask Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 337/957] sched_ext: Fix ops.cgroup_move() invocation kf_mask and rq tracking Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 338/957] crypto: jitterentropy - replace long-held spinlock with mutex Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 339/957] ALSA: usb-audio: Exclude Scarlett 18i20 1st Gen from SKIP_IFACE_SETUP Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 340/957] ALSA: hda/realtek - fixed speaker no sound update Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 341/957] gfs2: Call unlock_new_inode before d_instantiate Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 342/957] fanotify: avoid/silence premature LSM capability checks Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 343/957] fanotify: call fanotify_events_supported() before path_permission() and security_path_notify() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 344/957] fuse: fix premature writetrhough request for large folio Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 345/957] dcache: export shrink_dentry_list() and add new helper d_dispose_if_unused() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 346/957] fuse: new work queue to periodically invalidate expired dentries Greg Kroah-Hartman
2026-05-20 18:45   ` Miklos Szeredi
2026-05-20 16:13 ` [PATCH 6.18 347/957] fuse: fix uninit-value in fuse_dentry_revalidate() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 348/957] ktest: Avoid undef warning when WARNINGS_FILE is unset Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 349/957] ktest: Honor empty per-test option overrides Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 350/957] ktest: Run POST_KTEST hooks on failure and cancellation Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 351/957] rtla: Fix -C/--cgroup interface Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 352/957] rtla: Replace atoi() with a robust strtoi() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 353/957] rtla/utils: Fix resource leak in set_comm_sched_attr() Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 354/957] gfs2: less aggressive low-memory log flushing Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 355/957] quota: Fix race of dquot_scan_active() with quota deactivation Greg Kroah-Hartman
2026-05-20 16:13 ` [PATCH 6.18 356/957] vfio: unhide vdev->debug_root Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 357/957] gfs2: add some missing log locking Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 358/957] gfs2: prevent NULL pointer dereference during unmount Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 359/957] efi/capsule-loader: fix incorrect sizeof in phys array reallocation Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 360/957] ksmbd: fix use-after-free from async crypto on Qualcomm crypto engine Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 361/957] arm64: dts: mediatek: mt8365: Describe infracfg-nao as a pure syscon Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 362/957] ARM: dts: mediatek: mt7623: fix efuse fallback compatible Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 363/957] memory: tegra124-emc: Fix dll_change check Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 364/957] memory: tegra30-emc: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 365/957] arm64: dts: imx8-apalis: Fix LEDs name collision Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 366/957] arm64: dts: imx91-11x11-evk: change usdhc tuning step for eMMC and SD Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 367/957] arm64: dts: rockchip: Make Jaguar PCIe-refclk pin use pull-up config Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 368/957] arm64: dts: imx8mp-evk: Enable pull select bit for PCIe regulator GPIO (M.2 W_DISABLE1) Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 369/957] iommufd: vfio compatibility extension check for noiommu mode Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 370/957] arm64: dts: qcom: sm6125-ginkgo: Fix missing msm-id subtype Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 371/957] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Remove board-id Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 372/957] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Correct reserved memory ranges Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 373/957] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Remove extcon Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 374/957] arm64: dts: qcom: sm6125-xiaomi-ginkgo: Fix reserved gpio ranges Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 375/957] arm64: dts: qcom: talos: Add missing clock-names to GCC Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 376/957] arm64: dts: mediatek: mt6795: Fix gpio-ranges pin count Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 377/957] arm64: dts: mediatek: mt7981b: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 378/957] arm64: dts: mediatek: mt7986a: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 379/957] iommufd/selftest: Fix page leaks in mock_viommu_{init,destroy} Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 380/957] arm64: dts: imx8mp-kontron: Fix touch reset configuration on DL devices Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 381/957] arm64: dts: imx8mp-kontron: Drop vmmc-supply to fix SD card on SMARC eval carrier Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 382/957] arm64: dts: imx8mp-hummingboard-pulse: fix mini-hdmi dsi port reference Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 383/957] arm64: dts: qcom: msm8953-xiaomi-vince: correct wled ovp value Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 384/957] arm64: dts: qcom: msm8953-xiaomi-daisy: fix backlight Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 385/957] arm64: dts: rockchip: Fix Bluetooth stability on LCKFB TaiShan Pi Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 386/957] Revert "arm64: dts: rockchip: add SPDIF audio to Beelink A1" Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 387/957] arm64: dts: rockchip: Correct Fan Supply for Gameforce Ace Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 388/957] arm64: dts: rockchip: Correct Joystick Axes on " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 389/957] soc: qcom: ocmem: make the core clock optional Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 390/957] soc: qcom: ocmem: register reasons for probe deferrals Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 391/957] soc: qcom: ocmem: return -EPROBE_DEFER is ocmem is not available Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 392/957] arm64: dts: rockchip: Fix RK3562 EVB2 model name Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 393/957] arm64: dts: rockchip: Add mphy reset to ufshc node Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 394/957] bus: rifsc: fix RIF configuration check for peripherals Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 395/957] arm64: dts: qcom: hamoa: correct Iris corners for the MXC rail Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 396/957] arm64: dts: qcom: lemans: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 397/957] arm64: dts: qcom: monaco: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 398/957] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 399/957] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 400/957] arm64: dts: qcom: sm8450: Fix GIC_ITS range length Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 401/957] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 402/957] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 403/957] arm64: dts: qcom: sm8750: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 404/957] arm64: dts: qcom: sm8550: Fix xo clock supply of platform SD host controller Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 405/957] arm64: dts: qcom: sm8650: Fix xo clock supply of " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 406/957] arm64: dts: qcom: hamoa: Fix xo clock supply of platform " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 407/957] arm64: dts: qcom: sm8450: Enable UHS-I SDR50 and SDR104 SD card modes Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 408/957] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 409/957] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 410/957] arm64: dts: qcom: sm7225-fairphone-fp4: Fix conflicting bias pinctrl Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 411/957] arm64: dts: qcom: sdm845-xiaomi-beryllium: Mark l1a regulator as powered during boot Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 412/957] arm64: dts: qcom: msm8917-xiaomi-riva: Fix board-id for all bootloader Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 413/957] arm64: dts: ti: k3-am62p5-sk: Disable MMC1 internal pulls on data pins Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 414/957] arm64: dts: ti: k3-am62-lp-sk: Enable internal pulls for MMC0 " Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 415/957] arm64: dts: ti: k3-am62-verdin: Fix SPI_1 GPIO CS pinctrl label Greg Kroah-Hartman
2026-05-20 16:14 ` [PATCH 6.18 416/957] arm64: dts: freescale: imx8mp-tqma8mpql-mba8mp-ras314: fix UART1 RTS/CTS muxing Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 417/957] arm64: dts: imx8mp-kontron: Fix boot order for PMIC and RTC Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 418/957] arm64: dts: imx8dxl-evk: Use audio-graph-card2 for wm8960-2 and wm8960-3 Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 419/957] arm64: dts: lx2160a: change i2c0 (iic1) pinmux mask to one bit Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 420/957] arm64: dts: lx2160a: remove duplicate pinmux nodes Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 421/957] arm64: dts: lx2160a: rename pinmux nodes for readability Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 422/957] arm64: dts: lx2160a: add sda gpio references for i2c bus recovery Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 423/957] arm64: dts: lx2160a: change zeros to hexadecimal in pinmux nodes Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 424/957] arm64: dts: lx2160a: complete pinmux for rcwsr12 configuration word Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 425/957] arm64: dts: imx8qm-mek: switch Type-C connector power-role to dual Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 426/957] arm64: dts: imx8qxp-mek: " Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 427/957] soc/tegra: cbb: Set ERD on resume for err interrupt Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 428/957] soc/tegra: cbb: Fix incorrect ARRAY_SIZE in fabric lookup tables Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 429/957] soc/tegra: cbb: Fix cross-fabric target timeout lookup Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 430/957] unshare: fix nsproxy leak in ksys_unshare() on set_cred_ucounts() failure Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 431/957] ocfs2/dlm: validate qr_numregions in dlm_match_regions() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 432/957] ocfs2/dlm: fix off-by-one in dlm_match_regions() region comparison Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 433/957] soc: qcom: llcc: fix v1 SB syndrome register offset Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 434/957] soc: qcom: aoss: compare against normalized cooling state Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 435/957] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 436/957] ARM: OMAP1: Fix DEBUG_LL and earlyprintk on OMAP16XX Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 437/957] arm64/xor: fix conflicting attributes for xor_block_template Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 438/957] slab: Introduce kmalloc_obj() and family Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 439/957] lib: kunit_iov_iter: fix memory leaks Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 440/957] ARM: dts: imx27-eukrea: replace interrupts with interrupts-extended Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 441/957] firmware: arm_ffa: Use the correct buffer size during RXTX_MAP Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 442/957] fwctl: Fix class init ordering to avoid NULL pointer dereference on device removal Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 443/957] ocfs2: fix listxattr handling when the buffer is full Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 444/957] ocfs2: validate bg_bits during freefrag scan Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 445/957] ocfs2: validate group add input before caching Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 446/957] dmaengine: dw-axi-dmac: Remove unnecessary return statement from void function Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 447/957] soundwire: bus: demote UNATTACHED state warnings to dev_dbg() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 448/957] soundwire: Intel: test bus.bpt_stream before assigning it Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 449/957] dmaengine: mxs-dma: Fix missing return value from of_dma_controller_register() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 450/957] soundwire: cadence: Clear message complete before signaling waiting thread Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 451/957] tracing: remove size parameter in __trace_puts() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 452/957] tracing: move tracing declarations from kernel.h to a dedicated header Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 453/957] tracing: move __printf() attribute on __ftrace_vbprintk() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 454/957] tracing: Rebuild full_name on each hist_field_name() call Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 455/957] hte: tegra194: remove Kconfig dependency on Tegra194 SoC Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 456/957] remoteproc: xlnx: Fix sram property parsing Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 457/957] stop_machine: Fix the documentation for a NULL cpus argument Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 458/957] remoteproc: imx_rproc: Check return value of regmap_attach_dev() in imx_rproc_mmio_detect_mode() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 459/957] ima: check return value of crypto_shash_final() in boot aggregate Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 460/957] HID: asus: make asus_resume adhere to linux kernel coding standards Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 461/957] HID: asus: do not abort probe when not necessary Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 462/957] mtd: physmap_of_gemini: Fix disabled pinctrl state check Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 463/957] ima_fs: Correctly create securityfs files for unsupported hash algos Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 464/957] dt-bindings: interrupt-controller: arm,gic-v3: Fix EPPI range Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 465/957] mtd: spi-nor: core: correct the op.dummy.nbytes when check read operations Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 466/957] mtd: spi-nor: sfdp: introduce smpt_read_dummy fixup hook Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 467/957] mtd: spi-nor: sfdp: introduce smpt_map_id " Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 468/957] mtd: spi-nor: update spi_nor_fixups::post_sfdp() documentation Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 469/957] mtd: spi-nor: swp: check SR_TB flag when getting tb_mask Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 470/957] mtd: parsers: ofpart: call of_node_put() only in ofpart_fail path Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 471/957] mtd: parsers: ofpart: call of_node_get() for dedicated subpartitions Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 472/957] cxl/pci: Check memdev driver binding status in cxl_reset_done() Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 473/957] mtd: rawnand: sunxi: fix sunxi_nfc_hw_ecc_read_extra_oob Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 474/957] mtd: spinand: Add missing check Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 475/957] mtd: spinand: Decouple write enable and write disable operations Greg Kroah-Hartman
2026-05-20 16:15 ` [PATCH 6.18 476/957] mtd: spinand: Create an array of operation templates Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 477/957] mtd: spinand: winbond: Rename IO_MODE register macro Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 478/957] mtd: spinand: winbond: Configure the IO mode after the dummy cycles Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 479/957] mtd: spinand: Gather all the bus interface steps in one single function Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 480/957] mtd: spinand: Add support for setting a bus interface Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 481/957] mtd: spinand: Give the bus interface to the configuration helper Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 482/957] mtd: spinand: winbond: Clarify when to enable the HS bit Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 483/957] HID: usbhid: fix deadlock in hid_post_reset() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 484/957] ext4: fix possible null-ptr-deref in mbt_kunit_exit() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 485/957] bpf, arm64: Fix off-by-one in check_imm signed range check Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 486/957] bpf, arm64: Remove redundant bpf_flush_icache() after pack allocator finalize Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 487/957] bpf, riscv: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 488/957] bpf, sockmap: Fix af_unix iter deadlock Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 489/957] bpf, sockmap: Fix af_unix null-ptr-deref in proto update Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 490/957] bpf, sockmap: Take state lock for af_unix iter Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 491/957] bpf: Fix precedence bug in convert_bpf_ld_abs alignment check Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 492/957] bpf: Fix NULL deref in map_kptr_match_type for scalar regs Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 493/957] bpf: allow UTF-8 literals in bpf_bprintf_prepare() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 494/957] libbpf: Prevent double close and leak of btf objects Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 495/957] bpf: Validate node_id in arena_alloc_pages() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 496/957] bpf, arm32: Reject BPF-to-BPF calls and callbacks in the JIT Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 497/957] perf trace: Fix IS_ERR() vs NULL check bug Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 498/957] pinctrl: pinctrl-pic32: Fix resource leak Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 499/957] perf trace: Avoid an ERR_PTR in syscall_stats Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 500/957] pinctrl: cy8c95x0: remove duplicate error message Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 501/957] pinctrl: cy8c95x0: Unify messages with help of dev_err_probe() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 502/957] pinctrl: cy8c95x0: Avoid returning positive values to user space Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 503/957] perf branch: Avoid incrementing NULL Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 504/957] perf: tools: cs-etm: Fix print issue for Coresight debug in ETE/TRBE trace Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 505/957] pinctrl: pinconf-generic: Fully validate pinmux property Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 506/957] pinctrl: realtek: Fix function signature for config argument Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 507/957] pinctrl: abx500: Fix type of argument variable Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 508/957] pinctrl: renesas: rzg2l: Fix save/restore of {IOLH,IEN,PUPD,SMT} registers Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 509/957] perf lock: Fix option value type in parse_max_stack Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 510/957] perf stat: Fix opt->value type for parse_cache_level Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 511/957] memblock: reserve_mem: fix end caclulation in reserve_mem_release_by_name() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 512/957] perf tools: Fix module symbol resolution for non-zero .text sh_addr Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 513/957] perf expr: Return -EINVAL for syntax error in expr__find_ids() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 514/957] ipmi: ssif_bmc: fix missing check for copy_to_user() partial failure Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 515/957] ipmi: ssif_bmc: fix message desynchronization after truncated response Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 516/957] ipmi: ssif_bmc: change log level to dbg in irq callback Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 517/957] perf cgroup: Update metric leader in evlist__expand_cgroup Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 518/957] pinctrl: sophgo: pinctrl-sg2042: Fix wrong module description Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 519/957] pinctrl: sophgo: pinctrl-sg2044: " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 520/957] perf maps: Fix fixup_overlap_and_insert that can break sorted by name order Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 521/957] perf maps: Fix copy_from " Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 522/957] perf util: Kill die() prototype, dead for a long time Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 523/957] i3c: master: dw-i3c: Fix missing reset assertion in remove() callback Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 524/957] i3c: master: renesas: Fix memory leak in renesas_i3c_i3c_xfers() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 525/957] i3c: dw: Fix memory leak in dw_i3c_master_i3c_xfers() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 526/957] i3c: master: Fix error codes at send_ccc_cmd Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 527/957] i3c: master: adi: Fix error propagation for CCCs Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 528/957] i3c: mipi-i3c-hci: fix IBI payload length calculation for final status Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 529/957] backlight: sky81452-backlight: Check return value of devm_gpiod_get_optional() in sky81452_bl_parse_dt() Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 530/957] platform/surface: surfacepro3_button: Drop wakeup source on remove Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 531/957] leds: lgm-sso: Remove duplicate assignments for priv->mmap Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 532/957] usb: typec: Fix error pointer dereference Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 533/957] tty: hvc_iucv: fix off-by-one in number of supported devices Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 534/957] usb: typec: ps883x: Fix Oops at unbind Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 535/957] platform/x86: panasonic-laptop: Fix OPTD notifier registration and cleanup Greg Kroah-Hartman
2026-05-20 16:16 ` [PATCH 6.18 536/957] platform/x86: barco-p50-gpio: normalize return value of gpio_get Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 537/957] mfd: mc13xxx-core: Fix memory leak in mc13xxx_add_subdevice_pdata() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 538/957] nfs/blocklayout: Fix compilation error (`make W=1`) in bl_write_pagelist() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 539/957] NFSD: fix nfs4_file access extra count in nfsd4_add_rdaccess_to_wrdeleg Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 540/957] platform/x86: asus-wmi: adjust screenpad power/brightness handling Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 541/957] platform/x86: asus-wmi: fix screenpad brightness range Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 542/957] tty: serial: ip22zilog: Fix section mispatch warning Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 543/957] fs/ntfs3: terminate the cached volume label after UTF-8 conversion Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 544/957] platform/x86: dell_rbu: avoid uninit value usage in packet_size_write() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 545/957] platform/x86: dell-wmi-sysman: bound enumeration string aggregation Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 546/957] RDMA/core: Prefer NLA_NUL_STRING Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 547/957] dt-bindings: clock: qcom: Add GCC video axi reset clock for Glymur Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 548/957] clk: qcom: gcc-glymur: Add video axi clock resets for glymur Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 549/957] clk: qcom: dispcc-glymur: use RCG2 ops for DPTX1 AUX clock source Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 550/957] clk: qcom: dispcc-sm8450: " Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 551/957] clk: sunxi-ng: sun55i-a523-r: Add missing r-spi module clock Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 552/957] scsi: sg: Fix sysctl sg-big-buff register during sg_init() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 553/957] scsi: sg: Resolve soft lockup issue when opening /dev/sgX Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 554/957] clk: qcom: dispcc-sc8280xp: remove CLK_SET_RATE_PARENT from byte_div_clk_src dividers Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 555/957] clk: qcom: dispcc-glymur: Fix DSI byte clock rate setting Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 556/957] clk: qcom: dispcc-milos: " Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 557/957] clk: qcom: dispcc-sm4450: " Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 558/957] clk: qcom: dispcc[01]-sa8775p: " Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 559/957] clk: renesas: r9a09g057: Add clock and reset entries for RTC Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 560/957] clk: renesas: r9a09g057: Add entries for RSCIs Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 561/957] clk: renesas: r9a09g057: Fix ordering of module clocks array Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 562/957] clk: renesas: r9a09g057: Remove entries for WDT{0,2,3} Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 563/957] scsi: target: core: Fix integer overflow in UNMAP bounds check Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 564/957] scsi: ufs: rockchip,rk3576-ufshc: dt-bindings: Add new mphy reset item Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 565/957] dt-bindings: clock: qcom,gcc-sc8180x: Add missing GDSCs Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 566/957] clk: qcom: gcc-sc8180x: " Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 567/957] clk: qcom: gcc-sc8180x: Use retention for USB power domains Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 568/957] clk: qcom: gcc-sc8180x: Use retention for PCIe " Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 569/957] clk: qcom: dispcc-sm8250: Use shared ops on the mdss vsync clk Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 570/957] clk: qcom: dispcc-sm8250: Enable parents for pixel clocks Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 571/957] clk: imx: imx6q: Fix device node reference leak in pll6_bypassed() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 572/957] clk: imx: imx6q: Fix device node reference leak in of_assigned_ldb_sels() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 573/957] clk: imx8mq: Correct the CSI PHY sels Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 574/957] x86/um/vdso: Drop VDSO64-y from Makefile Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 575/957] x86/um: fix vDSO installation Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 576/957] clk: qoriq: avoid format string warning Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 577/957] clk: xgene: Fix mapping leak in xgene_pllclk_init() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 578/957] dt-bindings: clock: qcom,dispcc-sc7180: Define MDSS resets Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 579/957] clk: qcom: dispcc-sc7180: Add missing " Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 580/957] clk: spacemit: ccu_mix: fix inverted condition in ccu_mix_trigger_fc() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 581/957] f2fs: use f2fs_filemap_get_folio() instead of f2fs_pagecache_get_page() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 582/957] f2fs: avoid reading already updated pages during GC Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 583/957] clk: qcom: gdsc: Fix error path on registration of multiple pm subdomains Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 584/957] lib/hexdump: print_hex_dump_bytes() calls print_hex_dump_debug() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 585/957] f2fs: expand scalability of f2fs mount option Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 586/957] f2fs: fix to preserve previous reserve_{blocks,node} value when remount Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 587/957] clk: qcom: gcc-x1e80100: Keep GCC USB QTB clock always ON Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 588/957] clk: visconti: pll: initialize clk_init_data to zero Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 589/957] f2fs: allow empty mount string for Opt_usr|grp|projjquota Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 590/957] f2fs: protect extension_list reading with sb_lock in f2fs_sbi_show() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 591/957] drm/i915/wm: Verify the correct plane DDB entry Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 592/957] virt: arm-cca-guest: fix error check for RSI_INCOMPLETE Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 593/957] crypto: eip93 - fix hmac setkey algo selection Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 594/957] crypto: sa2ul - Fix AEAD fallback algorithm names Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 595/957] crypto: ccp - copy IV using skcipher ivsize Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.18 596/957] erofs: unify lcn as u64 for 32-bit platforms Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 597/957] arm64: dts: imx8mp-debix-model-a: Correct PAD settings for PMIC_nINT Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 598/957] arm64: dts: imx8mp-debix-som-a: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 599/957] arm64: dts: imx8mp-navqp: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 600/957] arm64: dts: imx8mp-icore-mx8mp: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 601/957] arm64: dts: imx8mp-edm-g: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 602/957] arm64: dts: imx8mp-aristainetos3a-som-v1: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 603/957] arm64: dts: imx8mp-nitrogen-som: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 604/957] arm64: dts: imx8mp-sr-som: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 605/957] arm64: dts: imx8mp-ultra-mach-sbc: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 606/957] arm64: dts: imx8mp-dhcom-som: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 607/957] arm64: dts: imx8mp-data-modul-edm-sbc: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 608/957] PCMCIA: Fix garbled log messages for KERN_CONT Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 609/957] reset: amlogic: t7: Fix null reset ops Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 610/957] arm64: dts: imx8mm-emtop-som: Correct PAD settings for PMIC_nINT Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 611/957] arm64: dts: imx8mn-tqma8mqnl: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 612/957] arm64: dts: imx8mm-tqma8mqml: " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 613/957] arm64: dts: marvell: armada-37xx: use usb2-phy in USB3 controllers phy-names Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 614/957] pwm: stm32: Fix rounding issue for requests with inverted polarity Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 615/957] net/sched: act_mirred: fix wrong device for mac_header_xmit check in tcf_blockcast_redir Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 616/957] macvlan: fix macvlan_get_size() not reserving space for IFLA_MACVLAN_BC_CUTOFF Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 617/957] net/sched: sch_cake: fix NAT destination port not being updated in cake_update_flowkeys Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 618/957] nexthop: fix IPv6 route referencing IPv4 nexthop Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 619/957] net: airoha: Wait for NPU PPE configuration to complete in airoha_ppe_offload_setup() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 620/957] net/sched: taprio: fix use-after-free in advance_sched() on schedule switch Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 621/957] net: dsa: cpu_dp->orig_ethtool_ops might be NULL Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 622/957] net: dsa: use kernel data types for ethtool ops on conduit Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 623/957] net: dsa: append ethtool counters of all hidden ports to conduit Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 624/957] net: dsa: remove redundant netdev_lock_ops() from conduit ethtool ops Greg Kroah-Hartman
2026-05-20 16:18 ` Greg Kroah-Hartman [this message]
2026-05-20 16:18 ` [PATCH 6.18 626/957] net: enetc: fix NTMP DMA use-after-free issue Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 627/957] smb: move smb_version_values to common/smbglob.h Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 628/957] ksmbd: fix use-after-free in smb2_open during durable reconnect Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 629/957] tcp: move tp->chrono_type next tp->chrono_stat[] Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 630/957] tcp: inline tcp_chrono_start() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 631/957] tcp: annotate data-races in tcp_get_info_chrono_stats() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 632/957] tcp: add data-race annotations around tp->data_segs_out and tp->total_retrans Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 633/957] tcp: add data-races annotations around tp->reordering, tp->snd_cwnd Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 634/957] tcp: annotate data-races around tp->snd_ssthresh Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 635/957] tcp: annotate data-races around tp->delivered and tp->delivered_ce Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 636/957] tcp: add data-race annotations for TCP_NLA_SNDQ_SIZE Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 637/957] tcp: annotate data-races around tp->bytes_sent Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 638/957] tcp: annotate data-races around tp->bytes_retrans Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 639/957] tcp: annotate data-races around tp->dsack_dups Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 640/957] tcp: annotate data-races around tp->reord_seen Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 641/957] tcp: better handle TCP_TX_DELAY on established flows Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 642/957] tcp: annotate data-races around tp->srtt_us Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 643/957] tcp: annotate data-races around tp->timeout_rehash Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 644/957] tcp: annotate data-races around (tp->write_seq - tp->snd_nxt) Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 645/957] tcp: annotate data-races around tp->plb_rehash Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 646/957] ice: fix adjust timer programming for E830 devices Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 647/957] ice: update PCS latency settings for E825 10G/25Gb modes Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 648/957] ice: Remove jumbo_remove step from TX path Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 649/957] ice: fix double-free of tx_buf skb Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 650/957] ice: fix ICE_AQ_LINK_SPEED_M for 200G Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 651/957] i40e: dont advertise IFF_SUPP_NOFCS Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 652/957] iavf: fix wrong VLAN mask for legacy Rx descriptors L2TAG2 Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 653/957] e1000e: Unroll PTP in probe error handling Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 654/957] ipv6: fix possible UAF in icmpv6_rcv() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 655/957] sctp: fix OOB write to userspace in sctp_getsockopt_peer_auth_chunks Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.18 656/957] pppoe: drop PFC frames Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 657/957] net/mlx5: Fix HCA caps leak on notifier init failure Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 658/957] openvswitch: cap upcall PID array size and pre-size vport replies Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 659/957] net: airoha: Fix possible TX queue stall in airoha_qdma_tx_napi_poll() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 660/957] netfilter: nft_osf: restrict it to ipv4 Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 661/957] netfilter: nfnetlink_osf: fix divide-by-zero in OSF_WSS_MODULO Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 662/957] netfilter: conntrack: remove sprintf usage Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 663/957] netfilter: xtables: restrict several matches to inet family Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 664/957] netfilter: nat: use kfree_rcu to release ops Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 665/957] ipvs: fix MTU check for GSO packets in tunnel mode Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 666/957] netfilter: nfnetlink_osf: fix out-of-bounds read on option matching Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 667/957] netfilter: nfnetlink_osf: fix potential NULL dereference in ttl check Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 668/957] slip: reject VJ receive packets on instances with no rstate array Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 669/957] slip: bound decode() reads against the compressed packet length Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 670/957] net/sched: sch_dualpi2: drain both C-queue and L-queue in dualpi2_change() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 671/957] arm64: dts: amlogic: meson-axg: Add missing cache information to cpu0 Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 672/957] arm64: dts: meson-gxl-p230: fix ethernet PHY interrupt number Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 673/957] pwm: atmel-tcb: Cache clock rates and mark chip as atomic Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 674/957] ksmbd: destroy tree_conn_ida in ksmbd_session_destroy() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 675/957] ksmbd: destroy async_ida in ksmbd_conn_free() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 676/957] ksmbd: fix durable fd leak on ClientGUID mismatch in durable v2 open Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 677/957] ksmbd: scope conn->binding slowpath to bound sessions only Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 678/957] net: validate skb->napi_id in RX tracepoints Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 679/957] bnge: fix initial HWRM sequence Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 680/957] bnge: remove unsupported backing store type Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 681/957] net/rds: zero per-item info buffer before handing it to visitors Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 682/957] ice: fix timestamp interrupt configuration for E825C Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 683/957] ice: perform PHY soft reset for E825C ports at initialization Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 684/957] ice: fix ready bitmap check for non-E822 devices Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 685/957] ice: fix ice_ptp_read_tx_hwtstamp_status_eth56g Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 686/957] net_sched: sch_hhf: annotate data-races in hhf_dump_stats() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 687/957] net/sched: sch_pie: annotate data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 688/957] net/sched: sch_fq_codel: remove data-races from fq_codel_dump_stats() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 689/957] net/sched: sch_red: annotate data-races in red_dump_stats() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 690/957] net/sched: sch_sfb: annotate data-races in sfb_dump_stats() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 691/957] net: airoha: ppe: Dynamically allocate foe_check_time array in airoha_ppe struct Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 692/957] net: airoha: ppe: Move PPE memory info in airoha_eth_soc_data struct Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 693/957] net: airoha: Refactor src port configuration in airhoha_set_gdm2_loopback Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 694/957] net: airoha: Add AN7583 SoC support Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 695/957] net: airoha: Add the capability to consume out-of-order DMA tx descriptors Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 696/957] net: airoha: Add missing bits in airoha_qdma_cleanup_tx_queue() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 697/957] net: dsa: realtek: rtl8365mb: fix mode mask calculation Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 698/957] net: airoha: Move ndesc initialization at end of airoha_qdma_init_rx_queue() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 699/957] net: airoha: Rework the code flow in airoha_remove() and in airoha_probe() error path Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 700/957] net: airoha: Add size check for TX NAPIs in airoha_qdma_cleanup() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 701/957] net: mana: Init link_change_work before potential error paths in probe Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 702/957] net: mana: Guard mana_remove against double invocation Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 703/957] net: mana: Move hardware counter stats from per-port to per-VF context Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 704/957] net: mana: Add standard counter rx_missed_errors Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 705/957] net: mana: Dont overwrite port probe error with add_adev result Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 706/957] net: mana: Handle SKB if TX SGEs exceed hardware limit Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 707/957] net: mana: Handle hardware recovery events when probing the device Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 708/957] net: mana: Implement ndo_tx_timeout and serialize queue resets per port Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 709/957] net: mana: Fix EQ leak in mana_remove on NULL port Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 710/957] vsock/virtio: fix MSG_ZEROCOPY pinned-pages accounting Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 711/957] virtio_net: sync rss_trailer.max_tx_vq on queue_pairs change via VQ_PAIRS_SET Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 712/957] nfp: fix swapped arguments in nfp_encode_basic_qdr() calls Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 713/957] tcp: send a challenge ACK on SEG.ACK > SND.NXT Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 714/957] tipc: fix double-free in tipc_buf_append() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 715/957] vhost_net: fix sleeping with preempt-disabled in vhost_net_busy_poll() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.18 716/957] nstree: fix func. parameter kernel-doc warnings Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 717/957] eventpoll: use hlist_is_singular_node() in __ep_remove() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 718/957] eventpoll: split __ep_remove() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 719/957] eventpoll: kill __ep_remove() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 720/957] eventpoll: drop vestigial __ prefix from ep_remove_{file,epi}() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 721/957] eventpoll: move epi_fget() up Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 722/957] eventpoll: fix ep_remove struct eventpoll / struct file UAF Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 723/957] fs/adfs: validate nzones in adfs_validate_bblk() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 724/957] rtc: abx80x: Disable alarm feature if no interrupt attached Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 725/957] kbuild: builddeb - avoid recompiles for non-cross-compiles Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 726/957] fbdev: offb: fix PCI device reference leak on probe failure Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 727/957] tools/power turbostat.8: Document the "--force" option Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 728/957] tools/power turbostat: Use strtoul() for iteration parsing Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 729/957] tools/power turbostat: Fix and document --header_iterations Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 730/957] tools/power turbostat: Fix unrecognized option -P Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 731/957] kbuild: Never respect CONFIG_WERROR / W=e to fixdep Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 732/957] mailbox: mtk-cmdq: Fix CURR and END addr for task insert case Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 733/957] mailbox: mailbox-test: free channels on probe error Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 734/957] sched/psi: fix race between file release and pressure write Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 735/957] cgroup/rdma: fix integer overflow in rdmacg_try_charge() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 736/957] mailbox: add sanity check for channel array Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 737/957] mailbox: mailbox-test: dont free the reused channel Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 738/957] mailbox: mailbox-test: initialize struct earlier Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 739/957] mailbox: mailbox-test: make data_ready a per-instance variable Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 740/957] fsnotify: fix inode reference leak in fsnotify_recalc_mask() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 741/957] btrfs: fix double-decrement of bytes_may_use in submit_one_async_extent() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 742/957] cgroup: Increment nr_dying_subsys_* from rmdir context Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 743/957] tracing: branch: Fix inverted check on stat tracer registration Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 744/957] nvmet-tcp: propagate nvmet_tcp_build_pdu_iovec() errors to its callers Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 745/957] netfilter: arp_tables: fix IEEE1394 ARP payload parsing Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 746/957] netfilter: nf_tables: use list_del_rcu for netlink hooks Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 747/957] nvme-pci: fix missed admin queue sq doorbell write Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 748/957] drm/amdgpu/gmc: Fix AMDGPU_GART_PLACEMENT_LOW to not overlap with VRAM Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 749/957] drm/amdgpu: fix AMDGPU_INFO_READ_MMR_REG Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 750/957] drm/amdgpu/uvd3.1: Dont validate the firmware when already validated Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 751/957] drm/amdgpu/gfx6: Support harvested SI chips with disabled TCCs (v2) Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 752/957] netfilter: xt_policy: fix strict mode inbound policy matching Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 753/957] netfilter: nf_conntrack_sip: dont use simple_strtoul Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 754/957] ASoC: amd: acp: Add DMI quirk for Valve Steam Deck OLED Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 755/957] spi: rockchip: Read ISR, not IMR, to detect cs-inactive IRQ Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 756/957] ASoC: tas2764: Mark die temp register as volatile Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 757/957] ASoC: tas2770: Fix order of operations for temperature calculation Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 758/957] drm/sysfb: ofdrm: fix PCI device reference leaks Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 759/957] drm/color-mgmt: Typo s/R332/RGB332/ Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 760/957] arm64/scs: Fix potential sign extension issue of advance_loc4 Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 761/957] ACPICA: Provide #defines for EINJV2 error types Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 762/957] ACPI: APEI: EINJ: Fix EINJV2 memory error injection Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 763/957] cdrom, scsi: sr: propagate read-only status to block layer via set_disk_ro() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 764/957] netdevsim: zero initialize struct iphdr in dummy sk_buff Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 765/957] net/sched: netem: fix probability gaps in 4-state loss model Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 766/957] net/sched: netem: fix queue limit check to include reordered packets Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 767/957] net/sched: netem: only reseed PRNG when seed is explicitly provided Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 768/957] net/sched: netem: validate slot configuration Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 769/957] net/sched: netem: fix slot delay calculation overflow Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 770/957] net/sched: netem: check for negative latency and jitter Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 771/957] net: airoha: stop net_device TX queue before updating CPU index Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 772/957] net: airoha: fix typo in function name Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 773/957] net: airoha: Do not wake all netdev TX queues in airoha_qdma_wake_netdev_txqs() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 774/957] net: airoha: Do not read uninitialized fragment address in airoha_dev_xmit() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 775/957] net/sched: sch_choke: annotate data-races in choke_dump_stats() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.18 776/957] net/sched: sch_fq_pie: annotate data-races in fq_pie_dump_stats() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 777/957] vrf: Fix a potential NPD when removing a port from a VRF Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 778/957] net: usb: rtl8150: fix use-after-free in rtl8150_start_xmit() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 779/957] net: usb: rtl8150: free skb on usb_submit_urb() failure in xmit Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 780/957] spi: amlogic-spisg: initialize completion before requesting IRQ Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 781/957] NFC: trf7970a: Ignore antenna noise when checking for RF field Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 782/957] net/sched: taprio: fix NULL pointer dereference in class dump Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 783/957] neigh: let neigh_xmit take skb ownership Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 784/957] tcp: make probe0 timer handle expired user timeout Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 785/957] netpoll: fix IPv6 local-address corruption Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 786/957] ALSA: usb-audio: Fix potential leak of pd at parsing UAC3 streams Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 787/957] sched/fair: Reimplement NEXT_BUDDY to align with EEVDF goals Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 788/957] sched/fair: Fix wakeup_preempt_fair() vs delayed dequeue Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 789/957] sched/fair: Clear rel_deadline when initializing forked entities Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 790/957] net: mctp i2c: check length before marking flow active Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 791/957] md/raid1,raid10: dont fail devices for invalid IO errors Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 792/957] md: add fallback to correct bitmap_ops on version mismatch Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 793/957] md: factor bitmap creation away from sysfs handling Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 794/957] md/md-bitmap: split bitmap sysfs groups Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 795/957] md/md-bitmap: add a none backend for bitmap grow Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 796/957] s390/mm: Fix phys_to_folio() usage in do_secure_storage_access() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 797/957] net: phy: dp83869: fix setting CLK_O_SEL field Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 798/957] drm/amdgpu/vcn: set no_user_fence for VCN v2.0 enc/dec rings Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 799/957] drm/amdgpu/vcn: set no_user_fence for VCN v2.5 " Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 800/957] drm/amdgpu/vcn: set no_user_fence for VCN v3.0 " Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 801/957] drm/amdgpu/vcn: set no_user_fence for VCN v4.0 enc ring Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 802/957] drm/amdgpu/vcn: set no_user_fence for VCN v4.0.3 " Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 803/957] drm/amdgpu/vcn: set no_user_fence for VCN v4.0.5 " Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 804/957] drm/amdgpu/vcn: set no_user_fence for VCN v5.0.0 " Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 805/957] drm/amdgpu/vcn: set no_user_fence for VCN v5.0.1 " Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 806/957] drm/amdgpu/jpeg: set no_user_fence for JPEG v2.0 ring Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 807/957] drm/amdgpu/jpeg: set no_user_fence for JPEG v2.5 ring Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 808/957] drm/amdgpu/jpeg: set no_user_fence for JPEG v3.0 ring Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 809/957] drm/amdgpu/jpeg: set no_user_fence for JPEG v4.0 ring Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 810/957] drm/amdgpu/jpeg: set no_user_fence for JPEG v4.0.3 ring Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 811/957] drm/amdgpu/jpeg: set no_user_fence for JPEG v4.0.5 ring Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 812/957] drm/amdgpu/jpeg: set no_user_fence for JPEG v5.0.0 ring Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 813/957] drm/amdgpu/jpeg: set no_user_fence for JPEG v5.0.1 ring Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 814/957] io_uring/napi: cap busy_poll_to 10 msec Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 815/957] net: psp: check for device unregister when creating assoc Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 816/957] net: psp: require admin permission for dev-set and key-rotate Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 817/957] ASoC: codecs: ab8500: Fix casting of private data Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 818/957] netfilter: skip recording stale or retransmitted INIT Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 819/957] sctp: discard stale INIT after handshake completion Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 820/957] bareudp: fix NULL pointer dereference in bareudp_fill_metadata_dst() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 821/957] net/sched: sch_cake: annotate data-races in cake_dump_stats() (III) Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 822/957] net/sched: sch_cake: annotate data-races in cake_dump_stats() (V) Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 823/957] netconsole: propagate device name truncation in dev_name_store() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 824/957] ALSA: hda/conexant: Fix missing error check for jack detection Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 825/957] ALSA: hda: cs35l56: Fix uninitialized value in cs35l56_hda_read_acpi() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 826/957] ALSA: hda/tas2781: Fix incorrect bit update for non-book-zero or book 0 pages >1 Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 827/957] futex: Prevent lockup in requeue-PI during signal/ timeout wakeup Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 828/957] drm/amd/display: Allow DCE link encoder without AUX registers Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 829/957] drm/amd/display: Allow constructing DCE6 link encoder without DDC Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 830/957] drm/amd/display: Allow constructing DCE8 " Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 831/957] drm/amd/display: Read EDID from VBIOS embedded panel info Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 832/957] drm/xe/debugfs: Correct printing of register whitelist ranges Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 833/957] drm/xe: Fix error cleanup in xe_exec_queue_create_ioctl() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 834/957] drm/xe/eustall: Fix drm_dev_put called before stream disable in close Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 835/957] drm/xe/gsc: Fix BO leak on error in query_compatibility_version() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.18 836/957] net: airoha: fix BQL imbalance in TX path Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 837/957] net: airoha: Do not return err in ndo_stop() callback Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 838/957] bonding: print churn state via netlink Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 839/957] bonding: 3ad: implement proper RCU rules for port->aggregator Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 840/957] page_pool: fix memory-provider leak in page_pool_create_percpu() error path Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 841/957] iavf: rename IAVF_VLAN_IS_NEW to IAVF_VLAN_ADDING Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 842/957] iavf: stop removing VLAN filters from PF on interface down Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 843/957] iavf: wait for PF confirmation before removing VLAN filters Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 844/957] iavf: add VIRTCHNL_OP_ADD_VLAN to success completion handler Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 845/957] ice: fix NULL pointer dereference in ice_reset_all_vfs() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 846/957] ice: fix infinite recursion in ice_cfg_tx_topo via ice_init_dev_hw Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 847/957] ice: fix missing SMA pin initialization in DPLL subsystem Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 848/957] ice: fix SMA and U.FL pin state changes affecting paired pin Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 849/957] ice: fix missing dpll notifications for SW pins Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 850/957] dpll: Allow associating dpll pin with a firmware node Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 851/957] dpll: Add notifier chain for dpll events Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 852/957] dpll: export __dpll_pin_change_ntf() for use under dpll_lock Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 853/957] ice: add dpll peer notification for paired SMA and U.FL pins Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 854/957] net: tls: fix strparser anchor skb leak on offload RX setup failure Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 855/957] sfc: fix error code in efx_devlink_info_running_versions() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 856/957] net/sched: cls_flower: revert unintended changes Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 857/957] kselftest/arm64: Include <asm/ptrace.h> for user_gcs definition Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 858/957] arm64: Reserve an extra page for early kernel mapping Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 859/957] futex: Drop CLONE_THREAD requirement for private default hash alloc Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 860/957] Revert "pseries/papr-hvpipe: Fix race with interrupt handler" Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 861/957] Revert "papr-hvpipe: convert papr_hvpipe_dev_create_handle() to FD_PREPARE()" Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 862/957] PCI: Initialize temporary device in new_id_store() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 863/957] erofs: fix offset truncation when shifting pgoff on 32-bit platforms Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 864/957] bpf: Fix sync_linked_regs regarding BPF_ADD_CONST32 zext propagation Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 865/957] net: airoha: Fix a copy and paste bug in probe() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 866/957] fuse: fix race when disposing stale dentries Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 867/957] fuse: make sure dentry is evicted if stale Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 868/957] rtla: Fix parse_cpu_set() bug introduced by strtoi() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 869/957] net: airoha: Move entries to queue head in case of DMA mapping failure in airoha_dev_xmit() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 870/957] net: airoha: Move ndesc initialization at end of airoha_qdma_init_tx() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 871/957] net/sched: sch_pie: annotate more data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 872/957] net: airoha: Remove code duplication in airoha_regs.h Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 873/957] net: airoha: Use gdm port enum value whenever possible Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 874/957] net: airoha: Fix VIP configuration for AN7583 SoC Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 875/957] net: mana: Fix use-after-free in reset service rescan path Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 876/957] net: mana: Init gf_stats_work before potential error paths in probe Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 877/957] sched/fair: Fix wakeup_preempt_fair() for not waking up task Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 878/957] sched/fair: Revert force wakeup preemption Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 879/957] crypto: af_alg - Cap AEAD AD length to 0x80000000 Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 880/957] i40e: Cleanup PTP pins on probe failure Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 881/957] workqueue: Fix wq->cpu_pwq leak in alloc_and_link_pwqs() WQ_UNBOUND path Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 882/957] net: ena: PHC: Fix potential use-after-free in get_timestamp Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 883/957] netfilter: nf_conntrack_sip: get helper before allocating expectation Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 884/957] audit: fix incorrect inheritable capability in CAPSET records Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 885/957] net: ena: PHC: Check return code before setting timestamp output Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 886/957] cgroup/dmem: Return -ENOMEM on failed pool preallocation Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 887/957] idpf: fix double free and use-after-free in aux device error paths Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 888/957] Revert "ACPI: CPPC: Adjust debug messages in amd_set_max_freq_ratio() to warn" Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 889/957] netfilter: nft_ct: fix missing expect put in obj eval Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 890/957] net: atlantic: preserve PCI wake-from-D3 on shutdown when WOL enabled Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 891/957] audit: enforce AUDIT_LOCKED for AUDIT_TRIM and AUDIT_MAKE_EQUIV Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 892/957] KVM: Reject wrapped offset in kvm_reset_dirty_gfn() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 893/957] KVM: s390: pci: fix GAIT table indexing due to double-scaling pointer arithmetic Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 894/957] KVM: x86: Fix Xen hypercall tracepoint argument assignment Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 895/957] HID: pass the buffer size to hid_report_raw_event Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.18 896/957] HID: core: introduce hid_safe_input_report() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 897/957] HID: core: Fix size_t specifier in hid_report_raw_event() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 898/957] fuse: avoid 0x10 fault in fuse_readahead when max_pages == 0 Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 899/957] ata: libata-scsi: fix requeue of deferred ATA PASS-THROUGH commands Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 900/957] media: staging: imx: configure src_mux in csi_start Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 901/957] Bluetooth: btmtk: accept too short WMT FUNC_CTRL events Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 902/957] nvme-apple: Reset q->sq_tail during queue init Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 903/957] smb/client: fix possible infinite loop and oob read in symlink_data() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 904/957] drm/loongson: Use managed KMS polling Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 905/957] drm: Replace old pointer to new idr Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 906/957] drm/i915/dp: Fix VSC dynamic range signaling for RGB formats Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 907/957] platform/x86: intel: Move debugfs register before creating devices Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 908/957] platform/x86: lenovo-wmi-helpers: Move gamezone enums to wmi-helpers Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 909/957] platform/x86: lenovo-wmi-other: Fix tunable_attr_01 struct members Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 910/957] accel/rocket: Fix prep_bo ioctl leaking positive return from dma_resv_wait_timeout() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 911/957] ALSA: hda/realtek: Add mute LED quirk for HP Pavilion Laptop 16-ag0xxx Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 912/957] ALSA: hda/realtek: Add quirk for Samsung Galaxy Book5 360 headphone Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 913/957] ALSA: usb-audio: Bound MIDI 2.0 endpoint descriptor scans Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 914/957] ALSA: usb-audio: Bound MIDI " Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 915/957] ALSA: usb-audio: qcom: Check offload mapping failures Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 916/957] btrfs: only release the dirty pages io tree after successful writes Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 917/957] ceph: fix a buffer leak in __ceph_setxattr() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 918/957] ceph: fix BUG_ON in __ceph_build_xattrs_blob() due to stale blob size Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 919/957] io-wq: check that the predecessor is hashed in io_wq_remove_pending() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 920/957] iommu/amd: Bounds-check devid in __rlookup_amd_iommu() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 921/957] x86/kexec: Push kjump return address even for non-kjump kexec Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 922/957] xfs: fix memory leak on error in xfs_alloc_zone_info() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 923/957] virt: sev-guest: Do not use host-controlled page order in cleanup path Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 924/957] riscv: misaligned: Make enabling delegation depend on NONPORTABLE Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 925/957] powerpc/warp: Fix error handling in pika_dtm_thread Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 926/957] netfs: fix error handling in netfs_extract_user_iter() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 927/957] nfsd: fix file change detection in CB_GETATTR Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 928/957] irqchip/riscv-imsic: Clear interrupt move state during CPU offlining Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 929/957] irqchip/meson-gpio: Use the correct register in meson_s4_gpio_irq_set_type() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 930/957] irqchip/gic-v5: Move LPI allocation into the LPI domain Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 931/957] irqchip/gic-v5: Support range allocation for LPIs Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 932/957] irqchip/gic-v5: Allocate ITS parent LPIs as a range Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 933/957] libceph: Fix potential out-of-bounds access in osdmap_decode() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 934/957] libceph: Fix potential null-ptr-deref in decode_choose_args() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 935/957] libceph: Fix potential out-of-bounds access in crush_decode() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 936/957] libceph: handle rbtree insertion error in decode_choose_args() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 937/957] iommu/vt-d: Disable DMAR for Intel Q35 IGFX Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 938/957] iommu/vt-d: Fix oops due to out of scope access Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 939/957] iommu/vt-d: Avoid NULL pointer dereference or refcount corruption Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 940/957] drm/i915: skip __i915_request_skip() for already signaled requests Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 941/957] drm/panfrost: Fix wait_bo ioctl leaking positive return from dma_resv_wait_timeout() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 942/957] drm/xe/dma-buf: handle empty bo and UAF races Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 943/957] drm/xe/dma-buf: fix UAF with retry loop Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 944/957] drm/ttm: Convert -EAGAIN from dmem_cgroup_try_charge to -ENOSPC Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 945/957] drm/gma500/oaktrail_hdmi: fix i2c adapter leak on setup Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 946/957] drm/gma500/oaktrail_lvds: fix hang on init failure Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 947/957] drm/gma500/oaktrail_lvds: fix i2c adapter leaks on init Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 948/957] drm/v3d: Reject empty multisync extension to prevent infinite loop Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 949/957] eventfs: Use list_add_tail_rcu() for SRCU-protected children list Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 950/957] smb: client: Use FullSessionKey for AES-256 encryption key derivation Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 951/957] btrfs: do not mark inode incompressible after inline attempt fails Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 952/957] perf/x86/intel: Disable PMI for self-reloaded ACR events Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 953/957] sched_ext: Guard scx_dsq_move() against NULL kit->dsq after failed iter_new Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 954/957] sched_ext: Pass held rq to SCX_CALL_OP() for core_sched_before Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 955/957] f2fs: fix false alarm of lockdep on cp_global_sem lock Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.18 956/957] spi: sifive: Simplify clock handling with devm_clk_get_enabled() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.18 957/957] spi: sifive: fix controller deregistration Greg Kroah-Hartman
2026-05-20 17:21 ` [PATCH 6.18 000/957] 6.18.32-rc1 review Barry K. Nathan
2026-05-20 17:42 ` Florian Fainelli
2026-05-21  6:06 ` Wentao Guan
2026-05-21  6:14 ` Peter Schneider
2026-05-21  8:26   ` Greg Kroah-Hartman
2026-05-21  9:06 ` Pavel Machek
2026-05-21  9:18 ` Jon Hunter
2026-05-21  9:52 ` Peter Schneider
2026-05-21 10:33 ` Mark Brown

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=20260520162148.084294989@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=kuba@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=wei.fang@nxp.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