thp: add native_set_pmd_at
Used by paravirt and not paravirt set_pmd_at. 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: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
8dd60a3a65
commit
0a47de52db
1 changed files with 6 additions and 0 deletions
|
@ -530,6 +530,12 @@ static inline void native_set_pte_at(struct mm_struct *mm, unsigned long addr,
|
||||||
native_set_pte(ptep, pte);
|
native_set_pte(ptep, pte);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void native_set_pmd_at(struct mm_struct *mm, unsigned long addr,
|
||||||
|
pmd_t *pmdp , pmd_t pmd)
|
||||||
|
{
|
||||||
|
native_set_pmd(pmdp, pmd);
|
||||||
|
}
|
||||||
|
|
||||||
#ifndef CONFIG_PARAVIRT
|
#ifndef CONFIG_PARAVIRT
|
||||||
/*
|
/*
|
||||||
* Rules for using pte_update - it must be called after any PTE update which
|
* Rules for using pte_update - it must be called after any PTE update which
|
||||||
|
|
Loading…
Reference in a new issue