The quilt patch titled Subject: mm, docs: fix comments that mention mem_hotplug_end() has been removed from the -mm tree. Its filename was mm-docs-fix-comments-that-mention-mem_hotplug_end.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Yun-Ze Li <p76091292@xxxxxxxxxxxxxx> Subject: mm, docs: fix comments that mention mem_hotplug_end() Date: Mon, 20 Jun 2022 07:15:16 +0000 Comments that mention mem_hotplug_end() are confusing as there is no function called mem_hotplug_end(). Fix them by replacing all the occurences of mem_hotplug_end() in the comments with mem_hotplug_done(). [akpm@xxxxxxxxxxxxxxxxxxxx: grammatical fixes] Link: https://lkml.kernel.org/r/20220620071516.1286101-1-p76091292@xxxxxxxxxxxxxx Signed-off-by: Yun-Ze Li <p76091292@xxxxxxxxxxxxxx> Cc: Souptick Joarder <jrdr.linux@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mmzone.h | 6 +++--- mm/compaction.c | 2 +- mm/vmscan.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) --- a/include/linux/mmzone.h~mm-docs-fix-comments-that-mention-mem_hotplug_end +++ a/include/linux/mmzone.h @@ -591,8 +591,8 @@ struct zone { * give them a chance of being in the same cacheline. * * Write access to present_pages at runtime should be protected by - * mem_hotplug_begin/end(). Any reader who can't tolerant drift of - * present_pages should get_online_mems() to get a stable value. + * mem_hotplug_begin/done(). Any reader who can't tolerant drift of + * present_pages should use get_online_mems() to get a stable value. */ atomic_long_t managed_pages; unsigned long spanned_pages; @@ -870,7 +870,7 @@ typedef struct pglist_data { unsigned long nr_reclaim_start; /* nr pages written while throttled * when throttling started. */ struct task_struct *kswapd; /* Protected by - mem_hotplug_begin/end() */ + mem_hotplug_begin/done() */ int kswapd_order; enum zone_type kswapd_highest_zoneidx; --- a/mm/compaction.c~mm-docs-fix-comments-that-mention-mem_hotplug_end +++ a/mm/compaction.c @@ -3011,7 +3011,7 @@ void kcompactd_run(int nid) /* * Called by memory hotplug when all memory in a node is offlined. Caller must - * hold mem_hotplug_begin/end(). + * be holding mem_hotplug_begin/done(). */ void kcompactd_stop(int nid) { --- a/mm/vmscan.c~mm-docs-fix-comments-that-mention-mem_hotplug_end +++ a/mm/vmscan.c @@ -4645,7 +4645,7 @@ void kswapd_run(int nid) /* * Called by memory hotplug when all memory in a node is offlined. Caller must - * hold mem_hotplug_begin/end(). + * be holding mem_hotplug_begin/done(). */ void kswapd_stop(int nid) { _ Patches currently in -mm which might be from p76091292@xxxxxxxxxxxxxx are