The patch titled Subject: mm-swapfile-fix-and-annotate-various-data-races-v2 has been removed from the -mm tree. Its filename was mm-swapfile-fix-and-annotate-various-data-races-v2.patch This patch was dropped because it was folded into mm-swapfile-fix-and-annotate-various-data-races.patch ------------------------------------------------------ From: Qian Cai <cai@xxxxxx> Subject: mm-swapfile-fix-and-annotate-various-data-races-v2 add a missing annotation for si->flags in memory.c Link: http://lkml.kernel.org/r/1581612647-5958-1-git-send-email-cai@xxxxxx Signed-off-by: Qian Cai <cai@xxxxxx> Cc: Marco Elver <elver@xxxxxxxxxx> Cc: Hugh Dickins <hughd@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memory.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/mm/memory.c~mm-swapfile-fix-and-annotate-various-data-races-v2 +++ a/mm/memory.c @@ -3130,8 +3130,8 @@ vm_fault_t do_swap_page(struct vm_fault if (!page) { struct swap_info_struct *si = swp_swap_info(entry); - if (si->flags & SWP_SYNCHRONOUS_IO && - __swap_count(entry) == 1) { + if (data_race(si->flags & SWP_SYNCHRONOUS_IO) && + __swap_count(entry) == 1) { /* skip swapcache */ page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vmf->address); _ Patches currently in -mm which might be from cai@xxxxxx are mm-kmemleak-silence-kcsan-splats-in-checksum.patch mm-frontswap-mark-various-intentional-data-races.patch mm-page_io-mark-various-intentional-data-races.patch mm-swap_state-mark-various-intentional-data-races.patch mm-swapfile-fix-and-annotate-various-data-races.patch mm-page_counter-fix-various-data-races-at-memsw.patch mm-memcontrol-fix-a-data-race-in-scan-count.patch mm-list_lru-fix-a-data-race-in-list_lru_count_one.patch mm-mempool-fix-a-data-race-in-mempool_free.patch mm-rmap-annotate-a-data-race-at-tlb_flush_batched.patch mm-swap-annotate-data-races-for-lru_rotate_pvecs.patch mm-annotate-a-data-race-in-page_zonenum.patch fork-silence-a-false-postive-warning-in-__mmdrop.patch