diff options
author | Andrea Arcangeli <aarcange@redhat.com> | 2011-01-13 18:46:46 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-13 20:32:41 -0500 |
commit | bae9c19bf12bb2a914a8e530270f41d36cc87c63 (patch) | |
tree | 19807de9c2cb9b47fa842a549bd8c2c21579e323 /mm/mprotect.c | |
parent | e7a00c45f29c0155007aa150bf231a70fa470365 (diff) |
thp: split_huge_page_mm/vma
split_huge_page_pmd compat code. Each one of those would need to be
expanded to hundred of lines of complex code without a fully reliable
split_huge_page_pmd design.
Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
Acked-by: Rik van Riel <riel@redhat.com>
Acked-by: Mel Gorman <mel@csn.ul.ie>
Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/mprotect.c')
-rw-r--r-- | mm/mprotect.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/mprotect.c b/mm/mprotect.c index 4c5133873097..bd27db6b992b 100644 --- a/mm/mprotect.c +++ b/mm/mprotect.c | |||
@@ -88,6 +88,7 @@ static inline void change_pmd_range(struct mm_struct *mm, pud_t *pud, | |||
88 | pmd = pmd_offset(pud, addr); | 88 | pmd = pmd_offset(pud, addr); |
89 | do { | 89 | do { |
90 | next = pmd_addr_end(addr, end); | 90 | next = pmd_addr_end(addr, end); |
91 | split_huge_page_pmd(mm, pmd); | ||
91 | if (pmd_none_or_clear_bad(pmd)) | 92 | if (pmd_none_or_clear_bad(pmd)) |
92 | continue; | 93 | continue; |
93 | change_pte_range(mm, pmd, addr, next, newprot, dirty_accountable); | 94 | change_pte_range(mm, pmd, addr, next, newprot, dirty_accountable); |