lkml.org 
[lkml]   [2022]   [Aug]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH 2/5] ksmbd: don't open-code file_path()
2022-08-18 11:58 GMT+09:00, Al Viro <viro@zeniv.linux.org.uk>:
> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>

Thanks!
> ---
> fs/ksmbd/smb2pdu.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/fs/ksmbd/smb2pdu.c b/fs/ksmbd/smb2pdu.c
> index 9751cc92c111..0e1924a6476d 100644
> --- a/fs/ksmbd/smb2pdu.c
> +++ b/fs/ksmbd/smb2pdu.c
> @@ -5416,7 +5416,7 @@ static int smb2_rename(struct ksmbd_work *work,
> if (!pathname)
> return -ENOMEM;
>
> - abs_oldname = d_path(&fp->filp->f_path, pathname, PATH_MAX);
> + abs_oldname = file_path(fp->filp, pathname, PATH_MAX);
> if (IS_ERR(abs_oldname)) {
> rc = -EINVAL;
> goto out;
> @@ -5551,7 +5551,7 @@ static int smb2_create_link(struct ksmbd_work *work,
> }
>
> ksmbd_debug(SMB, "link name is %s\n", link_name);
> - target_name = d_path(&filp->f_path, pathname, PATH_MAX);
> + target_name = file_path(filp, pathname, PATH_MAX);
> if (IS_ERR(target_name)) {
> rc = -EINVAL;
> goto out;
> --
> 2.30.2
>
>

\
 
 \ /
  Last update: 2022-08-18 08:21    [W:1.632 / U:0.068 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site