[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140514092948.GA17391@server-36.huawei.corp>
Date: Wed, 14 May 2014 11:29:48 +0200
From: Anthony Iliopoulos <anthony.iliopoulos@...wei.com>
To: Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...hat.com>,
"H. Peter Anvin" <hpa@...or.com>
CC: <x86@...nel.org>, <linux-kernel@...r.kernel.org>,
"Kirill A. Shutemov" <kirill.shutemov@...ux.intel.com>,
Dave Hansen <dave@...1.net>,
Shay Goikhman <shay.goikhman@...wei.com>,
Paul Mundt <paul.mundt@...wei.com>,
"Carlos Villavieja" <villavieja@....utexas.edu>,
Nacho Navarro <nacho.navarro@....es>,
Avi Mendelson <avi.mendelson@....technion.ac.il>,
Yoav Etsion <yetsion@....technion.ac.il>
Subject: [PATCH] x86, hugetlb: add missing TLB page invalidation for
hugetlb_cow()
The invalidation is required in order to maintain proper semantics
under CoW conditions. In scenarios where a process clones several
threads, a thread operating on a core whose DTLB entry for a
particular hugepage has not been invalidated, will be reading from
the hugepage that belongs to the forked child process, even after
hugetlb_cow().
The thread will not see the updated page as long as the stale DTLB
entry remains cached, the thread attempts to write into the page,
the child process exits, or the thread gets migrated to a different
processor.
Signed-off-by: Anthony Iliopoulos <anthony.iliopoulos@...wei.com>
Suggested-by: Shay Goikhman <shay.goikhman@...wei.com>
---
arch/x86/include/asm/hugetlb.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/x86/include/asm/hugetlb.h b/arch/x86/include/asm/hugetlb.h
index a809121..68c0539 100644
--- a/arch/x86/include/asm/hugetlb.h
+++ b/arch/x86/include/asm/hugetlb.h
@@ -52,6 +52,7 @@ static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm,
static inline void huge_ptep_clear_flush(struct vm_area_struct *vma,
unsigned long addr, pte_t *ptep)
{
+ ptep_clear_flush(vma, addr, ptep);
}
static inline int huge_pte_none(pte_t pte)
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists