Archive-only list for patches
 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, Sashiko <sashiko-bot@kernel.org>,
	"Masami Hiramatsu (Google)" <mhiramat@kernel.org>,
	Vincent Donnefort <vdonnefort@google.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.12 370/403] ring-buffer: Fix subbuf resize race with ring buffer readers
Date: Fri,  4 Sep 2026 07:02:53 +0200	[thread overview]
Message-ID: <20260904045743.213975837@linuxfoundation.org> (raw)
In-Reply-To: <20260904045734.806166532@linuxfoundation.org>

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

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

From: Vincent Donnefort <vdonnefort@google.com>

[ Upstream commit 8a5f63637890f03177146efddaba5ec7a1b4d61f ]

trace_buffer subbuf_size is read lockless in ring_buffer_read_page() and
ring_buffer_read_start(), while it can simultaneously be resized with
ring_buffer_subbuf_order_set().

Instead of trace_buffer::subbuf_size, use bpage::order in
ring_buffer_read_start() and ring_buffer_read_page().

In ring_buffer_read_start(), even with resize_disabled, there is still a
possibility of a race with a buffer modification. Hold the trace_buffer
mutex to synchronise with any pending ring buffer order modification.

trace_buffer::subbuf_size is now actually useless, remove it. Also,
create accessors rb_subbuf_capacity() and rb_page_capacity() which
return the actual size available for storing events, while
rb_subbuf_size() returns the actual subbuf page-size.

Cc: stable@vger.kernel.org
Link: https://patch.msgid.link/20260813131152.3589632-5-vdonnefort@google.com
Fixes: f9b94daa542a ("ring-buffer: Set new size of the ring buffer sub page")
Reported-by: Sashiko <sashiko-bot@kernel.org>
Closes: https://sashiko.dev/#/patchset/20260805153225.2096152-1-vdonnefort%40google.com # patch 1
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Vincent Donnefort <vdonnefort@google.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 kernel/trace/ring_buffer.c | 162 ++++++++++++++++++++++++-------------
 1 file changed, 104 insertions(+), 58 deletions(-)

diff --git a/kernel/trace/ring_buffer.c b/kernel/trace/ring_buffer.c
index 935c61c6b33ea..47e6e1088e428 100644
--- a/kernel/trace/ring_buffer.c
+++ b/kernel/trace/ring_buffer.c
@@ -392,6 +392,17 @@ static __always_inline unsigned int rb_page_commit(struct buffer_page *bpage)
 	return local_read(&bpage->page->commit);
 }
 
+/**
+ * rb_page_capacity - Get the capacity of a buffer page
+ * @bpage:	The buffer page
+ *
+ * Return: The maximum size available for events in the given buffer page.
+ */
+static __always_inline unsigned int rb_page_capacity(struct buffer_page *bpage)
+{
+	return (PAGE_SIZE << bpage->order) - BUF_PAGE_HDR_SIZE;
+}
+
 static void free_buffer_page(struct buffer_page *bpage)
 {
 	/* Range pages are not to be freed */
@@ -557,11 +568,42 @@ struct trace_buffer {
 	long				last_text_delta;
 	long				last_data_delta;
 
-	unsigned int			subbuf_size;
 	unsigned int			subbuf_order;
 	unsigned int			max_data_size;
 };
 
+static __always_inline unsigned int rb_subbuf_size(struct trace_buffer *buffer)
+{
+	return PAGE_SIZE << buffer->subbuf_order;
+}
+
+/**
+ * rb_subbuf_capacity - Get the capacity of a subbuffer
+ * @buffer:	A trace buffer
+ *
+ * Unsafe to use without holding trace_buffer::mutex or with resizing enabled.
+ * Consider rb_page_capacity() instead.
+ *
+ * Return: The maximum size available for events in a trace buffer subbuffer.
+ */
+static __always_inline unsigned int rb_subbuf_capacity(struct trace_buffer *buffer)
+{
+	return rb_subbuf_size(buffer) - BUF_PAGE_HDR_SIZE;
+}
+
+/**
+ * rb_subbuf_start - Get the start address of a subbuffer
+ * @buffer:	A trace buffer
+ * @addr:	An address of an event on a subbuffer
+ *
+ * Return: The start of the subbuffer for where @addr sits
+ */
+static __always_inline
+unsigned long rb_subbuf_start(struct trace_buffer *buffer, unsigned long addr)
+{
+	return addr & ~((unsigned long)(rb_subbuf_size(buffer) - 1));
+}
+
 struct ring_buffer_iter {
 	struct ring_buffer_per_cpu	*cpu_buffer;
 	unsigned long			head;
@@ -601,7 +643,7 @@ int ring_buffer_print_page_header(struct trace_buffer *buffer, struct trace_seq
 	trace_seq_printf(s, "\tfield: char data;\t"
 			 "offset:%u;\tsize:%u;\tsigned:%u;\n",
 			 (unsigned int)offsetof(typeof(field), data),
-			 (unsigned int)buffer->subbuf_size,
+			 (unsigned int)rb_subbuf_capacity(buffer),
 			 (unsigned int)is_signed_type(char));
 
 	return !trace_seq_has_overflowed(s);
@@ -1583,7 +1625,7 @@ rb_range_align_subbuf(unsigned long addr, int subbuf_size, int nr_subbufs)
  */
 static void *rb_range_meta(struct trace_buffer *buffer, int nr_pages, int cpu)
 {
-	int subbuf_size = buffer->subbuf_size + BUF_PAGE_HDR_SIZE;
+	int subbuf_size = rb_subbuf_size(buffer);
 	unsigned long ptr = buffer->range_addr_start;
 	struct ring_buffer_meta *meta;
 	int nr_subbufs;
@@ -2244,7 +2286,7 @@ rb_allocate_cpu_buffer(struct trace_buffer *buffer, long nr_pages, int cpu)
 	} else {
 		page = alloc_pages_node(cpu_to_node(cpu),
 					GFP_KERNEL | __GFP_COMP | __GFP_ZERO,
-					cpu_buffer->buffer->subbuf_order);
+					bpage->order);
 		if (!page)
 			goto fail_free_reader;
 		bpage->page = page_address(page);
@@ -2354,10 +2396,9 @@ static struct trace_buffer *alloc_buffer(unsigned long size, unsigned flags,
 
 	buffer->subbuf_order = order;
 	subbuf_size = (PAGE_SIZE << order);
-	buffer->subbuf_size = subbuf_size - BUF_PAGE_HDR_SIZE;
 
 	/* Max payload is buffer page size - header (8bytes) */
-	buffer->max_data_size = buffer->subbuf_size - (sizeof(u32) * 2);
+	buffer->max_data_size = rb_subbuf_capacity(buffer) - (sizeof(u32) * 2);
 
 	buffer->flags = flags;
 	buffer->clock = trace_clock_local;
@@ -2417,9 +2458,8 @@ static struct trace_buffer *alloc_buffer(unsigned long size, unsigned flags,
 
 		rb_range_meta_init(buffer, nr_pages);
 	} else {
-
 		/* need at least two pages */
-		nr_pages = DIV_ROUND_UP(size, buffer->subbuf_size);
+		nr_pages = DIV_ROUND_UP(size, rb_subbuf_capacity(buffer));
 		if (nr_pages < 2)
 			nr_pages = 2;
 	}
@@ -2794,7 +2834,7 @@ static void update_pages_handler(struct work_struct *work)
  * @size: the new size.
  * @cpu_id: the cpu buffer to resize
  *
- * Minimum size is 2 * buffer->subbuf_size.
+ * Minimum size is 2 * rb_subbuf_capacity(buffer).
  *
  * Returns 0 on success and < 0 on failure.
  */
@@ -2816,12 +2856,6 @@ int ring_buffer_resize(struct trace_buffer *buffer, unsigned long size,
 	    !cpumask_test_cpu(cpu_id, buffer->cpumask))
 		return 0;
 
-	nr_pages = DIV_ROUND_UP(size, buffer->subbuf_size);
-
-	/* we need a minimum of two pages */
-	if (nr_pages < 2)
-		nr_pages = 2;
-
 	/*
 	 * Keep CPUs from coming online while resizing to synchronize
 	 * with new per CPU buffers being created.
@@ -2832,6 +2866,12 @@ int ring_buffer_resize(struct trace_buffer *buffer, unsigned long size,
 	mutex_lock(&buffer->mutex);
 	atomic_inc(&buffer->resizing);
 
+	nr_pages = DIV_ROUND_UP(size, rb_subbuf_capacity(buffer));
+
+	/* we need a minimum of two pages */
+	if (nr_pages < 2)
+		nr_pages = 2;
+
 	if (cpu_id == RING_BUFFER_ALL_CPUS) {
 		/*
 		 * Don't succeed if resizing is disabled, as a reader might be
@@ -3110,7 +3150,7 @@ rb_event_index(struct ring_buffer_per_cpu *cpu_buffer, struct ring_buffer_event
 {
 	unsigned long addr = (unsigned long)event;
 
-	addr &= (PAGE_SIZE << cpu_buffer->buffer->subbuf_order) - 1;
+	addr &= (unsigned long)rb_subbuf_size(cpu_buffer->buffer) - 1;
 
 	return addr - BUF_PAGE_HDR_SIZE;
 }
@@ -3349,8 +3389,8 @@ static inline void
 rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer,
 	      unsigned long tail, struct rb_event_info *info)
 {
-	unsigned long bsize = READ_ONCE(cpu_buffer->buffer->subbuf_size);
 	struct buffer_page *tail_page = info->tail_page;
+	unsigned long bsize = rb_page_capacity(tail_page);
 	struct ring_buffer_event *event;
 	unsigned long length = info->length;
 
@@ -3702,8 +3742,7 @@ rb_try_to_discard(struct ring_buffer_per_cpu *cpu_buffer,
 
 	new_index = rb_event_index(cpu_buffer, event);
 	old_index = new_index + rb_event_ts_length(event);
-	addr = (unsigned long)event;
-	addr &= ~((PAGE_SIZE << cpu_buffer->buffer->subbuf_order) - 1);
+	addr = rb_subbuf_start(cpu_buffer->buffer, (unsigned long)event);
 
 	bpage = READ_ONCE(cpu_buffer->tail_page);
 
@@ -4350,7 +4389,7 @@ __rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
 	tail = write - info->length;
 
 	/* See if we shot pass the end of this buffer page */
-	if (unlikely(write > cpu_buffer->buffer->subbuf_size)) {
+	if (unlikely(write > rb_page_capacity(tail_page))) {
 		check_buffer(cpu_buffer, info, CHECK_FULL_PAGE);
 		return rb_move_tail(cpu_buffer, tail, info);
 	}
@@ -4595,7 +4634,7 @@ rb_decrement_entry(struct ring_buffer_per_cpu *cpu_buffer,
 	struct buffer_page *bpage = cpu_buffer->commit_page;
 	struct buffer_page *start;
 
-	addr &= ~((PAGE_SIZE << cpu_buffer->buffer->subbuf_order) - 1);
+	addr = rb_subbuf_start(cpu_buffer->buffer, addr);
 
 	/* Do the likely case first */
 	if (likely(bpage->page == (void *)addr)) {
@@ -5292,7 +5331,6 @@ static struct buffer_page *
 rb_get_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
 {
 	struct buffer_page *reader = NULL;
-	unsigned long bsize = READ_ONCE(cpu_buffer->buffer->subbuf_size);
 	unsigned long overwrite;
 	unsigned long flags;
 	int nr_loops = 0;
@@ -5432,7 +5470,7 @@ rb_get_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
 #define USECS_WAIT	1000000
         for (nr_loops = 0; nr_loops < USECS_WAIT; nr_loops++) {
 		/* If the write is past the end of page, a writer is still updating it */
-		if (likely(!reader || rb_page_write(reader) <= bsize))
+		if (likely(!reader || rb_page_write(reader) <= rb_page_capacity(reader)))
 			break;
 
 		udelay(1);
@@ -5854,36 +5892,44 @@ EXPORT_SYMBOL_GPL(ring_buffer_consume);
 struct ring_buffer_iter *
 ring_buffer_read_start(struct trace_buffer *buffer, int cpu, gfp_t flags)
 {
+	struct ring_buffer_iter *iter __free(kfree) = kzalloc_obj(*iter, flags);
 	struct ring_buffer_per_cpu *cpu_buffer;
-	struct ring_buffer_iter *iter;
-
-	if (!cpumask_test_cpu(cpu, buffer->cpumask))
-		return NULL;
 
-	iter = kzalloc(sizeof(*iter), flags);
 	if (!iter)
 		return NULL;
 
-	/* Holds the entire event: data and meta data */
-	iter->event_size = buffer->subbuf_size;
-	iter->event = kmalloc(iter->event_size, flags);
-	if (!iter->event) {
-		kfree(iter);
+	if (!cpumask_test_cpu(cpu, buffer->cpumask))
 		return NULL;
-	}
 
 	cpu_buffer = buffer->buffers[cpu];
 
-	iter->cpu_buffer = cpu_buffer;
+	/*
+	 * Only KDB is using GFP_ATOMIC, for the others, lock the buffer to
+	 * prevent concurrent resizing.
+	 */
+	if (gfpflags_allow_blocking(flags))
+		mutex_lock(&buffer->mutex);
 
 	atomic_inc(&cpu_buffer->resize_disabled);
 
+	if (gfpflags_allow_blocking(flags))
+		mutex_unlock(&buffer->mutex);
+
+	/* Holds the entire event: data and meta data. */
+	iter->event_size = rb_page_capacity(READ_ONCE(cpu_buffer->reader_page));
+	iter->event = kmalloc(iter->event_size, flags);
+	if (!iter->event) {
+		atomic_dec(&cpu_buffer->resize_disabled);
+		return NULL;
+	}
+	iter->cpu_buffer = cpu_buffer;
+
 	guard(raw_spinlock_irqsave)(&cpu_buffer->reader_lock);
 	arch_spin_lock(&cpu_buffer->lock);
 	rb_iter_reset(iter);
 	arch_spin_unlock(&cpu_buffer->lock);
 
-	return iter;
+	return_ptr(iter);
 }
 EXPORT_SYMBOL_GPL(ring_buffer_read_start);
 
@@ -5937,7 +5983,7 @@ unsigned long ring_buffer_size(struct trace_buffer *buffer, int cpu)
 	if (!cpumask_test_cpu(cpu, buffer->cpumask))
 		return 0;
 
-	return buffer->subbuf_size * buffer->buffers[cpu]->nr_pages;
+	return rb_subbuf_capacity(buffer) * buffer->buffers[cpu]->nr_pages;
 }
 EXPORT_SYMBOL_GPL(ring_buffer_size);
 
@@ -6496,15 +6542,15 @@ int ring_buffer_read_page(struct trace_buffer *buffer,
 	if (!data_page || !data_page->data)
 		return -1;
 
-	if (data_page->order != buffer->subbuf_order)
-		return -1;
-
 	bpage = data_page->data;
 	if (!bpage)
 		return -1;
 
 	guard(raw_spinlock_irqsave)(&cpu_buffer->reader_lock);
 
+	if (data_page->order != cpu_buffer->reader_page->order)
+		return -1;
+
 	reader = rb_get_reader_page(cpu_buffer);
 	if (!reader)
 		return -1;
@@ -6619,7 +6665,7 @@ int ring_buffer_read_page(struct trace_buffer *buffer,
 		/* If there is room at the end of the page to save the
 		 * missed events, then record it there.
 		 */
-		if (buffer->subbuf_size - commit >= sizeof(missed_events)) {
+		if (rb_page_capacity(reader) - commit >= sizeof(missed_events)) {
 			memcpy(&bpage->data[commit], &missed_events,
 			       sizeof(missed_events));
 			local_add(RB_MISSED_STORED, &bpage->commit);
@@ -6631,8 +6677,8 @@ int ring_buffer_read_page(struct trace_buffer *buffer,
 	/*
 	 * This page may be off to user land. Zero it out here.
 	 */
-	if (commit < buffer->subbuf_size)
-		memset(&bpage->data[commit], 0, buffer->subbuf_size - commit);
+	if (commit < rb_page_capacity(reader))
+		memset(&bpage->data[commit], 0, rb_page_capacity(reader) - commit);
 
 	return read;
 }
@@ -6658,7 +6704,7 @@ EXPORT_SYMBOL_GPL(ring_buffer_read_page_data);
  */
 int ring_buffer_subbuf_size_get(struct trace_buffer *buffer)
 {
-	return buffer->subbuf_size + BUF_PAGE_HDR_SIZE;
+	return rb_subbuf_size(buffer);
 }
 EXPORT_SYMBOL_GPL(ring_buffer_subbuf_size_get);
 
@@ -6703,7 +6749,8 @@ int ring_buffer_subbuf_order_set(struct trace_buffer *buffer, int order)
 {
 	struct ring_buffer_per_cpu *cpu_buffer;
 	struct buffer_page *bpage, *tmp;
-	int old_order, old_size;
+	unsigned int old_capacity;
+	int old_order;
 	int nr_pages;
 	int psize;
 	int err;
@@ -6712,9 +6759,6 @@ int ring_buffer_subbuf_order_set(struct trace_buffer *buffer, int order)
 	if (!buffer || order < 0)
 		return -EINVAL;
 
-	if (buffer->subbuf_order == order)
-		return 0;
-
 	psize = (1 << order) * PAGE_SIZE;
 	if (psize <= BUF_PAGE_HDR_SIZE)
 		return -EINVAL;
@@ -6723,18 +6767,21 @@ int ring_buffer_subbuf_order_set(struct trace_buffer *buffer, int order)
 	if (psize > RB_WRITE_MASK + 1)
 		return -EINVAL;
 
-	old_order = buffer->subbuf_order;
-	old_size = buffer->subbuf_size;
-
 	/* prevent another thread from changing buffer sizes */
 	guard(mutex)(&buffer->mutex);
+
+	old_order = buffer->subbuf_order;
+	if (old_order == order)
+		return 0;
+
+	old_capacity = rb_subbuf_capacity(buffer);
+
 	atomic_inc(&buffer->record_disabled);
 
 	/* Make sure all commits have finished */
 	synchronize_rcu();
 
 	buffer->subbuf_order = order;
-	buffer->subbuf_size = psize - BUF_PAGE_HDR_SIZE;
 
 	/* Make sure all new buffers are allocated, before deleting the old ones */
 	for_each_buffer_cpu(buffer, cpu) {
@@ -6750,8 +6797,8 @@ int ring_buffer_subbuf_order_set(struct trace_buffer *buffer, int order)
 		}
 
 		/* Update the number of pages to match the new size */
-		nr_pages = old_size * buffer->buffers[cpu]->nr_pages;
-		nr_pages = DIV_ROUND_UP(nr_pages, buffer->subbuf_size);
+		nr_pages = old_capacity * buffer->buffers[cpu]->nr_pages;
+		nr_pages = DIV_ROUND_UP(nr_pages, rb_subbuf_capacity(buffer));
 
 		/* we need a minimum of two pages */
 		if (nr_pages < 2)
@@ -6839,7 +6886,6 @@ int ring_buffer_subbuf_order_set(struct trace_buffer *buffer, int order)
 
 error:
 	buffer->subbuf_order = old_order;
-	buffer->subbuf_size = old_size;
 
 	atomic_dec(&buffer->record_disabled);
 
@@ -6911,7 +6957,7 @@ static void rb_setup_ids_meta_page(struct ring_buffer_per_cpu *cpu_buffer,
 
 	meta->meta_struct_len = sizeof(*meta);
 	meta->nr_subbufs = nr_subbufs;
-	meta->subbuf_size = cpu_buffer->buffer->subbuf_size + BUF_PAGE_HDR_SIZE;
+	meta->subbuf_size = rb_subbuf_size(cpu_buffer->buffer);
 	meta->meta_page_size = meta->subbuf_size;
 
 	rb_update_meta_page(cpu_buffer);
@@ -7270,7 +7316,7 @@ int ring_buffer_map_get_reader(struct trace_buffer *buffer, int cpu)
 			 * missed events, then record it there.
 			 */
 			commit = rb_page_size(reader);
-			if (buffer->subbuf_size - commit >= sizeof(missed_events)) {
+			if (rb_subbuf_capacity(buffer) - commit >= sizeof(missed_events)) {
 				memcpy(&bpage->data[commit], &missed_events,
 				       sizeof(missed_events));
 				local_add(RB_MISSED_STORED, &bpage->commit);
@@ -7302,7 +7348,7 @@ int ring_buffer_map_get_reader(struct trace_buffer *buffer, int cpu)
 out:
 	/* Some archs do not have data cache coherency between kernel and user-space */
 	flush_kernel_vmap_range(cpu_buffer->reader_page->page,
-				buffer->subbuf_size + BUF_PAGE_HDR_SIZE);
+				rb_subbuf_size(buffer));
 
 	rb_update_meta_page(cpu_buffer);
 
-- 
2.53.0




  parent reply	other threads:[~2026-09-04  6:23 UTC|newest]

Thread overview: 429+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-04  4:56 [PATCH 6.12 000/403] 6.12.109-rc1 review Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 001/403] bnxt_en: Mask the bd_cnt field in the TX BD properly Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 002/403] md: make rdev_addable usable for rcu mode Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 003/403] f2fs: fix potential deadloop in prepare_compress_overwrite() Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 004/403] block: mark GFP_NOIO around sysfs ->store() Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 005/403] drm/amd/display: Avoid divide by zero by initializing dummy pitch to 1 Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 006/403] perf/x86/intel/uncore: Fix die ID init and look up bugs Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 007/403] wifi: mt76: Fix memory leak after mt76_connac_mcu_alloc_sta_req() Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 008/403] wifi: ath11k: fix memory leaks in beacon template setup Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 009/403] drm/amd/display: Avoid NULL dereference in dc_dmub_srv error paths Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 010/403] alpha: fix ieee_swcr_to_fpcr setting FPCR_DNOD unconditionally Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 011/403] alpha: dont leak hardware-fabricated FP exception bits to user space Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 012/403] clocksource/drivers/timer-sun4i: Advertise a real minimum delta Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 013/403] fs: fix user path of nested backing files Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 014/403] powerpc/pseries/iommu: switch to Default DMA window during kdump Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 015/403] timers/itimer: Zero-init old itimerval before copy to userspace Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 016/403] rust: cfi: disable function merging if CFI is enabled Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 017/403] apparmor: fix cred UAF caused by begin_current_label_crit_section() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 018/403] apparmor: fix out-of-bounds write when null terminating a label vec Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 019/403] include/linux/list.h: mark list_add and __list_add as __always_inline Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 020/403] mm/kmemleak: avoid soft lockup when scanning task stacks Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 021/403] mm/migrate: report RCU-tasks quiescent states in migrate_pages_batch() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 022/403] mm/migrate: use huge_ptep_get() in remove_migration_pte() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 023/403] mm/page_owner: use memcg_data snapshot to avoid TOCTOU in print_page_owner_memcg() Greg Kroah-Hartman
2026-09-05 16:52   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-04  4:57 ` [PATCH 6.12 024/403] mm/page_vma_mapped: use huge_ptep_get() for hugetlb Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 025/403] mm/vmscan: report RCU-tasks quiescent states in shrink_lruvec() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 026/403] mm/zswap: fix global shrinker when memory cgroup is disabled Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 027/403] mm: memcg: stop reclaim when a limit update is superseded Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 028/403] mm: mempolicy: fix automatic numa balancing for shmem Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 029/403] tools/compiler: match glibc 2.42 definition of __attribute_const__ Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 030/403] x86/tdx: Fix off-by-one in port I/O handling Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 031/403] x86/insn-eval: Move assign_register() out of KVM as insn_assign_reg() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 032/403] x86/tdx: Fix zero-extension for 32-bit port I/O Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 033/403] hwtracing: hisi_ptt: Propagate DMA reset timeout in trace_start() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 034/403] tracing/user_events: Clear copied tracing state before fork duplication Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 035/403] tracing: Fix crash passing ERR_PTR to kthread_stop() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 036/403] tracing: Fix logged instance name on creation failure Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 037/403] tracing: Fix use-after-free in trace_pipe read on sub-buffer order change Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 038/403] tracing: Fix use-after-free with same-name named triggers Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 039/403] cdx: Fix double free when sysfs file creation fails Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 040/403] device property: fix infinite loop in fwnode_for_each_child_node() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 041/403] misc: nsm: bound the device-reported response length Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 042/403] powerpc/powermac: fix OF node refcount Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 043/403] rapidio: mport_cdev: fix use-after-free in dma_req_free() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 044/403] Revert "media: v4l2-dev: fix error handling in __video_register_device()" Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 045/403] serial: imx: serialize imx_uart_ports[] lifetime Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 046/403] staging: greybus: hid: fix SET_REPORT return value Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 047/403] usb: dwc2: gadget: Exit partial power down state when changing USB pull-up Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 048/403] usb: gadget: at91_udc: drain polled-VBUS timer/work before udc is freed Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 049/403] USB: phy: fsl-usb: fix missing static keywords Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 050/403] usb: typec: tcpci: pass correct rx_type to tcpm_pd_receive() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 051/403] usb: typec: ucsi: use UCSI_TIMEOUT_MS for sync command completion Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 052/403] usb: gadget: u_audio: Fix use-after-free on sound card disconnect Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 053/403] usb: gadget: snps_udc_plat: clean up PHY on probe deferral Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 054/403] usb: gadget: midi2: remove default configfs groups on teardown Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 055/403] usb: gadget: f_tcm: fix deadlock in usbg_make_tpg() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 056/403] usb: gadget: uvc: fix dangling pointers in uvc_function_bind() and uvc_function_unbind() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 057/403] usb: gadget: f_fs: Prevent deadlock during ep0 read loop Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 058/403] fpga: altera-cvp: Avoid out-of-bounds read in trailing byte write Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 059/403] HID: sensor-hub: Fix out-of-bounds write in sensor_hub_get_feature Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 060/403] lib/ucs2_string.c: fix out-of-bounds read in ucs2_strnlen() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 061/403] media: cec: stm32: prevent out-of-bounds write on RX overflow Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 062/403] media: vicodec: fix out-of-bounds write in FWHT encoder Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 063/403] nilfs2: fix slab-out-of-bounds in nilfs_direct_propagate after truncation Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 064/403] of: fix out-of-bounds read in of_alias_scan() stem parser Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 065/403] PCI/sysfs: Fix out-of-bounds read in pci_write_legacy_io() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 066/403] ubifs: fix out-of-bounds read in signature length check Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 067/403] zsmalloc: account for handle size in class lookup Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 068/403] NFSD: check truncate permission under inode lock Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 069/403] NFSD: Encode only the status in NFS-ACL v2 GETACL error replies Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 070/403] NFSD: Fix off-by-one in DRC bucket pruning limit Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 071/403] NFSD: restart ssc_expire_umount walk after dropping nfsd_ssc_lock Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 072/403] NFSD: remove flawed WARN_ON_ONCE from nfsd_mode_check Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 073/403] nfsd: guard nfsd_serv deref in nfsd_file_net_dispose Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 074/403] NFSv4.1: fix layout segment leak on the pnfs_layout_process() forget path Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 075/403] pNFS: Fix EBUSY check in pnfs_layout_need_return Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 076/403] nfsd: release path refs on follow_down() error Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 077/403] nfsd: Reset write verifier when async COPY writeback fails Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 078/403] nfsd: return NFS4ERR_NOTSUPP for unsupported netloc4 types Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 079/403] nfsd: sample writeback error cursor before async COPY loop Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 080/403] nfsd: set SC_STATUS_FREED in nfsd4_drop_revoked_stid for delegations Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 081/403] nfsd: size fh_verify server sockaddr slot by xpt_locallen Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 082/403] nfsd: validate symlink target length in NFSv4 CREATE Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 083/403] nfsd: add fh_want_write() for early-verified SETATTR in nfsd_proc_setattr() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 084/403] nfsd: add filehandle match check to nfsd4_delegreturn() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 085/403] nfsd: add missing read barrier to rpc_status_get dumpit seqcount retry Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 086/403] nfsd: block non-SAVEFH ops after FOREIGN PUTFH to prevent NULL deref Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 087/403] nfsd: check client ownership when cancelling a copy-notify stateid Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 088/403] nfsd: clear opcnt on compound arg release to prevent OOB read Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 089/403] nfsd: defer vfree of compound ops to fix rpc_status UAF Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 090/403] nfsd: drop the stateid, not the stateowner, on seqid_op replay retry Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 091/403] nfsd: fix BUG_ON in nfsd4_alloc_layout_stateid on racing delegation revoke Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 092/403] nfsd: fix cpntf publish race in nfs4_init_cp_state Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 093/403] nfsd: fix dentry ref leak on V4ROOT export filehandle lookup Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 094/403] nfsd: fix nfsd_file leak on inter-server COPY setup failure Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 095/403] nfsd: fix reply size estimate for GET_DIR_DELEGATION Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 096/403] nfsd: fix version mismatch loops in nfsd_acl_init_request() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 097/403] nfsd: fix XDR length calculation in nfsd4_ff_encode_layoutget Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 098/403] nfsd: fix XDR padding calculation in ff_encode_getdeviceinfo Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 099/403] nfsd: gate nfs2 setacl by argp->mask Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 100/403] nfsd: gate nfs3 " Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 101/403] nfsd: initialize copy-notify stateid before publishing it Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 102/403] nfsd: initialize DRC hash table before registering shrinker Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 103/403] nfsd: reject out-of-range nseconds in NFSv3 SETATTR and create ops Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 104/403] nfsd: reject out-of-range useconds in NFSv2 SETATTR/CREATE Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 105/403] nfsd: reject reclaim LOCK after RECLAIM_COMPLETE Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 106/403] nfsd: revoke copy-notify stateids before dropping their reference Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 107/403] NFSD: Prevent lock owner use-after-free during client teardown Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 108/403] NFSD: Prevent client use-after-free during NFSv4.0 revoked-state cleanup Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 109/403] libceph: validate OSD extent maps before cursor advance Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 110/403] libceph: reject buckets with mismatched CRUSH ids Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 111/403] ceph: fix UAF in __kick_flushing_caps() on cf entry freed during unlock Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 112/403] ceph: reject export_targets ranks >= CEPH_MAX_MDS in mdsmap decode Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 113/403] ceph: bound copied dentry name length in NFS export get_name Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 114/403] ceph: bound MDSCapAuth path and fs_name decode in handle_session() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 115/403] ceph: bound num_export_targets array for mds info v2/v3 Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 116/403] ceph: bound xattr value length in __build_xattrs() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 117/403] ceph: do not repeat ceph_trim_dentries() if no progress possible Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 118/403] btrfs: drop recovered reloc root refs on recovery failure Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 119/403] audit: avoid dropping live tree ref on fsnotify rule autoremove Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 120/403] cifs: fix loff_t underflow in cifs_remap_file_range() when len == 0 Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 121/403] smb: client: clear ce->tgthint in free_tgts() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 122/403] smb: client: fix ALIGN() overflow in symlink_data() error context loop Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 123/403] smb: client: fix copy-paste error in WSL EA length accounting for $LXDEV Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 124/403] smb: client: harden DFS cache against invalid target hints Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 125/403] HID: picolcd: clamp eeprom debugfs read to bytes actually received Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 126/403] HID: roccat: free buffered reports when destroying device Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 127/403] HID: sensor: custom: Fix field sysfs group cleanup on failure Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 128/403] HID: mcp2221: stop device IO before hid_hw_stop Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 129/403] HID: mcp2221: validate report size in mcp2221_raw_event() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 130/403] eventfs: Initialize ei->children and ei->list in init_ei() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 131/403] fs/ntfs3: validate dirty page table on log replay Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 132/403] fs/ntfs3: fix info-leak on partial LZNT decompress in ni_read_frame() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 133/403] fs/ntfs3: bound page_lcns[] index by the log record Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 134/403] eCryptfs: bound the packet-length peek to the user buffer Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 135/403] ecryptfs: fix tag 11 packet exact-fit size check Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 136/403] ecryptfs: hold msg ctx list lock when cleaning daemon queue Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 137/403] ecryptfs: pass packet set buffer size to parser Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 138/403] ecryptfs: reject oversized encrypted_key_size in parse_tag_3_packet Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 139/403] ecryptfs: reject too-small tag 70 packets Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 140/403] ecryptfs: release message context on send failure Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 141/403] ecryptfs: show filename encryption options Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 142/403] efivarfs: Rate limit statfs() handler Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 143/403] fat: restore original value when fat_ent_write failed Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 144/403] fbdev: omapfb: panel-dsi-cm: initialize lock before registering display Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 145/403] fbdev: pvr2fb: correct user pointer annotation and sentinel initializer Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 146/403] fbdev: ssd1307fb: defer I2C transfers from damage callbacks Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 147/403] fbdev: uvesafb: unregister connector callback on init failure Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 148/403] forcedeth: fix off-by-one when saving/restoring non-PCI config space Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 149/403] fpga: stratix10-soc: Fix SVC mailbox handling during reconfiguration Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 150/403] hsi: omap_ssi_core: fix missing DMA mask setup for SSI controller device Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 151/403] ACPI: APEI: Fix ERST timeout unit conversion Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 152/403] ACPI: APEI: GHES: fix ARM section length accounting after header Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 153/403] ACPI: pfr_update: fix stack buffer overflow in query_capability() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 154/403] alpha/PCI: Fix I/O port accessor argument order in pci_legacy_write() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 155/403] alpha: marvel: Fix irq_set_status_flags to use correct IRQ number Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 156/403] alpha: marvel: Fix lock ordering in init_io7_irqs() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 157/403] ARM: 9477/1: Disable broken eBPF JIT on the Risc PC Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 158/403] ata: libata-scsi: fix DSM TRIM for sector sizes larger than 2048 bytes Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 159/403] auxdisplay: charlcd: cancel backlight work on registration failure Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 160/403] block: set QUEUE_FLAG_DYING unconditionally in blk_mark_disk_dead() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 161/403] Bluetooth: btusb: Add ASUS USB-BT540 for Realtek 8761CU Greg Kroah-Hartman
2026-09-05 17:04   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-04  4:59 ` [PATCH 6.12 162/403] Bluetooth: btusb: Add ASUS USB-BT600 " Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 163/403] Bluetooth: eir: Fix OOB read in eir_get_service_data() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 164/403] bnx2x: fix double free in bnx2x_init_firmware() error path Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 165/403] bpf, x86: Fix per-CPU address resolution into an extended register Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 166/403] bpf: Disable preemption in __bpf_get_stack Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 167/403] bpf: Harden bloom filter sizing and indexing on 32-bit kernels Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 168/403] dm-era: fix shadowed superblock leak on take-snap failure Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 169/403] dm raid1: reserve space for NUL-terminator in build_constructor_string() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 170/403] dm array: validate array block headers on read Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 171/403] dm array: reject an array block whose value size is not the callers Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 172/403] coresight: etm3x: Fix cntr_val_show() to match cntr_val_store() behavior Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 173/403] cpufreq: schedutil: Fix rate limit overflow Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 174/403] cxl/pmem: Format the nvdimm serial number as unsigned decimal Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 175/403] Bluetooth: hci_bcm4377: Ignore reserved PHY in ext adv reports on BCM4378 Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 176/403] Bluetooth: hci_bcm: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 177/403] Bluetooth: hci_uart: Fix false success return in hci_uart_setup() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 178/403] Bluetooth: ISO: fix use-after-free of listener socket in iso_conn_ready Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 179/403] Bluetooth: RFCOMM: serialize security confirmation handling Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 180/403] Bluetooth: hci_conn: re-enable advertising only for peripheral role Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 181/403] Bluetooth: hci_core: use skb_get() instead of skb_clone() for req_skb Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 182/403] Bluetooth: hci_event: clear HCI_LE_ADV only on a created connection Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 183/403] Bluetooth: hci_h5: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 184/403] Bluetooth: hci_intel: " Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 185/403] Bluetooth: hci_sync: Clear HCI_CMD_PENDING when dropping the last request Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 186/403] kasan: fix cache shrink race with CPU hotplug Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 187/403] jbd2: bound shrinker scans by examined checkpoint buffers Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 188/403] jbd2: check need_resched() when skipping busy " Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 189/403] ipip: fix skb leak in collect_md mode when metadata_dst allocation fails Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 190/403] ip6_tunnel: use skb_cow_head() in ip6_tnl_xmit() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 191/403] ip6_gre: fix hardware header length for NBMA tunnels Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 192/403] ipv6: use RCU iterator to dump route exceptions Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 193/403] libnvdimm/labels: Prevent integer overflow in __nd_label_validate() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 194/403] mailbox: qcom-ipcc: fix duplicate channel allocation across holes Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 195/403] md/raid10: fix still_degraded being inverted in raid10_sync_request() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 196/403] md: do overflow check for sb->bblog_shift in super_1_load() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 197/403] mpls: reload header after pskb_may_pull() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 198/403] mptcp: fix uninitialized local_id in syncookie MP_JOIN reconstruction Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 199/403] nouveau/gem: reserve the bo in the info ioctl around the vma lookup Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 200/403] params: fix charp corruption on allocation failure Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 201/403] SUNRPC: xdr_buf_trim: clamp buf->len to avoid underflow Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 202/403] SUNRPC: Zero rpc_gss_wire_cred at svcauth_gss_decode_credbody() entry Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 203/403] SUNRPC: svcauth_gss: enforce krb5 token minimum length Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 204/403] sunrpc: route to a populated pool in svc_pool_for_cpu() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 205/403] SUNRPC: always drain cache_cleaner before destroying a cache_detail Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 206/403] SUNRPC: Check svc pool percpu counter allocation Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 207/403] SUNRPC: Guard svcauth_gss_release() dispatch on rq_auth_stat Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 208/403] SUNRPC: harden gss_krb5_unwrap_v2 against short tokens Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 209/403] SUNRPC: harden gss_unwrap_resp_priv length checks Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 210/403] sunrpc: init gssp_lock before publishing proc entry Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 211/403] SUNRPC: reject duplicate CREDS_VALUE options Greg Kroah-Hartman
2026-09-05 18:14   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-04  5:00 ` [PATCH 6.12 212/403] SUNRPC: Reject krb5 v2 wrap tokens with oversized ec field Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 213/403] SUNRPC: wait for in-flight client TLS handshake callback Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 214/403] svcrdma: Fix offset arithmetic in read_chunk_range Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 215/403] svcrdma: Fix pcl_for_each_segment for empty chunks Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 216/403] svcrdma: Fix unmatched rn_unregister on failed accept Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 217/403] svcrdma: Reject connection when transport allocation fails Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 218/403] svcrdma: Reject inline replies that overflow the pull-up buffer Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 219/403] svcrdma: Use svc_xprt_put to free listener on create failure Greg Kroah-Hartman
2026-09-05 18:24   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-04  5:00 ` [PATCH 6.12 220/403] svcrdma: Validate Read chunk positions before reconstruction Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 221/403] udf: reject VAT indexes equal to the entry count Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 222/403] wifi: ath6kl: clamp assoc request/response lengths before subtracting IE offsets Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 223/403] staging: media: tegra-video: fix of_node_put() on VIP parse errors Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 224/403] staging: media: tegra-video: vi: fix probe failure on skipped last port Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 225/403] scsi: core: Fill in DMA padding bytes in scsi_alloc_sgtables() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 226/403] rpmsg: glink: smem: order FIFO read after availability check Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 227/403] arm64: dts: qcom: sm6115-pro1x: Correct touchscreen GPIO flags Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 228/403] arm64: dts: rockchip: fix eMMC reset polarity on PX30 Ringneck Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 229/403] arm64: dts: rockchip: Fix rk3399-roc-pc-plus analog audio Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 230/403] riscv: acpi: Handle LPI architectural context loss flags Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 231/403] remoteproc: scp: Fix device reference leak on failed lookup Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 232/403] qede: Fix NULL pointer dereference in TPA fragment processing Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 233/403] RDMA/cxgb4: Cancel reg_work before freeing device on remove Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 234/403] RDMA/ucma: Lock the handler in ucma_set_ib_path() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 235/403] regulator: as3722_get_regulator_dt_data: fix premature of_node_put leaving dangling of_node pointer Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 236/403] regulator: max8998_pmic_dt_parse_pdata: of_node_put on reg_np after ownership transferred to rdata Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 237/403] regulator: qcom-refgen: correct the regulator type to CURRENT Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 238/403] ring-buffer: Free cpu_buffer::free_page with subbuf_order Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 239/403] ring-buffer: Hold cpu_buffer::lock when resizing a subbuf Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 240/403] orangefs: fix double-free of trailer_buf on readdir copy failure Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 241/403] orangefs: skip leading spaces before parsing client debug masks Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 242/403] ocfs2: always run deallocs on copy-on-write completion Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 243/403] ocfs2: bound namelen in dlm_migrate_request_handler Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 244/403] ocfs2: validate lengths in dlm_mig_lockres_handler Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 245/403] ocfs2: validate rl_used against rl_count in refcount block validator Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 246/403] ocfs2: cluster: dont sleep while holding o2hb_live_lock in o2hb_region_pin() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 247/403] ocfs2: cluster: avoid lock order inversion in o2hb_region_pin() from drop_item Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 248/403] ocfs2: cluster: fix o2hb_dependent_users leak on pin failure Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 249/403] ocfs2: fix readdir position truncation on 32-bit kernels Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 250/403] openrisc: fix arbitrary kernel memory access via or1k_atomic syscall Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 251/403] openvswitch: only skb_tx_error() a packet we are about to drop Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 252/403] ALSA: ump: Fix corrupted data bytes at MIDI 1.0 SysEx to UMP conversion Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 253/403] arm64: compat: Fix decrementing LDM/STM alignment emulation Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 254/403] ASoC: amd: yc: Add DMI entry for MSI Thin A15 B7UC Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 255/403] hwmon: (max6621) fix negative temperature offset and crit readings Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 256/403] hwmon: (max6621) fix temperature clamp range Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 257/403] lockd: pin next file across nlm_inspect_file lock-drop Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 258/403] lockd: fix NULL dereference on lockowner allocation failure Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 259/403] nvme: nvme-fc: Fix nvme_fc_create_hw_io_queues() queue deletion in error path Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 260/403] nvme: zero the discard fallback page Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 261/403] nvme-pci: disable controller on admin queue IRQ setup failure Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 262/403] nvme-tcp: do not accept C2HData based on blk_rq_payload_bytes() alone Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 263/403] nvme-tcp: fix host memory disclosure on R2T for a read command Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 264/403] nvme-tcp: reject a read that transferred too few bytes Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 265/403] sctp: stop processing a packet once its association is deleted Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 266/403] sctp: drop a chunk if its transport was removed Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 267/403] sctp: fix NULL deref on untransmitted RECONF completion Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 268/403] sctp: distinguish sequence zero from wildcard in reconf lookup Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 269/403] sctp: fix stream->outcnt underflow on duplicate RECONF responses Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 270/403] power: supply: bq24257: fix use-after-free on remove Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 271/403] power: supply: bq256xx: drain usb_work before freeing the charger Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 272/403] power: supply: bq25890: Fix power_supply reference leak Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 273/403] power: supply: charger-manager: register regulators before exposing sysfs Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 274/403] power: supply: cros_usbpd-charger: bound the EC-reported port count Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 275/403] power: supply: cros_usbpd: Limit port counts to EC_USB_PD_MAX_PORTS Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 276/403] power: supply: lp8727: fix use-after-free in lp8727_release_irq() Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 277/403] power: supply: lp8788-charger: fix use-after-free on remove Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 278/403] power: supply: qcom_battmgr: terminate the strings from firmware Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 279/403] power: supply: rt9455: quiesce delayed work before teardown Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 280/403] power: supply: twl4030_charger: cancel workers via devm Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 281/403] power: supply: ucs1002: fix use-after-free on remove Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 282/403] power: supply: max17040: propagate register read errors Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 283/403] power: supply: max17040: drop incorrect I2C functionality check Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 284/403] power: supply: max17040: synchronize work cancellation on suspend Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 285/403] s390/cpum_cf: Handle CPU hotplug via prepare/dead callbacks Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 286/403] s390/dasd: Do not complete a failed ESE read as successful Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 287/403] s390/dasd: Guard sysfs discipline callbacks against unallocated private data Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 288/403] s390/dasd: Propagate partial completion length across ERP recovery Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 289/403] PCI: Fix 32-bit config write in Intel PCH Root Port MPC ACS quirk Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 290/403] PCI: meson: Fix GPIO state while requesting PERST# Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 291/403] PCI: plda: Fix use-after-free of event IRQs during teardown Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 292/403] PCI: plda: Fix IRQ domain leaks in the error paths of plda_init_interrupts() Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 293/403] PCI: Add ACS quirk for Pericom PI7C9X2G608 switches [12d8:2608] Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 294/403] PCI/sysfs: Fix read byte order in pci_read_legacy_io() Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 295/403] PCI/sysfs: Avoid spurious runtime PM wakeup on config space accesses Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 296/403] PCI/ASPM: Avoid L0s for Realtek RTS525A Greg Kroah-Hartman
2026-09-05 18:27   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-04  5:01 ` [PATCH 6.12 297/403] PCI/DPC: Allow DPC on all Downstream Ports when OS controls AER Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 298/403] PCI/MSI: Enable memory decoding before restoring MSI-X messages Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 299/403] PCI/proc: Avoid spurious runtime PM wakeup on config space accesses Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 300/403] PCI/proc: Use file_ns_capable() when checking config space read access Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 301/403] PCI/proc: Warn on writes to kernel-exclusive config space regions Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 302/403] iommu/amd: Put PCI device after handling PPR faults Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 303/403] iommu/sva: Set handle->dev before the SVA handle is visible Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 304/403] iommu/arm-smmu-v3: Manage teardown with devm Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 305/403] iommu/vt-d: Fix no_iommu to disable platform opt-in Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 306/403] iommu/vt-d: Force requesting ACS when tboot is enabled Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 307/403] platform/x86: dell-wmi-sysman: Dont hex dump attribute security buffer Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 308/403] platform/x86: ISST: Validate level in perf mask ioctls Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 309/403] platform/x86: ISST: Validate socket ID in clos_assoc ioctl Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 310/403] mmc: via-sdmmc: stop card-detect handling on probe failure Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 311/403] platform/x86: ISST: Add a NULL check for sst_inst[] Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 312/403] platform/x86: ISST: Just allow 2 bits for SST feature enable Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 313/403] platform/x86: ISST: Use PP level enable mask Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 314/403] platform/x86: ISST: Validate logical CPU id and clos id Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 315/403] platform/x86: ISST: Validate parameter for core power state Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 316/403] platform/x86: ISST: Validate parameter for frequency and priority Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 317/403] platform/x86: ISST: Return error during profile addition Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 318/403] platform/x86: ishtp_eclite: Fix ACPI device reference leak in probe error path Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 319/403] platform/chrome: sensorhub: Bound the EC-reported sensor number Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 320/403] platform/x86: hp-bioscfg: accept reduced ACPI packages from older HP BIOS Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 321/403] platform/x86: hp-bioscfg: advance elem past consumed array elements Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 322/403] platform/x86: hp-bioscfg: bound ordered-list parsing by the package count Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 323/403] platform/x86: hp-bioscfg: fix heap OOB read in sk_store() and kek_store() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 324/403] platform/x86: hp-bioscfg: fix heap OOB read on empty password write Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 325/403] platform/x86: hp-bioscfg: fix new_password_store() overwriting current_password Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 326/403] platform/x86: hp-bioscfg: fix off-by-one write in hp_get_string_from_buffer() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 327/403] platform/x86: hp-bioscfg: fix ORD_LIST_ELEMENTS never being parsed Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 328/403] platform/x86: hp-bioscfg: pass validated element count to package parsers Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 329/403] platform/x86: hp-bioscfg: warn on element type mismatch instead of failing Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 330/403] interconnect: Fix use after free in icc_get() and of_icc_get_by_index() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 331/403] ipmi: ipmb: validate write message length Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 332/403] ipmi: si: Fix NULL pointer dereference after failed registration Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 333/403] net/iucv: filter frames in afiucv_hs_rcv() by ingress device Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 334/403] xdp: fix zero-copy frame layout Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 335/403] slip: fix use-after-free in sl_sync() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 336/403] net: usb: qmi_wwan: add Telit Cinterion FE990D50 composition Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 337/403] net: tun: bound receive headroom Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 338/403] net: dsa: realtek: use gpiod_set_value_cansleep for reset GPIO Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 339/403] net: ipa: fix stalled modem TX queue after runtime resume Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 340/403] net: l2tp: do not propagate multicast notification errors Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 341/403] net: openvswitch: fix flow mask use-after-free on flow deletion Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 342/403] net: openvswitch: fix nf_connlabels leak in ovs_ct_init Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 343/403] net: ravb: avoid dereferencing an invalid PTP clock Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 344/403] net: ravb: serialize PTP clock teardown Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 345/403] net: thunderbolt: Release the Rx HopID that was handed out on mismatch Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 346/403] net: thunderbolt: Mark the connection down when bringing it up fails Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 347/403] NTB: ntb_transport: Recycle TX entries before client callbacks Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 348/403] NTB: ntb_transport: Fail TX enqueue when the QP link is down Greg Kroah-Hartman
2026-09-05 18:30   ` Harshit Mogalapalli
2026-09-07  1:21     ` Koichiro Den
2026-09-07  1:22     ` Sasha Levin
2026-09-04  5:02 ` [PATCH 6.12 349/403] NTB: ntb_transport: Reject oversized TX buffers Greg Kroah-Hartman
2026-09-05 18:33   ` Harshit Mogalapalli
2026-09-04  5:02 ` [PATCH 6.12 350/403] net: ntb_netdev: Avoid double-accounting netif_rx() drops Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 351/403] net: ntb_netdev: Count packets dropped on RX refill failure Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 352/403] net/smc: do not dereference an unset send buffer on the SMC-D teardown path Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 353/403] net/smc: fix socket refcount leak in smc_switch_conns() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 354/403] net/smc: fix use-after-free in smc_rx_pipe_buf_release() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 355/403] net/smc: unregister the connection before draining the rx tasklet Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 356/403] net: cap advertised IP tunnel headroom Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 357/403] net: fix spurious TX timeout after dev_activate() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 358/403] net: skbuff: dont touch shared zerocopy state in skb_tx_error() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 359/403] seg6: reset IP6CB after IPv6 decapsulation Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 360/403] mfd: sm501: Fix potential memory leaks during remove Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 361/403] ALSA: 6fire: bound the MIDI event length from the device Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 362/403] ALSA: aloop: Check card index validity at probe Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 363/403] ALSA: bcd2000: clear the URB pointers on disconnect Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 364/403] ALSA: mpu401: Check card index validity at probe Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 365/403] ALSA: mts64: " Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 366/403] ALSA: pcxhr: initialize mutexes before requesting threaded IRQ Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 367/403] ALSA: portman2x4: Check card index validity at probe Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 368/403] ALSA: serial-u16550: " Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 369/403] ALSA: virmidi: " Greg Kroah-Hartman
2026-09-04  5:02 ` Greg Kroah-Hartman [this message]
2026-09-04  5:02 ` [PATCH 6.12 371/403] iommu/amd: remove return value of amd_iommu_detect Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 372/403] x86/sev: Fix broken SNP support with KVM module built-in Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 373/403] rust: rust_is_available: warn for `bindgen` < 0.72.1 && libclang >= 22 Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 374/403] KVM: selftests: Remove duplicate LAUNCH_UPDATE_VMSA call in SEV-ES migrate test Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 375/403] PCI: hv: Set irq_retrigger callback for the Hyper-V PCI MSI irqchip Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 376/403] arch_numa: avoid false positive fortify warning in setup_node_to_cpumask_map() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 377/403] dm-stats: fix a crash if allocation of per-cpu data fails Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 378/403] dm-switch: use WRITE_ONCE() in switch_region_table_write() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 379/403] i3c: master: Fix info leak and UAF in device unregister path Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 380/403] i3c: master: svc: bound IBI payload to the requested max_payload_len Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 381/403] i3c: master: Fix potential UAF in i3c_device_uevent() Greg Kroah-Hartman
2026-09-05 18:35   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-07  6:42       ` Adrian Hunter
2026-09-08  0:53         ` Sasha Levin
2026-09-04  5:03 ` [PATCH 6.12 382/403] wifi: brcmfmac: Fix memory leak in brcmf_sdio_read_control() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 383/403] wifi: rtl8xxxu: fix use-after-free from rx_urb_wq on stop Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 384/403] crypto: sun8i-ce - Remove crypto_rng interface Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 385/403] crypto: sun8i-ss " Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 386/403] wifi: mwifiex: Detach sync cmd buffer on interrupted wait Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 387/403] wifi: rtl818x: initialize eeprom_93cx6 struct to zero Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 388/403] wifi: rtlwifi: rtl8192du: check QoS TID before indexing tids Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 389/403] wifi: rtlwifi: rtl8192du: Fix possible memory leak in rtl92du_init_sw_vars() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 390/403] wifi: rtw88: Fix potential memory leak in rtw_txq_push_skb() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 391/403] wifi: rtw88: pci: fix resource leak on failed NAPI setup Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 392/403] wifi: mt76: mt7615: avoid waiting for mac work under the mt76 mutex Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 393/403] vsock/virtio: flush works in dependency order Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 394/403] w1: ds28e17: reject an oversize length on an I2C block read Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 395/403] xarray: honor XA_FLAGS_ACCOUNT in xas_split_alloc() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 396/403] tpm: tpm_i2c_nuvoton: disable IRQ on wait timeout Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 397/403] sticon/parisc: Detect default STI graphics card for console output Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 398/403] signal: avoid shared siginfo namespace rewrites Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 399/403] smack: fix cred UAF in smack_file_send_sigiotask() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 400/403] taskstats: fix cpumask parsing cutting off the last character Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 401/403] timer: Keep debugobjects state consistent in migrate_timer_list() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 402/403] udf: Fix i_lenExtents truncation on 32-bit kernels Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 403/403] platform/chrome: sensorhub: Fix dropped timestamp events and log spam Greg Kroah-Hartman
2026-09-04  9:07 ` [PATCH 6.12 000/403] 6.12.109-rc1 review Dominique Martinet
2026-09-04 10:34   ` Jon Hunter
2026-09-04 12:55     ` Dominique Martinet
2026-09-04 13:09   ` Pavel Machek
2026-09-04 12:52 ` Brett A C Sheffield
2026-09-04 21:11 ` Shuah Khan
2026-09-05 11:31 ` 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=20260904045743.213975837@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=mhiramat@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=rostedt@goodmis.org \
    --cc=sashal@kernel.org \
    --cc=sashiko-bot@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=vdonnefort@google.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