]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
NFS: Don't use d_inode as a variable name
authorDavid Howells <dhowells@redhat.com>
Wed, 4 Mar 2015 16:38:26 +0000 (16:38 +0000)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 15 Apr 2015 19:05:29 +0000 (15:05 -0400)
Don't use d_inode as a variable name as it now masks a function name.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/nfs/read.c

index 568ecf0a880f1145aedb69a1d93241b5eba300e0..b8f5c63f77b2780b51d410ae4d3928ddf2bd1a76 100644 (file)
@@ -117,15 +117,15 @@ int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
 
 static void nfs_readpage_release(struct nfs_page *req)
 {
-       struct inode *d_inode = req->wb_context->dentry->d_inode;
+       struct inode *inode = req->wb_context->dentry->d_inode;
 
-       dprintk("NFS: read done (%s/%llu %d@%lld)\n", d_inode->i_sb->s_id,
-               (unsigned long long)NFS_FILEID(d_inode), req->wb_bytes,
+       dprintk("NFS: read done (%s/%llu %d@%lld)\n", inode->i_sb->s_id,
+               (unsigned long long)NFS_FILEID(inode), req->wb_bytes,
                (long long)req_offset(req));
 
        if (nfs_page_group_sync_on_bit(req, PG_UNLOCKPAGE)) {
                if (PageUptodate(req->wb_page))
-                       nfs_readpage_to_fscache(d_inode, req->wb_page, 0);
+                       nfs_readpage_to_fscache(inode, req->wb_page, 0);
 
                unlock_page(req->wb_page);
        }