diff options
author | Christoph Hellwig <hch@lst.de> | 2005-06-30 05:59:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-30 11:45:11 -0400 |
commit | 1c71e22e4e4b4e7261f147635518d5634136c226 (patch) | |
tree | 738d87d2d80fffd774e2b998e675dbe6d587ca53 /fs/udf | |
parent | 532a39a3754a3b8ce507414863023f8db21f9a7c (diff) |
[PATCH] udf_find_entry() cleanup
udf_find_entry can never be called with a NULL argument, so we shouldn't
check for it.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/udf')
-rw-r--r-- | fs/udf/namei.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/udf/namei.c b/fs/udf/namei.c index 4673157b262f..ac191ed7df0a 100644 --- a/fs/udf/namei.c +++ b/fs/udf/namei.c | |||
@@ -164,11 +164,7 @@ udf_find_entry(struct inode *dir, struct dentry *dentry, | |||
164 | uint32_t extoffset, elen, offset; | 164 | uint32_t extoffset, elen, offset; |
165 | struct buffer_head *bh = NULL; | 165 | struct buffer_head *bh = NULL; |
166 | 166 | ||
167 | if (!dir) | ||
168 | return NULL; | ||
169 | |||
170 | size = (udf_ext0_offset(dir) + dir->i_size) >> 2; | 167 | size = (udf_ext0_offset(dir) + dir->i_size) >> 2; |
171 | |||
172 | f_pos = (udf_ext0_offset(dir) >> 2); | 168 | f_pos = (udf_ext0_offset(dir) >> 2); |
173 | 169 | ||
174 | fibh->soffset = fibh->eoffset = (f_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2; | 170 | fibh->soffset = fibh->eoffset = (f_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2; |