[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20221107015659.3221-1-zeming@nfschina.com>
Date: Mon, 7 Nov 2022 09:56:59 +0800
From: Li zeming <zeming@...china.com>
To: mike.kravetz@...cle.com, songmuchun@...edance.com
Cc: linux-mm@...ck.org, linux-kernel@...r.kernel.org,
Li zeming <zeming@...china.com>
Subject: [PATCH] hugetlbfs: inode: Remove unnecessary (void*) conversions
The ei pointer does not need to cast the type.
Signed-off-by: Li zeming <zeming@...china.com>
---
fs/hugetlbfs/inode.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c
index f7a5b5124d8a..0728531992a2 100644
--- a/fs/hugetlbfs/inode.c
+++ b/fs/hugetlbfs/inode.c
@@ -1160,7 +1160,7 @@ static const struct address_space_operations hugetlbfs_aops = {
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);
}
--
2.18.2
Powered by blists - more mailing lists