linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm: hugetlb: Add missing cache flushing in hugetlb_unshare_all_pmds()
@ 2022-04-24  6:33 Baolin Wang
  2022-04-24  7:45 ` Muchun Song
  0 siblings, 1 reply; 4+ messages in thread
From: Baolin Wang @ 2022-04-24  6:33 UTC (permalink / raw)
  To: akpm, mike.kravetz
  Cc: peterx, songmuchun, baolin.wang, linux-mm, linux-kernel

Missed calling flush_cache_range() before removing the sharing PMD entrires,
otherwise data consistence issue may be occurred on some architectures whose
caches are strict and require a virtual–>physical translation to exist for
a virtual address. Thus add it.

Fixes: 6dfeaff93be1 ("hugetlb/userfaultfd: unshare all pmds for hugetlbfs when register wp")
Signed-off-by: Baolin Wang <baolin.wang@linux.alibaba.com>
---
 mm/hugetlb.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index 74c9964..1945dfb 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -7058,6 +7058,7 @@ void hugetlb_unshare_all_pmds(struct vm_area_struct *vma)
 	if (start >= end)
 		return;
 
+	flush_cache_range(vma, start, end);
 	/*
 	 * No need to call adjust_range_if_pmd_sharing_possible(), because
 	 * we have already done the PUD_SIZE alignment.
-- 
1.8.3.1



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-04-26 17:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-24  6:33 [PATCH] mm: hugetlb: Add missing cache flushing in hugetlb_unshare_all_pmds() Baolin Wang
2022-04-24  7:45 ` Muchun Song
2022-04-24 10:03   ` Baolin Wang
2022-04-26 17:34   ` Peter Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox