Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 92eeccd8 authored by Johann Lombardi's avatar Johann Lombardi Committed by Linus Torvalds
Browse files

[PATCH] ext3: cleanup dead code in ext3_add_entry()



The variables nlen and rlen are defined/initialized but not used in
ext3_add_entry().

Signed-off-by: default avatarJohann Lombardi <johann.lombardi@bull.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 0710d36a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1379,7 +1379,6 @@ static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
	int	dx_fallback=0;
#endif
	unsigned blocksize;
	unsigned nlen, rlen;
	u32 block, blocks;

	sb = dir->i_sb;
@@ -1417,8 +1416,7 @@ static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
		return retval;
	de = (struct ext3_dir_entry_2 *) bh->b_data;
	de->inode = 0;
	de->rec_len = cpu_to_le16(rlen = blocksize);
	nlen = 0;
	de->rec_len = cpu_to_le16(blocksize);
	return add_dirent_to_buf(handle, dentry, inode, de, bh);
}