diff options
author | Mark Fasheh <mark.fasheh@oracle.com> | 2007-09-11 18:22:06 -0400 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2007-10-12 14:54:38 -0400 |
commit | be94d11704ef79030fd2e6a0c41b4a7f65f9e860 (patch) | |
tree | 10b060625c464db127210acc00e8aa80b43ce6f3 /fs/ocfs2/export.c | |
parent | 0bfbbf62a8b5a129ba2c689283bfece80a601aba (diff) |
ocfs2: Provide convenience function for ino lookup
A couple paths which needed to just match a parent dir + name pair to an
inode number were a bit messy because they had to deal with
ocfs2_find_files_on_disk() which returns a larger number of values. Provide
a convenience function, ocfs2_lookup_ino_from_name() which internalizes all
the extra accounting.
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Reviewed-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2/export.c')
-rw-r--r-- | fs/ocfs2/export.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/fs/ocfs2/export.c b/fs/ocfs2/export.c index bc48177bd183..c3bbc198f9ce 100644 --- a/fs/ocfs2/export.c +++ b/fs/ocfs2/export.c | |||
@@ -88,8 +88,6 @@ static struct dentry *ocfs2_get_parent(struct dentry *child) | |||
88 | struct dentry *parent; | 88 | struct dentry *parent; |
89 | struct inode *inode; | 89 | struct inode *inode; |
90 | struct inode *dir = child->d_inode; | 90 | struct inode *dir = child->d_inode; |
91 | struct buffer_head *dirent_bh = NULL; | ||
92 | struct ocfs2_dir_entry *dirent; | ||
93 | 91 | ||
94 | mlog_entry("(0x%p, '%.*s')\n", child, | 92 | mlog_entry("(0x%p, '%.*s')\n", child, |
95 | child->d_name.len, child->d_name.name); | 93 | child->d_name.len, child->d_name.name); |
@@ -105,8 +103,7 @@ static struct dentry *ocfs2_get_parent(struct dentry *child) | |||
105 | goto bail; | 103 | goto bail; |
106 | } | 104 | } |
107 | 105 | ||
108 | status = ocfs2_find_files_on_disk("..", 2, &blkno, dir, &dirent_bh, | 106 | status = ocfs2_lookup_ino_from_name(dir, "..", 2, &blkno); |
109 | &dirent); | ||
110 | if (status < 0) { | 107 | if (status < 0) { |
111 | parent = ERR_PTR(-ENOENT); | 108 | parent = ERR_PTR(-ENOENT); |
112 | goto bail_unlock; | 109 | goto bail_unlock; |
@@ -131,9 +128,6 @@ static struct dentry *ocfs2_get_parent(struct dentry *child) | |||
131 | bail_unlock: | 128 | bail_unlock: |
132 | ocfs2_meta_unlock(dir, 0); | 129 | ocfs2_meta_unlock(dir, 0); |
133 | 130 | ||
134 | if (dirent_bh) | ||
135 | brelse(dirent_bh); | ||
136 | |||
137 | bail: | 131 | bail: |
138 | mlog_exit_ptr(parent); | 132 | mlog_exit_ptr(parent); |
139 | 133 | ||