The quilt patch titled Subject: ipc: mqueue: remove unnecessary conditionals has been removed from the -mm tree. Its filename was ipc-mqueue-remove-unnecessary-conditionals.patch This patch was dropped because it was merged into the mm-nonmm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Jingyu Wang <jingyuwang_vip@xxxxxxx> Subject: ipc: mqueue: remove unnecessary conditionals Date: Fri, 9 Sep 2022 02:54:52 +0800 iput() already handles null and non-null parameters, so there is no need to use if(). Link: https://lkml.kernel.org/r/20220908185452.76590-1-jingyuwang_vip@xxxxxxx Signed-off-by: Jingyu Wang <jingyuwang_vip@xxxxxxx> Acked-by: Roman Gushchin <roman.gushchin@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- ipc/mqueue.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/ipc/mqueue.c~ipc-mqueue-remove-unnecessary-conditionals +++ a/ipc/mqueue.c @@ -986,8 +986,7 @@ SYSCALL_DEFINE1(mq_unlink, const char __ out_unlock: inode_unlock(d_inode(mnt->mnt_root)); - if (inode) - iput(inode); + iput(inode); mnt_drop_write(mnt); out_name: putname(name); _ Patches currently in -mm which might be from jingyuwang_vip@xxxxxxx are