]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
cifsd: use file_inode() instead of d_inode()
authorHyunchul Lee <hyc.lee@gmail.com>
Thu, 1 Apr 2021 08:33:47 +0000 (17:33 +0900)
committerSteve French <stfrench@microsoft.com>
Mon, 19 Apr 2021 00:20:50 +0000 (19:20 -0500)
use file_inode() to get layerd filesystems right.

Signed-off-by: Hyunchul Lee <hyc.lee@gmail.com>
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/cifsd/vfs.c

index bdc30a7b6d5235975ad16ff7bf6b3686c23e0273..6313d5ca4b46494332330448d43538bd148c423d 100644 (file)
@@ -335,7 +335,7 @@ int ksmbd_vfs_read(struct ksmbd_work *work, struct ksmbd_file *fp, size_t count,
 
        rbuf = work->aux_payload_buf;
        filp = fp->filp;
-       inode = d_inode(filp->f_path.dentry);
+       inode = file_inode(filp);
        if (S_ISDIR(inode->i_mode))
                return -EISDIR;