The patch titled ext3: cleanup dead code in ext3_add_entry() has been removed from the -mm tree. Its filename is ext3-cleanup-dead-code-in-ext3_add_entry.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ext3: cleanup dead code in ext3_add_entry() From: Johann Lombardi <johann.lombardi@xxxxxxxx> The variables nlen and rlen are defined/initialized but not used in ext3_add_entry(). Signed-off-by: Johann Lombardi <johann.lombardi@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/ext3/namei.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff -puN fs/ext3/namei.c~ext3-cleanup-dead-code-in-ext3_add_entry fs/ext3/namei.c --- a/fs/ext3/namei.c~ext3-cleanup-dead-code-in-ext3_add_entry +++ a/fs/ext3/namei.c @@ -1379,7 +1379,6 @@ static int ext3_add_entry (handle_t *han 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 *han 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); } _ Patches currently in -mm which might be from johann.lombardi@xxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html