diff options
Diffstat (limited to 'mm/mincore.c')
| -rw-r--r-- | mm/mincore.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/mincore.c b/mm/mincore.c index cd69b9db0081..2d5be013a25a 100644 --- a/mm/mincore.c +++ b/mm/mincore.c @@ -33,7 +33,7 @@ static int mincore_hugetlb(pte_t *pte, unsigned long hmask, unsigned long addr,  	 * Hugepages under user process are always in RAM and never  	 * swapped out, but theoretically it needs to be checked.  	 */ -	present = pte && !huge_pte_none(huge_ptep_get(pte)); +	present = pte && !huge_pte_none_mostly(huge_ptep_get(pte));  	for (; addr != end; vec++, addr += PAGE_SIZE)  		*vec = present;  	walk->private = vec; @@ -61,7 +61,7 @@ static unsigned char mincore_page(struct address_space *mapping, pgoff_t index)  	 * tmpfs's .fault). So swapped out tmpfs mappings are tested here.  	 */  	folio = filemap_get_incore_folio(mapping, index); -	if (folio) { +	if (!IS_ERR(folio)) {  		present = folio_test_uptodate(folio);  		folio_put(folio);  	}  |