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,
	Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>,
	Matthew Auld <matthew.auld@intel.com>
Subject: [PATCH 6.18 269/312] drm/buddy: Optimize free block management with RB tree
Date: Tue,  6 Jan 2026 18:05:43 +0100	[thread overview]
Message-ID: <20260106170557.576747695@linuxfoundation.org> (raw)
In-Reply-To: <20260106170547.832845344@linuxfoundation.org>

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

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

From: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>

commit c178e534fff1d5a74da80ea03b20e2b948a00113 upstream.

Replace the freelist (O(n)) used for free block management with a
red-black tree, providing more efficient O(log n) search, insert,
and delete operations. This improves scalability and performance
when managing large numbers of free blocks per order (e.g., hundreds
or thousands).

In the VK-CTS memory stress subtest, the buddy manager merges
fragmented memory and inserts freed blocks into the freelist. Since
freelist insertion is O(n), this becomes a bottleneck as fragmentation
increases. Benchmarking shows list_insert_sorted() consumes ~52.69% CPU
with the freelist, compared to just 0.03% with the RB tree
(rbtree_insert.isra.0), despite performing the same sorted insert.

This also improves performance in heavily fragmented workloads,
such as games or graphics tests that stress memory.

As the buddy allocator evolves with new features such as clear-page
tracking, the resulting fragmentation and complexity have grown.
These RB-tree based design changes are introduced to address that
growth and ensure the allocator continues to perform efficiently
under fragmented conditions.

The RB tree implementation with separate clear/dirty trees provides:
- O(n log n) aggregate complexity for all operations instead of O(n^2)
- Elimination of soft lockups and system instability
- Improved code maintainability and clarity
- Better scalability for large memory systems
- Predictable performance under fragmentation

v3(Matthew):
  - Remove RB_EMPTY_NODE check in force_merge function.
  - Rename rb for loop macros to have less generic names and move to
    .c file.
  - Make the rb node rb and link field as union.

v4(Jani Nikula):
  - The kernel-doc comment should be "/**"
  - Move all the rbtree macros to rbtree.h and add parens to ensure
    correct precedence.

v5:
  - Remove the inline in a .c file (Jani Nikula).

v6(Peter Zijlstra):
  - Add rb_add() function replacing the existing rbtree_insert() code.

v7:
  - A full walk iteration in rbtree is slower than the list (Peter Zijlstra).
  - The existing rbtree_postorder_for_each_entry_safe macro should be used
    in scenarios where traversal order is not a critical factor (Christian).

v8(Matthew):
  - Remove the rbtree_is_empty() check in this patch as well.

Cc: stable@vger.kernel.org
Fixes: a68c7eaa7a8f ("drm/amdgpu: Enable clear page functionality")
Signed-off-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link: https://lore.kernel.org/r/20251006095124.1663-1-Arunpravin.PaneerSelvam@amd.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/gpu/drm/drm_buddy.c |  195 ++++++++++++++++++++++++++------------------
 include/drm/drm_buddy.h     |   11 +-
 2 files changed, 126 insertions(+), 80 deletions(-)

--- a/drivers/gpu/drm/drm_buddy.c
+++ b/drivers/gpu/drm/drm_buddy.c
@@ -14,6 +14,8 @@
 
 static struct kmem_cache *slab_blocks;
 
+#define rbtree_get_free_block(node) rb_entry((node), struct drm_buddy_block, rb)
+
 static struct drm_buddy_block *drm_block_alloc(struct drm_buddy *mm,
 					       struct drm_buddy_block *parent,
 					       unsigned int order,
@@ -31,6 +33,8 @@ static struct drm_buddy_block *drm_block
 	block->header |= order;
 	block->parent = parent;
 
+	RB_CLEAR_NODE(&block->rb);
+
 	BUG_ON(block->header & DRM_BUDDY_HEADER_UNUSED);
 	return block;
 }
@@ -41,23 +45,49 @@ static void drm_block_free(struct drm_bu
 	kmem_cache_free(slab_blocks, block);
 }
 
-static void list_insert_sorted(struct drm_buddy *mm,
-			       struct drm_buddy_block *block)
+static bool drm_buddy_block_offset_less(const struct drm_buddy_block *block,
+					const struct drm_buddy_block *node)
 {
-	struct drm_buddy_block *node;
-	struct list_head *head;
+	return drm_buddy_block_offset(block) < drm_buddy_block_offset(node);
+}
 
-	head = &mm->free_list[drm_buddy_block_order(block)];
-	if (list_empty(head)) {
-		list_add(&block->link, head);
-		return;
-	}
+static bool rbtree_block_offset_less(struct rb_node *block,
+				     const struct rb_node *node)
+{
+	return drm_buddy_block_offset_less(rbtree_get_free_block(block),
+					   rbtree_get_free_block(node));
+}
 
-	list_for_each_entry(node, head, link)
-		if (drm_buddy_block_offset(block) < drm_buddy_block_offset(node))
-			break;
+static void rbtree_insert(struct drm_buddy *mm,
+			  struct drm_buddy_block *block)
+{
+	rb_add(&block->rb,
+	       &mm->free_tree[drm_buddy_block_order(block)],
+	       rbtree_block_offset_less);
+}
+
+static void rbtree_remove(struct drm_buddy *mm,
+			  struct drm_buddy_block *block)
+{
+	struct rb_root *root;
+
+	root = &mm->free_tree[drm_buddy_block_order(block)];
+	rb_erase(&block->rb, root);
+
+	RB_CLEAR_NODE(&block->rb);
+}
+
+static struct drm_buddy_block *
+rbtree_last_entry(struct drm_buddy *mm, unsigned int order)
+{
+	struct rb_node *node = rb_last(&mm->free_tree[order]);
+
+	return node ? rb_entry(node, struct drm_buddy_block, rb) : NULL;
+}
 
-	__list_add(&block->link, node->link.prev, &node->link);
+static bool rbtree_is_empty(struct drm_buddy *mm, unsigned int order)
+{
+	return RB_EMPTY_ROOT(&mm->free_tree[order]);
 }
 
 static void clear_reset(struct drm_buddy_block *block)
@@ -70,12 +100,13 @@ static void mark_cleared(struct drm_budd
 	block->header |= DRM_BUDDY_HEADER_CLEAR;
 }
 
-static void mark_allocated(struct drm_buddy_block *block)
+static void mark_allocated(struct drm_buddy *mm,
+			   struct drm_buddy_block *block)
 {
 	block->header &= ~DRM_BUDDY_HEADER_STATE;
 	block->header |= DRM_BUDDY_ALLOCATED;
 
-	list_del(&block->link);
+	rbtree_remove(mm, block);
 }
 
 static void mark_free(struct drm_buddy *mm,
@@ -84,15 +115,16 @@ static void mark_free(struct drm_buddy *
 	block->header &= ~DRM_BUDDY_HEADER_STATE;
 	block->header |= DRM_BUDDY_FREE;
 
-	list_insert_sorted(mm, block);
+	rbtree_insert(mm, block);
 }
 
-static void mark_split(struct drm_buddy_block *block)
+static void mark_split(struct drm_buddy *mm,
+		       struct drm_buddy_block *block)
 {
 	block->header &= ~DRM_BUDDY_HEADER_STATE;
 	block->header |= DRM_BUDDY_SPLIT;
 
-	list_del(&block->link);
+	rbtree_remove(mm, block);
 }
 
 static inline bool overlaps(u64 s1, u64 e1, u64 s2, u64 e2)
@@ -148,7 +180,7 @@ static unsigned int __drm_buddy_free(str
 				mark_cleared(parent);
 		}
 
-		list_del(&buddy->link);
+		rbtree_remove(mm, buddy);
 		if (force_merge && drm_buddy_block_is_clear(buddy))
 			mm->clear_avail -= drm_buddy_block_size(mm, buddy);
 
@@ -179,13 +211,19 @@ static int __force_merge(struct drm_budd
 		return -EINVAL;
 
 	for (i = min_order - 1; i >= 0; i--) {
-		struct drm_buddy_block *block, *prev;
+		struct rb_root *root = &mm->free_tree[i];
+		struct rb_node *iter;
+
+		iter = rb_last(root);
 
-		list_for_each_entry_safe_reverse(block, prev, &mm->free_list[i], link) {
-			struct drm_buddy_block *buddy;
+		while (iter) {
+			struct drm_buddy_block *block, *buddy;
 			u64 block_start, block_end;
 
-			if (!block->parent)
+			block = rbtree_get_free_block(iter);
+			iter = rb_prev(iter);
+
+			if (!block || !block->parent)
 				continue;
 
 			block_start = drm_buddy_block_offset(block);
@@ -201,15 +239,10 @@ static int __force_merge(struct drm_budd
 			WARN_ON(drm_buddy_block_is_clear(block) ==
 				drm_buddy_block_is_clear(buddy));
 
-			/*
-			 * If the prev block is same as buddy, don't access the
-			 * block in the next iteration as we would free the
-			 * buddy block as part of the free function.
-			 */
-			if (prev == buddy)
-				prev = list_prev_entry(prev, link);
+			if (iter == &buddy->rb)
+				iter = rb_prev(iter);
 
-			list_del(&block->link);
+			rbtree_remove(mm, block);
 			if (drm_buddy_block_is_clear(block))
 				mm->clear_avail -= drm_buddy_block_size(mm, block);
 
@@ -237,7 +270,7 @@ static int __force_merge(struct drm_budd
 int drm_buddy_init(struct drm_buddy *mm, u64 size, u64 chunk_size)
 {
 	unsigned int i;
-	u64 offset;
+	u64 offset = 0;
 
 	if (size < chunk_size)
 		return -EINVAL;
@@ -258,14 +291,14 @@ int drm_buddy_init(struct drm_buddy *mm,
 
 	BUG_ON(mm->max_order > DRM_BUDDY_MAX_ORDER);
 
-	mm->free_list = kmalloc_array(mm->max_order + 1,
-				      sizeof(struct list_head),
+	mm->free_tree = kmalloc_array(mm->max_order + 1,
+				      sizeof(struct rb_root),
 				      GFP_KERNEL);
-	if (!mm->free_list)
+	if (!mm->free_tree)
 		return -ENOMEM;
 
 	for (i = 0; i <= mm->max_order; ++i)
-		INIT_LIST_HEAD(&mm->free_list[i]);
+		mm->free_tree[i] = RB_ROOT;
 
 	mm->n_roots = hweight64(size);
 
@@ -273,9 +306,8 @@ int drm_buddy_init(struct drm_buddy *mm,
 				  sizeof(struct drm_buddy_block *),
 				  GFP_KERNEL);
 	if (!mm->roots)
-		goto out_free_list;
+		goto out_free_tree;
 
-	offset = 0;
 	i = 0;
 
 	/*
@@ -312,8 +344,8 @@ out_free_roots:
 	while (i--)
 		drm_block_free(mm, mm->roots[i]);
 	kfree(mm->roots);
-out_free_list:
-	kfree(mm->free_list);
+out_free_tree:
+	kfree(mm->free_tree);
 	return -ENOMEM;
 }
 EXPORT_SYMBOL(drm_buddy_init);
@@ -323,7 +355,7 @@ EXPORT_SYMBOL(drm_buddy_init);
  *
  * @mm: DRM buddy manager to free
  *
- * Cleanup memory manager resources and the freelist
+ * Cleanup memory manager resources and the freetree
  */
 void drm_buddy_fini(struct drm_buddy *mm)
 {
@@ -350,7 +382,7 @@ void drm_buddy_fini(struct drm_buddy *mm
 	WARN_ON(mm->avail != mm->size);
 
 	kfree(mm->roots);
-	kfree(mm->free_list);
+	kfree(mm->free_tree);
 }
 EXPORT_SYMBOL(drm_buddy_fini);
 
@@ -383,7 +415,7 @@ static int split_block(struct drm_buddy
 		clear_reset(block);
 	}
 
-	mark_split(block);
+	mark_split(mm, block);
 
 	return 0;
 }
@@ -412,7 +444,7 @@ EXPORT_SYMBOL(drm_get_buddy);
  * @is_clear: blocks clear state
  *
  * Reset the clear state based on @is_clear value for each block
- * in the freelist.
+ * in the freetree.
  */
 void drm_buddy_reset_clear(struct drm_buddy *mm, bool is_clear)
 {
@@ -431,9 +463,9 @@ void drm_buddy_reset_clear(struct drm_bu
 	}
 
 	for (i = 0; i <= mm->max_order; ++i) {
-		struct drm_buddy_block *block;
+		struct drm_buddy_block *block, *tmp;
 
-		list_for_each_entry_reverse(block, &mm->free_list[i], link) {
+		rbtree_postorder_for_each_entry_safe(block, tmp, &mm->free_tree[i], rb) {
 			if (is_clear != drm_buddy_block_is_clear(block)) {
 				if (is_clear) {
 					mark_cleared(block);
@@ -639,14 +671,18 @@ get_maxblock(struct drm_buddy *mm, unsig
 	unsigned int i;
 
 	for (i = order; i <= mm->max_order; ++i) {
+		struct rb_node *iter = rb_last(&mm->free_tree[i]);
 		struct drm_buddy_block *tmp_block;
 
-		list_for_each_entry_reverse(tmp_block, &mm->free_list[i], link) {
-			if (block_incompatible(tmp_block, flags))
-				continue;
+		while (iter) {
+			tmp_block = rbtree_get_free_block(iter);
 
-			block = tmp_block;
-			break;
+			if (!block_incompatible(tmp_block, flags)) {
+				block = tmp_block;
+				break;
+			}
+
+			iter = rb_prev(iter);
 		}
 
 		if (!block)
@@ -667,7 +703,7 @@ get_maxblock(struct drm_buddy *mm, unsig
 }
 
 static struct drm_buddy_block *
-alloc_from_freelist(struct drm_buddy *mm,
+alloc_from_freetree(struct drm_buddy *mm,
 		    unsigned int order,
 		    unsigned long flags)
 {
@@ -682,14 +718,18 @@ alloc_from_freelist(struct drm_buddy *mm
 			tmp = drm_buddy_block_order(block);
 	} else {
 		for (tmp = order; tmp <= mm->max_order; ++tmp) {
+			struct rb_node *iter = rb_last(&mm->free_tree[tmp]);
 			struct drm_buddy_block *tmp_block;
 
-			list_for_each_entry_reverse(tmp_block, &mm->free_list[tmp], link) {
-				if (block_incompatible(tmp_block, flags))
-					continue;
+			while (iter) {
+				tmp_block = rbtree_get_free_block(iter);
 
-				block = tmp_block;
-				break;
+				if (!block_incompatible(tmp_block, flags)) {
+					block = tmp_block;
+					break;
+				}
+
+				iter = rb_prev(iter);
 			}
 
 			if (block)
@@ -700,13 +740,9 @@ alloc_from_freelist(struct drm_buddy *mm
 	if (!block) {
 		/* Fallback method */
 		for (tmp = order; tmp <= mm->max_order; ++tmp) {
-			if (!list_empty(&mm->free_list[tmp])) {
-				block = list_last_entry(&mm->free_list[tmp],
-							struct drm_buddy_block,
-							link);
-				if (block)
-					break;
-			}
+			block = rbtree_last_entry(mm, tmp);
+			if (block)
+				break;
 		}
 
 		if (!block)
@@ -771,7 +807,7 @@ static int __alloc_range(struct drm_budd
 
 		if (contains(start, end, block_start, block_end)) {
 			if (drm_buddy_block_is_free(block)) {
-				mark_allocated(block);
+				mark_allocated(mm, block);
 				total_allocated += drm_buddy_block_size(mm, block);
 				mm->avail -= drm_buddy_block_size(mm, block);
 				if (drm_buddy_block_is_clear(block))
@@ -849,8 +885,8 @@ static int __alloc_contig_try_harder(str
 {
 	u64 rhs_offset, lhs_offset, lhs_size, filled;
 	struct drm_buddy_block *block;
-	struct list_head *list;
 	LIST_HEAD(blocks_lhs);
+	struct rb_node *iter;
 	unsigned long pages;
 	unsigned int order;
 	u64 modify_size;
@@ -862,11 +898,14 @@ static int __alloc_contig_try_harder(str
 	if (order == 0)
 		return -ENOSPC;
 
-	list = &mm->free_list[order];
-	if (list_empty(list))
+	if (rbtree_is_empty(mm, order))
 		return -ENOSPC;
 
-	list_for_each_entry_reverse(block, list, link) {
+	iter = rb_last(&mm->free_tree[order]);
+
+	while (iter) {
+		block = rbtree_get_free_block(iter);
+
 		/* Allocate blocks traversing RHS */
 		rhs_offset = drm_buddy_block_offset(block);
 		err =  __drm_buddy_alloc_range(mm, rhs_offset, size,
@@ -891,6 +930,8 @@ static int __alloc_contig_try_harder(str
 		}
 		/* Free blocks for the next iteration */
 		drm_buddy_free_list_internal(mm, blocks);
+
+		iter = rb_prev(iter);
 	}
 
 	return -ENOSPC;
@@ -976,7 +1017,7 @@ int drm_buddy_block_trim(struct drm_budd
 	list_add(&block->tmp_link, &dfs);
 	err =  __alloc_range(mm, &dfs, new_start, new_size, blocks, NULL);
 	if (err) {
-		mark_allocated(block);
+		mark_allocated(mm, block);
 		mm->avail -= drm_buddy_block_size(mm, block);
 		if (drm_buddy_block_is_clear(block))
 			mm->clear_avail -= drm_buddy_block_size(mm, block);
@@ -999,8 +1040,8 @@ __drm_buddy_alloc_blocks(struct drm_budd
 		return  __drm_buddy_alloc_range_bias(mm, start, end,
 						     order, flags);
 	else
-		/* Allocate from freelist */
-		return alloc_from_freelist(mm, order, flags);
+		/* Allocate from freetree */
+		return alloc_from_freetree(mm, order, flags);
 }
 
 /**
@@ -1017,8 +1058,8 @@ __drm_buddy_alloc_blocks(struct drm_budd
  * alloc_range_bias() called on range limitations, which traverses
  * the tree and returns the desired block.
  *
- * alloc_from_freelist() called when *no* range restrictions
- * are enforced, which picks the block from the freelist.
+ * alloc_from_freetree() called when *no* range restrictions
+ * are enforced, which picks the block from the freetree.
  *
  * Returns:
  * 0 on success, error code on failure.
@@ -1120,7 +1161,7 @@ int drm_buddy_alloc_blocks(struct drm_bu
 			}
 		} while (1);
 
-		mark_allocated(block);
+		mark_allocated(mm, block);
 		mm->avail -= drm_buddy_block_size(mm, block);
 		if (drm_buddy_block_is_clear(block))
 			mm->clear_avail -= drm_buddy_block_size(mm, block);
@@ -1201,10 +1242,10 @@ void drm_buddy_print(struct drm_buddy *m
 		   mm->chunk_size >> 10, mm->size >> 20, mm->avail >> 20, mm->clear_avail >> 20);
 
 	for (order = mm->max_order; order >= 0; order--) {
-		struct drm_buddy_block *block;
+		struct drm_buddy_block *block, *tmp;
 		u64 count = 0, free;
 
-		list_for_each_entry(block, &mm->free_list[order], link) {
+		rbtree_postorder_for_each_entry_safe(block, tmp, &mm->free_tree[order], rb) {
 			BUG_ON(!drm_buddy_block_is_free(block));
 			count++;
 		}
--- a/include/drm/drm_buddy.h
+++ b/include/drm/drm_buddy.h
@@ -10,6 +10,7 @@
 #include <linux/list.h>
 #include <linux/slab.h>
 #include <linux/sched.h>
+#include <linux/rbtree.h>
 
 #include <drm/drm_print.h>
 
@@ -44,7 +45,11 @@ struct drm_buddy_block {
 	 * a list, if so desired. As soon as the block is freed with
 	 * drm_buddy_free* ownership is given back to the mm.
 	 */
-	struct list_head link;
+	union {
+		struct rb_node rb;
+		struct list_head link;
+	};
+
 	struct list_head tmp_link;
 };
 
@@ -59,7 +64,7 @@ struct drm_buddy_block {
  */
 struct drm_buddy {
 	/* Maintain a free list for each order. */
-	struct list_head *free_list;
+	struct rb_root *free_tree;
 
 	/*
 	 * Maintain explicit binary tree(s) to track the allocation of the
@@ -85,7 +90,7 @@ struct drm_buddy {
 };
 
 static inline u64
-drm_buddy_block_offset(struct drm_buddy_block *block)
+drm_buddy_block_offset(const struct drm_buddy_block *block)
 {
 	return block->header & DRM_BUDDY_HEADER_OFFSET;
 }



  parent reply	other threads:[~2026-01-06 18:02 UTC|newest]

Thread overview: 328+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-06 17:01 [PATCH 6.18 000/312] 6.18.4-rc1 review Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 001/312] sched/proxy: Yield the donor task Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 002/312] drm: nova: depend on CONFIG_64BIT Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 003/312] x86/microcode/AMD: Select which microcode patch to load Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 004/312] sched/core: Add comment explaining force-idle vruntime snapshots Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 005/312] sched/eevdf: Fix min_vruntime vs avg_vruntime Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 006/312] sched_ext: Fix incorrect sched_class settings for per-cpu migration tasks Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 007/312] mm/huge_memory: merge uniform_split_supported() and non_uniform_split_supported() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 008/312] KVM: s390: Fix gmap_helper_zap_one_page() again Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 009/312] drm/edid: add DRM_EDID_IDENT_INIT() to initialize struct drm_edid_ident Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 010/312] drm/displayid: add quirk to ignore DisplayID checksum errors Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 011/312] drm/amdgpu: dont attach the tlb fence for SI Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 012/312] wifi: rtw88: limit indirect IO under powered off for RTL8822CS Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 013/312] wifi: rtlwifi: 8192cu: fix tid out of range in rtl92cu_tx_fill_desc() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 014/312] wifi: cfg80211: sme: store capped length in __cfg80211_connect_result() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 015/312] wifi: mac80211: do not use old MBSSID elements Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 016/312] sched_ext: fix uninitialized ret on alloc_percpu() failure Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 017/312] i40e: fix scheduling in set_rx_mode Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 018/312] i40e: validate ring_len parameter against hardware-specific values Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 019/312] iavf: fix off-by-one issues in iavf_config_rss_reg() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 020/312] idpf: fix LAN memory regions command on some NVMs Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 021/312] idpf: reduce mbx_task schedule delay to 300us Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 022/312] cpuset: fix warning when disabling remote partition Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 023/312] crypto: seqiv - Do not use req->iv after crypto_aead_encrypt Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 024/312] Bluetooth: MGMT: report BIS capability flags in supported settings Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 025/312] Bluetooth: btusb: revert use of devm_kzalloc in btusb Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 026/312] net: mdio: aspeed: add dummy read to avoid read-after-write issue Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 027/312] net: openvswitch: Avoid needlessly taking the RTNL on vport destroy Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 028/312] ip6_gre: make ip6gre_header() robust Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 029/312] powerpc/tools: drop `-o pipefail` in gcc check scripts Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 030/312] platform/mellanox: mlxbf-pmc: Remove trailing whitespaces from event names Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 031/312] platform/x86: msi-laptop: add missing sysfs_remove_group() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 032/312] platform/x86: ibm_rtl: fix EBDA signature search pointer arithmetic Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 033/312] team: fix check for port enabled in team_queue_override_port_prio_changed() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 034/312] net: airoha: Move net_devs registration in a dedicated routine Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 035/312] net: dsa: properly keep track of conduit reference Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 036/312] net: dsa: fix missing put_device() in dsa_tree_find_first_conduit() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 037/312] amd-xgbe: reset retries and mode on RX adapt failures Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 038/312] selftests: drv-net: psp: fix templated test names in psp_ip_ver_test_builder() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 039/312] selftests: drv-net: psp: fix test names in ipver_test_builder() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 040/312] net: usb: rtl8150: fix memory leak on usb_submit_urb() failure Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 041/312] selftests: net: fix "buffer overflow detected" for tap.c Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 042/312] net: wangxun: move PHYLINK dependency Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 043/312] platform/x86/intel/pmt: Fix kobject memory leak on init failure Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 044/312] smc91x: fix broken irq-context in PREEMPT_RT Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 045/312] genalloc.h: fix htmldocs warning Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 046/312] firewire: nosy: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 047/312] bng_en: update module description Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 048/312] net: dsa: b53: skip multicast entries for fdb_dump() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 049/312] kbuild: fix compilation of dtb specified on command-line without make rule Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 050/312] mcb: Add missing modpost build support Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 051/312] net: mdio: rtl9300: use scoped for loops Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 052/312] net: usb: asix: validate PHY address before use Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 053/312] net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group struct Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 054/312] tools/sched_ext: fix scx_show_state.py for scx_root change Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 055/312] vfio/pds: Fix memory leak in pds_vfio_dirty_enable() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 056/312] platform/x86: hp-bioscfg: Fix out-of-bounds array access in ACPI package parsing Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 057/312] platform/x86/intel/pmt/discovery: use valid device pointer in dev_err_probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 058/312] octeontx2-pf: fix "UBSAN: shift-out-of-bounds error" Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 059/312] net: stmmac: fix the crash issue for zero copy XDP_TX action Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 060/312] ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 061/312] ipv4: Fix reference count leak when using error routes with nexthop objects Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 062/312] net: fib: restore ECMP balance from loopback Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 063/312] net: rose: fix invalid array index in rose_kill_by_device() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 064/312] ipv6: fix a BUG in rt6_get_pcpu_route() under PREEMPT_RT Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 065/312] RDMA/ucma: Fix rdma_ucm_query_ib_service_resp struct padding Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 066/312] RDMA/irdma: Fix irdma_alloc_ucontext_resp padding Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 067/312] RDMA/mana_ib: check cqe length for kernel CQs Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 068/312] RDMA/irdma: avoid invalid read in irdma_net_event Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 069/312] RDMA/efa: Remove possible negative shift Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 070/312] RDMA/core: Fix logic error in ib_get_gids_from_rdma_hdr() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 071/312] RDMA/bnxt_re: Fix incorrect BAR check in bnxt_qplib_map_creq_db() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 072/312] RDMA/core: always drop device refcount in ib_del_sub_device_and_put() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 073/312] drm/gem-shmem: Fix the MODULE_LICENSE() string Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 074/312] RDMA/bnxt_re: Fix IB_SEND_IP_CSUM handling in post_send Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 075/312] RDMA/bnxt_re: Fix OOB write in bnxt_re_copy_err_stats() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 076/312] kunit: Enforce task execution in {soft,hard}irq contexts Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 077/312] RDMA/bnxt_re: Fix to use correct page size for PDE table Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 078/312] md: Fix static checker warning in analyze_sbs Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 079/312] md/raid5: fix possible null-pointer dereferences in raid5_store_group_thread_cnt() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 080/312] ublk: implement NUMA-aware memory allocation Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 081/312] ublk: scan partition in async way Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 082/312] drm/xe/guc: READ/WRITE_ONCE g2h_fence->done Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 083/312] ksmbd: Fix memory leak in get_file_all_info() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 084/312] IB/rxe: Fix missing umem_odp->umem_mutex unlock on error path Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 085/312] RDMA/rtrs: Fix clt_path::max_pages_per_mr calculation Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 086/312] RDMA/bnxt_re: fix dma_free_coherent() pointer Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 087/312] blk-mq: skip CPU offline notify on unmapped hctx Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 088/312] selftests/ftrace: traceonoff_triggers: strip off names Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 089/312] block: handle zone management operations completions Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 090/312] ntfs: Do not overwrite uptodate pages Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 091/312] ASoC: codecs: wcd939x: fix regmap leak on probe failure Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 092/312] ASoC: stm32: sai: fix device leak on probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 093/312] ASoC: stm32: sai: fix clk prepare imbalance on probe failure Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 094/312] ASoC: stm32: sai: fix OF node leak on probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 095/312] ASoC: renesas: rz-ssi: Fix channel swap issue in full duplex mode Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 096/312] ASoC: renesas: rz-ssi: Fix rz_ssi_priv::hw_params_cache::sample_width Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 097/312] ASoC: codecs: wcd937x: Fix error handling in wcd937x codec driver Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 098/312] ASoC: codecs: pm4125: Fix potential conflict when probing two devices Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 099/312] ASoC: codecs: pm4125: Remove irq_chip on component unbind Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 100/312] ASoC: codecs: lpass-tx-macro: fix SM6115 support Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 101/312] ASoC: qcom: sdw: fix memory leak for sdw_stream_runtime Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 102/312] ASoC: cs35l41: Always return 0 when a subsystem ID is found Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 103/312] ASoC: codecs: Fix error handling in pm4125 audio codec driver Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 104/312] ASoC: qcom: q6apm-dai: set flags to reflect correct operation of appl_ptr Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 105/312] ASoC: qcom: q6asm-dai: perform correct state check before closing Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 106/312] ASoC: qcom: q6adm: the the copp device only during last instance Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 107/312] ASoC: qcom: qdsp6: q6asm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 108/312] iommu/amd: Fix pci_segment memleak in alloc_pci_segment() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 109/312] iommu/amd: Propagate the error code returned by __modify_irte_ga() in modify_irte_ga() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 110/312] iommu/apple-dart: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 111/312] iommu/exynos: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 112/312] iommu/ipmmu-vmsa: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 113/312] iommu/mediatek-v1: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 114/312] iommu/mediatek-v1: fix device leaks on probe() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 115/312] iommu/mediatek: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 116/312] iommu/omap: fix device leaks on probe_device() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 117/312] iommu/qcom: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 118/312] iommu/sun50i: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 119/312] iommu/tegra: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 120/312] iommu: disable SVA when CONFIG_X86 is set Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 121/312] hwmon: (dell-smm) Fix off-by-one error in dell_smm_is_visible() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 122/312] HID: logitech-dj: Remove duplicate error logging Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 123/312] hisi_acc_vfio_pci: Add .match_token_uuid callback in hisi_acc_vfio_pci_migrn_ops Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 124/312] fgraph: Initialize ftrace_ops->private for function graph ops Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 125/312] fgraph: Check ftrace_pids_enabled on registration for early filtering Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 126/312] PCI/PM: Reinstate clearing state_saved in legacy and !PM codepaths Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 127/312] arm64: dts: ti: k3-j721e-sk: Fix pinmux for pin Y1 used by power regulator Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 128/312] powerpc, mm: Fix mprotect on book3s 32-bit Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 129/312] powerpc/64s/slb: Fix SLB multihit issue during SLB preload Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 130/312] mm, swap: do not perform synchronous discard during allocation Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 131/312] leds: leds-cros_ec: Skip LEDs without color components Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 132/312] leds: leds-lp50xx: Allow LED 0 to be added to module bank Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 133/312] leds: leds-lp50xx: LP5009 supports 3 modules for a total of 9 LEDs Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 134/312] leds: leds-lp50xx: Enable chip before any communication Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 135/312] block: Clear BLK_ZONE_WPLUG_PLUGGED when aborting plugged BIOs Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 136/312] clk: samsung: exynos-clkout: Assign .num before accessing .hws Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 137/312] clk: qcom: mmcc-sdm660: Add missing MDSS reset Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 138/312] clk: qcom: Fix SM_VIDEOCC_6350 dependencies Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 139/312] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615 Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 140/312] mfd: altera-sysmgr: Fix device leak on sysmgr regmap lookup Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 141/312] mfd: max77620: Fix potential IRQ chip conflict when probing two devices Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 142/312] media: rc: st_rc: Fix reset control resource leak Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 143/312] media: verisilicon: Fix CPU stalls on G2 bus error Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 144/312] arm64: dts: ti: k3-am62d2-evm: Fix regulator properties Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 145/312] arm64: dts: ti: k3-am62d2-evm: Fix PMIC padconfig Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 146/312] arm64: dts: st: Add memory-region-names property for stm32mp257f-ev1 Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 147/312] arm64: dts: qcom: sm6350: Fix wrong order of freq-table-hz for UFS Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 148/312] mtd: mtdpart: ignore error -ENOENT from parsers on subpartitions Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 149/312] mtd: spi-nor: winbond: Add support for W25Q01NWxxIQ chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 150/312] mtd: spi-nor: winbond: Add support for W25Q01NWxxIM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 151/312] mtd: spi-nor: winbond: Add support for W25Q02NWxxIM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 152/312] mtd: spi-nor: winbond: Add support for W25H512NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 153/312] mtd: spi-nor: winbond: Add support for W25H01NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 154/312] mtd: spi-nor: winbond: Add support for W25H02NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 155/312] NFSD: Make FILE_SYNC WRITEs comply with spec Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 156/312] nvmet: pci-epf: move DMA initialization to EPC init callback Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 157/312] parisc: entry.S: fix space adjustment on interruption for 64-bit userspace Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 158/312] parisc: entry: set W bit for !compat tasks in syscall_restore_rfi() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 159/312] PCI: brcmstb: Fix disabling L0s capability Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 160/312] PCI: meson: Fix parsing the DBI register region Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 161/312] perf/x86/amd/uncore: Fix the return value of amd_uncore_df_event_init() on error Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 162/312] power: supply: max77705: Fix potential IRQ chip conflict when probing two devices Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 163/312] powerpc/pseries/cmm: adjust BALLOON_MIGRATE when migrating pages Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 164/312] powerpc/pseries/cmm: call balloon_devinfo_init() also without CONFIG_BALLOON_COMPACTION Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 165/312] media: adv7842: Avoid possible out-of-bounds array accesses in adv7842_cp_log_status() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 166/312] firmware: stratix10-svc: Add mutex in stratix10 memory management Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 167/312] dm-ebs: Mark full buffer dirty even on partial write Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 168/312] dm-bufio: align write boundary on physical block size Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 169/312] dm pcache: fix cache info indexing Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 170/312] dm pcache: fix segment " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 171/312] fbdev: gbefb: fix to use physical address instead of dma address Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 172/312] fbdev: pxafb: Fix multiple clamped values in pxafb_adjust_timing Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 173/312] fbdev: tcx.c fix mem_map to correct smem_start offset Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 174/312] media: cec: Fix debugfs leak on bus_register() failure Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 175/312] media: iris: Refine internal buffer reconfiguration logic for resolution change Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 176/312] media: msp3400: Avoid possible out-of-bounds array accesses in msp3400c_thread() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 177/312] media: platform: mtk-mdp3: fix device leaks at probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 178/312] media: renesas: rcar_drif: fix device node reference leak in rcar_drif_bond_enabled Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 179/312] media: samsung: exynos4-is: fix potential ABBA deadlock on init Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 180/312] media: TDA1997x: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 181/312] media: verisilicon: Protect G2 HEVC decoder against invalid DPB index Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 182/312] media: videobuf2: Fix device reference leak in vb2_dc_alloc error path Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 183/312] media: vpif_capture: fix section mismatch Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 184/312] media: vpif_display: " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 185/312] media: amphion: Remove vpu_vb_is_codecconfig Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 186/312] media: amphion: Cancel message work before releasing the VPU core Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 187/312] media: i2c: ADV7604: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 188/312] media: i2c: adv7842: " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 189/312] media: i2c: imx219: Fix 1920x1080 mode to use 1:1 pixel aspect ratio Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 190/312] media: mediatek: vcodec: Use spinlock for context list protection lock Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 191/312] media: mediatek: vcodec: Fix a reference leak in mtk_vcodec_fw_vpu_init() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 192/312] LoongArch: Add new PCI ID for pci_fixup_vgadev() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 193/312] LoongArch: Correct the calculation logic of thread_count Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 194/312] LoongArch: Fix arch_dup_task_struct() for CONFIG_RANDSTRUCT Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 195/312] LoongArch: Fix build errors " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 196/312] LoongArch: Use __pmd()/__pte() for swap entry conversions Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 197/312] LoongArch: Use unsigned long for _end and _text Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 198/312] mm/damon/tests/sysfs-kunit: handle alloc failures on damon_sysfs_test_add_targets() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 199/312] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_do_test_apply_three_regions() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 200/312] mm/damon/tests/vaddr-kunit: handle alloc failures in damon_test_split_evenly_fail() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 201/312] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_test_split_evenly_succ() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 202/312] mm/damon/tests/core-kunit: fix memory leak in damon_test_set_filters_default_reject() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 203/312] mm/damon/tests/core-kunit: handle alloc failres in damon_test_new_filter() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 204/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_at() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 205/312] mm/damon/tests/core-kunit: handle allocation failures in damon_test_regions() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 206/312] mm/damon/tests/core-kunit: handle memory failure from damon_test_target() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 207/312] mm/damon/tests/core-kunit: handle memory alloc failure from damon_test_aggregate() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 208/312] mm/damon/tests/core-kunit: handle alloc failures on dasmon_test_merge_regions_of() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 209/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_merge_two() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 210/312] mm/damon/tests/core-kunit: handle alloc failures in damon_test_set_regions() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 211/312] mm/damon/tests/core-kunit: handle alloc failures in damon_test_update_monitoring_result() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 212/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_set_filters_default_reject() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 213/312] mm/damon/tests/core-kunit: handle alloc failures on damos_test_filter_out() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 214/312] mm/damon/tests/core-kunit: handle alloc failures in damon_test_ops_registration() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 215/312] mm/damon/tests/core-kunit: handle alloc failure on damon_test_set_attrs() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 216/312] mm/damon/tests/core-kunit: handle alloc failure on damos_test_commit_filter() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 217/312] pmdomain: mtk-pm-domains: Fix spinlock recursion fix in probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 218/312] pmdomain: imx: Fix reference count leak in imx_gpc_probe() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 219/312] af_unix: dont post cmsg for SO_INQ unless explicitly asked for Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 220/312] compiler_types.h: add "auto" as a macro for "__auto_type" Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 221/312] mptcp: fallback earlier on simult connection Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 222/312] mm/kasan: fix incorrect unpoisoning in vrealloc for KASAN Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 223/312] kasan: refactor pcpu kasan vmalloc unpoison Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 224/312] kasan: unpoison vms[area] addresses with a common tag Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 225/312] kernel/kexec: change the prototype of kimage_map_segment() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 226/312] kernel/kexec: fix IMA when allocation happens in CMA area Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 227/312] lockd: fix vfs_test_lock() calls Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 228/312] idr: fix idr_alloc() returning an ID out of range Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 229/312] mm/page_alloc: change all pageblocks migrate type on coalescing Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 230/312] mm/page_owner: fix memory leak in page_owner_stack_fops->release() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 231/312] mm: consider non-anon swap cache folios in folio_expected_ref_count() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 232/312] x86/microcode/AMD: Fix Entrysign revision check for Zen5/Strix Halo Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 233/312] tools/mm/page_owner_sort: fix timestamp comparison for stable sorting Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 234/312] selftests/mm: fix thread state check in uffd-unit-tests Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 235/312] samples/ftrace: Adjust LoongArch register restore order in direct calls Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 236/312] rust: maple_tree: rcu_read_lock() in destructor to silence lockdep Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 237/312] RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 238/312] RDMA/cm: Fix leaking the multicast GID table reference Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 239/312] wifi: iwlwifi: Fix firmware version handling Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 240/312] wifi: mac80211: Discard Beacon frames to non-broadcast address Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 241/312] e1000: fix OOB in e1000_tbi_should_accept() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 242/312] erspan: Initialize options_len before referencing options Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 243/312] fjes: Add missing iounmap in fjes_hw_init() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 244/312] gve: defer interrupt enabling until NAPI registration Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 245/312] LoongArch: Refactor register restoration in ftrace_common_return Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 246/312] LoongArch: BPF: Zero-extend bpf_tail_call() index Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 247/312] LoongArch: BPF: Sign extend kfunc call arguments Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 248/312] LoongArch: BPF: Save return address register ra to t0 before trampoline Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 249/312] LoongArch: BPF: Enable trampoline-based tracing for module functions Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 250/312] LoongArch: BPF: Adjust the jump offset of tail calls Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 251/312] nfsd: fix nfsd_file reference leak in nfsd4_add_rdaccess_to_wrdeleg() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 252/312] nfsd: use ATTR_DELEG in nfsd4_finalize_deleg_timestamps() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 253/312] nfsd: Drop the client reference in client_states_open() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 254/312] net: usb: sr9700: fix incorrect command used to write single register Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 255/312] net: phy: mediatek: fix nvmem cell reference leak in mt798x_phy_calibration Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 256/312] net: nfc: fix deadlock between nfc_unregister_device and rfkill_fop_write Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 257/312] net: macb: Relocate mog_init_rings() callback from macb_mac_link_up() to macb_open() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 258/312] platform/x86: samsung-galaxybook: Fix problematic pointer cast Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 259/312] platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 260/312] platform/x86: alienware-wmi-wmax: Add AWCC support for Alienware x16 Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 261/312] platform/x86: alienware-wmi-wmax: Add support for Alienware 16X Aurora Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 262/312] Revert "drm/amd: Skip power ungate during suspend for VPE" Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 263/312] drm/amdgpu/gmc12: add amdgpu_vm_handle_fault() handling Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 264/312] drm/amdgpu: Forward VMID reservation errors Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 265/312] drm/amdgpu: add missing lock to amdgpu_ttm_access_memory_sdma Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 266/312] drm/amdgpu/sdma6: Update SDMA 6.0.3 FW version to include UMQ protected-fence fix Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 267/312] drm/amdgpu/gmc11: add amdgpu_vm_handle_fault() handling Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 268/312] drm/msm/a6xx: Fix out of bound IO access in a6xx_get_gmu_registers Greg Kroah-Hartman
2026-01-06 17:05 ` Greg Kroah-Hartman [this message]
2026-01-06 17:05 ` [PATCH 6.18 270/312] drm/buddy: Separate clear and dirty free block trees Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 271/312] drm/gma500: Remove unused helper psb_fbdev_fb_setcolreg() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 272/312] drm/xe/oa: Fix potential UAF in xe_oa_add_config_ioctl() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 273/312] drm/rockchip: Set VOP for the DRM DMA device Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 274/312] drm/mediatek: Fix device node reference leak in mtk_dp_dt_parse() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 275/312] drm/mediatek: Fix probe resource leaks Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 276/312] drm/mediatek: Fix probe memory leak Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 277/312] drm/mediatek: Fix probe device leaks Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 278/312] drm/mediatek: mtk_hdmi: " Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 279/312] drm/mediatek: ovl_adaptor: " Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 280/312] drm/amd: Fix unbind/rebind for VCN 4.0.5 Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 281/312] drm/rockchip: vop2: Use OVL_LAYER_SEL configuration instead of use win_mask calculate used layers Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 282/312] drm/bridge: ti-sn65dsi83: ignore PLL_UNLOCK errors Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 283/312] drm/nouveau/gsp: Allocate fwsec-sb at boot Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 284/312] drm/amdkfd: Export the cwsr_size and ctl_stack_size to userspace Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 285/312] drm/amdkfd: bump minimum vgpr size for gfx1151 Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 286/312] drm/amdkfd: Trap handler support for expert scheduling mode Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 287/312] drm/i915: Fix format string truncation warning Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 288/312] drm/tilcdc: Fix removal actions in case of failed probe Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 289/312] drm/ttm: Avoid NULL pointer deref for evicted BOs Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 290/312] drm/mgag200: Fix big-endian support Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 291/312] drm: Fix object leak in DRM_IOCTL_GEM_CHANGE_HANDLE Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 292/312] drm/xe/bo: Dont include the CCS metadata in the dma-buf sg-table Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 293/312] drm/xe/oa: Disallow 0 OA property values Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 294/312] drm/xe/eustall: Disallow 0 EU stall " Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 295/312] drm/xe: Adjust long-running workload timeslices to reasonable values Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 296/312] drm/xe: Use usleep_range for accurate long-running workload timeslicing Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 297/312] drm/xe: Drop preempt-fences when destroying imported dma-bufs Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 298/312] drm/msm/dpu: Add missing NULL pointer check for pingpong interface Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 299/312] drm/msm: add PERFCTR_CNTL to ifpc_reglist Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 300/312] drm/i915/gem: Zero-initialize the eb.vma array in i915_gem_do_execbuffer Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 301/312] drm/xe/svm: Fix a debug printout Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 302/312] drm/pagemap, drm/xe: Ensure that the devmem allocation is idle before use Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 303/312] drm/nouveau/dispnv50: Dont call drm_atomic_get_crtc_state() in prepare_fb Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 304/312] drm/imagination: Disallow exporting of PM/FW protected objects Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 305/312] erofs: fix unexpected EIO under memory pressure Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 306/312] block: fix NULL pointer dereference in blk_zone_reset_all_bio_endio() Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 307/312] powercap: intel_rapl: Add support for Wildcat Lake platform Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 308/312] powercap: intel_rapl: Add support for Nova Lake processors Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 309/312] LoongArch: BPF: Enhance the bpf_arch_text_poke() function Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 310/312] vfio/pci: Disable qword access to the PCI ROM bar Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 311/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_regions_of() Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 312/312] [PATCH v2] Revert "gpio: swnode: dont use the swnodes name as the key for GPIO lookup" Greg Kroah-Hartman
2026-01-06 19:22 ` [PATCH 6.18 000/312] 6.18.4-rc1 review Brett A C Sheffield
2026-01-06 19:24 ` Ronald Warsow
2026-01-06 22:28 ` Peter Schneider
2026-01-06 22:55 ` Shuah Khan
2026-01-06 23:43 ` Justin Forbes
2026-01-07  0:45 ` Florian Fainelli
2026-01-07  0:51 ` Christian Heusel
2026-01-07 10:20 ` Ron Economos
2026-01-07 11:49 ` Mark Brown
2026-01-07 12:06 ` Jeffrin Thalakkottoor
2026-01-07 12:19 ` Takeshi Ogasawara
2026-01-07 15:25 ` Miguel Ojeda
2026-01-07 20:13 ` Jon Hunter
2026-01-07 20:45 ` Hardik Garg
2026-01-07 23:32 ` Brett Mastbergen

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=20260106170557.576747695@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Arunpravin.PaneerSelvam@amd.com \
    --cc=matthew.auld@intel.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    /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