diff options
Diffstat (limited to 'mm/swapfile.c')
| -rw-r--r-- | mm/swapfile.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/swapfile.c b/mm/swapfile.c index 74f1102e874..ce5dda6d604 100644 --- a/mm/swapfile.c +++ b/mm/swapfile.c @@ -699,7 +699,7 @@ int free_swap_and_cache(swp_entry_t entry)  	struct swap_info_struct *p;  	struct page *page = NULL; -	if (is_migration_entry(entry)) +	if (non_swap_entry(entry))  		return 1;  	p = swap_info_get(entry); @@ -2085,7 +2085,7 @@ static int __swap_duplicate(swp_entry_t entry, bool cache)  	int count;  	bool has_cache; -	if (is_migration_entry(entry)) +	if (non_swap_entry(entry))  		return -EINVAL;  	type = swp_type(entry);  |