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, "Xiubo Li" <xiubli@redhat.com>,
	"Milind Changire" <mchangir@redhat.com>,
	"Ilya Dryomov" <idryomov@gmail.com>,
	"Sasha Levin" <sashal@kernel.org>,
	"Luís Henriques" <lhenriques@suse.de>
Subject: [PATCH 6.1 142/259] ceph: drop messages from MDS when unmounting
Date: Wed,  4 Oct 2023 19:55:15 +0200	[thread overview]
Message-ID: <20231004175223.820100931@linuxfoundation.org> (raw)
In-Reply-To: <20231004175217.404851126@linuxfoundation.org>

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

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

From: Xiubo Li <xiubli@redhat.com>

[ Upstream commit e3dfcab2080dc1f9a4b09cc1327361bc2845bfcd ]

When unmounting all the dirty buffers will be flushed and after
the last osd request is finished the last reference of the i_count
will be released. Then it will flush the dirty cap/snap to MDSs,
and the unmounting won't wait the possible acks, which will ihold
the inodes when updating the metadata locally but makes no sense
any more, of this. This will make the evict_inodes() to skip these
inodes.

If encrypt is enabled the kernel generate a warning when removing
the encrypt keys when the skipped inodes still hold the keyring:

WARNING: CPU: 4 PID: 168846 at fs/crypto/keyring.c:242 fscrypt_destroy_keyring+0x7e/0xd0
CPU: 4 PID: 168846 Comm: umount Tainted: G S  6.1.0-rc5-ceph-g72ead199864c #1
Hardware name: Supermicro SYS-5018R-WR/X10SRW-F, BIOS 2.0 12/17/2015
RIP: 0010:fscrypt_destroy_keyring+0x7e/0xd0
RSP: 0018:ffffc9000b277e28 EFLAGS: 00010202
RAX: 0000000000000002 RBX: ffff88810d52ac00 RCX: ffff88810b56aa00
RDX: 0000000080000000 RSI: ffffffff822f3a09 RDI: ffff888108f59000
RBP: ffff8881d394fb88 R08: 0000000000000028 R09: 0000000000000000
R10: 0000000000000001 R11: 11ff4fe6834fcd91 R12: ffff8881d394fc40
R13: ffff888108f59000 R14: ffff8881d394f800 R15: 0000000000000000
FS:  00007fd83f6f1080(0000) GS:ffff88885fd00000(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00007f918d417000 CR3: 000000017f89a005 CR4: 00000000003706e0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
Call Trace:
<TASK>
generic_shutdown_super+0x47/0x120
kill_anon_super+0x14/0x30
ceph_kill_sb+0x36/0x90 [ceph]
deactivate_locked_super+0x29/0x60
cleanup_mnt+0xb8/0x140
task_work_run+0x67/0xb0
exit_to_user_mode_prepare+0x23d/0x240
syscall_exit_to_user_mode+0x25/0x60
do_syscall_64+0x40/0x80
entry_SYSCALL_64_after_hwframe+0x63/0xcd
RIP: 0033:0x7fd83dc39e9b

Later the kernel will crash when iput() the inodes and dereferencing
the "sb->s_master_keys", which has been released by the
generic_shutdown_super().

Link: https://tracker.ceph.com/issues/59162
Signed-off-by: Xiubo Li <xiubli@redhat.com>
Reviewed-and-tested-by: Luís Henriques <lhenriques@suse.de>
Reviewed-by: Milind Changire <mchangir@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/ceph/caps.c       |  6 +++-
 fs/ceph/mds_client.c | 12 +++++--
 fs/ceph/mds_client.h | 11 +++++--
 fs/ceph/quota.c      | 14 ++++-----
 fs/ceph/snap.c       | 10 +++---
 fs/ceph/super.c      | 75 +++++++++++++++++++++++++++++++++++++++++---
 fs/ceph/super.h      |  3 ++
 7 files changed, 109 insertions(+), 22 deletions(-)

diff --git a/fs/ceph/caps.c b/fs/ceph/caps.c
index 4a9ad5ff726d4..36052a3626830 100644
--- a/fs/ceph/caps.c
+++ b/fs/ceph/caps.c
@@ -4100,6 +4100,9 @@ void ceph_handle_caps(struct ceph_mds_session *session,
 
 	dout("handle_caps from mds%d\n", session->s_mds);
 
+	if (!ceph_inc_mds_stopping_blocker(mdsc, session))
+		return;
+
 	/* decode */
 	end = msg->front.iov_base + msg->front.iov_len;
 	if (msg->front.iov_len < sizeof(*h))
@@ -4196,7 +4199,6 @@ void ceph_handle_caps(struct ceph_mds_session *session,
 	     vino.snap, inode);
 
 	mutex_lock(&session->s_mutex);
-	inc_session_sequence(session);
 	dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
 	     (unsigned)seq);
 
@@ -4299,6 +4301,8 @@ void ceph_handle_caps(struct ceph_mds_session *session,
 done_unlocked:
 	iput(inode);
 out:
+	ceph_dec_mds_stopping_blocker(mdsc);
+
 	ceph_put_string(extra_info.pool_ns);
 
 	/* Defer closing the sessions after s_mutex lock being released */
diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c
index 5399a9ea5b4f1..f6a7fd47efd7a 100644
--- a/fs/ceph/mds_client.c
+++ b/fs/ceph/mds_client.c
@@ -4546,6 +4546,9 @@ static void handle_lease(struct ceph_mds_client *mdsc,
 
 	dout("handle_lease from mds%d\n", mds);
 
+	if (!ceph_inc_mds_stopping_blocker(mdsc, session))
+		return;
+
 	/* decode */
 	if (msg->front.iov_len < sizeof(*h) + sizeof(u32))
 		goto bad;
@@ -4564,8 +4567,6 @@ static void handle_lease(struct ceph_mds_client *mdsc,
 	     dname.len, dname.name);
 
 	mutex_lock(&session->s_mutex);
-	inc_session_sequence(session);
-
 	if (!inode) {
 		dout("handle_lease no inode %llx\n", vino.ino);
 		goto release;
@@ -4627,9 +4628,13 @@ static void handle_lease(struct ceph_mds_client *mdsc,
 out:
 	mutex_unlock(&session->s_mutex);
 	iput(inode);
+
+	ceph_dec_mds_stopping_blocker(mdsc);
 	return;
 
 bad:
+	ceph_dec_mds_stopping_blocker(mdsc);
+
 	pr_err("corrupt lease message\n");
 	ceph_msg_dump(msg);
 }
@@ -4825,6 +4830,9 @@ int ceph_mdsc_init(struct ceph_fs_client *fsc)
 	}
 
 	init_completion(&mdsc->safe_umount_waiters);
+	spin_lock_init(&mdsc->stopping_lock);
+	atomic_set(&mdsc->stopping_blockers, 0);
+	init_completion(&mdsc->stopping_waiter);
 	init_waitqueue_head(&mdsc->session_close_wq);
 	INIT_LIST_HEAD(&mdsc->waiting_for_map);
 	mdsc->quotarealms_inodes = RB_ROOT;
diff --git a/fs/ceph/mds_client.h b/fs/ceph/mds_client.h
index 9a80658f41679..0913959ccfa64 100644
--- a/fs/ceph/mds_client.h
+++ b/fs/ceph/mds_client.h
@@ -381,8 +381,9 @@ struct cap_wait {
 };
 
 enum {
-       CEPH_MDSC_STOPPING_BEGIN = 1,
-       CEPH_MDSC_STOPPING_FLUSHED = 2,
+	CEPH_MDSC_STOPPING_BEGIN = 1,
+	CEPH_MDSC_STOPPING_FLUSHING = 2,
+	CEPH_MDSC_STOPPING_FLUSHED = 3,
 };
 
 /*
@@ -401,7 +402,11 @@ struct ceph_mds_client {
 	struct ceph_mds_session **sessions;    /* NULL for mds if no session */
 	atomic_t		num_sessions;
 	int                     max_sessions;  /* len of sessions array */
-	int                     stopping;      /* true if shutting down */
+
+	spinlock_t              stopping_lock;  /* protect snap_empty */
+	int                     stopping;      /* the stage of shutting down */
+	atomic_t                stopping_blockers;
+	struct completion	stopping_waiter;
 
 	atomic64_t		quotarealms_count; /* # realms with quota */
 	/*
diff --git a/fs/ceph/quota.c b/fs/ceph/quota.c
index 64592adfe48fb..f7fcf7f08ec64 100644
--- a/fs/ceph/quota.c
+++ b/fs/ceph/quota.c
@@ -47,25 +47,23 @@ void ceph_handle_quota(struct ceph_mds_client *mdsc,
 	struct inode *inode;
 	struct ceph_inode_info *ci;
 
+	if (!ceph_inc_mds_stopping_blocker(mdsc, session))
+		return;
+
 	if (msg->front.iov_len < sizeof(*h)) {
 		pr_err("%s corrupt message mds%d len %d\n", __func__,
 		       session->s_mds, (int)msg->front.iov_len);
 		ceph_msg_dump(msg);
-		return;
+		goto out;
 	}
 
-	/* increment msg sequence number */
-	mutex_lock(&session->s_mutex);
-	inc_session_sequence(session);
-	mutex_unlock(&session->s_mutex);
-
 	/* lookup inode */
 	vino.ino = le64_to_cpu(h->ino);
 	vino.snap = CEPH_NOSNAP;
 	inode = ceph_find_inode(sb, vino);
 	if (!inode) {
 		pr_warn("Failed to find inode %llu\n", vino.ino);
-		return;
+		goto out;
 	}
 	ci = ceph_inode(inode);
 
@@ -78,6 +76,8 @@ void ceph_handle_quota(struct ceph_mds_client *mdsc,
 	spin_unlock(&ci->i_ceph_lock);
 
 	iput(inode);
+out:
+	ceph_dec_mds_stopping_blocker(mdsc);
 }
 
 static struct ceph_quotarealm_inode *
diff --git a/fs/ceph/snap.c b/fs/ceph/snap.c
index 2e73ba62bd7aa..82f7592e1747b 100644
--- a/fs/ceph/snap.c
+++ b/fs/ceph/snap.c
@@ -1012,6 +1012,9 @@ void ceph_handle_snap(struct ceph_mds_client *mdsc,
 	int locked_rwsem = 0;
 	bool close_sessions = false;
 
+	if (!ceph_inc_mds_stopping_blocker(mdsc, session))
+		return;
+
 	/* decode */
 	if (msg->front.iov_len < sizeof(*h))
 		goto bad;
@@ -1027,10 +1030,6 @@ void ceph_handle_snap(struct ceph_mds_client *mdsc,
 	dout("%s from mds%d op %s split %llx tracelen %d\n", __func__,
 	     mds, ceph_snap_op_name(op), split, trace_len);
 
-	mutex_lock(&session->s_mutex);
-	inc_session_sequence(session);
-	mutex_unlock(&session->s_mutex);
-
 	down_write(&mdsc->snap_rwsem);
 	locked_rwsem = 1;
 
@@ -1148,6 +1147,7 @@ void ceph_handle_snap(struct ceph_mds_client *mdsc,
 	up_write(&mdsc->snap_rwsem);
 
 	flush_snaps(mdsc);
+	ceph_dec_mds_stopping_blocker(mdsc);
 	return;
 
 bad:
@@ -1157,6 +1157,8 @@ void ceph_handle_snap(struct ceph_mds_client *mdsc,
 	if (locked_rwsem)
 		up_write(&mdsc->snap_rwsem);
 
+	ceph_dec_mds_stopping_blocker(mdsc);
+
 	if (close_sessions)
 		ceph_mdsc_close_sessions(mdsc);
 	return;
diff --git a/fs/ceph/super.c b/fs/ceph/super.c
index a5f52013314d6..281b493fdac8e 100644
--- a/fs/ceph/super.c
+++ b/fs/ceph/super.c
@@ -1365,25 +1365,90 @@ static int ceph_init_fs_context(struct fs_context *fc)
 	return -ENOMEM;
 }
 
+/*
+ * Return true if it successfully increases the blocker counter,
+ * or false if the mdsc is in stopping and flushed state.
+ */
+static bool __inc_stopping_blocker(struct ceph_mds_client *mdsc)
+{
+	spin_lock(&mdsc->stopping_lock);
+	if (mdsc->stopping >= CEPH_MDSC_STOPPING_FLUSHING) {
+		spin_unlock(&mdsc->stopping_lock);
+		return false;
+	}
+	atomic_inc(&mdsc->stopping_blockers);
+	spin_unlock(&mdsc->stopping_lock);
+	return true;
+}
+
+static void __dec_stopping_blocker(struct ceph_mds_client *mdsc)
+{
+	spin_lock(&mdsc->stopping_lock);
+	if (!atomic_dec_return(&mdsc->stopping_blockers) &&
+	    mdsc->stopping >= CEPH_MDSC_STOPPING_FLUSHING)
+		complete_all(&mdsc->stopping_waiter);
+	spin_unlock(&mdsc->stopping_lock);
+}
+
+/* For metadata IO requests */
+bool ceph_inc_mds_stopping_blocker(struct ceph_mds_client *mdsc,
+				   struct ceph_mds_session *session)
+{
+	mutex_lock(&session->s_mutex);
+	inc_session_sequence(session);
+	mutex_unlock(&session->s_mutex);
+
+	return __inc_stopping_blocker(mdsc);
+}
+
+void ceph_dec_mds_stopping_blocker(struct ceph_mds_client *mdsc)
+{
+	__dec_stopping_blocker(mdsc);
+}
+
 static void ceph_kill_sb(struct super_block *s)
 {
 	struct ceph_fs_client *fsc = ceph_sb_to_client(s);
+	struct ceph_mds_client *mdsc = fsc->mdsc;
+	bool wait;
 
 	dout("kill_sb %p\n", s);
 
-	ceph_mdsc_pre_umount(fsc->mdsc);
+	ceph_mdsc_pre_umount(mdsc);
 	flush_fs_workqueues(fsc);
 
 	/*
 	 * Though the kill_anon_super() will finally trigger the
-	 * sync_filesystem() anyway, we still need to do it here
-	 * and then bump the stage of shutdown to stop the work
-	 * queue as earlier as possible.
+	 * sync_filesystem() anyway, we still need to do it here and
+	 * then bump the stage of shutdown. This will allow us to
+	 * drop any further message, which will increase the inodes'
+	 * i_count reference counters but makes no sense any more,
+	 * from MDSs.
+	 *
+	 * Without this when evicting the inodes it may fail in the
+	 * kill_anon_super(), which will trigger a warning when
+	 * destroying the fscrypt keyring and then possibly trigger
+	 * a further crash in ceph module when the iput() tries to
+	 * evict the inodes later.
 	 */
 	sync_filesystem(s);
 
-	fsc->mdsc->stopping = CEPH_MDSC_STOPPING_FLUSHED;
+	spin_lock(&mdsc->stopping_lock);
+	mdsc->stopping = CEPH_MDSC_STOPPING_FLUSHING;
+	wait = !!atomic_read(&mdsc->stopping_blockers);
+	spin_unlock(&mdsc->stopping_lock);
+
+	if (wait && atomic_read(&mdsc->stopping_blockers)) {
+		long timeleft = wait_for_completion_killable_timeout(
+					&mdsc->stopping_waiter,
+					fsc->client->options->mount_timeout);
+		if (!timeleft) /* timed out */
+			pr_warn("umount timed out, %ld\n", timeleft);
+		else if (timeleft < 0) /* killed */
+			pr_warn("umount was killed, %ld\n", timeleft);
+	}
 
+	mdsc->stopping = CEPH_MDSC_STOPPING_FLUSHED;
 	kill_anon_super(s);
 
 	fsc->client->extra_mon_dispatch = NULL;
diff --git a/fs/ceph/super.h b/fs/ceph/super.h
index 562f42f4a77d7..7ca74f5f70be5 100644
--- a/fs/ceph/super.h
+++ b/fs/ceph/super.h
@@ -1374,4 +1374,7 @@ extern bool ceph_quota_update_statfs(struct ceph_fs_client *fsc,
 				     struct kstatfs *buf);
 extern void ceph_cleanup_quotarealms_inodes(struct ceph_mds_client *mdsc);
 
+bool ceph_inc_mds_stopping_blocker(struct ceph_mds_client *mdsc,
+			       struct ceph_mds_session *session);
+void ceph_dec_mds_stopping_blocker(struct ceph_mds_client *mdsc);
 #endif /* _FS_CEPH_SUPER_H */
-- 
2.40.1




  parent reply	other threads:[~2023-10-04 18:16 UTC|newest]

Thread overview: 284+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-04 17:52 [PATCH 6.1 000/259] 6.1.56-rc1 review Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 001/259] NFS: Fix error handling for O_DIRECT write scheduling Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 002/259] NFS: Fix O_DIRECT locking issues Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 003/259] NFS: More O_DIRECT accounting fixes for error paths Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 004/259] NFS: Use the correct commit info in nfs_join_page_group() Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 005/259] NFS: More fixes for nfs_direct_write_reschedule_io() Greg Kroah-Hartman
2023-10-04 17:52 ` [PATCH 6.1 006/259] NFS/pNFS: Report EINVAL errors from connect() to the server Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 007/259] SUNRPC: Mark the cred for revalidation if the server rejects it Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 008/259] NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 009/259] NFSv4.1: fix pnfs MDS=DS session trunking Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 010/259] media: v4l: Use correct dependency for camera sensor drivers Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 011/259] media: via: " Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 012/259] netfs: Only call folio_start_fscache() one time for each folio Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 013/259] perf build: Update build rule for generated files Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 014/259] dm: fix a race condition in retrieve_deps Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 015/259] btrfs: improve error message after failure to add delayed dir index item Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 016/259] btrfs: remove BUG() after failure to insert " Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 017/259] ext4: replace the traditional ternary conditional operator with with max()/min() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 018/259] ext4: move setting of trimmed bit into ext4_try_to_trim_range() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 019/259] ext4: do not let fstrim block system suspend Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 020/259] netfilter: nf_tables: dont skip expired elements during walk Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 021/259] netfilter: nf_tables: GC transaction API to avoid race with control plane Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 022/259] netfilter: nf_tables: adapt set backend to use GC transaction API Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 023/259] netfilter: nft_set_hash: mark set element as dead when deleting from packet path Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 024/259] netfilter: nf_tables: remove busy mark and gc batch API Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 025/259] netfilter: nf_tables: dont fail inserts if duplicate has expired Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 026/259] netfilter: nf_tables: fix GC transaction races with netns and netlink event exit path Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 027/259] netfilter: nf_tables: GC transaction race with netns dismantle Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 028/259] netfilter: nf_tables: GC transaction race with abort path Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 029/259] netfilter: nf_tables: use correct lock to protect gc_list Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 030/259] netfilter: nf_tables: defer gc run if previous batch is still pending Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 031/259] netfilter: nft_set_rbtree: skip sync GC for new elements in this transaction Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 032/259] netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 033/259] netfilter: nft_set_pipapo: call nft_trans_gc_queue_sync() in catchall GC Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 034/259] netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation fails Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 035/259] netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 036/259] netfilter: nf_tables: fix memleak when more than 255 elements expired Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 037/259] ASoC: meson: spdifin: start hw on dai probe Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 038/259] netfilter: nf_tables: disallow element removal on anonymous sets Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 039/259] bpf: Avoid deadlock when using queue and stack maps from NMI Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 040/259] ASoC: rt5640: Revert "Fix sleep in atomic context" Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 041/259] ASoC: rt5640: Fix IRQ not being free-ed for HDA jack detect mode Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 042/259] ALSA: hda/realtek: Splitting the UX3402 into two separate models Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 043/259] netfilter: conntrack: fix extension size table Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 044/259] selftests: tls: swap the TX and RX sockets in some tests Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 045/259] net/core: Fix ETH_P_1588 flow dissector Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 046/259] ASoC: hdaudio.c: Add missing check for devm_kstrdup Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 047/259] ASoC: imx-audmix: Fix return error with devm_clk_get() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 048/259] octeon_ep: fix tx dma unmap len values in SG Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 049/259] iavf: do not process adminq tasks when __IAVF_IN_REMOVE_TASK is set Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 050/259] ASoC: SOF: core: Only call sof_ops_free() on remove if the probe was successful Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 051/259] iavf: add iavf_schedule_aq_request() helper Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 052/259] iavf: schedule a request immediately after add/delete vlan Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 053/259] i40e: Fix VF VLAN offloading when port VLAN is configured Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 054/259] netfilter, bpf: Adjust timeouts of non-confirmed CTs in bpf_ct_insert_entry() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 055/259] ionic: fix 16bit math issue when PAGE_SIZE >= 64KB Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 056/259] igc: Fix infinite initialization loop with early XDP redirect Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 057/259] ipv4: fix null-deref in ipv4_link_failure Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 058/259] scsi: iscsi_tcp: restrict to TCP sockets Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 059/259] powerpc/perf/hv-24x7: Update domain value check Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 060/259] dccp: fix dccp_v4_err()/dccp_v6_err() again Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 061/259] x86/mm, kexec, ima: Use memblock_free_late() from ima_free_kexec_buffer() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 062/259] net: hsr: Properly parse HSRv1 supervisor frames Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 063/259] platform/x86: intel_scu_ipc: Check status after timeout in busy_loop() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 064/259] platform/x86: intel_scu_ipc: Check status upon timeout in ipc_wait_for_interrupt() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 065/259] platform/x86: intel_scu_ipc: Dont override scu in intel_scu_ipc_dev_simple_command() Greg Kroah-Hartman
2023-10-04 17:53 ` [PATCH 6.1 066/259] platform/x86: intel_scu_ipc: Fail IPC send if still busy Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 067/259] x86/srso: Fix srso_show_state() side effect Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 068/259] x86/srso: Fix SBPB enablement for spec_rstack_overflow=off Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 069/259] net: hns3: add cmdq check for vf periodic service task Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 070/259] net: hns3: fix GRE checksum offload issue Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 071/259] net: hns3: only enable unicast promisc when mac table full Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 072/259] net: hns3: fix fail to delete tc flower rules during reset issue Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 073/259] net: hns3: add 5ms delay before clear firmware reset irq source Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 074/259] net: bridge: use DEV_STATS_INC() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 075/259] team: fix null-ptr-deref when team device type is changed Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 076/259] net: rds: Fix possible NULL-pointer dereference Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 077/259] netfilter: nf_tables: disable toggling dormant table state more than once Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 078/259] netfilter: ipset: Fix race between IPSET_CMD_CREATE and IPSET_CMD_SWAP Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 079/259] i915/pmu: Move execlist stats initialization to execlist specific setup Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 080/259] locking/seqlock: Do the lockdep annotation before locking in do_write_seqcount_begin_nested() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 081/259] net: ena: Flush XDP packets on error Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 082/259] bnxt_en: Flush XDP for bnxt_poll_nitroa0()s NAPI Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 083/259] octeontx2-pf: Do xdp_do_flush() after redirects Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 084/259] igc: Expose tx-usecs coalesce setting to user Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 085/259] proc: nommu: /proc/<pid>/maps: release mmap read lock Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 086/259] proc: nommu: fix empty /proc/<pid>/maps Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 087/259] cifs: Fix UAF in cifs_demultiplex_thread() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 088/259] gpio: tb10x: Fix an error handling path in tb10x_gpio_probe() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 089/259] i2c: mux: demux-pinctrl: check the return value of devm_kstrdup() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 090/259] i2c: mux: gpio: Add missing fwnode_handle_put() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 091/259] i2c: xiic: Correct return value check for xiic_reinit() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 092/259] ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 093/259] ARM: dts: samsung: exynos4210-i9100: Fix LCD screens physical size Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 094/259] ARM: dts: qcom: msm8974pro-castor: correct inverted X of touchscreen Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 095/259] ARM: dts: qcom: msm8974pro-castor: correct touchscreen function names Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 096/259] ARM: dts: qcom: msm8974pro-castor: correct touchscreen syna,nosleep-mode Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 097/259] f2fs: optimize iteration over sparse directories Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 098/259] f2fs: get out of a repeat loop when getting a locked data page Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 099/259] s390/pkey: fix PKEY_TYPE_EP11_AES handling in PKEY_CLR2SECK2 IOCTL Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 100/259] arm64: dts: qcom: sdm845-db845c: Mark cont splash memory region as reserved Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 101/259] wifi: ath11k: fix tx status reporting in encap offload mode Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 102/259] wifi: ath11k: Cleanup mac80211 references on failure during tx_complete Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 103/259] scsi: qla2xxx: Select qpair depending on which CPU post_cmd() gets called Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 104/259] scsi: qla2xxx: Use raw_smp_processor_id() instead of smp_processor_id() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 105/259] drm/amdkfd: Flush TLB after unmapping for GFX v9.4.3 Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 106/259] drm/amdkfd: Insert missing TLB flush on GFX10 and later Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 107/259] btrfs: reset destination buffer when read_extent_buffer() gets invalid range Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 108/259] vfio/mdev: Fix a null-ptr-deref bug for mdev_unregister_parent() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 109/259] MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 110/259] spi: spi-gxp: BUG: Correct spi write return value Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 111/259] drm/bridge: ti-sn65dsi83: Do not generate HFP/HBP/HSA and EOT packet Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 112/259] bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 113/259] bus: ti-sysc: Fix missing AM35xx SoC matching Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 114/259] firmware: arm_scmi: Harden perf domain info access Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 115/259] firmware: arm_scmi: Fixup perf power-cost/microwatt support Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 116/259] power: supply: mt6370: Fix missing error code in mt6370_chg_toggle_cfo() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 117/259] clk: sprd: Fix thm_parents incorrect configuration Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 118/259] clk: tegra: fix error return case for recalc_rate Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 119/259] ARM: dts: omap: correct indentation Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 120/259] ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4 Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 121/259] ARM: dts: Unify pwm-omap-dmtimer node names Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 122/259] ARM: dts: Unify pinctrl-single pin group nodes for omap4 Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 123/259] ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 124/259] bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 125/259] power: supply: ucs1002: fix error code in ucs1002_get_property() Greg Kroah-Hartman
2023-10-04 17:54 ` [PATCH 6.1 126/259] firmware: imx-dsp: Fix an error handling path in imx_dsp_setup_channels() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 127/259] xtensa: add default definition for XCHAL_HAVE_DIV32 Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 128/259] xtensa: iss/network: make functions static Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 129/259] xtensa: boot: dont add include-dirs Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 130/259] xtensa: umulsidi3: fix conditional expression Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 131/259] xtensa: boot/lib: fix function prototypes Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 132/259] power: supply: rk817: Fix node refcount leak Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 133/259] selftests/powerpc: Use CLEAN macro to fix make warning Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 134/259] selftests/powerpc: Pass make context to children Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 135/259] selftests/powerpc: Fix emit_tests to work with run_kselftest.sh Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 136/259] soc: imx8m: Enable OCOTP clock for imx8mm before reading registers Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 137/259] arm64: dts: imx: Add imx8mm-prt8mm.dtb to build Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 138/259] firmware: arm_ffa: Dont set the memory region attributes for MEM_LEND Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 139/259] gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 140/259] i2c: npcm7xx: Fix callback completion ordering Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 141/259] x86/reboot: VMCLEAR active VMCSes before emergency reboot Greg Kroah-Hartman
2023-10-04 17:55 ` Greg Kroah-Hartman [this message]
2023-10-04 17:55 ` [PATCH 6.1 143/259] dma-debug: dont call __dma_entry_alloc_check_leak() under free_entries_lock Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 144/259] bpf: Annotate bpf_long_memcpy with data_race Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 145/259] spi: sun6i: reduce DMA RX transfer width to single byte Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 146/259] spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 147/259] nvme-fc: Prevent null pointer dereference in nvme_fc_io_getuuid() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 148/259] parisc: sba: Fix compile warning wrt list of SBA devices Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 149/259] parisc: iosapic.c: Fix sparse warnings Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 150/259] parisc: drivers: Fix sparse warning Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 151/259] parisc: irq: Make irq_stack_union static to avoid " Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 152/259] scsi: qedf: Add synchronization between I/O completions and abort Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 153/259] scsi: ufs: core: Move __ufshcd_send_uic_cmd() outside host_lock Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 154/259] scsi: ufs: core: Poll HCS.UCRDY before issuing a UIC command Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 155/259] selftests/ftrace: Correctly enable event in instance-event.tc Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 156/259] ring-buffer: Avoid softlockup in ring_buffer_resize() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 157/259] btrfs: assert delayed node locked when removing delayed item Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 158/259] selftests: fix dependency checker script Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 159/259] ring-buffer: Do not attempt to read past "commit" Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 160/259] net/smc: bugfix for smcr v2 server connect success statistic Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 161/259] ata: sata_mv: Fix incorrect string length computation in mv_dump_mem() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 162/259] platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 163/259] platform/x86: asus-wmi: Support 2023 ROG X16 tablet mode Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 164/259] thermal/of: add missing of_node_put() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 165/259] drm/amd/display: Dont check registers, if using AUX BL control Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 166/259] drm/amdgpu/soc21: dont remap HDP registers for SR-IOV Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 167/259] drm/amdgpu/nbio4.3: set proper rmmio_remap.reg_offset " Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 168/259] drm/amdgpu: Handle null atom context in VBIOS info ioctl Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 169/259] riscv: errata: fix T-Head dcache.cva encoding Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 170/259] scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 171/259] scsi: pm80xx: Avoid leaking tags when processing OPC_INB_SET_CONTROLLER_CONFIG command Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 172/259] smb3: correct places where ENOTSUPP is used instead of preferred EOPNOTSUPP Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 173/259] ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset() Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 174/259] spi: nxp-fspi: reset the FLSHxCR1 registers Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 175/259] spi: stm32: add a delay before SPI disable Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 176/259] ASoC: fsl: imx-pcm-rpmsg: Add SNDRV_PCM_INFO_BATCH flag Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 177/259] spi: intel-pci: Add support for Granite Rapids SPI serial flash Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 178/259] bpf: Ensure unit_size is matched with slab cache object size Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 179/259] bpf: Clarify error expectations from bpf_clone_redirect Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 180/259] ALSA: hda: intel-sdw-acpi: Use u8 type for link index Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 181/259] ASoC: cs42l42: Ensure a reset pulse meets minimum pulse width Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 182/259] ASoC: cs42l42: Dont rely on GPIOD_OUT_LOW to set RESET initially low Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 183/259] firmware: cirrus: cs_dsp: Only log list of algorithms in debug build Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 184/259] memblock tests: fix warning: "__ALIGN_KERNEL" redefined Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 185/259] =?UTF-8?q?memblock=20tests:=20fix=20warning=20=E2=80=98struct=20s?= =?UTF-8?q?eq=5Ffile=E2=80=99=20declared=20inside=20parameter=20list?= Greg Kroah-Hartman
2023-10-04 17:55 ` [PATCH 6.1 186/259] ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 187/259] media: vb2: frame_vector.c: replace WARN_ONCE with a comment Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 188/259] NFSv4.1: fix zero value filehandle in post open getattr Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 189/259] ASoC: SOF: Intel: MTL: Reduce the DSP init timeout Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 190/259] powerpc/watchpoints: Disable preemption in thread_change_pc() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 191/259] powerpc/watchpoint: Disable pagefaults when getting user instruction Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 192/259] powerpc/watchpoints: Annotate atomic context in more places Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 193/259] ncsi: Propagate carrier gain/loss events to the NCSI controller Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 194/259] net: hsr: Add __packed to struct hsr_sup_tlv Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 195/259] tsnep: Fix NAPI scheduling Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 196/259] tsnep: Fix NAPI polling with budget 0 Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 197/259] LoongArch: Set all reserved memblocks on Node#0 at initialization Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 198/259] fbdev/sh7760fb: Depend on FB=y Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 199/259] perf build: Define YYNOMEM as YYNOABORT for bison < 3.81 Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 200/259] nvme-pci: factor the iod mempool creation into a helper Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 201/259] nvme-pci: factor out a nvme_pci_alloc_dev helper Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 202/259] nvme-pci: do not set the NUMA node of device if it has none Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 203/259] wifi: ath11k: Dont drop tx_status when peer cannot be found Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 204/259] scsi: qla2xxx: Fix NULL pointer dereference in target mode Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 205/259] nvme-pci: always return an ERR_PTR from nvme_pci_alloc_dev Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 206/259] smack: Record transmuting in smk_transmuted Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 207/259] smack: Retrieve transmuting information in smack_inode_getsecurity() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 208/259] iommu/arm-smmu-v3: Fix soft lockup triggered by arm_smmu_mm_invalidate_range Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 209/259] x86/sgx: Resolves SECS reclaim vs. page fault for EAUG race Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 210/259] x86/srso: Add SRSO mitigation for Hygon processors Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 211/259] KVM: SVM: INTERCEPT_RDTSCP is never intercepted anyway Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 212/259] KVM: SVM: Fix TSC_AUX virtualization setup Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 213/259] KVM: x86/mmu: Open code leaf invalidation from mmu_notifier Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 214/259] KVM: x86/mmu: Do not filter address spaces in for_each_tdp_mmu_root_yield_safe() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 215/259] mptcp: fix bogus receive window shrinkage with multiple subflows Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 216/259] misc: rtsx: Fix some platforms can not boot and move the l1ss judgment to probe Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 217/259] Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux" Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 218/259] serial: 8250_port: Check IRQ data before use Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 219/259] nilfs2: fix potential use after free in nilfs_gccache_submit_read_data() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 220/259] netfilter: nf_tables: disallow rule removal from chain binding Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 221/259] ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre M70q Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 222/259] LoongArch: Define relocation types for ABI v2.10 Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 223/259] LoongArch: numa: Fix high_memory calculation Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 224/259] ata: libata-scsi: link ata port and scsi device Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 225/259] ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 226/259] io_uring/fs: remove sqe->rw_flags checking from LINKAT Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 227/259] i2c: i801: unregister tco_pdev in i801_probe() error path Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 228/259] ASoC: amd: yc: Fix non-functional mic on Lenovo 82QF and 82UG Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 229/259] kernel/sched: Modify initial boot task idle setup Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 230/259] sched/rt: Fix live lock between select_fallback_rq() and RT push Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 231/259] netfilter: nf_tables: fix kdoc warnings after gc rework Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 232/259] Revert "SUNRPC dont update timeout value on connection reset" Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 233/259] timers: Tag (hr)timer softirq as hotplug safe Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 234/259] drm/tests: Fix incorrect argument in drm_test_mm_insert_range Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 235/259] arm64: defconfig: remove CONFIG_COMMON_CLK_NPCM8XX=y Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 236/259] mm/damon/vaddr-test: fix memory leak in damon_do_test_apply_three_regions() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 237/259] mm/slab_common: fix slab_caches list corruption after kmem_cache_destroy() Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 238/259] mm: memcontrol: fix GFP_NOFS recursion in memory.high enforcement Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 239/259] ring-buffer: Update "shortest_full" in polling Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 240/259] btrfs: properly report 0 avail for very full file systems Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 241/259] media: uvcvideo: Fix OOB read Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 242/259] bpf: Add override check to kprobe multi link attach Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 243/259] bpf: Fix BTF_ID symbol generation collision Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 244/259] bpf: Fix BTF_ID symbol generation collision in tools/ Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 245/259] net: thunderbolt: Fix TCPv6 GSO checksum calculation Greg Kroah-Hartman
2023-10-04 17:56 ` [PATCH 6.1 246/259] fs/smb/client: Reset password pointer to NULL Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 247/259] ata: libata-core: Fix ata_port_request_pm() locking Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 248/259] ata: libata-core: Fix port and device removal Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 249/259] ata: libata-core: Do not register PM operations for SAS ports Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 250/259] ata: libata-sata: increase PMP SRST timeout to 10s Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 251/259] drm/i915/gt: Fix reservation address in ggtt_reserve_guc_top Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 252/259] power: supply: rk817: Add missing module alias Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 253/259] power: supply: ab8500: Set typing and props Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 254/259] fs: binfmt_elf_efpic: fix personality for ELF-FDPIC Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 255/259] drm/amdkfd: Use gpu_offset for user queues wptr Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 256/259] drm/meson: fix memory leak on ->hpd_notify callback Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 257/259] memcg: drop kmem.limit_in_bytes Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 258/259] mm, memcg: reconsider kmem.limit_in_bytes deprecation Greg Kroah-Hartman
2023-10-04 17:57 ` [PATCH 6.1 259/259] ASoC: amd: yc: Fix a non-functional mic on Lenovo 82TL Greg Kroah-Hartman
2023-10-04 19:33 ` [PATCH 6.1 000/259] 6.1.56-rc1 review Florian Fainelli
2023-10-04 20:19   ` Namhyung Kim
2023-10-05  0:51     ` Florian Fainelli
2023-10-05  5:15       ` Namhyung Kim
2023-10-06 10:12         ` Greg Kroah-Hartman
2023-10-05  0:17 ` Wang Yugui
2023-10-06 10:12   ` Greg Kroah-Hartman
2023-10-05  0:59 ` Shuah Khan
2023-10-05  1:32 ` SeongJae Park
2023-10-05  3:41 ` Bagas Sanjaya
2023-10-05 12:27 ` Pavel Machek
2023-10-06 12:55   ` Greg Kroah-Hartman
2023-10-05 13:57 ` Takeshi Ogasawara
2023-10-05 16:39 ` Naresh Kamboju
2023-10-05 17:24   ` Petr Vorel
2023-10-05 19:20     ` Naresh Kamboju
2023-10-06  6:41       ` Petr Vorel
2023-10-06 18:42   ` Daniel Díaz
2023-10-07  8:58     ` Greg Kroah-Hartman
2023-10-09 16:43       ` Naresh Kamboju
2023-10-05 18:40 ` Allen Pais
2023-10-05 22:17 ` Guenter Roeck
2023-10-06  7:30 ` Ron Economos
2023-10-06  9:32 ` Jon Hunter

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=20231004175223.820100931@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=idryomov@gmail.com \
    --cc=lhenriques@suse.de \
    --cc=mchangir@redhat.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=xiubli@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox