diff options
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_super.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index 30ae96397e31..b49722940d6d 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c | |||
@@ -1106,7 +1106,7 @@ void | |||
1106 | xfs_flush_inode( | 1106 | xfs_flush_inode( |
1107 | xfs_inode_t *ip) | 1107 | xfs_inode_t *ip) |
1108 | { | 1108 | { |
1109 | struct inode *inode = ip->i_vnode; | 1109 | struct inode *inode = VFS_I(ip); |
1110 | 1110 | ||
1111 | igrab(inode); | 1111 | igrab(inode); |
1112 | xfs_syncd_queue_work(ip->i_mount, inode, xfs_flush_inode_work); | 1112 | xfs_syncd_queue_work(ip->i_mount, inode, xfs_flush_inode_work); |
@@ -1825,7 +1825,7 @@ xfs_fs_fill_super( | |||
1825 | sb->s_time_gran = 1; | 1825 | sb->s_time_gran = 1; |
1826 | set_posix_acl_flag(sb); | 1826 | set_posix_acl_flag(sb); |
1827 | 1827 | ||
1828 | root = igrab(mp->m_rootip->i_vnode); | 1828 | root = igrab(VFS_I(mp->m_rootip)); |
1829 | if (!root) { | 1829 | if (!root) { |
1830 | error = ENOENT; | 1830 | error = ENOENT; |
1831 | goto fail_unmount; | 1831 | goto fail_unmount; |