The quilt patch titled Subject: ipc/mqueue: remove unnecessary (void*) conversion has been removed from the -mm tree. Its filename was ipc-mqueue-remove-unnecessary-void-conversions.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: Yu Zhe <yuzhe@xxxxxxxxxxxx> Subject: ipc/mqueue: remove unnecessary (void*) conversion Date: Tue, 28 Jun 2022 10:12:51 +0800 Remove unnecessary void* type casting. Link: https://lkml.kernel.org/r/20220628021251.17197-1-yuzhe@xxxxxxxxxxxx Signed-off-by: Yu Zhe <yuzhe@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- ipc/mqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/ipc/mqueue.c~ipc-mqueue-remove-unnecessary-void-conversions +++ a/ipc/mqueue.c @@ -489,7 +489,7 @@ static struct vfsmount *mq_create_mount( static void init_once(void *foo) { - struct mqueue_inode_info *p = (struct mqueue_inode_info *) foo; + struct mqueue_inode_info *p = foo; inode_init_once(&p->vfs_inode); } _ Patches currently in -mm which might be from yuzhe@xxxxxxxxxxxx are