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,
	Marios Makassikis <mmakassikis@freebox.fr>,
	Namjae Jeon <linkinjeon@kernel.org>,
	Steve French <stfrench@microsoft.com>
Subject: [PATCH 6.6 006/134] ksmbd: fix possible deadlock in smb2_open
Date: Tue,  5 Dec 2023 12:14:38 +0900	[thread overview]
Message-ID: <20231205031535.620028931@linuxfoundation.org> (raw)
In-Reply-To: <20231205031535.163661217@linuxfoundation.org>

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

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

From: Namjae Jeon <linkinjeon@kernel.org>

commit 864fb5d3716303a045c3ffb397f651bfd37bfb36 upstream.

[ 8743.393379] ======================================================
[ 8743.393385] WARNING: possible circular locking dependency detected
[ 8743.393391] 6.4.0-rc1+ #11 Tainted: G           OE
[ 8743.393397] ------------------------------------------------------
[ 8743.393402] kworker/0:2/12921 is trying to acquire lock:
[ 8743.393408] ffff888127a14460 (sb_writers#8){.+.+}-{0:0}, at: ksmbd_vfs_setxattr+0x3d/0xd0 [ksmbd]
[ 8743.393510]
               but task is already holding lock:
[ 8743.393515] ffff8880360d97f0 (&type->i_mutex_dir_key#6/1){+.+.}-{3:3}, at: ksmbd_vfs_kern_path_locked+0x181/0x670 [ksmbd]
[ 8743.393618]
               which lock already depends on the new lock.

[ 8743.393623]
               the existing dependency chain (in reverse order) is:
[ 8743.393628]
               -> #1 (&type->i_mutex_dir_key#6/1){+.+.}-{3:3}:
[ 8743.393648]        down_write_nested+0x9a/0x1b0
[ 8743.393660]        filename_create+0x128/0x270
[ 8743.393670]        do_mkdirat+0xab/0x1f0
[ 8743.393680]        __x64_sys_mkdir+0x47/0x60
[ 8743.393690]        do_syscall_64+0x5d/0x90
[ 8743.393701]        entry_SYSCALL_64_after_hwframe+0x72/0xdc
[ 8743.393711]
               -> #0 (sb_writers#8){.+.+}-{0:0}:
[ 8743.393728]        __lock_acquire+0x2201/0x3b80
[ 8743.393737]        lock_acquire+0x18f/0x440
[ 8743.393746]        mnt_want_write+0x5f/0x240
[ 8743.393755]        ksmbd_vfs_setxattr+0x3d/0xd0 [ksmbd]
[ 8743.393839]        ksmbd_vfs_set_dos_attrib_xattr+0xcc/0x110 [ksmbd]
[ 8743.393924]        compat_ksmbd_vfs_set_dos_attrib_xattr+0x39/0x50 [ksmbd]
[ 8743.394010]        smb2_open+0x3432/0x3cc0 [ksmbd]
[ 8743.394099]        handle_ksmbd_work+0x2c9/0x7b0 [ksmbd]
[ 8743.394187]        process_one_work+0x65a/0xb30
[ 8743.394198]        worker_thread+0x2cf/0x700
[ 8743.394209]        kthread+0x1ad/0x1f0
[ 8743.394218]        ret_from_fork+0x29/0x50

This patch add mnt_want_write() above parent inode lock and remove
nested mnt_want_write calls in smb2_open().

Fixes: 40b268d384a2 ("ksmbd: add mnt_want_write to ksmbd vfs functions")
Cc: stable@vger.kernel.org
Reported-by: Marios Makassikis <mmakassikis@freebox.fr>
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 fs/smb/server/smb2pdu.c |   47 +++++++++++++++------------------
 fs/smb/server/smbacl.c  |    7 ++--
 fs/smb/server/smbacl.h  |    2 -
 fs/smb/server/vfs.c     |   68 ++++++++++++++++++++++++++++--------------------
 fs/smb/server/vfs.h     |   10 ++++---
 5 files changed, 75 insertions(+), 59 deletions(-)

--- a/fs/smb/server/smb2pdu.c
+++ b/fs/smb/server/smb2pdu.c
@@ -2380,7 +2380,8 @@ static int smb2_set_ea(struct smb2_ea_in
 			rc = 0;
 		} else {
 			rc = ksmbd_vfs_setxattr(idmap, path, attr_name, value,
-						le16_to_cpu(eabuf->EaValueLength), 0);
+						le16_to_cpu(eabuf->EaValueLength),
+						0, true);
 			if (rc < 0) {
 				ksmbd_debug(SMB,
 					    "ksmbd_vfs_setxattr is failed(%d)\n",
@@ -2443,7 +2444,7 @@ static noinline int smb2_set_stream_name
 		return -EBADF;
 	}
 
-	rc = ksmbd_vfs_setxattr(idmap, path, xattr_stream_name, NULL, 0, 0);
+	rc = ksmbd_vfs_setxattr(idmap, path, xattr_stream_name, NULL, 0, 0, false);
 	if (rc < 0)
 		pr_err("Failed to store XATTR stream name :%d\n", rc);
 	return 0;
@@ -2518,7 +2519,7 @@ static void smb2_new_xattrs(struct ksmbd
 	da.flags = XATTR_DOSINFO_ATTRIB | XATTR_DOSINFO_CREATE_TIME |
 		XATTR_DOSINFO_ITIME;
 
-	rc = ksmbd_vfs_set_dos_attrib_xattr(mnt_idmap(path->mnt), path, &da);
+	rc = ksmbd_vfs_set_dos_attrib_xattr(mnt_idmap(path->mnt), path, &da, false);
 	if (rc)
 		ksmbd_debug(SMB, "failed to store file attribute into xattr\n");
 }
@@ -2608,7 +2609,7 @@ static int smb2_create_sd_buffer(struct
 	    sizeof(struct create_sd_buf_req))
 		return -EINVAL;
 	return set_info_sec(work->conn, work->tcon, path, &sd_buf->ntsd,
-			    le32_to_cpu(sd_buf->ccontext.DataLength), true);
+			    le32_to_cpu(sd_buf->ccontext.DataLength), true, false);
 }
 
 static void ksmbd_acls_fattr(struct smb_fattr *fattr,
@@ -3152,7 +3153,8 @@ int smb2_open(struct ksmbd_work *work)
 								    idmap,
 								    &path,
 								    pntsd,
-								    pntsd_size);
+								    pntsd_size,
+								    false);
 					kfree(pntsd);
 					if (rc)
 						pr_err("failed to store ntacl in xattr : %d\n",
@@ -3228,12 +3230,6 @@ int smb2_open(struct ksmbd_work *work)
 	if (req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)
 		ksmbd_fd_set_delete_on_close(fp, file_info);
 
-	if (need_truncate) {
-		rc = smb2_create_truncate(&path);
-		if (rc)
-			goto err_out;
-	}
-
 	if (req->CreateContextsOffset) {
 		struct create_alloc_size_req *az_req;
 
@@ -3398,11 +3394,12 @@ int smb2_open(struct ksmbd_work *work)
 	}
 
 err_out:
-	if (file_present || created) {
-		inode_unlock(d_inode(parent_path.dentry));
-		path_put(&path);
-		path_put(&parent_path);
-	}
+	if (file_present || created)
+		ksmbd_vfs_kern_path_unlock(&parent_path, &path);
+
+	if (fp && need_truncate)
+		rc = smb2_create_truncate(&fp->filp->f_path);
+
 	ksmbd_revert_fsids(work);
 err_out1:
 	if (!rc) {
@@ -5537,7 +5534,7 @@ static int smb2_rename(struct ksmbd_work
 		rc = ksmbd_vfs_setxattr(file_mnt_idmap(fp->filp),
 					&fp->filp->f_path,
 					xattr_stream_name,
-					NULL, 0, 0);
+					NULL, 0, 0, true);
 		if (rc < 0) {
 			pr_err("failed to store stream name in xattr: %d\n",
 			       rc);
@@ -5630,11 +5627,9 @@ static int smb2_create_link(struct ksmbd
 	if (rc)
 		rc = -EINVAL;
 out:
-	if (file_present) {
-		inode_unlock(d_inode(parent_path.dentry));
-		path_put(&path);
-		path_put(&parent_path);
-	}
+	if (file_present)
+		ksmbd_vfs_kern_path_unlock(&parent_path, &path);
+
 	if (!IS_ERR(link_name))
 		kfree(link_name);
 	kfree(pathname);
@@ -5701,7 +5696,8 @@ static int set_file_basic_info(struct ks
 		da.flags = XATTR_DOSINFO_ATTRIB | XATTR_DOSINFO_CREATE_TIME |
 			XATTR_DOSINFO_ITIME;
 
-		rc = ksmbd_vfs_set_dos_attrib_xattr(idmap, &filp->f_path, &da);
+		rc = ksmbd_vfs_set_dos_attrib_xattr(idmap, &filp->f_path, &da,
+				true);
 		if (rc)
 			ksmbd_debug(SMB,
 				    "failed to restore file attribute in EA\n");
@@ -6013,7 +6009,7 @@ static int smb2_set_info_sec(struct ksmb
 	fp->saccess |= FILE_SHARE_DELETE_LE;
 
 	return set_info_sec(fp->conn, fp->tcon, &fp->filp->f_path, pntsd,
-			buf_len, false);
+			buf_len, false, true);
 }
 
 /**
@@ -7582,7 +7578,8 @@ static inline int fsctl_set_sparse(struc
 
 		da.attr = le32_to_cpu(fp->f_ci->m_fattr);
 		ret = ksmbd_vfs_set_dos_attrib_xattr(idmap,
-						     &fp->filp->f_path, &da);
+						     &fp->filp->f_path,
+						     &da, true);
 		if (ret)
 			fp->f_ci->m_fattr = old_fattr;
 	}
--- a/fs/smb/server/smbacl.c
+++ b/fs/smb/server/smbacl.c
@@ -1185,7 +1185,7 @@ pass:
 			pntsd_size += sizeof(struct smb_acl) + nt_size;
 		}
 
-		ksmbd_vfs_set_sd_xattr(conn, idmap, path, pntsd, pntsd_size);
+		ksmbd_vfs_set_sd_xattr(conn, idmap, path, pntsd, pntsd_size, false);
 		kfree(pntsd);
 	}
 
@@ -1377,7 +1377,7 @@ err_out:
 
 int set_info_sec(struct ksmbd_conn *conn, struct ksmbd_tree_connect *tcon,
 		 const struct path *path, struct smb_ntsd *pntsd, int ntsd_len,
-		 bool type_check)
+		 bool type_check, bool get_write)
 {
 	int rc;
 	struct smb_fattr fattr = {{0}};
@@ -1437,7 +1437,8 @@ int set_info_sec(struct ksmbd_conn *conn
 	if (test_share_config_flag(tcon->share_conf, KSMBD_SHARE_FLAG_ACL_XATTR)) {
 		/* Update WinACL in xattr */
 		ksmbd_vfs_remove_sd_xattrs(idmap, path);
-		ksmbd_vfs_set_sd_xattr(conn, idmap, path, pntsd, ntsd_len);
+		ksmbd_vfs_set_sd_xattr(conn, idmap, path, pntsd, ntsd_len,
+				get_write);
 	}
 
 out:
--- a/fs/smb/server/smbacl.h
+++ b/fs/smb/server/smbacl.h
@@ -207,7 +207,7 @@ int smb_check_perm_dacl(struct ksmbd_con
 			__le32 *pdaccess, int uid);
 int set_info_sec(struct ksmbd_conn *conn, struct ksmbd_tree_connect *tcon,
 		 const struct path *path, struct smb_ntsd *pntsd, int ntsd_len,
-		 bool type_check);
+		 bool type_check, bool get_write);
 void id_to_sid(unsigned int cid, uint sidtype, struct smb_sid *ssid);
 void ksmbd_init_domain(u32 *sub_auth);
 
--- a/fs/smb/server/vfs.c
+++ b/fs/smb/server/vfs.c
@@ -97,6 +97,13 @@ static int ksmbd_vfs_path_lookup_locked(
 		return -ENOENT;
 	}
 
+	err = mnt_want_write(parent_path->mnt);
+	if (err) {
+		path_put(parent_path);
+		putname(filename);
+		return -ENOENT;
+	}
+
 	inode_lock_nested(parent_path->dentry->d_inode, I_MUTEX_PARENT);
 	d = lookup_one_qstr_excl(&last, parent_path->dentry, 0);
 	if (IS_ERR(d))
@@ -123,6 +130,7 @@ static int ksmbd_vfs_path_lookup_locked(
 
 err_out:
 	inode_unlock(d_inode(parent_path->dentry));
+	mnt_drop_write(parent_path->mnt);
 	path_put(parent_path);
 	putname(filename);
 	return -ENOENT;
@@ -451,7 +459,8 @@ static int ksmbd_vfs_stream_write(struct
 				 fp->stream.name,
 				 (void *)stream_buf,
 				 size,
-				 0);
+				 0,
+				 true);
 	if (err < 0)
 		goto out;
 
@@ -593,10 +602,6 @@ int ksmbd_vfs_remove_file(struct ksmbd_w
 		goto out_err;
 	}
 
-	err = mnt_want_write(path->mnt);
-	if (err)
-		goto out_err;
-
 	idmap = mnt_idmap(path->mnt);
 	if (S_ISDIR(d_inode(path->dentry)->i_mode)) {
 		err = vfs_rmdir(idmap, d_inode(parent), path->dentry);
@@ -607,7 +612,6 @@ int ksmbd_vfs_remove_file(struct ksmbd_w
 		if (err)
 			ksmbd_debug(VFS, "unlink failed, err %d\n", err);
 	}
-	mnt_drop_write(path->mnt);
 
 out_err:
 	ksmbd_revert_fsids(work);
@@ -907,18 +911,22 @@ ssize_t ksmbd_vfs_getxattr(struct mnt_id
  * @attr_value:	xattr value to set
  * @attr_size:	size of xattr value
  * @flags:	destination buffer length
+ * @get_write:	get write access to a mount
  *
  * Return:	0 on success, otherwise error
  */
 int ksmbd_vfs_setxattr(struct mnt_idmap *idmap,
 		       const struct path *path, const char *attr_name,
-		       void *attr_value, size_t attr_size, int flags)
+		       void *attr_value, size_t attr_size, int flags,
+		       bool get_write)
 {
 	int err;
 
-	err = mnt_want_write(path->mnt);
-	if (err)
-		return err;
+	if (get_write == true) {
+		err = mnt_want_write(path->mnt);
+		if (err)
+			return err;
+	}
 
 	err = vfs_setxattr(idmap,
 			   path->dentry,
@@ -928,7 +936,8 @@ int ksmbd_vfs_setxattr(struct mnt_idmap
 			   flags);
 	if (err)
 		ksmbd_debug(VFS, "setxattr failed, err %d\n", err);
-	mnt_drop_write(path->mnt);
+	if (get_write == true)
+		mnt_drop_write(path->mnt);
 	return err;
 }
 
@@ -1251,6 +1260,13 @@ out1:
 	}
 
 	if (!err) {
+		err = mnt_want_write(parent_path->mnt);
+		if (err) {
+			path_put(path);
+			path_put(parent_path);
+			return err;
+		}
+
 		err = ksmbd_vfs_lock_parent(parent_path->dentry, path->dentry);
 		if (err) {
 			path_put(path);
@@ -1260,6 +1276,14 @@ out1:
 	return err;
 }
 
+void ksmbd_vfs_kern_path_unlock(struct path *parent_path, struct path *path)
+{
+	inode_unlock(d_inode(parent_path->dentry));
+	mnt_drop_write(parent_path->mnt);
+	path_put(path);
+	path_put(parent_path);
+}
+
 struct dentry *ksmbd_vfs_kern_path_create(struct ksmbd_work *work,
 					  const char *name,
 					  unsigned int flags,
@@ -1414,7 +1438,8 @@ out:
 int ksmbd_vfs_set_sd_xattr(struct ksmbd_conn *conn,
 			   struct mnt_idmap *idmap,
 			   const struct path *path,
-			   struct smb_ntsd *pntsd, int len)
+			   struct smb_ntsd *pntsd, int len,
+			   bool get_write)
 {
 	int rc;
 	struct ndr sd_ndr = {0}, acl_ndr = {0};
@@ -1474,7 +1499,7 @@ int ksmbd_vfs_set_sd_xattr(struct ksmbd_
 
 	rc = ksmbd_vfs_setxattr(idmap, path,
 				XATTR_NAME_SD, sd_ndr.data,
-				sd_ndr.offset, 0);
+				sd_ndr.offset, 0, get_write);
 	if (rc < 0)
 		pr_err("Failed to store XATTR ntacl :%d\n", rc);
 
@@ -1563,7 +1588,8 @@ free_n_data:
 
 int ksmbd_vfs_set_dos_attrib_xattr(struct mnt_idmap *idmap,
 				   const struct path *path,
-				   struct xattr_dos_attrib *da)
+				   struct xattr_dos_attrib *da,
+				   bool get_write)
 {
 	struct ndr n;
 	int err;
@@ -1573,7 +1599,7 @@ int ksmbd_vfs_set_dos_attrib_xattr(struc
 		return err;
 
 	err = ksmbd_vfs_setxattr(idmap, path, XATTR_NAME_DOS_ATTRIBUTE,
-				 (void *)n.data, n.offset, 0);
+				 (void *)n.data, n.offset, 0, get_write);
 	if (err)
 		ksmbd_debug(SMB, "failed to store dos attribute in xattr\n");
 	kfree(n.data);
@@ -1845,10 +1871,6 @@ int ksmbd_vfs_set_init_posix_acl(struct
 	}
 	posix_state_to_acl(&acl_state, acls->a_entries);
 
-	rc = mnt_want_write(path->mnt);
-	if (rc)
-		goto out_err;
-
 	rc = set_posix_acl(idmap, dentry, ACL_TYPE_ACCESS, acls);
 	if (rc < 0)
 		ksmbd_debug(SMB, "Set posix acl(ACL_TYPE_ACCESS) failed, rc : %d\n",
@@ -1860,9 +1882,7 @@ int ksmbd_vfs_set_init_posix_acl(struct
 			ksmbd_debug(SMB, "Set posix acl(ACL_TYPE_DEFAULT) failed, rc : %d\n",
 				    rc);
 	}
-	mnt_drop_write(path->mnt);
 
-out_err:
 	free_acl_state(&acl_state);
 	posix_acl_release(acls);
 	return rc;
@@ -1892,10 +1912,6 @@ int ksmbd_vfs_inherit_posix_acl(struct m
 		}
 	}
 
-	rc = mnt_want_write(path->mnt);
-	if (rc)
-		goto out_err;
-
 	rc = set_posix_acl(idmap, dentry, ACL_TYPE_ACCESS, acls);
 	if (rc < 0)
 		ksmbd_debug(SMB, "Set posix acl(ACL_TYPE_ACCESS) failed, rc : %d\n",
@@ -1907,9 +1923,7 @@ int ksmbd_vfs_inherit_posix_acl(struct m
 			ksmbd_debug(SMB, "Set posix acl(ACL_TYPE_DEFAULT) failed, rc : %d\n",
 				    rc);
 	}
-	mnt_drop_write(path->mnt);
 
-out_err:
 	posix_acl_release(acls);
 	return rc;
 }
--- a/fs/smb/server/vfs.h
+++ b/fs/smb/server/vfs.h
@@ -109,7 +109,8 @@ ssize_t ksmbd_vfs_casexattr_len(struct m
 				int attr_name_len);
 int ksmbd_vfs_setxattr(struct mnt_idmap *idmap,
 		       const struct path *path, const char *attr_name,
-		       void *attr_value, size_t attr_size, int flags);
+		       void *attr_value, size_t attr_size, int flags,
+		       bool get_write);
 int ksmbd_vfs_xattr_stream_name(char *stream_name, char **xattr_stream_name,
 				size_t *xattr_stream_name_size, int s_type);
 int ksmbd_vfs_remove_xattr(struct mnt_idmap *idmap,
@@ -117,6 +118,7 @@ int ksmbd_vfs_remove_xattr(struct mnt_id
 int ksmbd_vfs_kern_path_locked(struct ksmbd_work *work, char *name,
 			       unsigned int flags, struct path *parent_path,
 			       struct path *path, bool caseless);
+void ksmbd_vfs_kern_path_unlock(struct path *parent_path, struct path *path);
 struct dentry *ksmbd_vfs_kern_path_create(struct ksmbd_work *work,
 					  const char *name,
 					  unsigned int flags,
@@ -144,14 +146,16 @@ int ksmbd_vfs_remove_sd_xattrs(struct mn
 int ksmbd_vfs_set_sd_xattr(struct ksmbd_conn *conn,
 			   struct mnt_idmap *idmap,
 			   const struct path *path,
-			   struct smb_ntsd *pntsd, int len);
+			   struct smb_ntsd *pntsd, int len,
+			   bool get_write);
 int ksmbd_vfs_get_sd_xattr(struct ksmbd_conn *conn,
 			   struct mnt_idmap *idmap,
 			   struct dentry *dentry,
 			   struct smb_ntsd **pntsd);
 int ksmbd_vfs_set_dos_attrib_xattr(struct mnt_idmap *idmap,
 				   const struct path *path,
-				   struct xattr_dos_attrib *da);
+				   struct xattr_dos_attrib *da,
+				   bool get_write);
 int ksmbd_vfs_get_dos_attrib_xattr(struct mnt_idmap *idmap,
 				   struct dentry *dentry,
 				   struct xattr_dos_attrib *da);



  parent reply	other threads:[~2023-12-05  3:20 UTC|newest]

Thread overview: 153+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-05  3:14 [PATCH 6.6 000/134] 6.6.5-rc1 review Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 001/134] leds: class: Dont expose color sysfs entry Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 002/134] cifs: Fix FALLOC_FL_ZERO_RANGE by setting i_size if EOF moved Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 003/134] cifs: Fix FALLOC_FL_INSERT_RANGE by setting i_size after " Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 004/134] smb: client: fix missing mode bits for SMB symlinks Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 005/134] smb: client: report correct st_size for SMB and NFS symlinks Greg Kroah-Hartman
2023-12-05  3:14 ` Greg Kroah-Hartman [this message]
2023-12-05  3:14 ` [PATCH 6.6 007/134] pinctrl: avoid reload of p state in list iteration Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 008/134] firewire: core: fix possible memory leak in create_units() Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 009/134] mmc: sdhci-pci-gli: Disable LPM during initialization Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 010/134] mmc: sdhci-sprd: Fix vqmmc not shutting down after the card was pulled Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 011/134] mmc: cqhci: Increase recovery halt timeout Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 012/134] mmc: cqhci: Warn of halt or task clear failure Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 013/134] mmc: cqhci: Fix task clearing in CQE error recovery Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 014/134] mmc: block: Retry commands " Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 015/134] mmc: block: Do not lose cache flush during " Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 016/134] mmc: block: Be sure to wait while busy in " Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 017/134] drm/i915: Also check for VGA converter in eDP probe Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 018/134] ALSA: hda: Disable power-save on KONTRON SinglePC Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 019/134] ALSA: hda/realtek: Headset Mic VREF to 100% Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 020/134] ALSA: hda/realtek: Add supported ALC257 for ChromeOS Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 021/134] net: libwx: fix memory leak on msix entry Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 022/134] dm-verity: align struct dm_verity_fec_io properly Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 023/134] scsi: Change SCSI device boolean fields to single bit flags Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 024/134] scsi: sd: Fix system start for ATA devices Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 025/134] scsi: ufs: core: Clear cmd if abort succeeds in MCQ mode Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 026/134] drm/amd: Enable PCIe PME from D3 Greg Kroah-Hartman
2023-12-05  3:14 ` [PATCH 6.6 027/134] drm/amdgpu: correct the amdgpu runtime dereference usage count Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 028/134] drm/amdgpu: Force order between a read and write to the same address Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 029/134] drm/amdgpu: fix memory overflow in the IB test Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 030/134] drm/amdgpu: Update EEPROM I2C address for smu v13_0_0 Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 031/134] drm/amd/display: Include udelay when waiting for INBOX0 ACK Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 032/134] drm/amd/display: Remove min_dst_y_next_start check for Z8 Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 033/134] drm/amd/display: Use DRAM speed from validation for dummy p-state Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 034/134] drm/amd/display: Update min Z8 residency time to 2100 for DCN314 Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 035/134] drm/amd/display: fix ABM disablement Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 036/134] drm/amd/display: force toggle rate wa for first link training for a retimer Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 037/134] dm verity: initialize fec io before freeing it Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 038/134] dm verity: dont perform FEC for failed readahead IO Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 039/134] nvme: check for valid nvme_identify_ns() before using it Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 040/134] r8169: fix deadlock on RTL8125 in jumbo mtu mode Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 041/134] ACPI: video: Use acpi_video_device for cooling-dev driver data Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 042/134] io_uring: dont allow discontig pages for IORING_SETUP_NO_MMAP Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 043/134] iommu/vt-d: Fix incorrect cache invalidation for mm notification Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 044/134] io_uring: free io_buffer_list entries via RCU Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 045/134] nouveau: find the smallest page allocation to cover a buffer alloc Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 046/134] powercap: DTPM: Fix unneeded conversions to micro-Watts Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 047/134] cpufreq/amd-pstate: Fix the return value of amd_pstate_fast_switch() Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 048/134] dma-buf: fix check in dma_resv_add_fence Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 049/134] io_uring: dont guard IORING_OFF_PBUF_RING with SETUP_NO_MMAP Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 050/134] iommu: Avoid more races around device probe Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 051/134] bcache: revert replacing IS_ERR_OR_NULL with IS_ERR Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 052/134] ext2: Fix ki_pos update for DIO buffered-io fallback case Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 053/134] iommu/vt-d: Add MTL to quirk list to skip TE disabling Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 054/134] KVM: PPC: Book3S HV: Fix KVM_RUN clobbering FP/VEC user registers Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 055/134] powerpc: Dont clobber f0/vs0 during fp|altivec register save Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 056/134] parisc: Mark ex_table entries 32-bit aligned in assembly.h Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 057/134] parisc: Mark ex_table entries 32-bit aligned in uaccess.h Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 058/134] parisc: Use natural CPU alignment for bug_table Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 059/134] parisc: Mark lock_aligned variables 16-byte aligned on SMP Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 060/134] parisc: Drop the HP-UX ENOSYM and EREMOTERELEASE error codes Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 061/134] parisc: Mark jump_table naturally aligned Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 062/134] parisc: Ensure 32-bit alignment on parisc unwind section Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 063/134] parisc: Mark altinstructions read-only and 32-bit aligned Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 064/134] btrfs: add dmesg output for first mount and last unmount of a filesystem Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 065/134] btrfs: ref-verify: fix memory leaks in btrfs_ref_tree_mod() Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 066/134] btrfs: fix off-by-one when checking chunk map includes logical address Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 067/134] btrfs: send: ensure send_fd is writable Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 068/134] btrfs: make error messages more clear when getting a chunk map Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 069/134] btrfs: free the allocated memory if btrfs_alloc_page_array() fails Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 070/134] btrfs: fix 64bit compat send ioctl arguments not initializing version member Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 071/134] io_uring: enable io_mem_alloc/free to be used in other parts Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 072/134] io_uring/kbuf: defer release of mapped buffer rings Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 073/134] io_uring/kbuf: recycle freed mapped buffer ring entries Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 074/134] wifi: cfg80211: fix CQM for non-range use Greg Kroah-Hartman
2023-12-09 10:05   ` Sven Joachim
2023-12-10  9:32     ` Jaron Kent-Dobias
2023-12-10 10:25       ` Linux regression tracking (Thorsten Leemhuis)
2023-12-05  3:15 ` [PATCH 6.6 075/134] pinctrl: stm32: Add check for devm_kcalloc Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 076/134] pinctrl: stm32: fix array read out of bound Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 077/134] media: v4l2-subdev: Fix a 64bit bug Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 078/134] netdevsim: Dont accept device bound programs Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 079/134] net: rswitch: Fix type of ret in rswitch_start_xmit() Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 080/134] net: rswitch: Fix return value " Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 081/134] net: rswitch: Fix missing dev_kfree_skb_any() in error path Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 082/134] ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 083/134] wifi: iwlwifi: mvm: fix an error code in iwl_mvm_mld_add_sta() Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 084/134] wifi: mac80211: do not pass AP_VLAN vif pointer to drivers during flush Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 085/134] net: dsa: mv88e6xxx: fix marvell 6350 switch probing Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 086/134] net: dsa: mv88e6xxx: fix marvell 6350 probe crash Greg Kroah-Hartman
2023-12-05  3:15 ` [PATCH 6.6 087/134] dpaa2-eth: increase the needed headroom to account for alignment Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 088/134] dpaa2-eth: recycle the RX buffer only after all processing done Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 089/134] bpf: Add missed allocation hint for bpf_mem_cache_alloc_flags() Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 090/134] uapi: propagate __struct_group() attributes to the container union Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 091/134] selftests/net: ipsec: fix constant out of range Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 092/134] selftests/net: fix a char signedness issue Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 093/134] selftests/net: unix: fix unused variable compiler warning Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 094/134] selftests/net: mptcp: fix uninitialized variable warnings Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 095/134] octeontx2-af: Fix possible buffer overflow Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 096/134] net: stmmac: xgmac: Disable FPE MMC interrupts Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 097/134] octeontx2-pf: Fix adding mbox work queue entry when num_vfs > 64 Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 098/134] octeontx2-pf: Restore TC ingress police rules when interface is up Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 099/134] neighbour: Fix __randomize_layout crash in struct neighbour Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 100/134] efi/unaccepted: Fix off-by-one when checking for overlapping ranges Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 101/134] r8169: prevent potential deadlock in rtl8169_close Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 102/134] ravb: Fix races between ravb_tx_timeout_work() and net related ops Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 103/134] ethtool: dont propagate EOPNOTSUPP from dumps Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 104/134] bpf, sockmap: af_unix stream sockets need to hold ref for pair sock Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 105/134] ice: Fix VF Reset paths when interface in a failed over aggregate Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 106/134] net: ravb: Check return value of reset_control_deassert() Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 107/134] net: ravb: Use pm_runtime_resume_and_get() Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 108/134] net: ravb: Make write access to CXR35 first before accessing other EMAC registers Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 109/134] net: ravb: Start TX queues after HW initialization succeeded Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 110/134] net: ravb: Stop DMA in case of failures on ravb_open() Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 111/134] net: ravb: Keep reverse order of operations in ravb_remove() Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 112/134] powerpc/pseries/iommu: enable_ddw incorrectly returns direct mapping for SR-IOV device Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 113/134] s390/cmma: fix handling of swapper_pg_dir and invalid_pg_dir Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 114/134] drm/amd/display: Refactor edp power control Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 115/134] drm/amd/display: Remove power sequencing check Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 116/134] cpufreq: imx6q: Dont disable 792 Mhz OPP unnecessarily Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 117/134] iommu/vt-d: Omit devTLB invalidation requests when TES=0 Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 118/134] iommu/vt-d: Disable PCI ATS in legacy passthrough mode Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 119/134] iommu/vt-d: Make context clearing consistent with context mapping Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 120/134] drm/i915/gsc: Mark internal GSC engine with reserved uabi class Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 121/134] drm/panel: starry-2081101qfh032011-53g: Fine tune the panel power sequence Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 122/134] drm/panel: nt36523: fix return value check in nt36523_probe() Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 123/134] cpufreq/amd-pstate: Fix scaling_min_freq and scaling_max_freq update Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 124/134] cpufreq/amd-pstate: Only print supported EPP values for performance governor Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 125/134] drm/amd/pm: fix a memleak in aldebaran_tables_init Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 126/134] iommu: Fix printk arg in of_iommu_get_resv_regions() Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 127/134] drm/amd/display: refactor ILR to make it work Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 128/134] drm/amd/display: Reduce default backlight min from 5 nits to 1 nits Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 129/134] drm/amd/display: Simplify brightness initialization Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 130/134] drm/amd/display: Fix MPCC 1DLUT programming Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 131/134] vfio/pds: Fix mutex lock->magic != lock warning Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 132/134] vfio/pds: Fix possible sleep while in atomic context Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 133/134] x86/xen: fix percpu vcpu_info allocation Greg Kroah-Hartman
2023-12-05  3:16 ` [PATCH 6.6 134/134] vfio: Drop vfio_file_iommu_group() stub to fudge around a KVM wart Greg Kroah-Hartman
2023-12-05 11:10 ` [PATCH 6.6 000/134] 6.6.5-rc1 review Jon Hunter
2023-12-05 12:33 ` Takeshi Ogasawara
2023-12-05 13:25 ` Bagas Sanjaya
2023-12-05 15:49 ` Harshit Mogalapalli
2023-12-05 15:53 ` Naresh Kamboju
2023-12-05 16:13   ` Arnd Bergmann
2023-12-05 16:16     ` Johannes Berg
2023-12-05 16:55 ` Guenter Roeck
2023-12-05 17:10 ` SeongJae Park
2023-12-05 17:41 ` Naresh Kamboju
2023-12-05 18:28 ` Ron Economos
2023-12-05 18:46 ` Florian Fainelli
2023-12-06  1:37 ` Shuah Khan
2023-12-06 21:42 ` Ricardo B. Marliere
2023-12-06 22:34 ` Justin Forbes

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=20231205031535.620028931@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linkinjeon@kernel.org \
    --cc=mmakassikis@freebox.fr \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    --cc=stfrench@microsoft.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