Re: [PATCH 6/8] mm: don't include <linux/memremap.h> in <linux/mm.h>

From: Christoph Hellwig
Date: Thu Feb 10 2022 - 01:45:31 EST


On Thu, Feb 10, 2022 at 01:10:47PM +1100, Alistair Popple wrote:
> diff --git a/mm/gup.c b/mm/gup.c
> index cbb49abb7992..8e85c9fb8df4 100644
> --- a/mm/gup.c
> +++ b/mm/gup.c
> @@ -2007,7 +2007,6 @@ static long check_and_migrate_movable_pages(unsigned long nr_pages,
> if (!ret && list_empty(&movable_page_list) && !isolation_error_count)
> return nr_pages;
>
> - ret = 0;
> unpin_pages:

This isn't quite correct as ret is initially set to -EFAULT now. I'll
fix it by removing the early ret initialization and always using the
goto. I've also added another refactoring patch for this messy function.

I've folded the inversion of the is_device_coherent_page check in
migrate.c in as well, thanks!