mm/rmap.c: use the pra.mapcount to do the check
We have the pra.mapcount already, and there is no need to call the page_mapped() which may do some complicated computing for compound page. Link: http://lkml.kernel.org/r/20190404054828.2731-1-sjhuang@iluvatar.ai Signed-off-by: Huang Shijie <sjhuang@iluvatar.ai> Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Cc: Mike Kravetz <mike.kravetz@oracle.com> Cc: Rik van Riel <riel@redhat.com> Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
cfcbfb1382
commit
059d8442ea
@ -850,7 +850,7 @@ int page_referenced(struct page *page,
|
||||
};
|
||||
|
||||
*vm_flags = 0;
|
||||
if (!page_mapped(page))
|
||||
if (!pra.mapcount)
|
||||
return 0;
|
||||
|
||||
if (!page_rmapping(page))
|
||||
|
Loading…
x
Reference in New Issue
Block a user