From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Paolo Abeni <pabeni@redhat.com>,
Jason Wang <jasowang@redhat.com>,
Xuan Zhuo <xuanzhuo@linux.alibaba.com>,
Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 231/644] netpoll: prevent hanging NAPI when netcons gets enabled
Date: Tue, 26 Aug 2025 13:05:22 +0200 [thread overview]
Message-ID: <20250826110952.137414808@linuxfoundation.org> (raw)
In-Reply-To: <20250826110946.507083938@linuxfoundation.org>
5.15-stable review patch. If anyone has any objections, please let me know.
------------------
From: Jakub Kicinski <kuba@kernel.org>
[ Upstream commit 2da4def0f487f24bbb0cece3bb2bcdcb918a0b72 ]
Paolo spotted hangs in NIPA running driver tests against virtio.
The tests hang in virtnet_close() -> virtnet_napi_tx_disable().
The problem is only reproducible if running multiple of our tests
in sequence (I used TEST_PROGS="xdp.py ping.py netcons_basic.sh \
netpoll_basic.py stats.py"). Initial suspicion was that this is
a simple case of double-disable of NAPI, but instrumenting the
code reveals:
Deadlocked on NAPI ffff888007cd82c0 (virtnet_poll_tx):
state: 0x37, disabled: false, owner: 0, listed: false, weight: 64
The NAPI was not in fact disabled, owner is 0 (rather than -1),
so the NAPI "thinks" it's scheduled for CPU 0 but it's not listed
(!list_empty(&n->poll_list) => false). It seems odd that normal NAPI
processing would wedge itself like this.
Better suspicion is that netpoll gets enabled while NAPI is polling,
and also grabs the NAPI instance. This confuses napi_complete_done():
[netpoll] [normal NAPI]
napi_poll()
have = netpoll_poll_lock()
rcu_access_pointer(dev->npinfo)
return NULL # no netpoll
__napi_poll()
->poll(->weight)
poll_napi()
cmpxchg(->poll_owner, -1, cpu)
poll_one_napi()
set_bit(NAPI_STATE_NPSVC, ->state)
napi_complete_done()
if (NAPIF_STATE_NPSVC)
return false
# exit without clearing SCHED
This feels very unlikely, but perhaps virtio has some interactions
with the hypervisor in the NAPI ->poll that makes the race window
larger?
Best I could to to prove the theory was to add and trigger this
warning in napi_poll (just before netpoll_poll_unlock()):
WARN_ONCE(!have && rcu_access_pointer(n->dev->npinfo) &&
napi_is_scheduled(n) && list_empty(&n->poll_list),
"NAPI race with netpoll %px", n);
If this warning hits the next virtio_close() will hang.
This patch survived 30 test iterations without a hang (without it
the longest clean run was around 10). Credit for triggering this
goes to Breno's recent netconsole tests.
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Reported-by: Paolo Abeni <pabeni@redhat.com>
Link: https://lore.kernel.org/c5a93ed1-9abe-4880-a3bb-8d1678018b1d@redhat.com
Acked-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Link: https://patch.msgid.link/20250726010846.1105875-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
net/core/netpoll.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/net/core/netpoll.c b/net/core/netpoll.c
index 87f5a837410c..c900badd5325 100644
--- a/net/core/netpoll.c
+++ b/net/core/netpoll.c
@@ -800,6 +800,13 @@ int netpoll_setup(struct netpoll *np)
goto put;
rtnl_unlock();
+
+ /* Make sure all NAPI polls which started before dev->npinfo
+ * was visible have exited before we start calling NAPI poll.
+ * NAPI skips locking if dev->npinfo is NULL.
+ */
+ synchronize_rcu();
+
return 0;
put:
--
2.39.5
next prev parent reply other threads:[~2025-08-26 13:47 UTC|newest]
Thread overview: 651+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-26 11:01 [PATCH 5.15 000/644] 5.15.190-rc1 review Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 001/644] phy: tegra: xusb: Fix unbalanced regulator disable in UTMI PHY mode Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 002/644] USB: serial: option: add Telit Cinterion FE910C04 (ECM) composition Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 003/644] USB: serial: option: add Foxconn T99W640 Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 004/644] USB: serial: ftdi_sio: add support for NDI EMGUIDE GEMINI Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 005/644] usb: gadget: configfs: Fix OOB read on empty string write Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 006/644] i2c: stm32: fix the device used for the DMA map Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 007/644] thunderbolt: Fix bit masking in tb_dp_port_set_hops() Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 008/644] Input: xpad - set correct controller type for Acer NGR200 Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 009/644] pch_uart: Fix dma_sync_sg_for_device() nents value Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 010/644] HID: core: ensure the allocated report buffer can contain the reserved report ID Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 011/644] HID: core: ensure __hid_request reserves the report ID as the first byte Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 012/644] HID: core: do not bypass hid_hw_raw_request Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 013/644] tracing: Add down_write(trace_event_sem) when adding trace event Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 014/644] phonet/pep: Move call to pn_skb_get_dst_sockaddr() earlier in pep_sock_accept() Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 015/644] af_packet: fix the SO_SNDTIMEO constraint not effective on tpacked_snd() Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 016/644] af_packet: fix soft lockup issue caused by tpacket_snd() Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 017/644] dmaengine: nbpfaxi: Fix memory corruption in probe() Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 018/644] isofs: Verify inode mode when loading from disk Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 019/644] memstick: core: Zero initialize id_reg in h_memstick_read_dev_id() Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 020/644] mmc: bcm2835: Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 021/644] mmc: sdhci-pci: Quirk for broken command queuing on Intel GLK-based Positivo models Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 022/644] mmc: sdhci_am654: Workaround for Errata i2312 Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 023/644] pmdomain: governor: Consider CPU latency tolerance from pm_domain_cpu_gov Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 024/644] soc: aspeed: lpc-snoop: Cleanup resources in stack-order Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 025/644] soc: aspeed: lpc-snoop: Dont disable channels that arent enabled Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 026/644] iio: adc: max1363: Fix MAX1363_4X_CHANS/MAX1363_8X_CHANS[] Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 027/644] iio: adc: max1363: Reorder mode_list[] entries Greg Kroah-Hartman
2025-08-26 11:01 ` [PATCH 5.15 028/644] iio: adc: stm32-adc: Fix race in installing chained IRQ handler Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 029/644] comedi: pcl812: Fix bit shift out of bounds Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 030/644] comedi: aio_iiro_16: " Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 031/644] comedi: das16m1: " Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 032/644] comedi: das6402: " Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 033/644] comedi: Fail COMEDI_INSNLIST ioctl if n_insns is too large Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 034/644] comedi: Fix some signed shift left operations Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 035/644] comedi: Fix use of uninitialized data in insn_rw_emulate_bits() Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 036/644] comedi: Fix initialization of data for instructions that write to subdevice Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 037/644] bpf: Reject %p% format string in bprintf-like helpers Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 038/644] net: emaclite: Fix missing pointer increment in aligned_read() Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 039/644] net/sched: sch_qfq: Fix race condition on qfq_aggregate Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 040/644] rpl: Fix use-after-free in rpl_do_srh_inline() Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 041/644] pinctrl: mediatek: moore: check if pin_desc is valid before use Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 042/644] smb: client: fix use-after-free in cifs_oplock_break Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 043/644] nvme: fix misaccounting of nvme-mpath inflight I/O Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 044/644] selftests: udpgro: report error when receive failed Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 045/644] selftests: net: increase inter-packet timeout in udpgro.sh Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 046/644] hwmon: (corsair-cpro) Validate the size of the received input buffer Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 047/644] usb: net: sierra: check for no status endpoint Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 048/644] Bluetooth: Fix null-ptr-deref in l2cap_sock_resume_cb() Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 049/644] Bluetooth: SMP: If an unallowed command is received consider it a failure Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 050/644] Bluetooth: SMP: Fix using HCI_ERROR_REMOTE_USER_TERM on timeout Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 051/644] lib: bitmap: Introduce node-aware alloc API Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 052/644] net/mlx5e: Add support to klm_umr_wqe Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 053/644] net/mlx5: Correctly set gso_size when LRO is used Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 054/644] ipv6: mcast: Delay put pmc->idev in mld_del_delrec() Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 055/644] Bluetooth: L2CAP: Fix attempting to adjust outgoing MTU Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 056/644] net: vlan: fix VLAN 0 refcount imbalance of toggling filtering during runtime Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 057/644] net: bridge: Do not offload IGMP/MLD messages Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 058/644] net/sched: Return NULL when htb_lookup_leaf encounters an empty rbtree Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 059/644] sched: Change nr_uninterruptible type to unsigned long Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 060/644] clone_private_mnt(): make sure that caller has CAP_SYS_ADMIN in the right userns Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 061/644] usb: hub: fix detection of high tier USB3 devices behind suspended hubs Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 062/644] usb: hub: Fix flushing and scheduling of delayed work that tunes runtime pm Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 063/644] usb: hub: Fix flushing of delayed work used for post resume purposes Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 064/644] usb: musb: Add and use inline functions musb_{get,set}_state Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 065/644] usb: musb: fix gadget state on disconnect Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 066/644] usb: dwc3: qcom: Dont leave BCR asserted Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 067/644] ASoC: fsl_sai: Force a software reset when starting in consumer mode Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 068/644] mm/vmalloc: leave lazy MMU mode on PTE mapping error Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 069/644] powercap: intel_rapl: Do not change CLAMPING bit if ENABLE bit cannot be changed Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 070/644] platform/x86: think-lmi: Fix kobject cleanup Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 071/644] bpf, sockmap: Fix panic when calling skb_linearize Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 072/644] x86: Fix get_wchan() to support the ORC unwinder Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 073/644] sched: Add wrapper for get_wchan() to keep task blocked Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 074/644] x86: Fix __get_wchan() for !STACKTRACE Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 075/644] x86: Pin task-stack in __get_wchan() Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 076/644] Input: gpio-keys - fix a sleep while atomic with PREEMPT_RT Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 077/644] regulator: core: fix NULL dereference on unbind due to stale coupling data Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 078/644] RDMA/core: Rate limit GID cache warning messages Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 079/644] interconnect: qcom: sc7280: Add missing num_links to xm_pcie3_1 node Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 080/644] regmap: fix potential memory leak of regmap_bus Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 081/644] i40e: Add rx_missed_errors for buffer exhaustion Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 082/644] i40e: report VF tx_dropped with tx_errors instead of tx_discards Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 083/644] net: appletalk: Fix use-after-free in AARP proxy probe Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 084/644] net/sched: sch_qfq: Avoid triggering might_sleep in atomic context in qfq_delete_class Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 085/644] net: hns3: fix concurrent setting vlan filter issue Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 086/644] net: hns3: disable interrupt when ptp init failed Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 087/644] net: hns3: fixed vf get max channels bug Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 5.15 088/644] platform/x86: ideapad-laptop: Fix kbd backlight not remembered among boots Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 089/644] i2c: qup: jump out of the loop in case of timeout Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 090/644] i2c: virtio: Avoid hang by using interruptible completion wait Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 091/644] bus: fsl-mc: Fix potential double device reference in fsl_mc_get_endpoint() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 092/644] ALSA: hda/realtek - Add mute LED support for HP Pavilion 15-eg0xxx Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 093/644] dpaa2-eth: Fix device reference count leak in MAC endpoint handling Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 094/644] dpaa2-switch: " Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 095/644] e1000e: disregard NVM checksum on tgp when valid checksum bit is not set Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 096/644] e1000e: ignore uninitialized checksum word on tgp Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 097/644] gve: Fix stuck TX queue for DQ queue format Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 098/644] nilfs2: reject invalid file types when reading inodes Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 099/644] mm/zsmalloc: do not pass __GFP_MOVABLE if CONFIG_COMPACTION=n Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 100/644] usb: typec: tcpm: allow to use sink in accessory mode Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 101/644] usb: typec: tcpm: allow switching to mode accessory to mux properly Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 102/644] usb: typec: tcpm: apply vbus before data bringup in tcpm_src_attach Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 103/644] x86/bugs: Fix use of possibly uninit value in amd_check_tsa_microcode() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 104/644] jfs: reject on-disk inodes of an unsupported type Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 105/644] comedi: comedi_test: Fix possible deletion of uninitialized timers Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 106/644] ALSA: hda: Add missing NVIDIA HDA codec IDs Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 107/644] usb: chipidea: add USB PHY event Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 108/644] usb: phy: mxs: disconnect line when USB charger is attached Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 109/644] ethernet: intel: fix building with large NR_CPUS Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 110/644] ASoC: Intel: fix SND_SOC_SOF dependencies Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 111/644] fs_context: fix parameter name in infofc() macro Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 112/644] hfsplus: remove mutex_lock check in hfsplus_free_extents Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 113/644] Revert "fs/ntfs3: Replace inode_trylock with inode_lock" Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 114/644] ASoC: soc-dai: tidyup return value of snd_soc_xlate_tdm_slot_mask() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 115/644] ASoC: ops: dynamically allocate struct snd_ctl_elem_value Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 116/644] selftests: Fix errno checking in syscall_user_dispatch test Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 117/644] ARM: dts: vfxxx: Correctly use two tuples for timer address Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 118/644] usb: misc: apple-mfi-fastcharge: Make power supply names unique Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 119/644] staging: fbtft: fix potential memory leak in fbtft_framebuffer_alloc() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 120/644] vmci: Prevent the dispatching of uninitialized payloads Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 121/644] pps: fix poll support Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 122/644] Revert "vmci: Prevent the dispatching of uninitialized payloads" Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 123/644] usb: early: xhci-dbc: Fix early_ioremap leak Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 124/644] arm: dts: ti: omap: Fixup pinheader typo Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 125/644] ARM: dts: imx6ul-kontron-bl-common: Fix RTS polarity for RS485 interface Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 126/644] arm64: dts: imx8mm-beacon: Fix HS400 USDHC clock speed Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 127/644] arm64: dts: imx8mn-beacon: " Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 128/644] PM / devfreq: Check governor before using governor->name Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 129/644] cpufreq: intel_pstate: Always use HWP_DESIRED_PERF in passive mode Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 130/644] cpufreq: Initialize cpufreq-based frequency-invariance later Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 131/644] cpufreq: Init policy->rwsem before it may be possibly used Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 132/644] samples: mei: Fix building on musl libc Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 133/644] staging: nvec: Fix incorrect null termination of battery manufacturer Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 134/644] selftests/tracing: Fix false failure of subsystem event test Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 135/644] drm/rockchip: cleanup fb when drm_gem_fb_afbc_init failed Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 136/644] bpf, sockmap: Fix psock incorrectly pointing to sk Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 137/644] bpf, ktls: Fix data corruption when using bpf_msg_pop_data() in ktls Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 138/644] bpftool: Fix memory leak in dump_xx_nlmsg on realloc failure Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 139/644] caif: reduce stack size, again Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 140/644] wifi: rtl818x: Kill URBs before clearing tx status queue Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 141/644] wifi: iwlwifi: Fix memory leak in iwl_mvm_init() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 142/644] iwlwifi: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 143/644] wifi: ath11k: clear initialized flag for deinit-ed srng lists Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 144/644] tcp: fix tcp_ofo_queue() to avoid including too much DUP SACK range Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 145/644] net/mlx5: Check device memory pointer before usage Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 146/644] m68k: Dont unregister boot console needlessly Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 147/644] drm/amd/pm/powerplay/hwmgr/smu_helper: fix order of mask and value Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 5.15 148/644] netfilter: nf_tables: adjust lockdep assertions handling Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 149/644] arch: powerpc: defconfig: Drop obsolete CONFIG_NET_CLS_TCINDEX Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 150/644] um: rtc: Avoid shadowing err in uml_rtc_start() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 151/644] net/sched: Restrict conditions for adding duplicating netems to qdisc tree Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 152/644] net_sched: act_ctinfo: use atomic64_t for three counters Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 153/644] xen/gntdev: remove struct gntdev_copy_batch from stack Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 154/644] wifi: rtl8xxxu: Fix RX skb size for aggregation disabled Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 155/644] mwl8k: Add missing check after DMA map Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 156/644] wifi: mac80211: Dont call fq_flow_idx() for management frames Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 157/644] wifi: mac80211: Check 802.11 encaps offloading in ieee80211_tx_h_select_key() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 158/644] Reapply "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 159/644] wifi: brcmfmac: fix P2P discovery failure in P2P peer due to missing P2P IE Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 160/644] can: kvaser_pciefd: Store device channel index Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 161/644] can: kvaser_usb: Assign netdev.dev_port based on " Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 162/644] netfilter: xt_nfacct: dont assume acct name is null-terminated Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 163/644] selftests: rtnetlink.sh: remove esp4_offload after test Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 164/644] vrf: Drop existing dst reference in vrf_ip6_input_dst Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 165/644] PCI: rockchip-host: Fix "Unexpected Completion" log message Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 166/644] crypto: marvell/cesa - Fix engine load inaccuracy Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 167/644] mtd: fix possible integer overflow in erase_xfer() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 168/644] clk: davinci: Add NULL check in davinci_lpsc_clk_register() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 169/644] media: v4l2-ctrls: Fix H264 SEPARATE_COLOUR_PLANE check Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 170/644] clk: xilinx: vcu: unregister pll_post only if registered correctly Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 171/644] power: supply: cpcap-charger: Fix null check for power_supply_get_by_name Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 172/644] power: supply: max14577: Handle NULL pdata when CONFIG_OF is not set Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 173/644] PCI: endpoint: pci-epf-vntb: Return -ENOENT if pci_epc_get_next_free_bar() fails Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 174/644] pinctrl: sunxi: Fix memory leak on krealloc failure Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 175/644] clk: clk-axi-clkgen: fix fpfd_max frequency for zynq Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 176/644] perf sched: Fix memory leaks for evsel->priv in timehist Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 177/644] crypto: inside-secure - Fix `dma_unmap_sg()` nents value Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 178/644] crypto: ccp - Fix crash when rebind ccp device for ccp.ko Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 179/644] RDMA/hns: Fix -Wframe-larger-than issue Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 180/644] kernel: trace: preemptirq_delay_test: use offstack cpu mask Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 181/644] perf tests bp_account: Fix leaked file descriptor Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 182/644] clk: sunxi-ng: v3s: Fix de clock definition Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 183/644] scsi: ibmvscsi_tgt: Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 184/644] scsi: mvsas: " Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 185/644] scsi: isci: " Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 186/644] watchdog: ziirave_wdt: check record length in ziirave_firm_verify() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 187/644] hwrng: mtk - handle devm_pm_runtime_enable errors Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 188/644] crypto: keembay - Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 189/644] crypto: img-hash " Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 190/644] soundwire: stream: restore params when prepare ports fail Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 191/644] PCI: endpoint: pci-epf-vntb: Fix the incorrect usage of __iomem attribute Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 192/644] fs/orangefs: Allow 2 more characters in do_c_string() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 193/644] dmaengine: mv_xor: Fix missing check after DMA map and missing unmap Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 194/644] dmaengine: nbpfaxi: Add missing check after DMA map Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 195/644] sh: Do not use hyphen in exported variable name Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 196/644] crypto: qat - fix seq_file position update in adf_ring_next() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 197/644] fbdev: imxfb: Check fb_add_videomode to prevent null-ptr-deref Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 198/644] jfs: fix metapage reference count leak in dbAllocCtl Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 199/644] mtd: rawnand: atmel: Fix dma_mapping_error() address Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 200/644] mtd: rawnand: rockchip: Add missing check after DMA map Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 201/644] mtd: rawnand: atmel: set pmecc data setup time Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 202/644] vhost-scsi: Fix log flooding with target does not exist errors Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 203/644] bpf: Check flow_dissector ctx accesses are aligned Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 204/644] apparmor: ensure WB_HISTORY_SIZE value is a power of 2 Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 205/644] module: Restore the moduleparam prefix length check Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 206/644] ucount: fix atomic_long_inc_below() argument type Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 207/644] rtc: ds1307: fix incorrect maximum clock rate handling Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 5.15 208/644] rtc: hym8563: " Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 209/644] rtc: pcf85063: " Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 210/644] rtc: pcf8563: " Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 211/644] rtc: rv3028: " Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 212/644] f2fs: fix KMSAN uninit-value in extent_info usage Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 213/644] f2fs: doc: fix wrong quota mount option description Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 214/644] f2fs: fix to avoid UAF in f2fs_sync_inode_meta() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 215/644] f2fs: fix to avoid panic in f2fs_evict_inode Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 216/644] f2fs: fix to avoid out-of-boundary access in devs.path Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 217/644] scsi: mpt3sas: Fix a fw_event memory leak Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 218/644] scsi: ufs: core: Use link recovery when h8 exit fails during runtime resume Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 219/644] kconfig: qconf: fix ConfigList::updateListAllforAll() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 220/644] PCI: pnv_php: Clean up allocated IRQs on unplug Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 221/644] PCI: pnv_php: Work around switches with broken presence detection Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 222/644] powerpc/eeh: Export eeh_unfreeze_pe() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 223/644] powerpc/eeh: Rely on dev->link_active_reporting Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 224/644] powerpc/eeh: Make EEH driver device hotplug safe Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 225/644] PCI: pnv_php: Fix surprise plug detection and recovery Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 226/644] pNFS/flexfiles: dont attempt pnfs on fatal DS errors Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 227/644] NFS: Fix filehandle bounds checking in nfs_fh_to_dentry() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 228/644] NFSv4.2: another fix for listxattr Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 229/644] XArray: Add calls to might_alloc() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 230/644] NFS: Fixup allocation flags for nfsiods __GFP_NORETRY Greg Kroah-Hartman
2025-08-26 11:05 ` Greg Kroah-Hartman [this message]
2025-08-26 11:05 ` [PATCH 5.15 232/644] phy: mscc: Fix parsing of unicast frames Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 233/644] pptp: ensure minimal skb length in pptp_xmit() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 234/644] net/mlx5: Correctly set gso_segs when LRO is used Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 235/644] ipv6: reject malicious packets in ipv6_gso_segment() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 236/644] net: drop UFO packets in udp_rcv_segment() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 237/644] benet: fix BUG when creating VFs Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 238/644] ALSA: hda/ca0132: Fix missing error handling in ca0132_alt_select_out() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 239/644] smb: server: remove separate empty_recvmsg_queue Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 240/644] smb: server: make sure we call ib_dma_unmap_single() only if we called ib_dma_map_single already Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 241/644] smb: server: let recv_done() consistently call put_recvmsg/smb_direct_disconnect_rdma_connection Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 242/644] smb: server: let recv_done() avoid touching data_transfer after cleanup/move Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 243/644] smb: client: let recv_done() cleanup before notifying the callers Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 244/644] pptp: fix pptp_xmit() error path Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 245/644] perf/core: Dont leak AUX buffer refcount on allocation failure Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 246/644] perf/core: Exit early on perf_mmap() fail Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 247/644] perf/core: Prevent VMA split of buffer mappings Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 248/644] selftests/perf_events: Add a mmap() correctness test Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 249/644] net/packet: fix a race in packet_set_ring() and packet_notifier() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 250/644] vsock: Do not allow binding to VMADDR_PORT_ANY Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 251/644] USB: serial: option: add Foxconn T99W709 Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 252/644] net: usbnet: Avoid potential RCU stall on LINK_CHANGE event Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 253/644] net: usbnet: Fix the wrong netif_carrier_on() call Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 254/644] ALSA: intel_hdmi: Fix off-by-one error in __hdmi_lpe_audio_probe() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 255/644] MIPS: mm: tlb-r4k: Uniquify TLB entries on init Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 256/644] mm/hmm: move pmd_to_hmm_pfn_flags() to the respective #ifdeffery Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 257/644] usb: gadget : fix use-after-free in composite_dev_cleanup() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 258/644] io_uring: dont use int for ABI Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 259/644] ALSA: usb-audio: Validate UAC3 power domain descriptors, too Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 260/644] ALSA: usb-audio: Validate UAC3 cluster segment descriptors Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 261/644] gpio: virtio: Fix config space reading Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 262/644] netlink: avoid infinite retry looping in netlink_unicast() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 263/644] net: gianfar: fix device leak when querying time stamp info Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 264/644] net: dpaa: " Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 265/644] net: usb: asix_devices: add phy_mask for ax88772 mdio bus Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 266/644] nfsd: handle get_client_locked() failure in nfsd4_setclientid_confirm() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 267/644] NFSD: detect mismatch of file handle and delegation stateid in OPEN op Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 5.15 268/644] sunvdc: Balance device refcount in vdc_port_mpgroup_check Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 269/644] fs: Prevent file descriptor table allocations exceeding INT_MAX Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 270/644] eventpoll: Fix semi-unbounded recursion Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 271/644] Documentation: ACPI: Fix parent device references Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 272/644] ACPI: processor: perflib: Fix initial _PPC limit application Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 273/644] ACPI: processor: perflib: Move problematic pr->performance check Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 274/644] udp: also consider secpath when evaluating ipsec use for checksumming Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 275/644] netfilter: ctnetlink: fix refcount leak on table dump Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 276/644] sctp: linearize cloned gso packets in sctp_rcv Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 277/644] intel_idle: Allow loading ACPI tables for any family Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 278/644] cpuidle: governors: menu: Avoid using invalid recent intervals data Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 279/644] ptp: prevent possible ABBA deadlock in ptp_clock_freerun() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 280/644] hfs: fix slab-out-of-bounds in hfs_bnode_read() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 281/644] hfsplus: fix slab-out-of-bounds in hfsplus_bnode_read() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 282/644] hfsplus: fix slab-out-of-bounds read in hfsplus_uni2asc() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 283/644] hfsplus: dont use BUG_ON() in hfsplus_create_attributes_file() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 284/644] arm64: Handle KCOV __init vs inline mismatches Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 285/644] smb/server: avoid deadlock when linking with ReplaceIfExists Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 286/644] udf: Verify partition map count Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 287/644] drbd: add missing kref_get in handle_write_conflicts Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 288/644] hfs: fix not erasing deleted b-tree node issue Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 289/644] better lockdep annotations for simple_recursive_removal() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 290/644] ata: libata-sata: Disallow changing LPM state if not supported Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 291/644] fs/ntfs3: Add sanity check for file name Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 292/644] fs/ntfs3: correctly create symlink for relative path Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 293/644] ext2: Handle fiemap on empty files to prevent EINVAL Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 294/644] securityfs: dont pin dentries twice, once is enough Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 295/644] usb: xhci: print xhci->xhc_state when queue_command failed Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 296/644] cpufreq: CPPC: Mark driver with NEED_UPDATE_LIMITS flag Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 297/644] selftests/futex: Define SYS_futex on 32-bit architectures with 64-bit time_t Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 298/644] usb: typec: ucsi: psy: Set current max to 100mA for BC 1.2 and Default Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 299/644] usb: xhci: Avoid showing warnings for dying controller Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 300/644] usb: xhci: Set avg_trb_len = 8 for EP0 during Address Device Command Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 301/644] usb: xhci: Avoid showing errors during surprise removal Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 302/644] gpio: wcd934x: check the return value of regmap_update_bits() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 303/644] cpufreq: Exit governor when failed to start old governor Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 304/644] ARM: rockchip: fix kernel hang during smp initialization Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 305/644] PM / devfreq: governor: Replace sscanf() with kstrtoul() in set_freq_store() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 306/644] EDAC/synopsys: Clear the ECC counters on init Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 307/644] ASoC: soc-dapm: set bias_level if snd_soc_dapm_set_bias_level() was successed Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 308/644] thermal/drivers/qcom-spmi-temp-alarm: Enable stage 2 shutdown when required Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 309/644] tools/nolibc: define time_t in terms of __kernel_old_time_t Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 310/644] gpio: tps65912: check the return value of regmap_update_bits() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 311/644] ARM: tegra: Use I/O memcpy to write to IRAM Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 312/644] selftests: tracing: Use mutex_unlock for testing glob filter Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 313/644] ACPI: PRM: Reduce unnecessary printing to avoid user confusion Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 314/644] PM: runtime: Clear power.needs_force_resume in pm_runtime_reinit() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 315/644] thermal: sysfs: Return ENODATA instead of EAGAIN for reads Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 316/644] PM: sleep: console: Fix the black screen issue Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 317/644] ACPI: processor: fix acpi_object initialization Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 318/644] mmc: sdhci-msm: Ensure SD card power isnt ON when card removed Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 319/644] ACPI: APEI: GHES: add TAINT_MACHINE_CHECK on GHES panic path Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 320/644] pps: clients: gpio: fix interrupt handling order in remove path Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 321/644] reset: brcmstb: Enable reset drivers for ARCH_BCM2835 Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 322/644] mmc: rtsx_usb_sdmmc: Fix error-path in sd_set_power_mode() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 323/644] x86/bugs: Avoid warning when overriding return thunk Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 324/644] ASoC: hdac_hdmi: Rate limit logging on connection and disconnection Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 325/644] ALSA: intel8x0: Fix incorrect codec index usage in mixer for ICH4 Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 326/644] ASoC: core: Check for rtd == NULL in snd_soc_remove_pcm_runtime() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 327/644] usb: typec: intel_pmc_mux: Defer probe if SCU IPC isnt present Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 5.15 328/644] usb: core: usb_submit_urb: downgrade type check Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 329/644] pm: cpupower: Fix the snapshot-order of tsc,mperf, clock in mperf_stop() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 330/644] platform/x86: thinkpad_acpi: Handle KCOV __init vs inline mismatches Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 331/644] platform/chrome: cros_ec_typec: Defer probe on missing EC parent Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 332/644] ALSA: hda/ca0132: Fix buffer overflow in add_tuning_control Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 333/644] ALSA: pcm: Rewrite recalculate_boundary() to avoid costly loop Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 334/644] ALSA: usb-audio: Avoid precedence issues in mixer_quirks macros Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 335/644] iio: adc: ad7768-1: Ensure SYNC_IN pulse minimum timing requirement Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 336/644] ASoC: codecs: rt5640: Retry DEVICE_ID verification Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 337/644] xen/netfront: Fix TX response spurious interrupts Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 338/644] ktest.pl: Prevent recursion of default variable options Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 339/644] wifi: cfg80211: reject HTC bit for management frames Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 340/644] s390/time: Use monotonic clock in get_cycles() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 341/644] be2net: Use correct byte order and format string for TCP seq and ack_seq Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 342/644] et131x: Add missing check after DMA map Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 343/644] net: ag71xx: " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 344/644] net/mlx5e: Properly access RCU protected qdisc_sleeping variable Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 345/644] arm64: Mark kernel as tainted on SAE and SError panic Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 346/644] rcu: Protect ->defer_qs_iw_pending from data race Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 347/644] net: mctp: Prevent duplicate binds Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 348/644] wifi: cfg80211: Fix interface type validation Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 349/644] net: ipv4: fix incorrect MTU in broadcast routes Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 350/644] net: thunderx: Fix format-truncation warning in bgx_acpi_match_id() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 351/644] sched/deadline: Fix accounting after global limits change Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 352/644] wifi: iwlwifi: mvm: fix scan request validation Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 353/644] s390/stp: Remove udelay from stp_sync_clock() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 354/644] wifi: mac80211: dont complete management TX on SAE commit Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 355/644] (powerpc/512) Fix possible `dma_unmap_single()` on uninitialized pointer Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 356/644] ipv6: mcast: Check inet6_dev->dead under idev->mc_lock in __ipv6_dev_mc_inc() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 357/644] drm/msm: use trylock for debugfs Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 358/644] net: thunderbolt: Fix the parameter passing of tb_xdomain_enable_paths()/tb_xdomain_disable_paths() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 359/644] net: atlantic: add set_power to fw_ops for atl2 to fix wol Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 360/644] net: fec: allow disable coalescing Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 361/644] drm/amd/display: Separate set_gsl from set_gsl_source_select Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 362/644] wifi: iwlwifi: dvm: fix potential overflow in rs_fill_link_cmd() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 363/644] wifi: iwlwifi: fw: Fix possible memory leak in iwl_fw_dbg_collect Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 364/644] drm/amd/display: Fix failed to blank crtc! Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 365/644] wifi: rtlwifi: fix possible skb memory leak in `_rtl_pci_rx_interrupt()` Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 366/644] netmem: fix skb_frag_address_safe with unreadable skbs Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 367/644] wifi: iwlegacy: Check rate_idx range after addition Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 368/644] dpaa_eth: dont use fixed_phy_change_carrier Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 369/644] drm/amd: Allow printing VanGogh OD SCLK levels without setting dpm to manual Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 370/644] net: vlan: Replace BUG() with WARN_ON_ONCE() in vlan_dev_* stubs Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 371/644] gve: Return error for unknown admin queue command Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 372/644] net: dsa: b53: fix b53_imp_vlan_setup for BCM5325 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 373/644] net: dsa: b53: prevent GMII_PORT_OVERRIDE_CTRL access on BCM5325 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 374/644] net: dsa: b53: prevent DIS_LEARNING " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 375/644] net: dsa: b53: prevent SWITCH_CTRL " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 376/644] wifi: rtlwifi: fix possible skb memory leak in _rtl_pci_init_one_rxdesc() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 377/644] net: ncsi: Fix buffer overflow in fetching version id Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 378/644] drm/ttm: Should to return the evict error Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 379/644] uapi: in6: restore visibility of most IPv6 socket options Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 380/644] drm/ttm: Respect the shrinker core free target Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 381/644] net: dsa: b53: fix IP_MULTICAST_CTRL on BCM5325 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 382/644] vhost: fail early when __vhost_add_used() fails Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 383/644] watchdog: sbsa: Adjust keepalive timeout to avoid MediaTek WS0 race condition Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 384/644] cifs: Fix calling CIFSFindFirst() for root path without msearch Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 385/644] crypto: hisilicon/hpre - fix dma unmap sequence Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 386/644] ext4: do not BUG when INLINE_DATA_FL lacks system.data xattr Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 387/644] scsi: libiscsi: Initialize iscsi_conn->dd_data only if memory is allocated Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 5.15 388/644] fs/orangefs: use snprintf() instead of sprintf() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 389/644] watchdog: dw_wdt: Fix default timeout Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 390/644] MIPS: vpe-mt: add missing prototypes for vpe_{alloc,start,stop,free} Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 391/644] watchdog: iTCO_wdt: Report error if timeout configuration fails Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 392/644] scsi: bfa: Double-free fix Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 393/644] jfs: truncate good inode pages when hard link is 0 Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 394/644] jfs: Regular file corruption check Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 395/644] jfs: upper bound check of tree index in dbAllocAG Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 396/644] MIPS: Dont crash in stack_top() for tasks without ABI or vDSO Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 397/644] media: v4l2-common: Reduce warnings about missing V4L2_CID_LINK_FREQ control Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 398/644] leds: leds-lp50xx: Handle reg to get correct multi_index Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 399/644] RDMA: hfi1: fix possible divide-by-zero in find_hw_thread_mask() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 400/644] RDMA/core: reduce stack using in nldev_stat_get_doit() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 401/644] scsi: lpfc: Check for hdwq null ptr when cleaning up lpfc_vport structure Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 402/644] scsi: mpt3sas: Correctly handle ATA device errors Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 403/644] pinctrl: stm32: Manage irq affinity settings Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 404/644] media: tc358743: Check I2C succeeded during probe Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 405/644] media: tc358743: Return an appropriate colorspace from tc358743_set_fmt Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 406/644] media: tc358743: Increase FIFO trigger level to 374 Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 407/644] media: usb: hdpvr: disable zero-length read messages Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 408/644] media: dvb-frontends: dib7090p: fix null-ptr-deref in dib7090p_rw_on_apb() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 409/644] media: dvb-frontends: w7090p: fix null-ptr-deref in w7090p_tuner_write_serpar and w7090p_tuner_read_serpar Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 410/644] media: uvcvideo: Fix bandwidth issue for Alcor camera Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 411/644] crypto: octeontx2 - add timeout for load_fvc completion poll Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 412/644] md: dm-zoned-target: Initialize return variable r to avoid uninitialized use Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 413/644] i3c: add missing include to internal header Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 414/644] rtc: ds1307: handle oscillator stop flag (OSF) for ds1341 Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 415/644] i3c: dont fail if GETHDRCAP is unsupported Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 416/644] dm-mpath: dont print the "loaded" message if registering fails Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 417/644] i2c: Force DLL0945 touchpad i2c freq to 100khz Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 418/644] kconfig: lxdialog: replace strcpy() with strncpy() in inputbox.c Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 419/644] kconfig: nconf: Ensure null termination where strncpy is used Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 420/644] scsi: Fix sas_user_scan() to handle wildcard and multi-channel scans Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 421/644] scsi: target: core: Generate correct identifiers for PR OUT transport IDs Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 422/644] scsi: aacraid: Stop using PCI_IRQ_AFFINITY Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 423/644] ipmi: Use dev_warn_ratelimited() for incorrect message warnings Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 424/644] kconfig: gconf: avoid hardcoding model2 in on_treeview2_cursor_changed() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 425/644] kconfig: gconf: fix potential memory leak in renderer_edited() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 426/644] kconfig: lxdialog: fix space to (de)select options Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 427/644] ipmi: Fix strcpy source and destination the same Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 428/644] net: phy: smsc: add proper reset flags for LAN8710A Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 429/644] block: avoid possible overflow for chunk_sectors check in blk_stack_limits() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 430/644] pNFS: Fix stripe mapping in block/scsi layout Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 431/644] pNFS: Fix disk addr range check " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 432/644] pNFS: Handle RPC size limit for layoutcommits Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 433/644] pNFS: Fix uninited ptr deref in block/scsi layout Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 434/644] rtc: ds1307: remove clear of oscillator stop flag (OSF) in probe Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 435/644] scsi: lpfc: Remove redundant assignment to avoid memory leak Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 436/644] ASoC: soc-dai.c: add missing flag check at snd_soc_pcm_dai_probe() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 437/644] ASoC: soc-dai.h: merge DAI call back functions into ops Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 438/644] ASoC: fsl_sai: replace regmap_write with regmap_update_bits Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 439/644] drm/amdgpu: fix incorrect vm flags to map bo Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 440/644] ext4: fix largest free orders lists corruption on mb_optimize_scan switch Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 441/644] usb: core: config: Prevent OOB read in SS endpoint companion parsing Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 442/644] misc: rtsx: usb: Ensure mmc child device is active when card is present Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 443/644] usb: typec: ucsi: Update power_supply on power role change Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 444/644] comedi: fix race between polling and detaching Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 445/644] thunderbolt: Fix copy+paste error in match_service_id() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 446/644] cdc-acm: fix race between initial clearing halt and open Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 447/644] btrfs: fix log tree replay failure due to file with 0 links and extents Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 5.15 448/644] btrfs: do not allow relocation of partially dropped subvolumes Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 449/644] fbdev: Fix vmalloc out-of-bounds write in fast_imageblit Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 450/644] parisc: Makefile: fix a typo in palo.conf Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 451/644] mm/kmemleak: avoid soft lockup in __kmemleak_do_cleanup() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 452/644] mm/kmemleak: avoid deadlock by moving pr_warn() outside kmemleak_lock Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 453/644] media: uvcvideo: Fix 1-byte out-of-bounds read in uvc_parse_format() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 454/644] media: uvcvideo: Do not mark valid metadata as invalid Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 455/644] HID: magicmouse: avoid setting up battery timer when not needed Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 456/644] serial: 8250: fix panic due to PSLVERR Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 457/644] cpufreq: armada-8k: Fix off by one in armada_8k_cpufreq_free_table() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 458/644] m68k: Fix lost column on framebuffer debug console Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 459/644] usb: atm: cxacru: Merge cxacru_upload_firmware() into cxacru_heavy_init() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 460/644] usb: gadget: udc: renesas_usb3: fix device leak at unbind Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 461/644] usb: dwc3: meson-g12a: fix device leaks " Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 462/644] bus: mhi: host: Fix endianness of BHI vector table Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 463/644] vt: keyboard: Dont process Unicode characters in K_OFF mode Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 464/644] vt: defkeymap: Map keycodes above 127 to K_HOLE Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 465/644] lib/crypto: mips/chacha: Fix clang build and remove unneeded byteswap Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 466/644] Revert "vgacon: Add check for vc_origin address range in vgacon_scroll()" Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 467/644] ext4: check fast symlink for ea_inode correctly Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 468/644] ext4: fix fsmap end of range reporting with bigalloc Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 469/644] ext4: fix reserved gdt blocks handling in fsmap Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 470/644] ext4: dont try to clear the orphan_present feature block device is r/o Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 471/644] ext4: use kmalloc_array() for array space allocation Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 472/644] ext4: fix hole length calculation overflow in non-extent inodes Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 473/644] scsi: mpi3mr: Fix race between config read submit and interrupt completion Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 474/644] ata: libata-scsi: Fix ata_to_sense_error() status handling Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 475/644] zynq_fpga: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 476/644] wifi: brcmsmac: Remove const from tbl_ptr parameter in wlc_lcnphy_common_read_table() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 477/644] wifi: ath11k: fix source ring-buffer corruption Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 478/644] pwm: imx-tpm: Reset counter if CMOD is 0 Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 479/644] hwmon: (gsc-hwmon) fix fan pwm setpoint show functions Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 480/644] mtd: spinand: propagate spinand_wait() errors from spinand_write_page() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 481/644] mtd: rawnand: fsmc: Add missing check after DMA map Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 482/644] PCI: endpoint: Fix configfs group list head handling Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 483/644] PCI: endpoint: Fix configfs group removal on driver teardown Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 484/644] jbd2: prevent softlockup in jbd2_log_do_checkpoint() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 485/644] soc/tegra: pmc: Ensure power-domains are in a known state Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 486/644] media: gspca: Add bounds checking to firmware parser Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 487/644] media: hi556: correct the test pattern configuration Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 488/644] media: imx: fix a potential memory leak in imx_media_csc_scaler_device_init() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 489/644] media: v4l2-ctrls: Dont reset handlers error in v4l2_ctrl_handler_free() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 490/644] media: usbtv: Lock resolution while streaming Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 491/644] media: rainshadow-cec: fix TOCTOU race condition in rain_interrupt() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 492/644] media: ov2659: Fix memory leaks in ov2659_probe() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 493/644] media: venus: Add a check for packet size after reading from shared memory Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 494/644] media: venus: hfi: explicitly release IRQ during teardown Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 495/644] media: venus: vdec: Clamp param smaller than 1fps and bigger than 240 Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 496/644] media: venus: venc: " Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 497/644] drm/amd: Restore cached power limit during resume Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 498/644] drm/amd/display: Dont overwrite dce60_clk_mgr Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 499/644] net, hsr: reject HSR frame if skb cant hold tag Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 500/644] ipv6: sr: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 501/644] mptcp: drop skb if MPTCP skb extension allocation fails Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 502/644] mptcp: pm: kernel: flush: do not reset ADD_ADDR limit Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 503/644] sch_htb: make htb_qlen_notify() idempotent Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 504/644] sch_hfsc: make hfsc_qlen_notify() idempotent Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 505/644] sch_qfq: make qfq_qlen_notify() idempotent Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 506/644] mm: drop the assumption that VM_SHARED always implies writable Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 507/644] mm: update memfd seal write check to include F_SEAL_WRITE Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 5.15 508/644] mm: reinstate ability to map write-sealed memfd mappings read-only Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 509/644] selftests/memfd: add test for mapping write-sealed memfd read-only Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 510/644] ice: Fix a null pointer dereference in ice_copy_and_init_pkg() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 511/644] drm/sched: Remove optimization that causes hang when killing dependent jobs Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 512/644] arm64/entry: Mask DAIF in cpu_switch_to(), call_on_irq_stack() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 513/644] ARM: 9448/1: Use an absolute path to unified.h in KBUILD_AFLAGS Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 514/644] f2fs: fix to do sanity check on ino and xnid Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 515/644] iio: hid-sensor-prox: Restore lost scale assignments Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 516/644] iio: hid-sensor-prox: Fix incorrect OFFSET calculation Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 517/644] x86/mce/amd: Add default names for MCA banks and blocks Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 518/644] usb: hub: avoid warm port reset during USB3 disconnect Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 519/644] usb: hub: Dont try to recover devices lost during warm reset Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 520/644] smb: client: fix use-after-free in crypt_message when using async crypto Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 521/644] x86/fpu: Delay instruction pointer fixup until after warning Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 522/644] ALSA: scarlett2: Add retry on -EPROTO from scarlett2_usb_tx() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 523/644] smb: server: Fix extension string in ksmbd_extract_shortname() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 524/644] hv_netvsc: Fix panic during namespace deletion with VF Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 525/644] usb: typec: fusb302: cache PD RX state Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 526/644] PCI/ACPI: Fix runtime PM ref imbalance on Hot-Plug Capable ports Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 527/644] block: Make REQ_OP_ZONE_FINISH a write operation Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 528/644] net: enetc: fix device and OF node leak at probe Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 529/644] NFS: Create an nfs4_server_set_init_caps() function Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 530/644] NFS: Fix the setting of capabilities when automounting a new filesystem Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 531/644] mm/ptdump: take the memory hotplug lock inside ptdump_walk_pgd() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 532/644] usb: musb: omap2430: Convert to platform remove callback returning void Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 533/644] usb: musb: omap2430: fix device leak at unbind Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 534/644] ata: Fix SATA_MOBILE_LPM_POLICY description in Kconfig Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 535/644] bus: mhi: host: Detect events pointing to unexpected TREs Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 536/644] usb: dwc3: imx8mp: fix device leak at unbind Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 537/644] platform/chrome: cros_ec: Make cros_ec_unregister() return void Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 538/644] platform/chrome: cros_ec: Use per-device lockdep key Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 539/644] platform/chrome: cros_ec: remove unneeded label and if-condition Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 540/644] platform/chrome: cros_ec: Unregister notifier in cros_ec_unregister() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 541/644] net/sched: sch_ets: properly init all active DRR list handles Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 542/644] net_sched: sch_ets: implement lockless ets_dump() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 543/644] net/sched: ets: use old nbands while purging unused classes Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 544/644] KVM: VMX: Flush shadow VMCS on emergency reboot Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 545/644] btrfs: populate otime when logging an inode item Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 546/644] sch_drr: make drr_qlen_notify() idempotent Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 547/644] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 548/644] sch_htb: make htb_deactivate() idempotent Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 549/644] PCI: vmd: Assign VMD IRQ domain before enumeration Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 550/644] ACPI: processor: idle: Check acpi_fetch_acpi_dev() return value Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 551/644] kbuild: userprogs: use correct linker when mixing clang and GNU ld Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 552/644] selftests: mptcp: make sendfile selftest work Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 553/644] selftests: mptcp: connect: also cover alt modes Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 554/644] selftests: mptcp: connect: also cover checksum Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 555/644] selftests: mptcp: add missing join check Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 556/644] mptcp: fix error mibs accounting Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 557/644] mptcp: introduce MAPPING_BAD_CSUM Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 558/644] selftests: mptcp: Initialize variables to quiet gcc 12 warnings Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 559/644] mptcp: drop unused sk in mptcp_push_release Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 560/644] mptcp: do not queue data on closed subflows Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 561/644] scsi: ufs: ufs-pci: Fix hibernate state transition for Intel MTL-like host controllers Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 562/644] scsi: ufs: ufs-pci: Fix default runtime and system PM levels Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 563/644] KVM: arm64: Fix kernel BUG() due to bad backport of FPSIMD/SVE/SME fix Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 564/644] memstick: Fix deadlock by moving removing flag earlier Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 565/644] mmc: sdhci-pci-gli: GL9763e: Rename the gli_set_gl9763e() for consistency Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 566/644] squashfs: fix memory leak in squashfs_fill_super Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 567/644] mm/debug_vm_pgtable: clear page table entries at destroy_args() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 5.15 568/644] ALSA: hda/realtek: Add support for HP EliteBook x360 830 G6 and EliteBook 830 G6 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 569/644] drm/amd/display: Avoid a NULL pointer dereference Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 570/644] drm/amd/display: Fix fractional fb divider in set_pixel_clock_v3 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 571/644] drm/amd/display: Fix DP audio DTO1 clock source on DCE 6 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 572/644] drm/amd/display: Find first CRTC and its line time in dce110_fill_display_configs Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 573/644] drm/amd/display: Fill display clock and vblank " Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 574/644] fs/buffer: fix use-after-free when call bh_read() helper Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 575/644] use uniform permission checks for all mount propagation changes Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 576/644] fpga: zynq_fpga: Fix the wrong usage of dma_map_sgtable() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 577/644] ftrace: Also allocate and copy hash for reading of filter files Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 578/644] iio: pressure: bmp280: Use IS_ERR() in bmp280_common_probe() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 579/644] iio: proximity: isl29501: fix buffered read on big-endian systems Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 580/644] most: core: Drop device reference after usage in get_channel() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 581/644] usb: quirks: Add DELAY_INIT quick for another SanDisk 3.2Gen1 Flash Drive Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 582/644] comedi: Make insn_rw_emulate_bits() do insn->n samples Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 583/644] comedi: pcl726: Prevent invalid irq number Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 584/644] comedi: Fix use of uninitialized memory in do_insn_ioctl() and do_insnlist_ioctl() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 585/644] usb: core: hcd: fix accessing unmapped memory in SINGLE_STEP_SET_FEATURE test Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 586/644] usb: renesas-xhci: Fix External ROM access timeouts Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 587/644] USB: storage: Add unusual-devs entry for Novatek NTK96550-based camera Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 588/644] usb: storage: realtek_cr: Use correct byte order for bcs->Residue Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 589/644] USB: storage: Ignore driver CD mode for Realtek multi-mode Wi-Fi dongles Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 590/644] usb: dwc3: Ignore late xferNotReady event to prevent halt timeout Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 591/644] usb: dwc3: Remove WARN_ON for device endpoint command timeouts Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 592/644] drm/amd/display: Dont overclock DCE 6 by 15% Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 593/644] mptcp: disable add_addr retransmission when timeout is 0 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 594/644] drm/dp: Change AUX DPCD probe address from DPCD_REV to LANE0_1_STATUS Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 595/644] f2fs: fix to avoid out-of-boundary access in dnode page Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 596/644] media: camss: Convert to platform remove callback returning void Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 597/644] media: qcom: camss: cleanup media device allocated resource on error path Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 598/644] media: venus: Add support for SSR trigger using fault injection Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 599/644] media: venus: protect against spurious interrupts during probe Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 600/644] locking/barriers, kcsan: Support generic instrumentation Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 601/644] asm-generic: Add memory barrier dma_mb() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 602/644] wifi: ath11k: fix dest ring-buffer corruption when ring is full Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 603/644] soc: qcom: mdt_loader: Ensure we dont read past the ELF header Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 604/644] iio: adc: ad_sigma_delta: change to buffer predisable Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 605/644] scsi: ufs: exynos: Fix programming of HCI_UTRL_NEXUS_TYPE Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 606/644] scsi: mpi3mr: Drop unnecessary volatile from __iomem pointers Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 607/644] scsi: mpi3mr: Serialize admin queue BAR writes on 32-bit systems Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 608/644] pwm: mediatek: Implement .apply() callback Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 609/644] pwm: mediatek: Handle hardware enable and clock enable separately Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 610/644] pwm: mediatek: Fix duty and period setting Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 611/644] selftests: mptcp: pm: check flush doesnt reset limits Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 612/644] compiler: remove __ADDRESSABLE_ASM{_STR,}() again Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 613/644] usb: xhci: Fix slot_id resource race conflict Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 614/644] iio: imu: inv_icm42600: change invalid data error to -EBUSY Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 615/644] tracing: Remove unneeded goto out logic Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 616/644] tracing: Limit access to parser->buffer when trace_get_user failed Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 617/644] iio: light: as73211: Ensure buffer holes are zeroed Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 618/644] mm/memory-failure: fix infinite UCE for VM_PFNMAP pfn Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 619/644] x86/cpu/hygon: Add missing resctrl_cpu_detect() in bsp_init helper Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 620/644] mm/page_alloc: detect allocation forbidden by cpuset and bail out early Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 621/644] cgroup/cpuset: Use static_branch_enable_cpuslocked() on cpusets_insane_config_key Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 622/644] RDMA/bnxt_re: Fix to initialize the PBL array Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 623/644] net: bridge: fix soft lockup in br_multicast_query_expired() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 624/644] scsi: qla4xxx: Prevent a potential error pointer dereference Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 625/644] iommu/amd: Avoid stack buffer overflow from kernel cmdline Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 626/644] mlxsw: spectrum: Forward packets with an IPv4 link-local source IP Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 627/644] drm/hisilicon/hibmc: fix the hibmc loaded failed bug Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 5.15 628/644] ALSA: usb-audio: Fix size validation in convert_chmap_v3() Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 629/644] drm/amd/display: Add null pointer check in mod_hdcp_hdcp1_create_session() Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 630/644] ipv6: sr: validate HMAC algorithm ID in seg6_hmac_info_add Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 631/644] ppp: fix race conditions in ppp_fill_forward_path Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 632/644] net: phy: Use netif_rx() Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 633/644] phy: mscc: Fix timestamping for vsc8584 Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 634/644] net: usb: asix_devices: Fix PHY address mask in MDIO bus initialization Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 635/644] ixgbe: xsk: resolve the negative overflow of budget in ixgbe_xmit_zc Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 636/644] igc: fix disabling L1.2 PCI-E link substate on I226 on init Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 637/644] net/sched: Make cake_enqueue return NET_XMIT_CN when past buffer_limit Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 638/644] net/sched: Remove unnecessary WARNING condition for empty child qdisc in htb_activate Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 639/644] bonding: update LACP activity flag after setting lacp_active Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 640/644] ALSA: usb-audio: Use correct sub-type for UAC3 feature unit validation Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 641/644] s390/hypfs: Avoid unnecessary ioctl registration in debugfs Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 642/644] s390/hypfs: Enable limited access during lockdown Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 643/644] netfilter: nf_reject: dont leak dst refcount for loopback packets Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 5.15 644/644] wifi: mac80211: check basic rates validity in sta_link_apply_parameters Greg Kroah-Hartman
2025-08-26 17:20 ` [PATCH 5.15 000/644] 5.15.190-rc1 review Florian Fainelli
2025-08-26 17:43 ` Jon Hunter
2025-08-26 17:47 ` Brett A C Sheffield
2025-08-27 9:22 ` [PATCH 5.15 000/644] " Anders Roxell
2025-08-27 9:29 ` Ron Economos
2025-08-28 8:26 ` Vijayendra Suman
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=20250826110952.137414808@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=jasowang@redhat.com \
--cc=kuba@kernel.org \
--cc=pabeni@redhat.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=xuanzhuo@linux.alibaba.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).