The patch titled Subject: hugetlbfs: inode: remove unnecessary (void*) conversions has been added to the -mm mm-unstable branch. Its filename is hugetlbfs-inode-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/hugetlbfs-inode-remove-unnecessary-void-conversions.patch This patch will later appear in the mm-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: Li zeming <zeming@xxxxxxxxxxxx> Subject: hugetlbfs: inode: remove unnecessary (void*) conversions Date: Mon, 7 Nov 2022 09:56:59 +0800 The ei pointer does not need to cast the type. Link: https://lkml.kernel.org/r/20221107015659.3221-1-zeming@xxxxxxxxxxxx Signed-off-by: Li zeming <zeming@xxxxxxxxxxxx> Reviewed-by: Muchun Song <songmuchun@xxxxxxxxxxxxx> Cc: Mike Kravetz <mike.kravetz@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/hugetlbfs/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/hugetlbfs/inode.c~hugetlbfs-inode-remove-unnecessary-void-conversions +++ a/fs/hugetlbfs/inode.c @@ -1279,7 +1279,7 @@ static const struct address_space_operat static void init_once(void *foo) { - struct hugetlbfs_inode_info *ei = (struct hugetlbfs_inode_info *)foo; + struct hugetlbfs_inode_info *ei = foo; inode_init_once(&ei->vfs_inode); } _ Patches currently in -mm which might be from zeming@xxxxxxxxxxxx are hugetlbfs-inode-remove-unnecessary-void-conversions.patch