linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] mm/page_alloc: drop the unnecessary pfn_valid() for start pfn
@ 2023-04-23 10:59 Baolin Wang
  2023-04-23 10:59 ` [PATCH v2 2/2] mm/page_alloc: add some comments to explain the possible hole in __pageblock_pfn_to_page() Baolin Wang
  2023-04-24  9:50 ` [PATCH v2 1/2] mm/page_alloc: drop the unnecessary pfn_valid() for start pfn Michal Hocko
  0 siblings, 2 replies; 14+ messages in thread
From: Baolin Wang @ 2023-04-23 10:59 UTC (permalink / raw)
  To: akpm
  Cc: rppt, ying.huang, mgorman, vbabka, mhocko, david, baolin.wang,
	linux-mm, linux-kernel

We've already used pfn_to_online_page() for start pfn to make sure
it is online and valid, so the pfn_valid() for the start pfn is
unnecessary, drop it.

Signed-off-by: Baolin Wang <baolin.wang@linux.alibaba.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: "Huang, Ying" <ying.huang@intel.com>
---
Changes from v1:
 - Collect reviewed tags. Thanks David and Ying.
---
 mm/page_alloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 9de2a18519a1..6457b64fe562 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1512,7 +1512,7 @@ struct page *__pageblock_pfn_to_page(unsigned long start_pfn,
 	/* end_pfn is one past the range we are checking */
 	end_pfn--;
 
-	if (!pfn_valid(start_pfn) || !pfn_valid(end_pfn))
+	if (!pfn_valid(end_pfn))
 		return NULL;
 
 	start_page = pfn_to_online_page(start_pfn);
-- 
2.27.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2023-04-24 13:08 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-23 10:59 [PATCH v2 1/2] mm/page_alloc: drop the unnecessary pfn_valid() for start pfn Baolin Wang
2023-04-23 10:59 ` [PATCH v2 2/2] mm/page_alloc: add some comments to explain the possible hole in __pageblock_pfn_to_page() Baolin Wang
2023-04-24  2:24   ` Huang, Ying
2023-04-24  9:54   ` Michal Hocko
2023-04-24 11:20     ` Baolin Wang
2023-04-24 11:34       ` Michal Hocko
2023-04-24 11:40         ` Baolin Wang
2023-04-24 12:08           ` Michal Hocko
2023-04-24 12:48             ` Baolin Wang
2023-04-24 13:08               ` Michal Hocko
2023-04-24  9:50 ` [PATCH v2 1/2] mm/page_alloc: drop the unnecessary pfn_valid() for start pfn Michal Hocko
2023-04-24 10:46   ` Baolin Wang
2023-04-24 10:54     ` Michal Hocko
2023-04-24 11:21       ` Baolin Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox