]> www.infradead.org Git - users/jedix/linux-maple.git/commit
mm/page_alloc: only search higher order when fallback
authorAbel Wu <wuyun.abel@bytedance.com>
Wed, 3 Aug 2022 02:51:21 +0000 (10:51 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Wed, 17 Aug 2022 20:58:33 +0000 (13:58 -0700)
commit8b8002da6d9ea662175ee546fcfaa93eb87b3123
tree5d580dd0ae9d4b5a21f49452331ecb6b83e7ae2a
parent5bd1503804439d0a3ed2839a5e46d72090ae033f
mm/page_alloc: only search higher order when fallback

It seems unnecessary to search pages with order < alloc_order in
fallback allocation.

This can currently happen with ALLOC_NOFRAGMENT and alloc_order >
pageblock_order, so add a test to prevent it.

[vbabka@suse.cz: changelog addition]
Link: https://lkml.kernel.org/r/20220803025121.47018-1-wuyun.abel@bytedance.com
Signed-off-by: Abel Wu <wuyun.abel@bytedance.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Acked-by: Mel Gorman <mgorman@techsingularity.net>
Reviewed-by: Muchun Song <songmuchun@bytedance.com>
Cc: Michal Hocko <mhocko@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/page_alloc.c