diff options
author | Barry Naujok <bnaujok@sgi.com> | 2008-04-09 22:22:07 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-04-17 22:00:12 -0400 |
commit | 556b8b166c9514b5f940047a41dad8fe8cd9a778 (patch) | |
tree | 22fdec0d211d9c93a6d8d60b591591f7c9a8de1b /fs/xfs/xfs_utils.c | |
parent | 7c9ef85c5672ae316aafd7bbe0bbadebe90301e6 (diff) |
[XFS] remove bhv_vname_t and xfs_rename code
SGI-PV: 976035
SGI-Modid: xfs-linux-melb:xfs-kern:30804a
Signed-off-by: Barry Naujok <bnaujok@sgi.com>
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_utils.c')
-rw-r--r-- | fs/xfs/xfs_utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_utils.c b/fs/xfs/xfs_utils.c index 47c45ff4a067..2b8dc7e40772 100644 --- a/fs/xfs/xfs_utils.c +++ b/fs/xfs/xfs_utils.c | |||
@@ -45,7 +45,7 @@ int | |||
45 | xfs_dir_lookup_int( | 45 | xfs_dir_lookup_int( |
46 | xfs_inode_t *dp, | 46 | xfs_inode_t *dp, |
47 | uint lock_mode, | 47 | uint lock_mode, |
48 | bhv_vname_t *dentry, | 48 | struct xfs_name *name, |
49 | xfs_ino_t *inum, | 49 | xfs_ino_t *inum, |
50 | xfs_inode_t **ipp) | 50 | xfs_inode_t **ipp) |
51 | { | 51 | { |
@@ -53,7 +53,7 @@ xfs_dir_lookup_int( | |||
53 | 53 | ||
54 | xfs_itrace_entry(dp); | 54 | xfs_itrace_entry(dp); |
55 | 55 | ||
56 | error = xfs_dir_lookup(NULL, dp, VNAME(dentry), VNAMELEN(dentry), inum); | 56 | error = xfs_dir_lookup(NULL, dp, name, inum); |
57 | if (!error) { | 57 | if (!error) { |
58 | /* | 58 | /* |
59 | * Unlock the directory. We do this because we can't | 59 | * Unlock the directory. We do this because we can't |