mm: report success more often from filemap_map_folio_range()
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Wed, 20 Sep 2023 03:53:35 +0000 (04:53 +0100)
committerAndrew Morton <akpm@linux-foundation.org>
Sat, 30 Sep 2023 00:20:45 +0000 (17:20 -0700)
commita501a0703044f00180d7697b32cacd7ff46d02d8
tree5f64bdf00b33bd11203e270d0b8d0ab2912d86dd
parent7c3151585730b7095287be8162b846d31e6eee61
mm: report success more often from filemap_map_folio_range()

Even though we had successfully mapped the relevant page, we would rarely
return success from filemap_map_folio_range().  That leads to falling back
from the VMA lock path to the mmap_lock path, which is a speed &
scalability issue.  Found by inspection.

Link: https://lkml.kernel.org/r/20230920035336.854212-1-willy@infradead.org
Fixes: 617c28ecab22 ("filemap: batch PTE mappings")
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Yin Fengwei <fengwei.yin@intel.com>
Cc: Dave Hansen <dave.hansen@intel.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/filemap.c