mm: Add folio_raw_mapping()
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Fri, 7 May 2021 15:17:34 +0000 (11:17 -0400)
committerMatthew Wilcox (Oracle) <willy@infradead.org>
Mon, 27 Sep 2021 13:27:32 +0000 (09:27 -0400)
commit646010009d3541b8cb4f803dcb4b8d0da2f22579
tree6193139e6e17ff4d7ef4299b80cdd067f98421da
parentbf6bd276b374d44f6e7146d52aa6097eb91384a3
mm: Add folio_raw_mapping()

Convert __page_rmapping to folio_raw_mapping and move it to mm/internal.h.
It's only a couple of instructions (load and mask), so it's definitely
going to be cheaper to inline it than call it.  Leave page_rmapping
out of line.  Change page_anon_vma() to not call folio_raw_mapping() --
it's more efficient to do the subtraction than the mask.

Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: David Howells <dhowells@redhat.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
mm/internal.h
mm/util.c