public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Vlastimil Babka <vbabka@suse.cz>,
	kernel test robot <oliver.sang@intel.com>,
	Mel Gorman <mgorman@techsingularity.net>,
	Brendan Jackman <jackmanb@google.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	Michal Hocko <mhocko@suse.com>,
	Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
	Steven Rostedt <rostedt@goodmis.org>,
	Suren Baghdasaryan <surenb@google.com>, Zi Yan <ziy@nvidia.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Sasha Levin <sashal@kernel.org>,
	Matthew Wilcox <willy@infradead.org>
Subject: [PATCH 6.6 235/254] mm/page_alloc: prevent pcp corruption with SMP=n
Date: Wed, 28 Jan 2026 16:23:31 +0100	[thread overview]
Message-ID: <20260128145353.248755629@linuxfoundation.org> (raw)
In-Reply-To: <20260128145344.698118637@linuxfoundation.org>

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

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

From: Vlastimil Babka <vbabka@suse.cz>

[ Upstream commit 038a102535eb49e10e93eafac54352fcc5d78847 ]

The kernel test robot has reported:

 BUG: spinlock trylock failure on UP on CPU#0, kcompactd0/28
  lock: 0xffff888807e35ef0, .magic: dead4ead, .owner: kcompactd0/28, .owner_cpu: 0
 CPU: 0 UID: 0 PID: 28 Comm: kcompactd0 Not tainted 6.18.0-rc5-00127-ga06157804399 #1 PREEMPT  8cc09ef94dcec767faa911515ce9e609c45db470
 Call Trace:
  <IRQ>
  __dump_stack (lib/dump_stack.c:95)
  dump_stack_lvl (lib/dump_stack.c:123)
  dump_stack (lib/dump_stack.c:130)
  spin_dump (kernel/locking/spinlock_debug.c:71)
  do_raw_spin_trylock (kernel/locking/spinlock_debug.c:?)
  _raw_spin_trylock (include/linux/spinlock_api_smp.h:89 kernel/locking/spinlock.c:138)
  __free_frozen_pages (mm/page_alloc.c:2973)
  ___free_pages (mm/page_alloc.c:5295)
  __free_pages (mm/page_alloc.c:5334)
  tlb_remove_table_rcu (include/linux/mm.h:? include/linux/mm.h:3122 include/asm-generic/tlb.h:220 mm/mmu_gather.c:227 mm/mmu_gather.c:290)
  ? __cfi_tlb_remove_table_rcu (mm/mmu_gather.c:289)
  ? rcu_core (kernel/rcu/tree.c:?)
  rcu_core (include/linux/rcupdate.h:341 kernel/rcu/tree.c:2607 kernel/rcu/tree.c:2861)
  rcu_core_si (kernel/rcu/tree.c:2879)
  handle_softirqs (arch/x86/include/asm/jump_label.h:36 include/trace/events/irq.h:142 kernel/softirq.c:623)
  __irq_exit_rcu (arch/x86/include/asm/jump_label.h:36 kernel/softirq.c:725)
  irq_exit_rcu (kernel/softirq.c:741)
  sysvec_apic_timer_interrupt (arch/x86/kernel/apic/apic.c:1052)
  </IRQ>
  <TASK>
 RIP: 0010:_raw_spin_unlock_irqrestore (arch/x86/include/asm/preempt.h:95 include/linux/spinlock_api_smp.h:152 kernel/locking/spinlock.c:194)
  free_pcppages_bulk (mm/page_alloc.c:1494)
  drain_pages_zone (include/linux/spinlock.h:391 mm/page_alloc.c:2632)
  __drain_all_pages (mm/page_alloc.c:2731)
  drain_all_pages (mm/page_alloc.c:2747)
  kcompactd (mm/compaction.c:3115)
  kthread (kernel/kthread.c:465)
  ? __cfi_kcompactd (mm/compaction.c:3166)
  ? __cfi_kthread (kernel/kthread.c:412)
  ret_from_fork (arch/x86/kernel/process.c:164)
  ? __cfi_kthread (kernel/kthread.c:412)
  ret_from_fork_asm (arch/x86/entry/entry_64.S:255)
  </TASK>

Matthew has analyzed the report and identified that in drain_page_zone()
we are in a section protected by spin_lock(&pcp->lock) and then get an
interrupt that attempts spin_trylock() on the same lock.  The code is
designed to work this way without disabling IRQs and occasionally fail the
trylock with a fallback.  However, the SMP=n spinlock implementation
assumes spin_trylock() will always succeed, and thus it's normally a
no-op.  Here the enabled lock debugging catches the problem, but otherwise
it could cause a corruption of the pcp structure.

The problem has been introduced by commit 574907741599 ("mm/page_alloc:
leave IRQs enabled for per-cpu page allocations").  The pcp locking scheme
recognizes the need for disabling IRQs to prevent nesting spin_trylock()
sections on SMP=n, but the need to prevent the nesting in spin_lock() has
not been recognized.  Fix it by introducing local wrappers that change the
spin_lock() to spin_lock_iqsave() with SMP=n and use them in all places
that do spin_lock(&pcp->lock).

[vbabka@suse.cz: add pcp_ prefix to the spin_lock_irqsave wrappers, per Steven]
Link: https://lkml.kernel.org/r/20260105-fix-pcp-up-v1-1-5579662d2071@suse.cz
Fixes: 574907741599 ("mm/page_alloc: leave IRQs enabled for per-cpu page allocations")
Signed-off-by: Vlastimil Babka <vbabka@suse.cz>
Reported-by: kernel test robot <oliver.sang@intel.com>
Closes: https://lore.kernel.org/oe-lkp/202512101320.e2f2dd6f-lkp@intel.com
Analyzed-by: Matthew Wilcox <willy@infradead.org>
Link: https://lore.kernel.org/all/aUW05pyc9nZkvY-1@casper.infradead.org/
Acked-by: Mel Gorman <mgorman@techsingularity.net>
Cc: Brendan Jackman <jackmanb@google.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Suren Baghdasaryan <surenb@google.com>
Cc: Zi Yan <ziy@nvidia.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
[ drop changes to decay_pcp_high() and zone_pcp_update_cacheinfo() ]
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 mm/page_alloc.c |   37 +++++++++++++++++++++++++++++++++----
 1 file changed, 33 insertions(+), 4 deletions(-)

--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -160,6 +160,33 @@ static DEFINE_MUTEX(pcp_batch_high_lock)
 #define pcp_spin_unlock(ptr)						\
 	pcpu_spin_unlock(lock, ptr)
 
+/*
+ * With the UP spinlock implementation, when we spin_lock(&pcp->lock) (for i.e.
+ * a potentially remote cpu drain) and get interrupted by an operation that
+ * attempts pcp_spin_trylock(), we can't rely on the trylock failure due to UP
+ * spinlock assumptions making the trylock a no-op. So we have to turn that
+ * spin_lock() to a spin_lock_irqsave(). This works because on UP there are no
+ * remote cpu's so we can only be locking the only existing local one.
+ */
+#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT_RT)
+static inline void __flags_noop(unsigned long *flags) { }
+#define pcp_spin_lock_maybe_irqsave(ptr, flags)		\
+({							\
+	 __flags_noop(&(flags));			\
+	 spin_lock(&(ptr)->lock);			\
+})
+#define pcp_spin_unlock_maybe_irqrestore(ptr, flags)	\
+({							\
+	 spin_unlock(&(ptr)->lock);			\
+	 __flags_noop(&(flags));			\
+})
+#else
+#define pcp_spin_lock_maybe_irqsave(ptr, flags)		\
+		spin_lock_irqsave(&(ptr)->lock, flags)
+#define pcp_spin_unlock_maybe_irqrestore(ptr, flags)	\
+		spin_unlock_irqrestore(&(ptr)->lock, flags)
+#endif
+
 #ifdef CONFIG_USE_PERCPU_NUMA_NODE_ID
 DEFINE_PER_CPU(int, numa_node);
 EXPORT_PER_CPU_SYMBOL(numa_node);
@@ -2181,14 +2208,15 @@ static int rmqueue_bulk(struct zone *zon
  */
 void drain_zone_pages(struct zone *zone, struct per_cpu_pages *pcp)
 {
+	unsigned long UP_flags;
 	int to_drain, batch;
 
 	batch = READ_ONCE(pcp->batch);
 	to_drain = min(pcp->count, batch);
 	if (to_drain > 0) {
-		spin_lock(&pcp->lock);
+		pcp_spin_lock_maybe_irqsave(pcp, UP_flags);
 		free_pcppages_bulk(zone, to_drain, pcp, 0);
-		spin_unlock(&pcp->lock);
+		pcp_spin_unlock_maybe_irqrestore(pcp, UP_flags);
 	}
 }
 #endif
@@ -2199,10 +2227,11 @@ void drain_zone_pages(struct zone *zone,
 static void drain_pages_zone(unsigned int cpu, struct zone *zone)
 {
 	struct per_cpu_pages *pcp = per_cpu_ptr(zone->per_cpu_pageset, cpu);
+	unsigned long UP_flags;
 	int count;
 
 	do {
-		spin_lock(&pcp->lock);
+		pcp_spin_lock_maybe_irqsave(pcp, UP_flags);
 		count = pcp->count;
 		if (count) {
 			int to_drain = min(count,
@@ -2211,7 +2240,7 @@ static void drain_pages_zone(unsigned in
 			free_pcppages_bulk(zone, to_drain, pcp, 0);
 			count -= to_drain;
 		}
-		spin_unlock(&pcp->lock);
+		pcp_spin_unlock_maybe_irqrestore(pcp, UP_flags);
 	} while (count);
 }
 



  parent reply	other threads:[~2026-01-28 15:39 UTC|newest]

Thread overview: 265+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-28 15:19 [PATCH 6.6 000/254] 6.6.122-rc1 review Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 001/254] firmware: imx: scu-irq: Set mu_resource_id before get handle Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 002/254] efi/cper: Fix cper_bits_to_str buffer handling and return value Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 003/254] Revert "gfs2: Fix use of bio_chain" Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 004/254] ASoC: codecs: wsa884x: fix codec initialisation Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 005/254] xfrm: Fix inner mode lookup in tunnel mode GSO segmentation Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 006/254] pnfs/flexfiles: Fix memory leak in nfs4_ff_alloc_deviceid_node() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 007/254] can: etas_es58x: allow partial RX URB allocation to succeed Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 008/254] nvmet-tcp: remove boilerplate code Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 009/254] nvme-tcp: fix NULL pointer dereferences in nvmet_tcp_build_pdu_iovec Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 010/254] btrfs: send: check for inline extents in range_is_hole_in_parent() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 011/254] net: bridge: Set BR_FDB_ADDED_BY_USER early in fdb_add_entry Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 012/254] net: bridge: annotate data-races around fdb->{updated,used} Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 013/254] ip6_tunnel: use skb_vlan_inet_prepare() in __ip6_tnl_rcv() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 014/254] net: update netdev_lock_{type,name} Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 015/254] macvlan: fix possible UAF in macvlan_forward_source() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 016/254] ipv4: ip_gre: make ipgre_header() robust Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 017/254] vsock/test: add a final full barrier after run all tests Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 018/254] net/mlx5e: Restore destroying state bit after profile cleanup Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 019/254] btrfs: store fs_info in space_info Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 020/254] btrfs: factor out init_space_info() from create_space_info() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 021/254] btrfs: factor out check_removing_space_info() from btrfs_free_block_groups() Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 022/254] btrfs: introduce btrfs_space_info sub-group Greg Kroah-Hartman
2026-01-28 15:19 ` [PATCH 6.6 023/254] btrfs: fix memory leaks in create_space_info() error paths Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 024/254] net: hv_netvsc: reject RSS hash key programming without RX indirection table Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 025/254] ipv6: Fix use-after-free in inet6_addr_del() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 026/254] selftests: drv-net: fix RPS mask handling for high CPU numbers Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 027/254] net/sched: sch_qfq: do not free existing class in qfq_change_class() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 028/254] ASoC: tlv320adcx140: fix null pointer Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 029/254] ASoC: tlv320adcx140: fix word length Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 030/254] textsearch: describe @list member in ts_ops search Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 031/254] mm, kfence: describe @slab parameter in __kfence_obj_info() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 032/254] dmaengine: xilinx: xdma: Fix regmap max_register Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 033/254] dmaengine: tegra-adma: Fix use-after-free Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 034/254] dmaengine: xilinx_dma: Fix uninitialized addr_width when "xlnx,addrwidth" property is missing Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 035/254] phy: fsl-imx8mq-usb: Clear the PCS_TX_SWING_FULL field before using it Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 036/254] phy: phy-snps-eusb2: refactor constructs names Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 037/254] phy: drop probe registration printks Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 038/254] phy: qcom-qusb2: Fix NULL pointer dereference on early suspend Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 039/254] phy: stm32-usphyc: Fix off by one in probe() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 040/254] phy: broadcom: ns-usb3: Fix Wvoid-pointer-to-enum-cast warning (again) Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 041/254] dmaengine: omap-dma: fix dma_pool resource leak in error paths Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 042/254] i2c: qcom-geni: make sure I2C hub controllers cant use SE DMA Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 043/254] HID: usbhid: paper over wrong bNumDescriptor field Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 044/254] drm/amd/display: Check dce_hwseq before dereferencing it Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 045/254] scsi: core: Fix error handler encryption support Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 046/254] ALSA: pcm: Improve the fix for race of buffer access at PCM OSS layer Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 047/254] null_blk: fix kmemleak by releasing references to fault configfs items Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 048/254] can: gs_usb: gs_usb_receive_bulk_callback(): fix URB memory leak Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 049/254] can: ctucanfd: fix SSP_SRC in cases when bit-rate is higher than 1 MBit Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 050/254] net: can: j1939: j1939_xtp_rx_rts_session_active(): deactivate session upon receiving the second rts Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 051/254] x86/kaslr: Recognize all ZONE_DEVICE users as physaddr consumers Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 052/254] phy: rockchip: inno-usb2: fix communication disruption in gadget mode Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 053/254] phy: freescale: imx8m-pcie: assert phy reset during power on Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 054/254] phy: rockchip: inno-usb2: fix disconnection in gadget mode Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 055/254] phy: tegra: xusb: Explicitly configure HS_DISCON_LEVEL to 0x7 Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 056/254] usb: dwc3: Check for USB4 IP_NAME Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 057/254] usb: core: add USB_QUIRK_NO_BOS for devices that hang on BOS descriptor Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 058/254] USB: OHCI/UHCI: Add soft dependencies on ehci_platform Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 059/254] USB: serial: option: add Telit LE910 MBIM composition Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 060/254] USB: serial: ftdi_sio: add support for PICAXE AXE027 cable Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 061/254] nvme-pci: disable secondary temp for Wodposit WPBSNM8 Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 062/254] ext4: fix iloc.bh leak in ext4_xattr_inode_update_ref Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 063/254] hrtimer: Fix softirq base check in update_needs_ipi() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 064/254] EDAC/x38: Fix a resource leak in x38_probe1() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 065/254] EDAC/i3200: Fix a resource leak in i3200_probe1() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 066/254] tcpm: allow looking for role_sw device in the main node Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 067/254] x86/resctrl: Add missing resctrl initialization for Hygon Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 068/254] x86/resctrl: Fix memory bandwidth counter width " Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 069/254] mm/page_alloc: make percpu_pagelist_high_fraction reads lock-free Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 070/254] mm/damon/sysfs: cleanup attrs subdirs on context dir setup failure Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 071/254] LoongArch: Fix PMU counter allocation for mixed-type event groups Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 072/254] drm/amd/display: Bump the HDMI clock to 340MHz Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 073/254] drm/amd: Clean up kfd node on surprise disconnect Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 074/254] drm/amdkfd: fix a memory leak in device_queue_manager_init() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 075/254] drm/nouveau/disp/nv50-: Set lock_core in curs507a_prepare Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 076/254] drm/panel-simple: fix connector type for DataImage SCF0700C48GGU18 panel Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 077/254] drm/vmwgfx: Fix an error return check in vmw_compat_shader_add() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 078/254] dmaengine: apple-admac: Add "apple,t8103-admac" compatible Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 079/254] dmaengine: at_hdmac: fix device leak on of_dma_xlate() Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 080/254] dmaengine: bcm-sba-raid: fix device leak on probe Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 081/254] dmaengine: dw: dmamux: fix OF node leak on route allocation failure Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 082/254] dmaengine: idxd: fix device leaks on compat bind and unbind Greg Kroah-Hartman
2026-01-28 15:20 ` [PATCH 6.6 083/254] dmaengine: lpc18xx-dmamux: fix device leak on route allocation Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 084/254] dmaengine: qcom: gpi: Fix memory leak in gpi_peripheral_config() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 085/254] dmaengine: sh: rz-dmac: Fix rz_dmac_terminate_all() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 086/254] dmaengine: ti: dma-crossbar: fix device leak on dra7x route allocation Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 087/254] dmaengine: ti: dma-crossbar: fix device leak on am335x " Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 088/254] dmaengine: ti: k3-udma: fix device leak on udma lookup Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 089/254] btrfs: fix deadlock in wait_current_trans() due to ignored transaction type Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 090/254] io_uring: move local task_work in exit cancel loop Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 091/254] posix-clock: introduce posix_clock_context concept Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 092/254] Fix memory leak in posix_clock_open() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 093/254] posix-clock: Store file pointer in struct posix_clock_context Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 094/254] ptp: Add PHC file mode checks. Allow RO adjtime() without FMODE_WRITE Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 095/254] ptp: add testptp mask test Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 096/254] selftest/ptp: update ptp selftest to exercise the gettimex options Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 097/254] testptp: Add option to open PHC in readonly mode Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 098/254] arm64: dts: qcom: sc8280xp: Add missing VDD_MXC links Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 099/254] hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_* Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 100/254] Drivers: hv: Always do Hyper-V panic notification in hv_kmsg_dump() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 101/254] btrfs: fix missing fields in superblock backup with BLOCK_GROUP_TREE Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 102/254] dt-bindings: power: qcom,rpmpd: Add SM7150 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 103/254] dt-bindings: power: rpmpd: Add MSM8917, MSM8937 and QM215 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 104/254] dt-bindings: power: qcom,rpmpd: document the SM8650 RPMh Power Domains Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 105/254] dt-bindings: power: rpmpd: Update part number to X1E80100 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 106/254] dt-bindings: power: qcom,rpmpd: document the SM8750 RPMh Power Domains Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 107/254] dt-bindings: power: qcom,rpmpd: add Turbo L5 corner Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 108/254] dt-bindings: power: qcom-rpmpd: split RPMh domains definitions Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 109/254] dt-bindings: power: qcom,rpmpd: Add SC8280XP_MXC_AO Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 110/254] pmdomain: qcom: rpmhpd: Add MXC to SC8280XP Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 111/254] ata: libata: Add cpr_log to ata_dev_print_features() early return Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 112/254] ata: libata-core: Introduce ata_dev_config_lpm() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 113/254] ata: libata: Call ata_dev_config_lpm() for ATAPI devices Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 114/254] ata: libata: Print features also " Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 115/254] ice: initialize ring_stats->syncp Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 116/254] ice: Avoid detrimental cleanup for bond during interface stop Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 117/254] igc: fix race condition in TX timestamp read for register 0 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 118/254] net: usb: dm9601: remove broken SR9700 support Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 119/254] bonding: limit BOND_MODE_8023AD to Ethernet devices Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 120/254] selftests/net: convert fib-onlink-tests.sh to run it in unique namespace Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 121/254] selftests: net: fib-onlink-tests: Convert to use namespaces by default Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 122/254] can: gs_usb: gs_usb_receive_bulk_callback(): unanchor URL on usb_submit_urb() error Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 123/254] sctp: move SCTP_CMD_ASSOC_SHKEY right after SCTP_CMD_PEER_INIT Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 124/254] amd-xgbe: avoid misleading per-packet error log Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 125/254] gue: Fix skb memleak with inner IP protocol 0 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 126/254] tools: ynl: Specify --no-line-number in ynl-regen.sh Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 127/254] fou: Dont allow 0 for FOU_ATTR_IPPROTO Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 128/254] veth: fix data race in veth_get_ethtool_stats Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 129/254] l2tp: avoid one data-race in l2tp_tunnel_del_work() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 130/254] ipvlan: Make the addrs_lock be per port Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 131/254] octeontx2: cn10k: fix RX flowid TCAM mask handling Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 132/254] net/sched: Enforce that teql can only be used as root qdisc Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 133/254] net/sched: qfq: Use cl_is_active to determine whether class is active in qfq_rm_from_ag Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 134/254] crypto: authencesn - reject too-short AAD (assoclen<8) to match ESP/ESN spec Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 135/254] serial: 8250_pci: Fix broken RS485 for F81504/508/512 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 136/254] comedi: dmm32at: serialize use of paged registers Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 137/254] w1: therm: Fix off-by-one buffer overflow in alarms_store Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 138/254] w1: fix redundant counter decrement in w1_attach_slave_device() Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 139/254] Revert "nfc/nci: Add the inconsistency check between the input data length and count" Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 140/254] Input: i8042 - add quirks for MECHREVO Wujie 15X Pro Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 141/254] Input: i8042 - add quirk for ASUS Zenbook UX425QA_UM425QA Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 142/254] scsi: storvsc: Process unsupported MODE_SENSE_10 Greg Kroah-Hartman
2026-01-28 15:21 ` [PATCH 6.6 143/254] scsi: xen: scsiback: Fix potential memory leak in scsiback_remove() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 144/254] arm64: dts: rockchip: remove dangerous max-link-speed from helios64 Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 145/254] arm64: dts: rockchip: Fix voltage threshold for volume keys for Pinephone Pro Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 146/254] x86/kfence: avoid writing L1TF-vulnerable PTEs Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 147/254] comedi: Fix getting range information for subdevices 16 to 255 Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 148/254] platform/x86: hp-bioscfg: Fix kobject warnings for empty attribute names Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 149/254] platform/x86: hp-bioscfg: Fix kernel panic in GET_INSTANCE_ID macro Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 150/254] io_uring/io-wq: check IO_WQ_BIT_EXIT inside work run loop Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 151/254] iio: imu: st_lsm6dsx: fix iio_chan_spec for sensors without event detection Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 152/254] iio: adc: ad7280a: handle spi_setup() errors in probe() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 153/254] interconnect: debugfs: initialize src_node and dst_node to empty strings Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 154/254] spi: sprd: adi: Use devm_register_restart_handler() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 155/254] spi: sprd-adi: switch to use spi_alloc_host() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 156/254] spi: spi-sprd-adi: Fix double free in probe error path Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 157/254] regmap: Fix race condition in hwspinlock irqsave routine Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 158/254] kconfig: fix static linking of nconf Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 159/254] riscv: clocksource: Fix stimecmp update hazard on RV32 Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 160/254] scsi: core: Wake up the error handler when final completions race against each other Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 161/254] scsi: qla2xxx: Sanitize payload size to prevent member overflow Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 162/254] ALSA: usb: Increase volume range that triggers a warning Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 163/254] netdevsim: fix a race issue related to the operation on bpf_bound_progs list Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 164/254] net: hns3: fix data race in hns3_fetch_stats Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 165/254] be2net: fix data race in be_get_new_eqd Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 166/254] net: hns3: fix wrong GENMASK() for HCLGE_FD_AD_COUNTER_NUM_M Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 167/254] net: hns3: fix the HCLGE_FD_AD_NXT_KEY error setting issue Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 168/254] mISDN: annotate data-race around dev->work Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 169/254] ipv6: annotate data-race in ndisc_router_discovery() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 170/254] usbnet: limit max_mtu based on devices hard_mtu Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 171/254] drm/amd/pm: Dont clear SI SMC table when setting power limit Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 172/254] drm/amd/pm: Workaround SI powertune issue on Radeon 430 (v2) Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 173/254] be2net: Fix NULL pointer dereference in be_cmd_get_mac_from_list Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 174/254] selftests: net: amt: wait longer for connection before sending packets Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 175/254] bonding: provide a net pointer to __skb_flow_dissect() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 176/254] net: dsa: fix off-by-one in maximum bridge ID determination Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 177/254] octeontx2-af: Fix error handling Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 178/254] net: openvswitch: fix data race in ovs_vport_get_upcall_stats Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 179/254] vsock/virtio: fix potential underflow in virtio_transport_get_credit() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 180/254] vsock/test: fix seqpacket message bounds test Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 181/254] vsock/virtio: cap TX credit to local buffer size Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 182/254] net/sched: act_ife: avoid possible NULL deref Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 183/254] x86: make page fault handling disable interrupts properly Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 184/254] leds: led-class: Only Add LED to leds_list when it is fully ready Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 185/254] of: fix reference count leak in of_alias_scan() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 186/254] of: platform: Use default match table for /firmware Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 187/254] iio: accel: iis328dq: fix gain values Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 188/254] iio: adc: ad9467: fix ad9434 vref mask Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 189/254] iio: adc: at91-sama5d2_adc: Fix potential use-after-free in sama5d2_adc driver Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 190/254] iio: chemical: scd4x: fix reported channel endianness Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 191/254] iio: dac: ad5686: add AD5695R to ad5686_chip_info_tbl Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 192/254] ALSA: ctxfi: Fix potential OOB access in audio mixer handling Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 193/254] ALSA: usb-audio: Fix use-after-free in snd_usb_mixer_free() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 194/254] mmc: rtsx_pci_sdmmc: implement sdmmc_card_busy function Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 195/254] mmc: sdhci-of-dwcmshc: Prevent illegal clock reduction in HS200/HS400 mode Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 196/254] wifi: ath10k: fix dma_free_coherent() pointer Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 197/254] wifi: ath12k: " Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 198/254] wifi: mwifiex: Fix a loop in mwifiex_update_ampdu_rxwinsize() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 199/254] wifi: rsi: Fix memory corruption due to not set vif driver data size Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 200/254] arm64/fpsimd: signal: Allocate SSVE storage when restoring ZA Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 201/254] arm64: Set __nocfi on swsusp_arch_resume() Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 202/254] octeontx2: Fix otx2_dma_map_page() error return code Greg Kroah-Hartman
2026-01-28 15:22 ` [PATCH 6.6 203/254] slimbus: core: fix runtime PM imbalance on report present Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 204/254] slimbus: core: fix device reference leak " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 205/254] tracing: Fix crash on synthetic stacktrace field usage Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 206/254] intel_th: fix device leak on output open() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 207/254] uacce: fix cdev handling in the cleanup path Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 208/254] uacce: fix isolate sysfs check condition Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 209/254] uacce: implement mremap in uacce_vm_ops to return -EPERM Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 210/254] uacce: ensure safe queue release with state management Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 211/254] netrom: fix double-free in nr_route_frame() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 212/254] platform/x86: hp-bioscfg: Fix automatic module loading Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 213/254] pmdomain: imx8m-blk-ctrl: Remove separate rst and clk mask for 8mq vpu Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 214/254] perf/x86/intel: Do not enable BTS for guests Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 215/254] irqchip/gic-v3-its: Avoid truncating memory addresses Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 216/254] can: ems_usb: ems_usb_read_bulk_callback(): fix URB memory leak Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 217/254] can: kvaser_usb: kvaser_usb_read_bulk_callback(): " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 218/254] can: mcba_usb: mcba_usb_read_bulk_callback(): " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 219/254] can: usb_8dev: usb_8dev_read_bulk_callback(): " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 220/254] migrate: correct lock ordering for hugetlb file folios Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 221/254] selftests/bpf: Check for timeout in perf_link test Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 222/254] bpf: Do not let BPF test infra emit invalid GSO types to stack Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 223/254] bridge: mcast: Fix use-after-free during router port configuration Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 224/254] can: esd_usb: esd_usb_read_bulk_callback(): fix URB memory leak Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 225/254] mm/damon/sysfs-scheme: cleanup access_pattern subdirs on scheme dir setup failure Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 226/254] mm/damon/sysfs-scheme: cleanup quotas " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 227/254] iio: core: add missing mutex_destroy in iio_dev_release() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 228/254] iio: core: add separate lockdep class for info_exist_lock Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 229/254] mm/rmap: fix two comments related to huge_pmd_unshare() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 230/254] arm64: dts: rockchip: remove redundant max-link-speed from nanopi-r4s Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 231/254] ALSA: scarlett2: Fix buffer overflow in config retrieval Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 232/254] iio: adc: exynos_adc: fix OF populate on driver rebind Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 233/254] dmaengine: stm32: dmamux: fix device leak on route allocation Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 234/254] dmaengine: stm32: dmamux: fix OF node leak on route allocation failure Greg Kroah-Hartman
2026-01-28 15:23 ` Greg Kroah-Hartman [this message]
2026-01-28 15:23 ` [PATCH 6.6 236/254] mm: kmsan: fix poisoning of high-order non-compound pages Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 237/254] phy: phy-rockchip-inno-usb2: Use dev_err_probe() in the probe path Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 238/254] phy: rockchip: inno-usb2: Fix a double free bug in rockchip_usb2phy_probe() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 239/254] ASoC: codecs: wsa881x: Drop unused version readout Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 240/254] ASoC: codecs: wsa881x: fix unnecessary initialisation Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 241/254] ASoC: codecs: wsa883x: " Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 242/254] nvme-fc: rename free_ctrl callback to match name pattern Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 243/254] nvme-pci: do not directly handle subsys reset fallout Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 244/254] nvme: fix PCIe subsystem reset controller state transition Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 245/254] NFSD: fix race between nfsd registration and exports_proc Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 246/254] usbnet: Fix using smp_processor_id() in preemptible code warnings Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 247/254] ksmbd: fix use-after-free in ksmbd_session_rpc_open Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 248/254] fs/ntfs3: Initialize allocated memory before use Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 249/254] drm/amdgpu: csa unmap use uninterruptible lock Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 250/254] wifi: ath11k: fix RCU stall while reaping monitor destination ring Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 251/254] x86/fpu: Clear XSTATE_BV[i] in guest XSAVE state whenever XFD[i]=1 Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 252/254] net: phy: move phy_link_change() prior to mdio_bus_phy_may_suspend() Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 253/254] net: phy: allow MDIO bus PM ops to start/stop state machine for phylink-controlled PHY Greg Kroah-Hartman
2026-01-28 15:23 ` [PATCH 6.6 254/254] net: phy: fix phy_uses_state_machine() Greg Kroah-Hartman
2026-01-28 19:38 ` [PATCH 6.6 000/254] 6.6.122-rc1 review Brett A C Sheffield
2026-01-28 19:58 ` Florian Fainelli
2026-01-29  2:10 ` Shung-Hsi Yu
2026-01-29  5:12 ` Peter Schneider
2026-01-29  6:54 ` Slade Watkins
2026-01-29  7:35 ` Francesco Dolcini
2026-01-29  9:48 ` Jon Hunter
2026-01-29 10:24 ` Ron Economos
2026-01-29 17:50 ` Mark Brown
2026-01-29 20:34 ` Miguel Ojeda

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=20260128145353.248755629@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=akpm@linux-foundation.org \
    --cc=bigeasy@linutronix.de \
    --cc=hannes@cmpxchg.org \
    --cc=jackmanb@google.com \
    --cc=mgorman@techsingularity.net \
    --cc=mhocko@suse.com \
    --cc=oliver.sang@intel.com \
    --cc=patches@lists.linux.dev \
    --cc=rostedt@goodmis.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=surenb@google.com \
    --cc=vbabka@suse.cz \
    --cc=willy@infradead.org \
    --cc=ziy@nvidia.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