diff options
author | Mariusz Kozlowski <m.kozlowski@tuxland.pl> | 2008-02-06 01:40:18 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-06 10:41:21 -0800 |
commit | e1d7ae24a23f1f366d6c5408f1ad11db69a748c6 (patch) | |
tree | 07da7753933ca5fac3c9af4eddb8973eff9675cd /fs | |
parent | 859cb93679929edb88642414bf37789ea263bc47 (diff) | |
download | op-kernel-dev-e1d7ae24a23f1f366d6c5408f1ad11db69a748c6.zip op-kernel-dev-e1d7ae24a23f1f366d6c5408f1ad11db69a748c6.tar.gz |
ext3: remove unused code from ext3_find_entry()
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext3/namei.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/ext3/namei.c b/fs/ext3/namei.c index 4ab6f76..92b83b0 100644 --- a/fs/ext3/namei.c +++ b/fs/ext3/namei.c @@ -860,14 +860,10 @@ static struct buffer_head * ext3_find_entry (struct dentry *dentry, int nblocks, i, err; struct inode *dir = dentry->d_parent->d_inode; int namelen; - const u8 *name; - unsigned blocksize; *res_dir = NULL; sb = dir->i_sb; - blocksize = sb->s_blocksize; namelen = dentry->d_name.len; - name = dentry->d_name.name; if (namelen > EXT3_NAME_LEN) return NULL; if (is_dx(dir)) { |