So we do not want to allow sleep during call to mmu_notifier_invalidate_page() but some code do not have surrounding mmu_notifier_invalidate_range_start()/ mmu_notifier_invalidate_range_end() or mmu_notifier_invalidate_range()
This patch serie just make sure that there is at least a call (outside spinlock section) to mmu_notifier_invalidate_range() after mmu_notifier_invalidate_page() This fix issue with AMD IOMMU v2 while avoiding to introduce issue for others user of the mmu_notifier API. For releavent threads see: https://lkml.kernel.org/r/[email protected] https://lkml.kernel.org/r/[email protected] https://marc.info/?l=kvm&m=150327081325160&w=2 Signed-off-by: Jérôme Glisse <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Bernhard Held <[email protected]> Cc: Adam Borowski <[email protected]> Cc: Andrea Arcangeli <[email protected]> Cc: Radim Krčmář <[email protected]> Cc: Wanpeng Li <[email protected]> Cc: Paolo Bonzini <[email protected]> Cc: Takashi Iwai <[email protected]> Cc: Nadav Amit <[email protected]> Cc: Mike Galbraith <[email protected]> Cc: Kirill A. Shutemov <[email protected]> Cc: axie <[email protected]> Cc: Andrew Morton <[email protected]> Cc: Dan Williams <[email protected]> Cc: Ross Zwisler <[email protected]> Jérôme Glisse (4): mm/mmu_notifier: document new behavior for mmu_notifier_invalidate_page() dax/mmu_notifier: update to new mmu_notifier semantic mm/rmap: update to new mmu_notifier_invalidate_page() semantic iommu/amd: update to new mmu_notifier_invalidate_page() semantic drivers/iommu/amd_iommu_v2.c | 8 -------- fs/dax.c | 8 ++++++-- include/linux/mmu_notifier.h | 6 ++++++ mm/rmap.c | 18 +++++++++++++++++- 4 files changed, 29 insertions(+), 11 deletions(-) -- 2.13.5

