diff options
Diffstat (limited to 'arch/x86/lguest/boot.c')
-rw-r--r-- | arch/x86/lguest/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index 4f311e40d0aa..943a75ef70b9 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c | |||
@@ -535,7 +535,7 @@ static void lguest_set_pte_at(struct mm_struct *mm, unsigned long addr, | |||
535 | static void lguest_set_pmd(pmd_t *pmdp, pmd_t pmdval) | 535 | static void lguest_set_pmd(pmd_t *pmdp, pmd_t pmdval) |
536 | { | 536 | { |
537 | native_set_pmd(pmdp, pmdval); | 537 | native_set_pmd(pmdp, pmdval); |
538 | lazy_hcall2(LHCALL_SET_PMD, __pa(pmdp) & PAGE_MASK, | 538 | lazy_hcall2(LHCALL_SET_PGD, __pa(pmdp) & PAGE_MASK, |
539 | (__pa(pmdp) & (PAGE_SIZE - 1)) / sizeof(pmd_t)); | 539 | (__pa(pmdp) & (PAGE_SIZE - 1)) / sizeof(pmd_t)); |
540 | } | 540 | } |
541 | 541 | ||