The patch titled ext3: remove redundant unlikely() has been removed from the -mm tree. Its filename was ext3-remove-redundant-unlikely.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: ext3: remove redundant unlikely() From: Tobias Klauser <tklauser@xxxxxxxxxx> IS_ERR() already implies unlikely(), so it can be omitted here. Signed-off-by: Tobias Klauser <tklauser@xxxxxxxxxx> Cc: Jan Kara <jack@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ext3/namei.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/ext3/namei.c~ext3-remove-redundant-unlikely fs/ext3/namei.c --- a/fs/ext3/namei.c~ext3-remove-redundant-unlikely +++ a/fs/ext3/namei.c @@ -1047,7 +1047,7 @@ static struct dentry *ext3_lookup(struct return ERR_PTR(-EIO); } inode = ext3_iget(dir->i_sb, ino); - if (unlikely(IS_ERR(inode))) { + if (IS_ERR(inode)) { if (PTR_ERR(inode) == -ESTALE) { ext3_error(dir->i_sb, __func__, "deleted inode referenced: %lu", _ Patches currently in -mm which might be from tklauser@xxxxxxxxxx are origin.patch linux-next.patch vmalloc-remove-redundant-unlikely.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