The patch titled Subject: mm,shmem: Fix a typo in shmem_swapin_page() has been added to the -mm tree. Its filename is mmshmem-fix-a-typo-in-shmem_swapin_page.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mmshmem-fix-a-typo-in-shmem_swapin_page.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mmshmem-fix-a-typo-in-shmem_swapin_page.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: Huang Ying <ying.huang@xxxxxxxxx> Subject: mm,shmem: Fix a typo in shmem_swapin_page() "-" is missing before "EINVAL". Link: https://lkml.kernel.org/r/20210723080000.93953-1-ying.huang@xxxxxxxxx Fixes: 2efa33fc7f6e ("mm/shmem: fix shmem_swapin() race with swapoff") Signed-off-by: "Huang, Ying" <ying.huang@xxxxxxxxx> Cc: Miaohe Lin <linmiaohe@xxxxxxxxxx> Cc: Hugh Dickins <hughd@xxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxx> Cc: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Cc: Matthew Wilcox <willy@xxxxxxxxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Cc: David Hildenbrand <david@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/shmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/shmem.c~mmshmem-fix-a-typo-in-shmem_swapin_page +++ a/mm/shmem.c @@ -1708,7 +1708,7 @@ static int shmem_swapin_page(struct inod /* Prevent swapoff from happening to us. */ si = get_swap_device(swap); if (!si) { - error = EINVAL; + error = -EINVAL; goto failed; } /* Look it up and read it in.. */ _ Patches currently in -mm which might be from ying.huang@xxxxxxxxx are mmshmem-fix-a-typo-in-shmem_swapin_page.patch mmdo_huge_pmd_numa_page-remove-unnecessary-tlb-flushing-code.patch mm-migrate-add-sysfs-interface-to-enable-reclaim-migration.patch