blob: 998f809c02e6f46b73891e7c901d2bbc3105435e [file] [log] [blame]
From: Andrew Morton <akpm@linux-foundation.org>
Subject: mm-page_isolation-write-proper-kerneldoc-fix
Date: Fri Jun 9 02:59:37 PM PDT 2023
s/lower/first/, s/upper/last/, per Mike
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Mike Rapoport <rppt@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/page_isolation.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
--- a/mm/page_isolation.c~mm-page_isolation-write-proper-kerneldoc-fix
+++ a/mm/page_isolation.c
@@ -482,8 +482,8 @@ failed:
/**
* start_isolate_page_range() - mark page range MIGRATE_ISOLATE
- * @start_pfn: The lower PFN of the range to be isolated.
- * @end_pfn: The upper PFN of the range to be isolated.
+ * @start_pfn: The first PFN of the range to be isolated.
+ * @end_pfn: The last PFN of the range to be isolated.
* @migratetype: Migrate type to set in error recovery.
* @flags: The following flags are allowed (they can be combined in
* a bit mask)
@@ -572,8 +572,8 @@ int start_isolate_page_range(unsigned lo
/**
* undo_isolate_page_range - undo effects of start_isolate_page_range()
- * @start_pfn: The lower PFN of the isolated range
- * @end_pfn: The upper PFN of the isolated range
+ * @start_pfn: The first PFN of the isolated range
+ * @end_pfn: The last PFN of the isolated range
* @migratetype: New migrate type to set on the range
*
* This finds every MIGRATE_ISOLATE page block in the given range
_