diff options
author | Christoph Hellwig <hch@infradead.org> | 2008-08-13 02:22:40 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-08-13 02:22:40 -0400 |
commit | 5ec7f8c7d14a3ea6bf920b3350f5c5d3527cb837 (patch) | |
tree | 3fa7d041b51027af39800ebccef63fb12af94f9d /fs/xfs/xfs_vnodeops.c | |
parent | df80c933f9eb01a7af3812bbe437e38205386304 (diff) |
[XFS] kill bhv_vnode_t
All remaining bhv_vnode_t instance are in code that's more or less Linux
specific. (Well, for xfs_acl.c that could be argued, but that code is on
the removal list, too). So just do an s/bhv_vnode_t/struct inode/ over the
whole tree. We can clean up variable naming and some useless helpers
later.
SGI-PV: 981498
SGI-Modid: xfs-linux-melb:xfs-kern:31781a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_vnodeops.c')
-rw-r--r-- | fs/xfs/xfs_vnodeops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c index 21da312dd8b2..7b967c096d03 100644 --- a/fs/xfs/xfs_vnodeops.c +++ b/fs/xfs/xfs_vnodeops.c | |||
@@ -2850,7 +2850,7 @@ xfs_finish_reclaim( | |||
2850 | int sync_mode) | 2850 | int sync_mode) |
2851 | { | 2851 | { |
2852 | xfs_perag_t *pag = xfs_get_perag(ip->i_mount, ip->i_ino); | 2852 | xfs_perag_t *pag = xfs_get_perag(ip->i_mount, ip->i_ino); |
2853 | bhv_vnode_t *vp = VFS_I(ip); | 2853 | struct inode *vp = VFS_I(ip); |
2854 | 2854 | ||
2855 | if (vp && VN_BAD(vp)) | 2855 | if (vp && VN_BAD(vp)) |
2856 | goto reclaim; | 2856 | goto reclaim; |