diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2024-01-20 12:24:55 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2024-04-15 22:03:24 +0200 |
commit | af58dc1f50c1946018773beca23ebaad587b9cc9 (patch) | |
tree | e866e2877ac2cc0e24ec54bbf0899dd6f2185ded /fs/cachefiles | |
parent | get_file_rcu(): no need to check for NULL separately (diff) | |
download | linux-af58dc1f50c1946018773beca23ebaad587b9cc9.tar.xz linux-af58dc1f50c1946018773beca23ebaad587b9cc9.zip |
kernel_file_open(): get rid of inode argument
always equal to ->dentry->d_inode of the path argument these
days.
Reviewed-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/cachefiles')
-rw-r--r-- | fs/cachefiles/namei.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/cachefiles/namei.c b/fs/cachefiles/namei.c index 7ade836beb58..f53977169db4 100644 --- a/fs/cachefiles/namei.c +++ b/fs/cachefiles/namei.c @@ -563,8 +563,7 @@ static bool cachefiles_open_file(struct cachefiles_object *object, */ path.mnt = cache->mnt; path.dentry = dentry; - file = kernel_file_open(&path, O_RDWR | O_LARGEFILE | O_DIRECT, - d_backing_inode(dentry), cache->cache_cred); + file = kernel_file_open(&path, O_RDWR | O_LARGEFILE | O_DIRECT, cache->cache_cred); if (IS_ERR(file)) { trace_cachefiles_vfs_error(object, d_backing_inode(dentry), PTR_ERR(file), |