* [PATCH] mm/page_alloc: Add some comments for specific scenarios to make it easier to understand why unmovable and reclaimable allocations can steal from moveable pageblocks by default.
@ 2024-09-18 4:58 Xiang Gao
2024-09-19 9:50 ` Anshuman Khandual
0 siblings, 1 reply; 2+ messages in thread
From: Xiang Gao @ 2024-09-18 4:58 UTC (permalink / raw)
To: akpm; +Cc: linux-mm, linux-kernel, gaoxiang17
From: gaoxiang17 <gaoxiang17@xiaomi.com>
Signed-off-by: gaoxiang17 <gaoxiang17@xiaomi.com>
---
mm/page_alloc.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 91ace8ca97e2..cc8a7a0772cb 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1818,6 +1818,13 @@ static bool can_steal_fallback(unsigned int order, int start_mt)
if (order >= pageblock_order)
return true;
+ /*
+ * The reasons why unmovable and reclaimable allocations can steal from
+ * moveable pageblocks by default aside from the above comments, a different
+ * and better understood scenario is: System initializations are all movable
+ * pageblocks. If you want to alloc unmovable and reclaimable pages,
+ * you have to steal from moveable pageblocks or it may fail.
+ */
if (order >= pageblock_order / 2 ||
start_mt == MIGRATE_RECLAIMABLE ||
start_mt == MIGRATE_UNMOVABLE ||
--
2.34.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] mm/page_alloc: Add some comments for specific scenarios to make it easier to understand why unmovable and reclaimable allocations can steal from moveable pageblocks by default.
2024-09-18 4:58 [PATCH] mm/page_alloc: Add some comments for specific scenarios to make it easier to understand why unmovable and reclaimable allocations can steal from moveable pageblocks by default Xiang Gao
@ 2024-09-19 9:50 ` Anshuman Khandual
0 siblings, 0 replies; 2+ messages in thread
From: Anshuman Khandual @ 2024-09-19 9:50 UTC (permalink / raw)
To: Xiang Gao, akpm; +Cc: linux-mm, linux-kernel, gaoxiang17
The subject line is too big.
On 9/18/24 10:28, Xiang Gao wrote:
> From: gaoxiang17 <gaoxiang17@xiaomi.com>
Also there is no commit message here as well.
Please do follow the instructions for submitting patches as explained
in the documentation below and then resend the patch.
https://www.kernel.org/doc/html/v6.11/process/submitting-patches.html
>
> Signed-off-by: gaoxiang17 <gaoxiang17@xiaomi.com>
> ---
> mm/page_alloc.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 91ace8ca97e2..cc8a7a0772cb 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -1818,6 +1818,13 @@ static bool can_steal_fallback(unsigned int order, int start_mt)
> if (order >= pageblock_order)
> return true;
>
> + /*
> + * The reasons why unmovable and reclaimable allocations can steal from
> + * moveable pageblocks by default aside from the above comments, a different
> + * and better understood scenario is: System initializations are all movable
> + * pageblocks. If you want to alloc unmovable and reclaimable pages,
> + * you have to steal from moveable pageblocks or it may fail.
> + */
Although there are sufficient comments for this particular function, it
does seem like this new comment tries to explain why using unmovable and
reclaimable migrate types as steal fallback makes sense. But this can use
some clean up and rewriting.
> if (order >= pageblock_order / 2 ||
> start_mt == MIGRATE_RECLAIMABLE ||
> start_mt == MIGRATE_UNMOVABLE ||
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-19 9:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-18 4:58 [PATCH] mm/page_alloc: Add some comments for specific scenarios to make it easier to understand why unmovable and reclaimable allocations can steal from moveable pageblocks by default Xiang Gao
2024-09-19 9:50 ` Anshuman Khandual
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox