The patch titled Subject: ipc/mqueue: remove unnecessary (void*) conversion has been added to the -mm mm-nonmm-unstable branch. Its filename is ipc-mqueue-remove-unnecessary-void-conversions.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/ipc-mqueue-remove-unnecessary-void-conversions.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ 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 ipc-mqueue-remove-unnecessary-void-conversions.patch