public inbox for patches@lists.linux.dev
 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, Matthew Mirvish <matthew@mm12.xyz>,
	Coly Li <colyli@suse.de>, Jens Axboe <axboe@kernel.dk>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 240/356] bcache: fix variable length array abuse in btree_iter
Date: Wed,  3 Jul 2024 12:39:36 +0200	[thread overview]
Message-ID: <20240703102922.194648641@linuxfoundation.org> (raw)
In-Reply-To: <20240703102913.093882413@linuxfoundation.org>

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

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

From: Matthew Mirvish <matthew@mm12.xyz>

[ Upstream commit 3a861560ccb35f2a4f0a4b8207fa7c2a35fc7f31 ]

btree_iter is used in two ways: either allocated on the stack with a
fixed size MAX_BSETS, or from a mempool with a dynamic size based on the
specific cache set. Previously, the struct had a fixed-length array of
size MAX_BSETS which was indexed out-of-bounds for the dynamically-sized
iterators, which causes UBSAN to complain.

This patch uses the same approach as in bcachefs's sort_iter and splits
the iterator into a btree_iter with a flexible array member and a
btree_iter_stack which embeds a btree_iter as well as a fixed-length
data array.

Cc: stable@vger.kernel.org
Closes: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2039368
Signed-off-by: Matthew Mirvish <matthew@mm12.xyz>
Signed-off-by: Coly Li <colyli@suse.de>
Link: https://lore.kernel.org/r/20240509011117.2697-3-colyli@suse.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/md/bcache/bset.c      | 44 +++++++++++++++++------------------
 drivers/md/bcache/bset.h      | 28 ++++++++++++++--------
 drivers/md/bcache/btree.c     | 40 ++++++++++++++++---------------
 drivers/md/bcache/super.c     |  5 ++--
 drivers/md/bcache/sysfs.c     |  2 +-
 drivers/md/bcache/writeback.c | 10 ++++----
 6 files changed, 70 insertions(+), 59 deletions(-)

diff --git a/drivers/md/bcache/bset.c b/drivers/md/bcache/bset.c
index 94d38e8a59b32..cb544207427b1 100644
--- a/drivers/md/bcache/bset.c
+++ b/drivers/md/bcache/bset.c
@@ -54,7 +54,7 @@ void bch_dump_bucket(struct btree_keys *b)
 int __bch_count_data(struct btree_keys *b)
 {
 	unsigned int ret = 0;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	struct bkey *k;
 
 	if (b->ops->is_extents)
@@ -67,7 +67,7 @@ void __bch_check_keys(struct btree_keys *b, const char *fmt, ...)
 {
 	va_list args;
 	struct bkey *k, *p = NULL;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	const char *err;
 
 	for_each_key(b, k, &iter) {
@@ -879,7 +879,7 @@ unsigned int bch_btree_insert_key(struct btree_keys *b, struct bkey *k,
 	unsigned int status = BTREE_INSERT_STATUS_NO_INSERT;
 	struct bset *i = bset_tree_last(b)->data;
 	struct bkey *m, *prev = NULL;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	struct bkey preceding_key_on_stack = ZERO_KEY;
 	struct bkey *preceding_key_p = &preceding_key_on_stack;
 
@@ -895,9 +895,9 @@ unsigned int bch_btree_insert_key(struct btree_keys *b, struct bkey *k,
 	else
 		preceding_key(k, &preceding_key_p);
 
-	m = bch_btree_iter_init(b, &iter, preceding_key_p);
+	m = bch_btree_iter_stack_init(b, &iter, preceding_key_p);
 
-	if (b->ops->insert_fixup(b, k, &iter, replace_key))
+	if (b->ops->insert_fixup(b, k, &iter.iter, replace_key))
 		return status;
 
 	status = BTREE_INSERT_STATUS_INSERT;
@@ -1100,33 +1100,33 @@ void bch_btree_iter_push(struct btree_iter *iter, struct bkey *k,
 				 btree_iter_cmp));
 }
 
-static struct bkey *__bch_btree_iter_init(struct btree_keys *b,
-					  struct btree_iter *iter,
-					  struct bkey *search,
-					  struct bset_tree *start)
+static struct bkey *__bch_btree_iter_stack_init(struct btree_keys *b,
+						struct btree_iter_stack *iter,
+						struct bkey *search,
+						struct bset_tree *start)
 {
 	struct bkey *ret = NULL;
 
-	iter->size = ARRAY_SIZE(iter->data);
-	iter->used = 0;
+	iter->iter.size = ARRAY_SIZE(iter->stack_data);
+	iter->iter.used = 0;
 
 #ifdef CONFIG_BCACHE_DEBUG
-	iter->b = b;
+	iter->iter.b = b;
 #endif
 
 	for (; start <= bset_tree_last(b); start++) {
 		ret = bch_bset_search(b, start, search);
-		bch_btree_iter_push(iter, ret, bset_bkey_last(start->data));
+		bch_btree_iter_push(&iter->iter, ret, bset_bkey_last(start->data));
 	}
 
 	return ret;
 }
 
-struct bkey *bch_btree_iter_init(struct btree_keys *b,
-				 struct btree_iter *iter,
+struct bkey *bch_btree_iter_stack_init(struct btree_keys *b,
+				 struct btree_iter_stack *iter,
 				 struct bkey *search)
 {
-	return __bch_btree_iter_init(b, iter, search, b->set);
+	return __bch_btree_iter_stack_init(b, iter, search, b->set);
 }
 
 static inline struct bkey *__bch_btree_iter_next(struct btree_iter *iter,
@@ -1293,10 +1293,10 @@ void bch_btree_sort_partial(struct btree_keys *b, unsigned int start,
 			    struct bset_sort_state *state)
 {
 	size_t order = b->page_order, keys = 0;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	int oldsize = bch_count_data(b);
 
-	__bch_btree_iter_init(b, &iter, NULL, &b->set[start]);
+	__bch_btree_iter_stack_init(b, &iter, NULL, &b->set[start]);
 
 	if (start) {
 		unsigned int i;
@@ -1307,7 +1307,7 @@ void bch_btree_sort_partial(struct btree_keys *b, unsigned int start,
 		order = get_order(__set_bytes(b->set->data, keys));
 	}
 
-	__btree_sort(b, &iter, start, order, false, state);
+	__btree_sort(b, &iter.iter, start, order, false, state);
 
 	EBUG_ON(oldsize >= 0 && bch_count_data(b) != oldsize);
 }
@@ -1323,11 +1323,11 @@ void bch_btree_sort_into(struct btree_keys *b, struct btree_keys *new,
 			 struct bset_sort_state *state)
 {
 	uint64_t start_time = local_clock();
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 
-	bch_btree_iter_init(b, &iter, NULL);
+	bch_btree_iter_stack_init(b, &iter, NULL);
 
-	btree_mergesort(b, new->set->data, &iter, false, true);
+	btree_mergesort(b, new->set->data, &iter.iter, false, true);
 
 	bch_time_stats_update(&state->time, start_time);
 
diff --git a/drivers/md/bcache/bset.h b/drivers/md/bcache/bset.h
index a50dcfda656f5..2ed6dbd35d6e5 100644
--- a/drivers/md/bcache/bset.h
+++ b/drivers/md/bcache/bset.h
@@ -321,7 +321,14 @@ struct btree_iter {
 #endif
 	struct btree_iter_set {
 		struct bkey *k, *end;
-	} data[MAX_BSETS];
+	} data[];
+};
+
+/* Fixed-size btree_iter that can be allocated on the stack */
+
+struct btree_iter_stack {
+	struct btree_iter iter;
+	struct btree_iter_set stack_data[MAX_BSETS];
 };
 
 typedef bool (*ptr_filter_fn)(struct btree_keys *b, const struct bkey *k);
@@ -333,9 +340,9 @@ struct bkey *bch_btree_iter_next_filter(struct btree_iter *iter,
 
 void bch_btree_iter_push(struct btree_iter *iter, struct bkey *k,
 			 struct bkey *end);
-struct bkey *bch_btree_iter_init(struct btree_keys *b,
-				 struct btree_iter *iter,
-				 struct bkey *search);
+struct bkey *bch_btree_iter_stack_init(struct btree_keys *b,
+				       struct btree_iter_stack *iter,
+				       struct bkey *search);
 
 struct bkey *__bch_bset_search(struct btree_keys *b, struct bset_tree *t,
 			       const struct bkey *search);
@@ -350,13 +357,14 @@ static inline struct bkey *bch_bset_search(struct btree_keys *b,
 	return search ? __bch_bset_search(b, t, search) : t->data->start;
 }
 
-#define for_each_key_filter(b, k, iter, filter)				\
-	for (bch_btree_iter_init((b), (iter), NULL);			\
-	     ((k) = bch_btree_iter_next_filter((iter), (b), filter));)
+#define for_each_key_filter(b, k, stack_iter, filter)                      \
+	for (bch_btree_iter_stack_init((b), (stack_iter), NULL);           \
+	     ((k) = bch_btree_iter_next_filter(&((stack_iter)->iter), (b), \
+					       filter));)
 
-#define for_each_key(b, k, iter)					\
-	for (bch_btree_iter_init((b), (iter), NULL);			\
-	     ((k) = bch_btree_iter_next(iter));)
+#define for_each_key(b, k, stack_iter)                           \
+	for (bch_btree_iter_stack_init((b), (stack_iter), NULL); \
+	     ((k) = bch_btree_iter_next(&((stack_iter)->iter)));)
 
 /* Sorting */
 
diff --git a/drivers/md/bcache/btree.c b/drivers/md/bcache/btree.c
index e22dfcf1ed6d8..066b4aafd49e5 100644
--- a/drivers/md/bcache/btree.c
+++ b/drivers/md/bcache/btree.c
@@ -1283,7 +1283,7 @@ static bool btree_gc_mark_node(struct btree *b, struct gc_stat *gc)
 	uint8_t stale = 0;
 	unsigned int keys = 0, good_keys = 0;
 	struct bkey *k;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	struct bset_tree *t;
 
 	gc->nodes++;
@@ -1544,7 +1544,7 @@ static int btree_gc_rewrite_node(struct btree *b, struct btree_op *op,
 static unsigned int btree_gc_count_keys(struct btree *b)
 {
 	struct bkey *k;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	unsigned int ret = 0;
 
 	for_each_key_filter(&b->keys, k, &iter, bch_ptr_bad)
@@ -1585,17 +1585,18 @@ static int btree_gc_recurse(struct btree *b, struct btree_op *op,
 	int ret = 0;
 	bool should_rewrite;
 	struct bkey *k;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	struct gc_merge_info r[GC_MERGE_NODES];
 	struct gc_merge_info *i, *last = r + ARRAY_SIZE(r) - 1;
 
-	bch_btree_iter_init(&b->keys, &iter, &b->c->gc_done);
+	bch_btree_iter_stack_init(&b->keys, &iter, &b->c->gc_done);
 
 	for (i = r; i < r + ARRAY_SIZE(r); i++)
 		i->b = ERR_PTR(-EINTR);
 
 	while (1) {
-		k = bch_btree_iter_next_filter(&iter, &b->keys, bch_ptr_bad);
+		k = bch_btree_iter_next_filter(&iter.iter, &b->keys,
+					       bch_ptr_bad);
 		if (k) {
 			r->b = bch_btree_node_get(b->c, op, k, b->level - 1,
 						  true, b);
@@ -1885,7 +1886,7 @@ static int bch_btree_check_recurse(struct btree *b, struct btree_op *op)
 {
 	int ret = 0;
 	struct bkey *k, *p = NULL;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 
 	for_each_key_filter(&b->keys, k, &iter, bch_ptr_invalid)
 		bch_initial_mark_key(b->c, b->level, k);
@@ -1893,10 +1894,10 @@ static int bch_btree_check_recurse(struct btree *b, struct btree_op *op)
 	bch_initial_mark_key(b->c, b->level + 1, &b->key);
 
 	if (b->level) {
-		bch_btree_iter_init(&b->keys, &iter, NULL);
+		bch_btree_iter_stack_init(&b->keys, &iter, NULL);
 
 		do {
-			k = bch_btree_iter_next_filter(&iter, &b->keys,
+			k = bch_btree_iter_next_filter(&iter.iter, &b->keys,
 						       bch_ptr_bad);
 			if (k) {
 				btree_node_prefetch(b, k);
@@ -1924,7 +1925,7 @@ static int bch_btree_check_thread(void *arg)
 	struct btree_check_info *info = arg;
 	struct btree_check_state *check_state = info->state;
 	struct cache_set *c = check_state->c;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	struct bkey *k, *p;
 	int cur_idx, prev_idx, skip_nr;
 
@@ -1933,8 +1934,8 @@ static int bch_btree_check_thread(void *arg)
 	ret = 0;
 
 	/* root node keys are checked before thread created */
-	bch_btree_iter_init(&c->root->keys, &iter, NULL);
-	k = bch_btree_iter_next_filter(&iter, &c->root->keys, bch_ptr_bad);
+	bch_btree_iter_stack_init(&c->root->keys, &iter, NULL);
+	k = bch_btree_iter_next_filter(&iter.iter, &c->root->keys, bch_ptr_bad);
 	BUG_ON(!k);
 
 	p = k;
@@ -1952,7 +1953,7 @@ static int bch_btree_check_thread(void *arg)
 		skip_nr = cur_idx - prev_idx;
 
 		while (skip_nr) {
-			k = bch_btree_iter_next_filter(&iter,
+			k = bch_btree_iter_next_filter(&iter.iter,
 						       &c->root->keys,
 						       bch_ptr_bad);
 			if (k)
@@ -2025,7 +2026,7 @@ int bch_btree_check(struct cache_set *c)
 	int ret = 0;
 	int i;
 	struct bkey *k = NULL;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	struct btree_check_state check_state;
 
 	/* check and mark root node keys */
@@ -2521,11 +2522,11 @@ static int bch_btree_map_nodes_recurse(struct btree *b, struct btree_op *op,
 
 	if (b->level) {
 		struct bkey *k;
-		struct btree_iter iter;
+		struct btree_iter_stack iter;
 
-		bch_btree_iter_init(&b->keys, &iter, from);
+		bch_btree_iter_stack_init(&b->keys, &iter, from);
 
-		while ((k = bch_btree_iter_next_filter(&iter, &b->keys,
+		while ((k = bch_btree_iter_next_filter(&iter.iter, &b->keys,
 						       bch_ptr_bad))) {
 			ret = bcache_btree(map_nodes_recurse, k, b,
 				    op, from, fn, flags);
@@ -2554,11 +2555,12 @@ int bch_btree_map_keys_recurse(struct btree *b, struct btree_op *op,
 {
 	int ret = MAP_CONTINUE;
 	struct bkey *k;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 
-	bch_btree_iter_init(&b->keys, &iter, from);
+	bch_btree_iter_stack_init(&b->keys, &iter, from);
 
-	while ((k = bch_btree_iter_next_filter(&iter, &b->keys, bch_ptr_bad))) {
+	while ((k = bch_btree_iter_next_filter(&iter.iter, &b->keys,
+					       bch_ptr_bad))) {
 		ret = !b->level
 			? fn(op, b, k)
 			: bcache_btree(map_keys_recurse, k,
diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
index 8ec48d8a5821c..48624e6bf0d79 100644
--- a/drivers/md/bcache/super.c
+++ b/drivers/md/bcache/super.c
@@ -1920,8 +1920,9 @@ struct cache_set *bch_cache_set_alloc(struct cache_sb *sb)
 	INIT_LIST_HEAD(&c->btree_cache_freed);
 	INIT_LIST_HEAD(&c->data_buckets);
 
-	iter_size = ((meta_bucket_pages(sb) * PAGE_SECTORS) / sb->block_size + 1) *
-		sizeof(struct btree_iter_set);
+	iter_size = sizeof(struct btree_iter) +
+		    ((meta_bucket_pages(sb) * PAGE_SECTORS) / sb->block_size) *
+			    sizeof(struct btree_iter_set);
 
 	c->devices = kcalloc(c->nr_uuids, sizeof(void *), GFP_KERNEL);
 	if (!c->devices)
diff --git a/drivers/md/bcache/sysfs.c b/drivers/md/bcache/sysfs.c
index fa146012003df..7024eaed8d486 100644
--- a/drivers/md/bcache/sysfs.c
+++ b/drivers/md/bcache/sysfs.c
@@ -658,7 +658,7 @@ static unsigned int bch_root_usage(struct cache_set *c)
 	unsigned int bytes = 0;
 	struct bkey *k;
 	struct btree *b;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 
 	goto lock_root;
 
diff --git a/drivers/md/bcache/writeback.c b/drivers/md/bcache/writeback.c
index 1e96679afcf4a..142eaf0ff9aea 100644
--- a/drivers/md/bcache/writeback.c
+++ b/drivers/md/bcache/writeback.c
@@ -898,15 +898,15 @@ static int bch_dirty_init_thread(void *arg)
 	struct dirty_init_thrd_info *info = arg;
 	struct bch_dirty_init_state *state = info->state;
 	struct cache_set *c = state->c;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	struct bkey *k, *p;
 	int cur_idx, prev_idx, skip_nr;
 
 	k = p = NULL;
 	prev_idx = 0;
 
-	bch_btree_iter_init(&c->root->keys, &iter, NULL);
-	k = bch_btree_iter_next_filter(&iter, &c->root->keys, bch_ptr_bad);
+	bch_btree_iter_stack_init(&c->root->keys, &iter, NULL);
+	k = bch_btree_iter_next_filter(&iter.iter, &c->root->keys, bch_ptr_bad);
 	BUG_ON(!k);
 
 	p = k;
@@ -920,7 +920,7 @@ static int bch_dirty_init_thread(void *arg)
 		skip_nr = cur_idx - prev_idx;
 
 		while (skip_nr) {
-			k = bch_btree_iter_next_filter(&iter,
+			k = bch_btree_iter_next_filter(&iter.iter,
 						       &c->root->keys,
 						       bch_ptr_bad);
 			if (k)
@@ -969,7 +969,7 @@ void bch_sectors_dirty_init(struct bcache_device *d)
 	int i;
 	struct btree *b = NULL;
 	struct bkey *k = NULL;
-	struct btree_iter iter;
+	struct btree_iter_stack iter;
 	struct sectors_dirty_init op;
 	struct cache_set *c = d->c;
 	struct bch_dirty_init_state state;
-- 
2.43.0




  parent reply	other threads:[~2024-07-03 11:25 UTC|newest]

Thread overview: 372+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-03 10:35 [PATCH 5.15 000/356] 5.15.162-rc1 review Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 001/356] wifi: mac80211: mesh: Fix leak of mesh_preq_queue objects Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 002/356] wifi: mac80211: Fix deadlock in ieee80211_sta_ps_deliver_wakeup() Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 003/356] wifi: cfg80211: Lock wiphy in cfg80211_get_station Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 004/356] wifi: cfg80211: pmsr: use correct nla_get_uX functions Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 005/356] wifi: iwlwifi: mvm: revert gen2 TX A-MPDU size to 64 Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 006/356] wifi: iwlwifi: dbg_ini: move iwl_dbg_tlv_free outside of debugfs ifdef Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 007/356] wifi: iwlwifi: mvm: check n_ssids before accessing the ssids Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 008/356] wifi: iwlwifi: mvm: dont read past the mfuart notifcation Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 009/356] wifi: mac80211: correctly parse Spatial Reuse Parameter Set element Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 010/356] net/ncsi: Simplify Kconfig/dts control flow Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 011/356] net/ncsi: Fix the multi thread manner of NCSI driver Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 012/356] ipv6: sr: block BH in seg6_output_core() and seg6_input_core() Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 013/356] bpf: Set run context for rawtp test_run callback Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 014/356] octeontx2-af: Always allocate PF entries from low prioriy zone Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 015/356] net: sched: sch_multiq: fix possible OOB write in multiq_tune() Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 016/356] vxlan: Fix regression when dropping packets due to invalid src addresses Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 017/356] tcp: count CLOSE-WAIT sockets for TCP_MIB_CURRESTAB Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 018/356] net/sched: taprio: always validate TCA_TAPRIO_ATTR_PRIOMAP Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 019/356] ptp: Fix error message on failed pin verification Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 020/356] af_unix: Set sk->sk_state under unix_state_lock() for truly disconencted peer Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 021/356] af_unix: Annodate data-races around sk->sk_state for writers Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 022/356] af_unix: Annotate data-race of sk->sk_state in unix_inq_len() Greg Kroah-Hartman
2024-07-03 10:35 ` [PATCH 5.15 023/356] af_unix: Annotate data-races around sk->sk_state in unix_write_space() and poll() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 024/356] net: inline sock_prot_inuse_add() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 025/356] net: drop nopreempt requirement on sock_prot_inuse_add() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 026/356] af_unix: Annotate data-race of sk->sk_state in unix_stream_connect() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 027/356] af_unix: Annotate data-races around sk->sk_state in sendmsg() and recvmsg() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 028/356] af_unix: Annotate data-race of sk->sk_state in unix_stream_read_skb() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 029/356] af_unix: Annotate data-races around sk->sk_state in UNIX_DIAG Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 030/356] af_unix: Annotate data-race of net->unx.sysctl_max_dgram_qlen Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 031/356] af_unix: Use unix_recvq_full_lockless() in unix_stream_connect() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 032/356] af_unix: annotate lockless accesses to sk->sk_err Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 033/356] af_unix: Use skb_queue_empty_lockless() in unix_release_sock() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 034/356] af_unix: Use skb_queue_len_lockless() in sk_diag_show_rqlen() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 035/356] af_unix: Annotate data-race of sk->sk_shutdown in sk_diag_fill() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 036/356] ipv6: fix possible race in __fib6_drop_pcpu_from() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 037/356] usb: gadget: f_fs: use io_data->status consistently Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 038/356] usb: gadget: f_fs: Fix race between aio_cancel() and AIO request complete Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 039/356] iio: accel: mxc4005: Reset chip on probe() and resume() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 040/356] drm/amd/display: Handle Y carry-over in VCP X.Y calculation Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 041/356] drm/amd/display: Clean up some inconsistent indenting Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 042/356] drm/amd/display: drop unnecessary NULL checks in debugfs Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 043/356] drm/amd/display: Fix incorrect DSC instance for MST Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 044/356] pvpanic: Keep single style across modules Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 045/356] pvpanic: Indentation fixes here and there Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 046/356] misc/pvpanic: deduplicate common code Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 047/356] misc/pvpanic-pci: register attributes via pci_driver Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 048/356] skbuff: introduce skb_pull_data Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 049/356] Bluetooth: hci_qca: mark OF related data as maybe unused Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 050/356] Bluetooth: btqca: use le32_to_cpu for ver.soc_id Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 051/356] Bluetooth: btqca: Add WCN3988 support Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 052/356] Bluetooth: qca: use switch case for soc type behavior Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 053/356] Bluetooth: qca: add support for QCA2066 Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 054/356] Bluetooth: qca: fix info leak when fetching fw build id Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 055/356] serial: sc16is7xx: replace hardcoded divisor value with BIT() macro Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 056/356] serial: sc16is7xx: fix bug in sc16is7xx_set_baud() when using prescaler Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 057/356] x86/ibt,ftrace: Search for __fentry__ location Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 058/356] ftrace: Fix possible use-after-free issue in ftrace_location() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 059/356] mmc: davinci_mmc: Convert to platform remove callback returning void Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 060/356] mmc: davinci: Dont strip remove function when driver is builtin Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 061/356] i2c: add fwnode APIs Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 062/356] i2c: acpi: Unbind mux adapters before delete Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 063/356] cma: factor out minimum alignment requirement Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 064/356] mm/cma: drop incorrect alignment check in cma_init_reserved_mem Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 065/356] selftests/mm: compaction_test: fix incorrect write of zero to nr_hugepages Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 066/356] selftests/mm: conform test to TAP format output Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 067/356] selftests/mm: log a consistent test name for check_compaction Greg Kroah-Hartman
2024-07-03 12:02   ` Mark Brown
2024-07-03 12:52     ` Greg Kroah-Hartman
2024-07-03 13:36       ` Mark Brown
2024-07-04  9:15         ` Greg Kroah-Hartman
2024-07-04  9:19           ` Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 068/356] selftests/mm: compaction_test: fix bogus test success on Aarch64 Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 069/356] wifi: ath10k: fix QCOM_RPROC_COMMON dependency Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 070/356] btrfs: fix leak of qgroup extent records after transaction abort Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 071/356] nilfs2: Remove check for PageError Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 072/356] nilfs2: return the mapped address from nilfs_get_page() Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 073/356] nilfs2: fix nilfs_empty_dir() misjudgment and long loop on I/O errors Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 074/356] USB: class: cdc-wdm: Fix CPU lockup caused by excessive log messages Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 075/356] usb: typec: tcpm: Ignore received Hard Reset in TOGGLING state Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 076/356] mei: me: release irq in mei_me_pci_resume error path Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 077/356] jfs: xattr: fix buffer overflow for invalid xattr Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 078/356] xhci: Set correct transferred length for cancelled bulk transfers Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 079/356] xhci: Apply reset resume quirk to Etron EJ188 xHCI host Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 080/356] xhci: Handle TD clearing for multiple streams case Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 081/356] xhci: Apply broken streams quirk to Etron EJ188 xHCI host Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 082/356] scsi: mpt3sas: Avoid test/set_bit() operating in non-allocated memory Greg Kroah-Hartman
2024-07-03 10:36 ` [PATCH 5.15 083/356] powerpc/uaccess: Fix build errors seen with GCC 13/14 Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 084/356] Input: try trimming too long modalias strings Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 085/356] clk: sifive: Do not register clkdevs for PRCI clocks Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 086/356] SUNRPC: return proper error from gss_wrap_req_priv Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 087/356] platform/x86: dell-smbios-base: Use sysfs_emit() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 088/356] platform/x86: dell-smbios: Fix wrong token data in sysfs Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 089/356] gpio: tqmx86: fix typo in Kconfig label Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 090/356] gpio: tqmx86: store IRQ trigger type and unmask status separately Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 091/356] HID: core: remove unnecessary WARN_ON() in implement() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 092/356] iommu/amd: Introduce pci segment structure Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 093/356] iommu/amd: Fix sysfs leak in iommu init Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 094/356] iommu: Return right value in iommu_sva_bind_device() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 095/356] HID: logitech-dj: Fix memory leak in logi_dj_recv_switch_to_dj_mode() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 096/356] drm/vmwgfx: 3D disabled should not effect STDU memory limits Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 097/356] net: sfp: Always call `sfp_sm_mod_remove()` on remove Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 098/356] net: hns3: fix kernel crash problem in concurrent scenario Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 099/356] net: hns3: add cond_resched() to hns3 ring buffer init process Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 100/356] liquidio: Adjust a NULL pointer handling path in lio_vf_rep_copy_packet Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 101/356] drm/komeda: check for error-valued pointer Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 102/356] drm/bridge/panel: Fix runtime warning on panel bridge release Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 103/356] tcp: fix race in tcp_v6_syn_recv_sock() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 104/356] net/mlx5e: Fix features validation check for tunneled UDP (non-VXLAN) packets Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 105/356] Bluetooth: L2CAP: Fix rejecting L2CAP_CONN_PARAM_UPDATE_REQ Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 106/356] netfilter: ipset: Fix race between namespace cleanup and gc in the list:set type Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 107/356] net: stmmac: replace priv->speed with the portTransmitRate from the tc-cbs parameters Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 108/356] net/ipv6: Fix the RT cache flush via sysctl using a previous delay Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 109/356] ionic: fix use after netif_napi_del() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 110/356] af_unix: Read with MSG_PEEK loops if the first unread byte is OOB Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 111/356] iio: adc: ad9467: fix scan type sign Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 112/356] iio: dac: ad5592r: fix temperature channel scaling value Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 113/356] iio: imu: inv_icm42600: delete unneeded update watermark call Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 114/356] drivers: core: synchronize really_probe() and dev_uevent() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 115/356] drm/exynos/vidi: fix memory leak in .get_modes() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 116/356] drm/exynos: hdmi: report safe 640x480 mode as a fallback when no EDID found Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 117/356] mptcp: ensure snd_una is properly initialized on connect Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 118/356] tracing/selftests: Fix kprobe event name test for .isra. functions Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 119/356] null_blk: Print correct max open zones limit in null_init_zoned_dev() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 120/356] sock_map: avoid race between sock_map_close and sk_psock_put Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 121/356] vmci: prevent speculation leaks by sanitizing event in event_deliver() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 122/356] spmi: hisi-spmi-controller: Do not override device identifier Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 123/356] knfsd: LOOKUP can return an illegal error value Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 124/356] fs/proc: fix softlockup in __read_vmcore Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 125/356] ocfs2: use coarse time for new created files Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 126/356] ocfs2: fix races between hole punching and AIO+DIO Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 127/356] PCI: rockchip-ep: Remove wrong mask on subsys_vendor_id Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 128/356] dmaengine: axi-dmac: fix possible race in remove() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 129/356] intel_th: pci: Add Granite Rapids support Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 130/356] intel_th: pci: Add Granite Rapids SOC support Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 131/356] intel_th: pci: Add Sapphire " Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 132/356] intel_th: pci: Add Meteor Lake-S support Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 133/356] intel_th: pci: Add Lunar Lake support Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 134/356] nilfs2: fix potential kernel bug due to lack of writeback flag waiting Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 135/356] tick/nohz_full: Dont abuse smp_call_function_single() in tick_setup_device() Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 136/356] scsi: mpi3mr: Fix ATA NCQ priority support Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 137/356] mm/huge_memory: dont unpoison huge_zero_folio Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 138/356] serial: 8250_pxa: Configure tx_loadsz to match FIFO IRQ level Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 139/356] hugetlb_encode.h: fix undefined behaviour (34 << 26) Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 140/356] mptcp: pm: inc RmAddr MIB counter once per RM_ADDR ID Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 141/356] mptcp: pm: update add_addr counters after connect Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 142/356] kbuild: Remove support for Clangs ThinLTO caching Greg Kroah-Hartman
2024-07-03 10:37 ` [PATCH 5.15 143/356] greybus: Fix use-after-free bug in gb_interface_release due to race condition Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 144/356] usb-storage: alauda: Check whether the media is initialized Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 145/356] i2c: at91: Fix the functionality flags of the slave-only interface Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 146/356] i2c: designware: " Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 147/356] zap_pid_ns_processes: clear TIF_NOTIFY_SIGNAL along with TIF_SIGPENDING Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 148/356] Bluetooth: qca: Fix error code in qca_read_fw_build_info() Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 149/356] Bluetooth: qca: fix info leak when fetching board id Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 150/356] padata: Disable BH when taking works lock on MT path Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 151/356] crypto: hisilicon/sec - Fix memory leak for sec resource release Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 152/356] rcutorture: Fix rcu_torture_one_read() pipe_count overflow comment Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 153/356] rcutorture: Make stall-tasks directly exit when rcutorture tests end Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 154/356] rcutorture: Fix invalid context warning when enable srcu barrier testing Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 155/356] block/ioctl: prefer different overflow check Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 156/356] selftests/bpf: Prevent client connect before server bind in test_tc_tunnel.sh Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 157/356] selftests/bpf: Fix flaky test btf_map_in_map/lookup_update Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 158/356] batman-adv: bypass empty buckets in batadv_purge_orig_ref() Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 159/356] wifi: ath9k: work around memset overflow warning Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 160/356] af_packet: avoid a false positive warning in packet_setsockopt() Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 161/356] drop_monitor: replace spin_lock by raw_spin_lock Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 162/356] scsi: qedi: Fix crash while reading debugfs attribute Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 163/356] kselftest: arm64: Add a null pointer check Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 164/356] netpoll: Fix race condition in netpoll_owner_active Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 165/356] HID: Add quirk for Logitech Casa touchpad Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 166/356] ACPI: video: Add backlight=native quirk for Lenovo Slim 7 16ARH7 Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 167/356] Bluetooth: ath3k: Fix multiple issues reported by checkpatch.pl Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 168/356] drm/amd/display: Exit idle optimizations before HDCP execution Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 169/356] drm/lima: add mask irq callback to gp and pp Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 170/356] drm/lima: mask irqs in timeout path before hard reset Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 171/356] powerpc/pseries: Enforce hcall result buffer validity and size Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 172/356] powerpc/io: Avoid clang null pointer arithmetic warnings Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 173/356] power: supply: cros_usbpd: provide ID table for avoiding fallback match Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 174/356] iommu/arm-smmu-v3: Free MSIs in case of ENOMEM Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 175/356] f2fs: remove clear SB_INLINECRYPT flag in default_options Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 176/356] usb: misc: uss720: check for incompatible versions of the Belkin F5U002 Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 177/356] Avoid hw_desc array overrun in dw-axi-dmac Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 178/356] udf: udftime: prevent overflow in udf_disk_stamp_to_time() Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 179/356] PCI/PM: Avoid D3cold for HP Pavilion 17 PC/1972 PCIe Ports Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 180/356] MIPS: Octeon: Add PCIe link status check Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 181/356] serial: imx: Introduce timeout when waiting on transmitter empty Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 182/356] serial: exar: adding missing CTI and Exar PCI ids Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 183/356] MIPS: Routerboard 532: Fix vendor retry check code Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 184/356] mips: bmips: BCM6358: make sure CBR is correctly set Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 185/356] tracing: Build event generation tests only as modules Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 186/356] cipso: fix total option length computation Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 187/356] netrom: Fix a memory leak in nr_heartbeat_expiry() Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 188/356] ipv6: prevent possible NULL deref in fib6_nh_init() Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 189/356] ipv6: prevent possible NULL dereference in rt6_probe() Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 190/356] xfrm6: check ip6_dst_idev() return value in xfrm6_get_saddr() Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 191/356] netns: Make get_net_ns() handle zero refcount net Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 192/356] qca_spi: Make interrupt remembering atomic Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 193/356] net/sched: act_api: rely on rcu in tcf_idr_check_alloc Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 194/356] net/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc() Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 195/356] tipc: force a dst refcount before doing decryption Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 196/356] net/sched: act_ct: set net pointer when creating new nf_flow_table Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 197/356] sched: act_ct: add netns into the key of tcf_ct_flow_table Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 198/356] ptp: fix integer overflow in max_vclocks_store Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 199/356] net: stmmac: No need to calculate speed divider when offload is disabled Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 200/356] virtio_net: checksum offloading handling fix Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 201/356] octeontx2-pf: Add error handling to VLAN unoffload handling Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 202/356] netfilter: ipset: Fix suspicious rcu_dereference_protected() Greg Kroah-Hartman
2024-07-03 10:38 ` [PATCH 5.15 203/356] seg6: fix parameter passing when calling NF_HOOK() in End.DX4 and End.DX6 behaviors Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 204/356] bnxt_en: Restore PTP tx_avail count in case of skb_pad() error Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 205/356] net: usb: rtl8150 fix unintiatilzed variables in rtl8150_get_link_ksettings Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 206/356] regulator: core: Fix modpost error "regulator_get_regmap" undefined Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 207/356] dmaengine: idxd: Fix possible Use-After-Free in irq_process_work_list Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 208/356] dmaengine: ioat: switch from pci_ to dma_ API Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 209/356] dmaengine: ioat: Drop redundant pci_enable_pcie_error_reporting() Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 210/356] dmaengine: ioatdma: Fix leaking on version mismatch Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 211/356] dmaengine: ioat: use PCI core macros for PCIe Capability Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 212/356] dmaengine: ioatdma: Fix error path in ioat3_dma_probe() Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 213/356] dmaengine: ioatdma: Fix kmemleak in ioat_pci_probe() Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 214/356] dmaengine: ioatdma: Fix missing kmem_cache_destroy() Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 215/356] regulator: bd71815: fix ramp values Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 216/356] ACPICA: Revert "ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine." Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 217/356] RDMA/mlx5: Add check for srq max_sge attribute Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 218/356] serial: stm32: rework RX over DMA Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 219/356] net: do not leave a dangling sk pointer, when socket creation fails Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 220/356] btrfs: retry block group reclaim without infinite loop Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 221/356] KVM: x86: Always sync PIR to IRR prior to scanning I/O APIC routes Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 222/356] ALSA: hda/realtek: Limit mic boost on N14AP7 Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 223/356] drm/i915/mso: using joiner is not possible with eDP MSO Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 224/356] drm/radeon: fix UBSAN warning in kv_dpm.c Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 225/356] gcov: add support for GCC 14 Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 226/356] kcov: dont lose track of remote references during softirqs Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 227/356] tcp: clear tp->retrans_stamp in tcp_rcv_fastopen_synack() Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 228/356] i2c: ocores: set IACK bit after core is enabled Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 229/356] dt-bindings: i2c: google,cros-ec-i2c-tunnel: correct path to i2c-controller schema Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 230/356] arm64: dts: imx8qm-mek: fix gpio number for reg_usdhc2_vmmc Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 231/356] drm/amd/display: revert Exit idle optimizations before HDCP execution Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 232/356] perf: script: add raw|disasm arguments to --insn-trace option Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 233/356] perf script: Show also errors for " Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 234/356] ARM: dts: samsung: smdkv310: fix keypad no-autorepeat Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 235/356] ARM: dts: samsung: exynos4412-origen: " Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 236/356] ARM: dts: samsung: smdk4412: " Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 237/356] rtlwifi: rtl8192de: Style clean-ups Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 238/356] wifi: rtlwifi: rtl8192de: Fix 5 GHz TX power Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 239/356] pmdomain: ti-sci: Fix duplicate PD referrals Greg Kroah-Hartman
2024-07-03 10:39 ` Greg Kroah-Hartman [this message]
2024-07-03 10:39 ` [PATCH 5.15 241/356] tracing: Add MODULE_DESCRIPTION() to preemptirq_delay_test Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 242/356] x86/cpu/vfm: Add new macros to work with (vendor/family/model) values Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 243/356] x86/cpu: Fix x86_match_cpu() to match just X86_VENDOR_INTEL Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 244/356] ksmbd: ignore trailing slashes in share paths Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 245/356] drm/i915/gt: Only kick the signal worker if theres been an update Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 246/356] drm/i915/gt: Disarm breadcrumbs if engines are already idle Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 247/356] Revert "kheaders: substituting --sort in archive creation" Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 248/356] kheaders: explicitly define file modes for archived headers Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 249/356] riscv: mm: init: try best to use IS_ENABLED(CONFIG_64BIT) instead of #ifdef Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 250/356] riscv: fix overlap of allocated page and PTR_ERR Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 251/356] perf/core: Fix missing wakeup when waiting for context reference Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 252/356] PCI: Add PCI_ERROR_RESPONSE and related definitions Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 253/356] x86/amd_nb: Check for invalid SMN reads Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 254/356] smb: client: fix deadlock in smb2_find_smb_tcon() Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 255/356] x86/mm/numa: Use NUMA_NO_NODE when calling memblock_set_node() Greg Kroah-Hartman
2024-07-03 12:53   ` Mike Rapoport
2024-07-04  7:20     ` Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 256/356] ACPI: x86: utils: Add Picasso to the list for forcing StorageD3Enable Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 257/356] ACPI: x86: Force StorageD3Enable on more products Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 258/356] gve: Add RX context Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 259/356] gve: Clear napi->skb before dev_kfree_skb_any() Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 260/356] Input: ili210x - fix ili251x_read_touch_data() return value Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 261/356] pinctrl: fix deadlock in create_pinctrl() when handling -EPROBE_DEFER Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 262/356] pinctrl: rockchip: fix pinmux bits for RK3328 GPIO2-B pins Greg Kroah-Hartman
2024-07-03 10:39 ` [PATCH 5.15 263/356] pinctrl: rockchip: fix pinmux bits for RK3328 GPIO3-B pins Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 264/356] pinctrl: rockchip: use dedicated pinctrl type for RK3328 Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 265/356] pinctrl: rockchip: fix pinmux reset in rockchip_pmx_set Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 266/356] cifs: fix typo in module parameter enable_gcm_256 Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 267/356] drm/amdgpu: fix UBSAN warning in kv_dpm.c Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 268/356] net: mdio: add helpers to extract clause 45 regad and devad fields Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 269/356] net: stmmac: Assign configured channel value to EXTTS event Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 270/356] ASoC: fsl-asoc-card: set priv->pdev before using it Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 271/356] net: dsa: microchip: fix initial port flush problem Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 272/356] ibmvnic: Free any outstanding tx skbs during scrq reset Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 273/356] net: phy: micrel: add Microchip KSZ 9477 to the device table Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 274/356] xdp: Remove WARN() from __xdp_reg_mem_model() Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 275/356] tcp: Use BPF timeout setting for SYN ACK RTO Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 276/356] Fix race for duplicate reqsk on identical SYN Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 277/356] sparc: fix old compat_sys_select() Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 278/356] sparc: fix compat recv/recvfrom syscalls Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 279/356] parisc: use correct " Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 280/356] tcp: fix tcp_rcv_fastopen_synack() to enter TCP_CA_Loss for failed TFO Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 281/356] netfilter: nf_tables: fully validate NFT_DATA_VALUE on store to data registers Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 282/356] tracing/net_sched: NULL pointer dereference in perf_trace_qdisc_reset() Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 283/356] bpf: Take return from set_memory_ro() into account with bpf_prog_lock_ro() Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 284/356] drm/panel: ilitek-ili9881c: Fix warning with GPIO controllers that sleep Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 285/356] vduse: validate block features only with block devices Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 286/356] vduse: Temporarily fail if control queue feature requested Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 287/356] x86/fpu: Fix AMD X86_BUG_FXSAVE_LEAK fixup Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 288/356] mtd: partitions: redboot: Added conversion of operands to a larger type Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 289/356] bpf: Add a check for struct bpf_fib_lookup size Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 290/356] RDMA/restrack: Fix potential invalid address access Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 291/356] net/iucv: Avoid explicit cpumask var allocation on stack Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 292/356] net/dpaa2: " Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 293/356] crypto: ecdh - explicitly zeroize private_key Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 294/356] ALSA: emux: improve patch ioctl data validation Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 295/356] media: dvbdev: Initialize sbuf Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 296/356] soc: ti: wkup_m3_ipc: Send NULL dummy message instead of pointer message Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 297/356] drm/radeon/radeon_display: Decrease the size of allocated memory Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 298/356] nvme: fixup comment for nvme RDMA Provider Type Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 299/356] drm/panel: simple: Add missing display timing flags for KOE TX26D202VM0BWA Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 300/356] gpio: davinci: Validate the obtained number of IRQs Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 301/356] gpiolib: cdev: Disallow reconfiguration without direction (uAPI v1) Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 302/356] x86: stop playing stack games in profile_pc() Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 303/356] parisc: use generic sys_fanotify_mark implementation Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 304/356] ocfs2: fix DIO failure due to insufficient transaction credits Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 305/356] mmc: sdhci-pci: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 306/356] mmc: sdhci: Do not invert write-protect twice Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 307/356] mmc: sdhci: Do not lock spinlock around mmc_gpio_get_ro() Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 308/356] i2c: testunit: dont erase registers after STOP Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 309/356] i2c: testunit: discard write requests while old command is running Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 310/356] iio: adc: ad7266: Fix variable checking bug Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 311/356] iio: accel: fxls8962af: select IIO_BUFFER & IIO_KFIFO_BUF Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 312/356] iio: chemical: bme680: Fix pressure value output Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 313/356] iio: chemical: bme680: Fix calibration data variable Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 314/356] iio: chemical: bme680: Fix overflows in compensate() functions Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 315/356] iio: chemical: bme680: Fix sensor data read operation Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 316/356] net: usb: ax88179_178a: improve link status logs Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 317/356] usb: gadget: printer: SS+ support Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 318/356] usb: gadget: printer: fix races against disable Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 319/356] usb: musb: da8xx: fix a resource leak in probe() Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 320/356] usb: atm: cxacru: fix endpoint checking in cxacru_bind() Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 321/356] usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 322/356] serial: 8250_omap: Implementation of Errata i2310 Greg Kroah-Hartman
2024-07-03 10:40 ` [PATCH 5.15 323/356] serial: imx: set receiver level before starting uart Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 324/356] tty: mcf: MCF54418 has 10 UARTS Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 325/356] net: can: j1939: Initialize unused data in j1939_send_one() Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 326/356] net: can: j1939: recover socket queue on CAN bus error during BAM transmission Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 327/356] net: can: j1939: enhanced error handling for tightly received RTS messages in xtp_rx_rts_session_new Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 328/356] cpu/hotplug: Fix dynstate assignment in __cpuhp_setup_state_cpuslocked() Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 329/356] kbuild: Install dtb files as 0644 in Makefile.dtbinst Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 330/356] sh: rework sync_file_range ABI Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 331/356] csky, hexagon: fix broken sys_sync_file_range Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 332/356] hexagon: fix fadvise64_64 calling conventions Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 333/356] drm/nouveau/dispnv04: fix null pointer dereference in nv17_tv_get_ld_modes Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 334/356] drm/amdgpu: avoid using null object of framebuffer Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 335/356] drm/i915/gt: Fix potential UAF by revoke of fence registers Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 336/356] drm/nouveau/dispnv04: fix null pointer dereference in nv17_tv_get_hd_modes Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 337/356] batman-adv: Dont accept TT entries for out-of-spec VIDs Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 338/356] ata: ahci: Clean up sysfs file on error Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 339/356] ata: libata-core: Fix double free " Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 340/356] ftruncate: pass a signed offset Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 341/356] syscalls: fix compat_sys_io_pgetevents_time64 usage Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 342/356] syscalls: fix sys_fanotify_mark prototype Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 343/356] pwm: stm32: Refuse too small period requests Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 344/356] nfs: Leave pages in the pagecache if readpage failed Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 345/356] ipv6: annotate some data-races around sk->sk_prot Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 346/356] ipv6: Fix data races " Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 347/356] tcp: Fix data races around icsk->icsk_af_ops Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 348/356] drivers: fix typo in firmware/efi/memmap.c Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 349/356] efi: Correct comment on efi_memmap_alloc Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 350/356] efi: memmap: Move manipulation routines into x86 arch tree Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 351/356] efi: xen: Set EFI_PARAVIRT for Xen dom0 boot on all architectures Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 352/356] efi/x86: Free EFI memory map only when installing a new one Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 353/356] KVM: arm64: vgic-v4: Make the doorbell request robust w.r.t preemption Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 354/356] ARM: dts: rockchip: rk3066a: add #sound-dai-cells to hdmi node Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 355/356] arm64: dts: rockchip: fix PMIC interrupt pin on ROCK Pi E Greg Kroah-Hartman
2024-07-03 10:41 ` [PATCH 5.15 356/356] arm64: dts: rockchip: Add sound-dai-cells for RK3368 Greg Kroah-Hartman
2024-07-03 13:27 ` [PATCH 5.15 000/356] 5.15.162-rc1 review Jon Hunter
2024-07-03 17:17 ` Harshit Mogalapalli
2024-07-03 17:50 ` Mark Brown
2024-07-03 18:08 ` Kelsey Steele
2024-07-03 23:00 ` Shuah Khan
2024-07-04 13:27 ` Naresh Kamboju
2024-07-04 14:43 ` Florian Fainelli
2024-07-05  5:50 ` Ron Economos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240703102922.194648641@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=axboe@kernel.dk \
    --cc=colyli@suse.de \
    --cc=matthew@mm12.xyz \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --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