The patch titled ext3: remove redundant unlikely() has been added to the -mm tree. Its filename is ext3-remove-redundant-unlikely.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this 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 linux-next.patch vmalloc-remove-redundant-unlikely.patch ext3-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