The patch titled Subject: mm/memory-failure.c: remove unnecessary (void*) conversions has been added to the -mm tree. Its filename is mm-remove-unnecessary-void-conversions.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-remove-unnecessary-void-conversions.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-remove-unnecessary-void-conversions.patch 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 and is updated there every 3-4 working days ------------------------------------------------------ From: liqiong <liqiong@xxxxxxxxxxxx> Subject: mm/memory-failure.c: remove unnecessary (void*) conversions No need cast (void*) to (struct hwp_walk*). Link: https://lkml.kernel.org/r/20220322142826.25939-1-liqiong@xxxxxxxxxxxx Signed-off-by: liqiong <liqiong@xxxxxxxxxxxx> Acked-by: Naoya Horiguchi <naoya.horiguchi@xxxxxxx> Reviewed-by: Muchun Song <songmuchun@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memory-failure.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/mm/memory-failure.c~mm-remove-unnecessary-void-conversions +++ a/mm/memory-failure.c @@ -622,7 +622,7 @@ static int check_hwpoisoned_pmd_entry(pm static int hwpoison_pte_range(pmd_t *pmdp, unsigned long addr, unsigned long end, struct mm_walk *walk) { - struct hwp_walk *hwp = (struct hwp_walk *)walk->private; + struct hwp_walk *hwp = walk->private; int ret = 0; pte_t *ptep, *mapped_pte; spinlock_t *ptl; @@ -656,7 +656,7 @@ static int hwpoison_hugetlb_range(pte_t unsigned long addr, unsigned long end, struct mm_walk *walk) { - struct hwp_walk *hwp = (struct hwp_walk *)walk->private; + struct hwp_walk *hwp = walk->private; pte_t pte = huge_ptep_get(ptep); struct hstate *h = hstate_vma(walk->vma); _ Patches currently in -mm which might be from liqiong@xxxxxxxxxxxx are mm-remove-unnecessary-void-conversions.patch