diff options
Diffstat (limited to 'include/asm-i386/paravirt.h')
-rw-r--r-- | include/asm-i386/paravirt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-i386/paravirt.h b/include/asm-i386/paravirt.h index 7f846a7d6bcc..99bf661a65f2 100644 --- a/include/asm-i386/paravirt.h +++ b/include/asm-i386/paravirt.h | |||
@@ -173,7 +173,7 @@ struct paravirt_ops | |||
173 | unsigned long va); | 173 | unsigned long va); |
174 | 174 | ||
175 | /* Hooks for allocating/releasing pagetable pages */ | 175 | /* Hooks for allocating/releasing pagetable pages */ |
176 | void (*alloc_pt)(u32 pfn); | 176 | void (*alloc_pt)(struct mm_struct *mm, u32 pfn); |
177 | void (*alloc_pd)(u32 pfn); | 177 | void (*alloc_pd)(u32 pfn); |
178 | void (*alloc_pd_clone)(u32 pfn, u32 clonepfn, u32 start, u32 count); | 178 | void (*alloc_pd_clone)(u32 pfn, u32 clonepfn, u32 start, u32 count); |
179 | void (*release_pt)(u32 pfn); | 179 | void (*release_pt)(u32 pfn); |
@@ -725,9 +725,9 @@ static inline void flush_tlb_others(cpumask_t cpumask, struct mm_struct *mm, | |||
725 | PVOP_VCALL3(flush_tlb_others, &cpumask, mm, va); | 725 | PVOP_VCALL3(flush_tlb_others, &cpumask, mm, va); |
726 | } | 726 | } |
727 | 727 | ||
728 | static inline void paravirt_alloc_pt(unsigned pfn) | 728 | static inline void paravirt_alloc_pt(struct mm_struct *mm, unsigned pfn) |
729 | { | 729 | { |
730 | PVOP_VCALL1(alloc_pt, pfn); | 730 | PVOP_VCALL2(alloc_pt, mm, pfn); |
731 | } | 731 | } |
732 | static inline void paravirt_release_pt(unsigned pfn) | 732 | static inline void paravirt_release_pt(unsigned pfn) |
733 | { | 733 | { |