Merge tag 'trace-3.18-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[deliverable/linux.git] / mm / mmu_notifier.c
index 950813b1eb3656dc49e66eab4e912fff76dbfc2b..2c8da9825fe3482740ba4f4f2a0a003fabafd519 100644 (file)
@@ -107,7 +107,8 @@ void __mmu_notifier_release(struct mm_struct *mm)
  * existed or not.
  */
 int __mmu_notifier_clear_flush_young(struct mm_struct *mm,
-                                       unsigned long address)
+                                       unsigned long start,
+                                       unsigned long end)
 {
        struct mmu_notifier *mn;
        int young = 0, id;
@@ -115,7 +116,7 @@ int __mmu_notifier_clear_flush_young(struct mm_struct *mm,
        id = srcu_read_lock(&srcu);
        hlist_for_each_entry_rcu(mn, &mm->mmu_notifier_mm->list, hlist) {
                if (mn->ops->clear_flush_young)
-                       young |= mn->ops->clear_flush_young(mn, mm, address);
+                       young |= mn->ops->clear_flush_young(mn, mm, start, end);
        }
        srcu_read_unlock(&srcu, id);
 
This page took 0.095592 seconds and 5 git commands to generate.