From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Li Nan <linan122@huawei.com>,
Yu Kuai <yukuai3@huawei.com>, Tejun Heo <tj@kernel.org>,
Jens Axboe <axboe@kernel.dk>, Bin Lan <bin.lan.cn@windriver.com>,
He Zhe <zhe.he@windriver.com>
Subject: [PATCH 5.15 233/373] blk-iocost: do not WARN if iocg was already offlined
Date: Tue, 29 Apr 2025 18:41:50 +0200 [thread overview]
Message-ID: <20250429161132.725979501@linuxfoundation.org> (raw)
In-Reply-To: <20250429161123.119104857@linuxfoundation.org>
5.15-stable review patch. If anyone has any objections, please let me know.
------------------
From: Li Nan <linan122@huawei.com>
commit 01bc4fda9ea0a6b52f12326486f07a4910666cf6 upstream.
In iocg_pay_debt(), warn is triggered if 'active_list' is empty, which
is intended to confirm iocg is active when it has debt. However, warn
can be triggered during a blkcg or disk removal, if iocg_waitq_timer_fn()
is run at that time:
WARNING: CPU: 0 PID: 2344971 at block/blk-iocost.c:1402 iocg_pay_debt+0x14c/0x190
Call trace:
iocg_pay_debt+0x14c/0x190
iocg_kick_waitq+0x438/0x4c0
iocg_waitq_timer_fn+0xd8/0x130
__run_hrtimer+0x144/0x45c
__hrtimer_run_queues+0x16c/0x244
hrtimer_interrupt+0x2cc/0x7b0
The warn in this situation is meaningless. Since this iocg is being
removed, the state of the 'active_list' is irrelevant, and 'waitq_timer'
is canceled after removing 'active_list' in ioc_pd_free(), which ensures
iocg is freed after iocg_waitq_timer_fn() returns.
Therefore, add the check if iocg was already offlined to avoid warn
when removing a blkcg or disk.
Signed-off-by: Li Nan <linan122@huawei.com>
Reviewed-by: Yu Kuai <yukuai3@huawei.com>
Acked-by: Tejun Heo <tj@kernel.org>
Link: https://lore.kernel.org/r/20240419093257.3004211-1-linan666@huaweicloud.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Bin Lan <bin.lan.cn@windriver.com>
Signed-off-by: He Zhe <zhe.he@windriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
block/blk-iocost.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
--- a/block/blk-iocost.c
+++ b/block/blk-iocost.c
@@ -1435,8 +1435,11 @@ static void iocg_pay_debt(struct ioc_gq
lockdep_assert_held(&iocg->ioc->lock);
lockdep_assert_held(&iocg->waitq.lock);
- /* make sure that nobody messed with @iocg */
- WARN_ON_ONCE(list_empty(&iocg->active_list));
+ /*
+ * make sure that nobody messed with @iocg. Check iocg->pd.online
+ * to avoid warn when removing blkcg or disk.
+ */
+ WARN_ON_ONCE(list_empty(&iocg->active_list) && iocg->pd.online);
WARN_ON_ONCE(iocg->inuse > 1);
iocg->abs_vdebt -= min(abs_vpay, iocg->abs_vdebt);
next prev parent reply other threads:[~2025-04-29 17:52 UTC|newest]
Thread overview: 387+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-29 16:37 [PATCH 5.15 000/373] 5.15.181-rc1 review Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 5.15 001/373] ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 5.15 002/373] tipc: fix memory leak in tipc_link_xmit Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 003/373] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-04-30 8:12 ` Tai, Gerrard
2025-05-01 8:03 ` Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 004/373] net: tls: explicitly disallow disconnect Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 005/373] net: ethtool: Dont call .cleanup_data when prepare_data fails Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 006/373] ata: sata_sx4: Drop pointless VPRINTK() calls and convert the remaining ones Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 007/373] ata: sata_sx4: Add error handling in pdc20621_i2c_read() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 008/373] nvmet-fcloop: swap list_add_tail arguments Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 009/373] net: ppp: Add bound checking for skb data on ppp_sync_txmung Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 010/373] nft_set_pipapo: fix incorrect avx2 match of 5th field octet Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 011/373] umount: Allow superblock owners to force umount Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 012/373] pm: cpupower: bench: Prevent NULL dereference on malloc failure Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 013/373] x86/cpu: Dont clear X86_FEATURE_LAHF_LM flag in init_amd_k8() on AMD when running in a virtual machine Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 014/373] perf: arm_pmu: Dont disable counter in armpmu_add() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 015/373] arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 016/373] xen/mcelog: Add __nonstring annotations for unterminated strings Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 017/373] HID: pidff: Convert infinite length from Linux API to PID standard Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 018/373] HID: pidff: Do not send effect envelope if its empty Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 019/373] HID: pidff: Fix null pointer dereference in pidff_find_fields Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 020/373] ALSA: hda: intel: Fix Optimus when GPU has no sound Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 021/373] ASoC: fsl_audmix: register card device depends on dais property Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 022/373] ALSA: usb-audio: Fix CME quirk for UF series keyboards Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 023/373] page_pool: avoid infinite loop to schedule delayed worker Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 024/373] jfs: Fix uninit-value access of imap allocated in the diMount() function Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 025/373] fs/jfs: cast inactags to s64 to prevent potential overflow Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 026/373] fs/jfs: Prevent integer overflow in AG size calculation Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 027/373] jfs: Prevent copying of nlink with value 0 from disk inode Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 028/373] jfs: add sanity check for agwidth in dbMount Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 029/373] ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 030/373] f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 031/373] ahci: add PCI ID for Marvell 88SE9215 SATA Controller Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 032/373] ext4: protect ext4_release_dquot against freezing Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 033/373] ext4: ignore xattrs past end Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 034/373] scsi: st: Fix array overflow in st_setup() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 035/373] wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 036/373] net: vlan: dont propagate flags on open Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 037/373] tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 038/373] Bluetooth: hci_uart: fix race during initialization Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 039/373] drm: allow encoder mode_set even when connectors change for crtc Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 040/373] drm/amd/display: Update Cursor request mode to the beginning prefetch always Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 041/373] drm: panel-orientation-quirks: Add support for AYANEO 2S Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 042/373] drm: panel-orientation-quirks: Add new quirk for GPD Win 2 Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 043/373] drm/bridge: panel: forbid initializing a panel with unknown connector type Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 044/373] drivers: base: devres: Allow to release group on device release Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 045/373] drm/amdkfd: clamp queue size to minimum Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 046/373] drm/amdkfd: Fix pqm_destroy_queue race with GPU reset Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 047/373] drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 048/373] PCI: vmd: Make vmd_dev::cfg_lock a raw_spinlock_t type Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 049/373] fbdev: omapfb: Add plane value check Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 050/373] ktest: Fix Test Failures Due to Missing LOG_FILE Directories Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 051/373] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 052/373] pwm: rcar: Simplify multiplication/shift logic Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 053/373] pwm: rcar: Improve register calculation Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 054/373] pwm: fsl-ftm: Handle clk_get_rate() returning 0 Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 055/373] bpf: Add endian modifiers to fix endian warnings Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 056/373] bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 057/373] ext4: dont treat fhandle lookup of ea_inode as FS corruption Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 058/373] media: i2c: adv748x: Fix test pattern selection mask Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 059/373] media: venus: hfi: add a check to handle OOB in sfr region Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 060/373] media: venus: hfi: add check to handle incorrect queue size Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 061/373] media: vim2m: print device name after registering device Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 062/373] media: siano: Fix error handling in smsdvb_module_init() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 063/373] xenfs/xensyms: respect hypervisors "next" indication Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 064/373] arm64: cputype: Add MIDR_CORTEX_A76AE Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 065/373] arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 066/373] arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 067/373] arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 068/373] spi: cadence-qspi: Fix probe on AM62A LP SK Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 069/373] mtd: rawnand: brcmnand: fix PM resume warning Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 070/373] media: streamzap: prevent processing IR data on URB failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 071/373] media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 072/373] media: i2c: ccs: Set the devices runtime PM status correctly in remove Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 073/373] media: i2c: ccs: Set the devices runtime PM status correctly in probe Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 074/373] media: i2c: ov7251: Set enable GPIO low " Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 075/373] media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 076/373] media: venus: hfi_parser: add check to avoid out of bound access Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 077/373] media: venus: hfi_parser: refactor hfi packet parsing logic Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 078/373] mtd: Add check for devm_kcalloc() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 079/373] net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 080/373] mtd: Replace kcalloc() with devm_kcalloc() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 081/373] clocksource/drivers/stm32-lptimer: Use wakeup capable instead of init wakeup Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 082/373] wifi: mt76: Add check for devm_kstrdup() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 083/373] wifi: mac80211: fix integer overflow in hwmp_route_info_get() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 084/373] ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 085/373] bus: mhi: host: Fix race between unprepare and queue_buf Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 086/373] ext4: fix off-by-one error in do_split Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 087/373] vdpa/mlx5: Fix oversized null mkey longer than 32bit Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 088/373] i3c: master: svc: Use readsb helper for reading MDB Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 089/373] i3c: Add NULL pointer check in i3c_master_queue_ibi() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 090/373] jbd2: remove wrong sb->s_sequence check Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 091/373] mfd: ene-kb3930: Fix a potential NULL pointer dereference Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 092/373] locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 093/373] lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 094/373] mptcp: fix NULL pointer in can_accept_new_subflow Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 095/373] mptcp: only inc MPJoinAckHMacFailure for HMAC failures Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 096/373] mtd: inftlcore: Add error check for inftl_read_oob() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 097/373] mtd: rawnand: Add status chack in r852_ready() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 098/373] arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 099/373] sparc/mm: disable preemption in lazy mmu mode Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 100/373] mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 101/373] mm/hwpoison: do not send SIGBUS to processes with recovered clean pages Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 102/373] sctp: detect and prevent references to a freed transport in sendmsg Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 103/373] thermal/drivers/rockchip: Add missing rk3328 mapping entry Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 104/373] crypto: ccp - Fix check for the primary ASP device Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 105/373] dm-integrity: set ti->error on memory allocation failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 106/373] ftrace: Add cond_resched() to ftrace_graph_set_hash() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 107/373] gpio: zynq: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 108/373] ntb: use 64-bit arithmetic for the MSI doorbell mask Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 109/373] of/irq: Fix device node refcount leakages in of_irq_count() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 110/373] of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 111/373] of/irq: Fix device node refcount leakages in of_irq_init() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 112/373] PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 113/373] PCI: Fix reference leak in pci_alloc_child_bus() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 114/373] pinctrl: qcom: Clear latched interrupt status when changing IRQ type Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 115/373] HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 116/373] arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 117/373] ACPI: platform-profile: Fix CFI violation when accessing sysfs files Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 118/373] x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 119/373] Bluetooth: hci_uart: Fix another race during initialization Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 120/373] scsi: hisi_sas: Start delivery hisi_sas_task_exec() directly Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 121/373] scsi: hisi_sas: Pass abort structure for internal abort Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 122/373] scsi: hisi_sas: Factor out task prep and delivery code Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 123/373] scsi: hisi_sas: Fix setting of hisi_sas_slot.is_internal Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 124/373] scsi: libsas: Delete lldd_clear_aca callback Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 125/373] scsi: libsas: Add struct sas_tmf_task Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 126/373] scsi: hisi_sas: Enable force phy when SATA disk directly connected Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 127/373] wifi: at76c50x: fix use after free access in at76_disconnect Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 128/373] wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue() Greg Kroah-Hartman
2025-04-30 8:49 ` Remi Pommarel
2025-04-30 9:16 ` Greg Kroah-Hartman
2025-04-30 12:53 ` Remi Pommarel
2025-04-29 16:40 ` [PATCH 5.15 129/373] wifi: mac80211: Purge vif txq in ieee80211_do_stop() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 130/373] wifi: wl1251: fix memory leak in wl1251_tx_work Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 131/373] scsi: iscsi: Fix missing scsi_host_put() in error path Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 132/373] md/raid10: fix missing discard IO accounting Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 133/373] RDMA/usnic: Fix passing zero to PTR_ERR in usnic_ib_pci_probe() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 134/373] RDMA/hns: Fix wrong maximum DMA segment size Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 135/373] RDMA/core: Silence oversized kvmalloc() warning Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 136/373] Bluetooth: hci_event: Fix sending MGMT_EV_DEVICE_FOUND for invalid address Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 137/373] Bluetooth: btrtl: Prevent potential NULL dereference Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 138/373] Bluetooth: l2cap: Check encryption key size on incoming connection Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 139/373] Revert "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 140/373] igc: fix PTM cycle trigger logic Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 141/373] igc: move ktime snapshot into PTM retry loop Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 142/373] igc: handle the IGC_PTP_ENABLED flag correctly Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 143/373] igc: cleanup PTP module if probe fails Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 144/373] net: mctp: Set SOCK_RCU_FREE Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 145/373] net: openvswitch: fix nested key length validation in the set() action Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 146/373] cxgb4: fix memory leak in cxgb4_init_ethtool_filters() error path Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 147/373] net: b53: enable BPDU reception for management port Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 148/373] net: dsa: mv88e6xxx: avoid unregistering devlink regions which were never registered Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 149/373] net: dsa: avoid refcount warnings when ds->ops->tag_8021q_vlan_del() fails Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 150/373] riscv: Properly export reserved regions in /proc/iomem Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 151/373] riscv: KGDB: Do not inline arch_kgdb_breakpoint() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 152/373] riscv: KGDB: Remove ".option norvc/.option rvc" for kgdb_compiled_break Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 153/373] cpufreq/sched: Fix the usage of CPUFREQ_NEED_UPDATE_LIMITS Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 154/373] writeback: fix false warning in inode_to_wb() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 155/373] Revert "PCI: Avoid reset when disabled via sysfs" Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 156/373] ASoC: codecs:lpass-wsa-macro: Fix vi feedback rate Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 157/373] ASoC: codecs:lpass-wsa-macro: Fix logic of enabling vi channels Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 158/373] asus-laptop: Fix an uninitialized variable Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 159/373] nfs: move nfs_fhandle_hash to common include file Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 160/373] nfs: add missing selections of CONFIG_CRC32 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 161/373] nfsd: decrease sc_count directly if fail to queue dl_recall Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 162/373] btrfs: correctly escape subvol in btrfs_show_options() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 163/373] crypto: caam/qi - Fix drv_ctx refcount bug Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 164/373] hfs/hfsplus: fix slab-out-of-bounds in hfs_bnode_read_key Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 165/373] i2c: cros-ec-tunnel: defer probe if parent EC is not present Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 166/373] isofs: Prevent the use of too small fid Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 167/373] loop: properly send KOBJ_CHANGED uevent for disk device Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 168/373] loop: LOOP_SET_FD: send uevents for partitions Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 169/373] mm/gup: fix wrongly calculated returned value in fault_in_safe_writeable() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 170/373] riscv: Avoid fortify warning in syscall_get_arguments() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 171/373] tracing: Fix filter string testing Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 172/373] virtiofs: add filesystem context source name check Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 173/373] perf/x86/intel: Allow to update user space GPRs from PEBS records Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 174/373] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SNR Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 175/373] perf/x86/intel/uncore: Fix the scale of IIO free running counters on ICX Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 176/373] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SPR Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 177/373] drm/repaper: fix integer overflows in repeat functions Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 178/373] drm/amd/pm: Prevent division by zero Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 179/373] drm/amd/pm/powerplay: " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 180/373] drm/amd/pm/powerplay/hwmgr/smu7_thermal: " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 181/373] drm/amd/pm/swsmu/smu13/smu_v13_0: " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 182/373] drm/amd/pm/powerplay/hwmgr/vega20_thermal: " Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 183/373] drm/amdgpu/dma_buf: fix page_link check Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 184/373] drm/nouveau: prime: fix ttm_bo_delayed_delete oops Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 185/373] drm/sti: remove duplicate object names Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 186/373] KVM: arm64: Get rid of host SVE tracking/saving Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 187/373] KVM: arm64: Always start with clearing SVE flag on load Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 188/373] KVM: arm64: Discard any SVE state when entering KVM guests Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 189/373] arm64/fpsimd: Track the saved FPSIMD state type separately to TIF_SVE Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 190/373] arm64/fpsimd: Have KVM explicitly say which FP registers to save Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 191/373] arm64/fpsimd: Stop using TIF_SVE to manage register saving in KVM Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 192/373] KVM: arm64: Unconditionally save+flush host FPSIMD/SVE/SME state Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 193/373] KVM: arm64: Remove host FPSIMD saving for non-protected KVM Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 194/373] KVM: arm64: Remove VHE host restore of CPACR_EL1.ZEN Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 195/373] KVM: arm64: Calculate cptr_el2 traps on activating traps Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 196/373] KVM: arm64: Eagerly switch ZCR_EL{1,2} Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 197/373] cpufreq: Reference count policy in cpufreq_update_limits() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 198/373] kbuild: Add -fno-builtin-wcslen Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 199/373] mptcp: sockopt: fix getting IPV6_V6ONLY Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 200/373] misc: pci_endpoint_test: Avoid issue of interrupts remaining after request_irq error Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 201/373] misc: pci_endpoint_test: Fix displaying irq_type " Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 202/373] misc: pci_endpoint_test: Fix irq_type to convey the correct type Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 203/373] ipv6: release nexthop on device removal Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 204/373] net: fix crash when config small gso_max_size/gso_ipv4_max_size Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 205/373] filemap: Fix bounds checking in filemap_read() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 206/373] phonet/pep: fix racy skb_queue_empty() use Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 207/373] bnxt_re: avoid shift undefined behavior in bnxt_qplib_alloc_init_hwq Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 208/373] net: mana: Fix error handling in mana_create_txq/rxqs NAPI cleanup Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 209/373] x86/pvh: Call C code via the kernel virtual mapping Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 210/373] powerpc/rtas: Prevent Spectre v1 gadget construction in sys_rtas() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 211/373] phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 212/373] wifi: ath10k: avoid NULL pointer error during sdio remove Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 213/373] drm/amd/display: Stop amdgpu_dm initialize when link nums greater than max_links Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 214/373] drm/amd/display: Fix out-of-bounds access in dcn21_link_encoder_create Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 215/373] drm/amd/display: Add null checks for stream and plane before dereferencing Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 216/373] drm/amdgpu: fix usage slab after free Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 217/373] landlock: Add the errata interface Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 218/373] nvmet-fc: Remove unused functions Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 219/373] smb: client: fix potential UAF in cifs_dump_full_key() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 220/373] ksmbd: fix potencial out-of-bounds when buffer offset is invalid Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 221/373] net: make sock_inuse_add() available Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 222/373] smb: client: fix use-after-free bug in cifs_debug_data_proc_show() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 223/373] cifs: Fix UAF in cifs_demultiplex_thread() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 224/373] smb: client: fix UAF in async decryption Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 225/373] smb: client: fix NULL ptr deref in crypto_aead_setkey() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 226/373] smb/server: fix potential null-ptr-deref of lease_ctx_info in smb2_open() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 227/373] smb: client: fix potential deadlock when releasing mids Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 228/373] smb: client: fix potential UAF in cifs_stats_proc_show() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 229/373] sched/task_stack: fix object_is_on_stack() for KASAN tagged pointers Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 230/373] bpf: avoid holding freeze_mutex during mmap operation Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 231/373] bpf: Check rcu_read_lock_trace_held() before calling bpf map helpers Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 232/373] blk-cgroup: support to track if policy is online Greg Kroah-Hartman
2025-04-29 16:41 ` Greg Kroah-Hartman [this message]
2025-04-29 16:41 ` [PATCH 5.15 234/373] ext4: fix timer use-after-free on failed mount Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 235/373] ipvs: properly dereference pe in ip_vs_add_service Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 236/373] net: openvswitch: fix race on port output Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 237/373] openvswitch: fix lockup on tx to unregistering netdev with carrier Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 238/373] scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 239/373] scsi: ufs: bsg: Set bsg_queue to NULL after removal Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 240/373] net: defer final struct net free in netns dismantle Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 241/373] MIPS: dec: Declare which_prom() as static Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 242/373] MIPS: cevt-ds1287: Add missing ds1287.h include Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 243/373] MIPS: ds1287: Match ds1287_set_base_clock() function types Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 244/373] jfs: Fix shift-out-of-bounds in dbDiscardAG Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 245/373] dm cache: fix flushing uninitialized delayed_work on cache_ctr error Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 246/373] drm/i915/gt: Cleanup partial engine discovery failures Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 247/373] fs/proc: do_task_stat: use sig->stats_lock to gather the threads/children stats Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 248/373] mm: fix apply_to_existing_page_range() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 249/373] f2fs: check validation of fault attrs in f2fs_build_fault_attr() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 250/373] pmdomain: ti: Add a null pointer check to the omap_prm_domain_init Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 251/373] scsi: lpfc: Fix null pointer dereference after failing to issue FLOGI and PLOGI Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 252/373] f2fs: Add inline to f2fs_build_fault_attr() stub Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 253/373] Bluetooth: SCO: Fix UAF on sco_sock_timeout Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 254/373] module: sign with sha512 instead of sha1 by default Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 255/373] media: streamzap: remove unnecessary ir_raw_event_reset and handle Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 256/373] media: streamzap: no need for usb pid/vid in device name Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 257/373] media: streamzap: less chatter Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 258/373] media: streamzap: remove unused struct members Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 259/373] media: streamzap: fix race between device disconnection and urb callback Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 260/373] auxdisplay: hd44780: Convert to platform remove callback returning void Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 261/373] auxdisplay: hd44780: Fix an API misuse in hd44780.c Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 262/373] net: dsa: mv88e6xxx: fix VTU methods for 6320 family Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 263/373] soc: samsung: exynos-chipid: avoid soc_device_to_device() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 264/373] soc: samsung: exynos-chipid: Pass revision reg offsets Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 265/373] soc: samsung: exynos-chipid: Add NULL pointer check in exynos_chipid_probe() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 266/373] iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 267/373] iio: adc: ad7768-1: Fix conversion result sign Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 268/373] backlight: led_bl: Convert to platform remove callback returning void Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 269/373] backlight: led_bl: Hold led_access lock when calling led_sysfs_disable() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 270/373] cifs: print TIDs as hex Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 271/373] cifs: avoid NULL pointer dereference in dbg call Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 272/373] cifs: fix integer overflow in match_server() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 273/373] gpio: tegra186: Force one interrupt per bank Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 274/373] gpio: tegra186: fix resource handling in ACPI probe path Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 275/373] PCI: Coalesce host bridge contiguous apertures Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 276/373] PCI: Assign PCI domain IDs by ida_alloc() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 277/373] PCI: Fix reference leak in pci_register_host_bridge() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 278/373] ksmbd: Prevent integer overflow in calculation of deadtime Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 279/373] selftests/mm: generate a temporary mountpoint for cgroup filesystem Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 280/373] kmsan: disable strscpy() optimization under KMSAN Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 281/373] string: Add load_unaligned_zeropad() code path to sized_strscpy() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 282/373] drm/msm/a6xx: Improve gpu recovery sequence Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 283/373] drm/msm/a6xx: Handle GMU prepare-slumber hfi failure Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 284/373] drm/msm/a6xx: Avoid gx gbit halt during rpm suspend Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 285/373] drm/msm/a6xx: Fix stale rpmh votes from GPU Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 286/373] dma/contiguous: avoid warning about unused size_bytes Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 287/373] cpufreq: scmi: Fix null-ptr-deref in scmi_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 288/373] cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 289/373] cpufreq: cppc: Fix invalid return value in .get() callback Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 290/373] net: phy: leds: fix memory leak Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 291/373] tipc: fix NULL pointer dereference in tipc_mon_reinit_self() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 292/373] net_sched: hfsc: Fix a UAF vulnerability in class handling Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 293/373] net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 294/373] net: dsa: mt7530: sync driver-specific behavior of MT7531 variants Greg Kroah-Hartman
2025-04-29 18:34 ` Daniel Golle
2025-04-30 2:41 ` Daniel Golle
2025-05-01 8:00 ` Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 295/373] iommu/amd: Return an error if vCPU affinity is set for non-vCPU IRTE Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 296/373] riscv: uprobes: Add missing fence.i after building the XOL buffer Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 297/373] virtio_console: fix missing byte order handling for cols and rows Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 298/373] net: selftests: initialize TCP header and skb payload with zero Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 299/373] net: phy: microchip: force IRQ polling mode for lan88xx Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 300/373] drm/amd/display: Fix gpu reset in multidisplay config Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 301/373] KVM: SVM: Allocate IR data using atomic allocation Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 302/373] mcb: fix a double free bug in chameleon_parse_gdd() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 303/373] USB: storage: quirk for ADATA Portable HDD CH94 Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 304/373] mei: me: add panther lake H DID Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 305/373] KVM: x86: Reset IRTE to host control if *new* route isnt postable Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 306/373] serial: sifive: lock port in startup()/shutdown() callbacks Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 307/373] USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 308/373] USB: serial: option: add Sierra Wireless EM9291 Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 309/373] USB: serial: simple: add OWON HDS200 series oscilloscope support Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 310/373] usb: cdns3: Fix deadlock when using NCM gadget Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 311/373] usb: chipidea: ci_hdrc_imx: fix usbmisc handling Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 312/373] usb: chipidea: ci_hdrc_imx: fix call balance of regulator routines Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 313/373] usb: chipidea: ci_hdrc_imx: implement usb_phy_init() error handling Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 314/373] USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 315/373] usb: dwc3: gadget: check that event count does not exceed event buffer length Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 316/373] usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 317/373] usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 " Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 318/373] USB: VLI disk crashes if LPM is used Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 319/373] USB: wdm: handle IO errors in wdm_wwan_port_start Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 320/373] USB: wdm: close race between wdm_open and wdm_wwan_port_stop Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 321/373] USB: wdm: wdm_wwan_port_tx_complete mutex in atomic context Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 322/373] USB: wdm: add annotation Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 323/373] MIPS: cm: Detect CM quirks from device tree Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 324/373] crypto: null - Use spin lock instead of mutex Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 325/373] clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 326/373] parisc: PDT: Fix missing prototype warning Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 327/373] s390/sclp: Add check for get_zeroed_page() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 328/373] s390/tty: Fix a potential memory leak bug Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 329/373] usb: host: max3421-hcd: Add missing spi_device_id table Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 330/373] fs/ntfs3: Fix WARNING in ntfs_extend_initialized_size Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 331/373] usb: dwc3: gadget: Avoid using reserved endpoints on Intel Merrifield Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 332/373] sound/virtio: Fix cancel_sync warnings on uninitialized work_structs Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 333/373] dmaengine: dmatest: Fix dmatest waiting less when interrupted Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 334/373] usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 335/373] usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 336/373] objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 337/373] qibfs: fix _another_ leak Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 338/373] ntb: reduce stack usage in idt_scan_mws Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 339/373] sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 340/373] KVM: s390: Dont use %pK through tracepoints Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 341/373] udmabuf: fix a buf size overflow issue during udmabuf creation Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 342/373] selftests: ublk: fix test_stripe_04 Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 343/373] xen: Change xen-acpi-processor dom0 dependency Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 344/373] nvme: requeue namespace scan on missed AENs Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 345/373] ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 346/373] nvme: re-read ANA log page after ns scan completes Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 347/373] objtool: Stop UNRET validation on UD2 Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 348/373] selftests/mincore: Allow read-ahead pages to reach the end of the file Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 349/373] x86/bugs: Use SBPB in write_ibpb() if applicable Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 350/373] x86/bugs: Dont fill RSB on VMEXIT with eIBRS+retpoline Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 351/373] x86/bugs: Dont fill RSB on context switch with eIBRS Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 352/373] nvmet-fc: take tgtport reference only once Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 353/373] nvmet-fc: put ref when assoc->del_work is already scheduled Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 354/373] ext4: make block validity check resistent to sb bh corruption Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 355/373] scsi: hisi_sas: Fix I/O errors caused by hardware port ID changes Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 356/373] scsi: pm80xx: Set phy_attached to zero when device is gone Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 357/373] loop: aio inherit the ioprio of original request Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 358/373] ubsan: Fix panic from test_ubsan_out_of_bounds Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 359/373] md/raid1: Add check for missing source disk in process_checks() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 360/373] s390/virtio_ccw: Dont allocate/assign airqs for non-existing queues Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 361/373] jfs: define xtree root and page independently Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 362/373] comedi: jr3_pci: Fix synchronous deletion of timer Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 363/373] crypto: atmel-sha204a - Set hwrng quality to lowest possible Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 364/373] net: dsa: mv88e6xxx: fix atu_move_port_mask for 6341 family Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 365/373] net: dsa: mv88e6xxx: enable PVT for 6321 switch Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 366/373] net: dsa: mv88e6xxx: enable .port_set_policy() for 6320 family Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 367/373] drm/amd/display: fix double free issue during amdgpu module unload Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 368/373] xdp: Reset bpf_redirect_info before running a xdps BPF prog Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 369/373] MIPS: cm: Fix warning if MIPS_CM is disabled Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 370/373] nvme: fixup scan failure for non-ANA multipath controllers Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 371/373] PCI: Fix use-after-free in pci_bus_release_domain_nr() Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 372/373] PCI: Fix dropping valid root bus resources with .end = zero Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 373/373] PCI: Release resource invalidated by coalescing Greg Kroah-Hartman
2025-04-30 7:48 ` [PATCH 5.15 000/373] 5.15.181-rc1 review Hardik Garg
2025-04-30 15:03 ` Jon Hunter
2025-04-30 15:56 ` Shuah Khan
2025-04-30 16:49 ` Naresh Kamboju
2025-04-30 21:29 ` Ron Economos
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=20250429161132.725979501@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=axboe@kernel.dk \
--cc=bin.lan.cn@windriver.com \
--cc=linan122@huawei.com \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
--cc=tj@kernel.org \
--cc=yukuai3@huawei.com \
--cc=zhe.he@windriver.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;
as well as URLs for NNTP newsgroup(s).