Re: [PATCH] mm: fix is_pinnable_page return value

From: Zhangfei Gao
Date: Sat Jun 11 2022 - 11:51:36 EST




On 2022/6/11 下午10:56, Matthew Wilcox wrote:
On Sat, Jun 11, 2022 at 09:34:42PM +0800, Zhangfei Gao wrote:
Commit 1c563432588d ("mm: fix is_pinnable_page against a cma page")
Changes from
return !(is_zone_movable_page(page) || is_migrate_cma_page(page)) ||
is_zero_pfn(page_to_pfn(page));
to
return !(is_zone_movable_page(page) || is_zero_pfn(page_to_pfn(page)));
Mailing lists can be read as well as written.

https://lore.kernel.org/linux-mm/165490039431.944052.12458624139225785964.stgit@omen/
Oops, I am stucked in debugging the qemu hung issue, not noticed it has been fixed.

Thanks Matthew.