Message ID | 20240517161028.7046-1-aaptel@nvidia.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | fs/fuse: use correct name fuse_conn_list in docstring | expand |
> From: Aurelien Aptel > Sent: Friday, 17 May 2024 18:11 > To: Miklos Szeredi <miklos@szeredi.hu> > Cc: linux-fsdevel@vger.kernel.org; linux-kernel@vger.kernel.org; Aurelien Aptel > <aaptel@nvidia.com> > Subject: [PATCH] fs/fuse: use correct name fuse_conn_list in docstring > > fuse_mount_list doesn't exist, use fuse_conn_list. > > Signed-off-by: Aurelien Aptel <aaptel@nvidia.com> ping
On 5/17/24 18:10, Aurelien Aptel wrote: > fuse_mount_list doesn't exist, use fuse_conn_list. > > Signed-off-by: Aurelien Aptel <aaptel@nvidia.com> > --- > fs/fuse/fuse_i.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h > index b24084b60864..bd2ae3748d37 100644 > --- a/fs/fuse/fuse_i.h > +++ b/fs/fuse/fuse_i.h > @@ -869,7 +869,7 @@ struct fuse_conn { > /** Negotiated minor version */ > unsigned minor; > > - /** Entry on the fuse_mount_list */ > + /** Entry on the fuse_conn_list */ > struct list_head entry; > > /** Device ID from the root super block */ LGTM Reviewed-by: Bernd Schubert <bschubert@ddn.com>
On Fri, 17 May 2024 at 18:10, Aurelien Aptel <aaptel@nvidia.com> wrote: > > fuse_mount_list doesn't exist, use fuse_conn_list. > > Signed-off-by: Aurelien Aptel <aaptel@nvidia.com> Applied, thanks. Miklos
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index b24084b60864..bd2ae3748d37 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -869,7 +869,7 @@ struct fuse_conn { /** Negotiated minor version */ unsigned minor; - /** Entry on the fuse_mount_list */ + /** Entry on the fuse_conn_list */ struct list_head entry; /** Device ID from the root super block */
fuse_mount_list doesn't exist, use fuse_conn_list. Signed-off-by: Aurelien Aptel <aaptel@nvidia.com> --- fs/fuse/fuse_i.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)