diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-10-31 02:41:28 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-11-19 13:01:25 -0500 |
commit | a67f797db61ee8f2d732e411bf35a92fd78b44a2 (patch) | |
tree | 87f3040a01368e10310a899b3db35545885d7c36 /fs/ncpfs/dir.c | |
parent | b583043e99bc6d91e98fae32bd9eff6a5958240a (diff) | |
download | linux-stable-a67f797db61ee8f2d732e411bf35a92fd78b44a2.tar.gz linux-stable-a67f797db61ee8f2d732e411bf35a92fd78b44a2.tar.bz2 linux-stable-a67f797db61ee8f2d732e411bf35a92fd78b44a2.zip |
ncpfs: use file_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ncpfs/dir.c')
-rw-r--r-- | fs/ncpfs/dir.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/ncpfs/dir.c b/fs/ncpfs/dir.c index 865d578704c8..008960101520 100644 --- a/fs/ncpfs/dir.c +++ b/fs/ncpfs/dir.c @@ -685,8 +685,7 @@ static void ncp_read_volume_list(struct file *file, struct dir_context *ctx, struct ncp_cache_control *ctl) { - struct dentry *dentry = file->f_path.dentry; - struct inode *inode = dentry->d_inode; + struct inode *inode = file_inode(file); struct ncp_server *server = NCP_SERVER(inode); struct ncp_volume_info info; struct ncp_entry_info entry; @@ -721,8 +720,7 @@ static void ncp_do_readdir(struct file *file, struct dir_context *ctx, struct ncp_cache_control *ctl) { - struct dentry *dentry = file->f_path.dentry; - struct inode *dir = dentry->d_inode; + struct inode *dir = file_inode(file); struct ncp_server *server = NCP_SERVER(dir); struct nw_search_sequence seq; struct ncp_entry_info entry; |