|
@@ -391,13 +391,6 @@ static int mn_clear_flush_young(struct mmu_notifier *mn,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static void mn_invalidate_page(struct mmu_notifier *mn,
|
|
|
- struct mm_struct *mm,
|
|
|
- unsigned long address)
|
|
|
-{
|
|
|
- __mn_flush_page(mn, address);
|
|
|
-}
|
|
|
-
|
|
|
static void mn_invalidate_range(struct mmu_notifier *mn,
|
|
|
struct mm_struct *mm,
|
|
|
unsigned long start, unsigned long end)
|
|
@@ -436,7 +429,6 @@ static void mn_release(struct mmu_notifier *mn, struct mm_struct *mm)
|
|
|
static const struct mmu_notifier_ops iommu_mn = {
|
|
|
.release = mn_release,
|
|
|
.clear_flush_young = mn_clear_flush_young,
|
|
|
- .invalidate_page = mn_invalidate_page,
|
|
|
.invalidate_range = mn_invalidate_range,
|
|
|
};
|
|
|
|