orangefs: use new getattr in inode getattr and permission
authorMartin Brandenburg <martin@omnibond.com>
Tue, 15 Mar 2016 16:36:29 +0000 (12:36 -0400)
committerMike Marshall <hubcap@omnibond.com>
Wed, 23 Mar 2016 21:36:15 +0000 (17:36 -0400)
Signed-off-by: Martin Brandenburg <martin@omnibond.com>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
fs/orangefs/inode.c

index 45d5846301c44146b0bda5395110725d5845af72..8f047722cb44e325332ef070a365ea619a5917b3 100644 (file)
@@ -268,8 +268,7 @@ int orangefs_getattr(struct vfsmount *mnt,
                     "orangefs_getattr: called on %s\n",
                     dentry->d_name.name);
 
-       ret = orangefs_inode_old_getattr(inode, ORANGEFS_ATTR_SYS_ALL_NOHINT,
-           0);
+       ret = orangefs_inode_getattr(inode, 0, 1);
        if (ret == 0) {
                generic_fillattr(inode, kstat);
 
@@ -278,14 +277,6 @@ int orangefs_getattr(struct vfsmount *mnt,
                kstat->blksize = orangefs_inode->blksize;
 
                inode->i_link = ORANGEFS_I(dentry->d_inode)->link_target;
-       } else {
-               /* assume an I/O error and flag inode as bad */
-               gossip_debug(GOSSIP_INODE_DEBUG,
-                            "%s:%s:%d calling make bad inode\n",
-                            __FILE__,
-                            __func__,
-                            __LINE__);
-               orangefs_make_bad_inode(inode);
        }
        return ret;
 }
@@ -300,8 +291,7 @@ int orangefs_permission(struct inode *inode, int mask)
        gossip_debug(GOSSIP_INODE_DEBUG, "%s: refreshing\n", __func__);
 
        /* Make sure the permission (and other common attrs) are up to date. */
-       ret = orangefs_inode_old_getattr(inode,
-           ORANGEFS_ATTR_SYS_ALL_NOHINT_NOSIZE, 0);
+       ret = orangefs_inode_getattr(inode, 0, 0);
        if (ret < 0)
                return ret;