linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm, sparse: remove check with __highest_present_section_nr in for_each_present_section_nr()
@ 2018-12-11  3:51 Wei Yang
  2018-12-11  5:09 ` Wei Yang
  2018-12-11  9:44 ` Michal Hocko
  0 siblings, 2 replies; 6+ messages in thread
From: Wei Yang @ 2018-12-11  3:51 UTC (permalink / raw)
  To: linux-mm; +Cc: akpm, mhocko, osalvador, Wei Yang

A valid present section number is in [0, __highest_present_section_nr].
And the return value of next_present_section_nr() meets this
requirement. This means it is not necessary to check it with
__highest_present_section_nr again in for_each_present_section_nr().

Since we pass an unsigned long *section_nr* to
for_each_present_section_nr(), we need to cast it to int before
comparing.

Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
---
 mm/sparse.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/mm/sparse.c b/mm/sparse.c
index a4fdbcb21514..9eaa8f98a3d2 100644
--- a/mm/sparse.c
+++ b/mm/sparse.c
@@ -197,8 +197,7 @@ static inline int next_present_section_nr(int section_nr)
 }
 #define for_each_present_section_nr(start, section_nr)		\
 	for (section_nr = next_present_section_nr(start-1);	\
-	     ((section_nr >= 0) &&				\
-	      (section_nr <= __highest_present_section_nr));	\
+	     (int)section_nr >= 0;				\
 	     section_nr = next_present_section_nr(section_nr))
 
 static inline unsigned long first_present_section_nr(void)
-- 
2.15.1

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

end of thread, other threads:[~2018-12-11 14:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-11  3:51 [PATCH] mm, sparse: remove check with __highest_present_section_nr in for_each_present_section_nr() Wei Yang
2018-12-11  5:09 ` Wei Yang
2018-12-11  9:44 ` Michal Hocko
2018-12-11 10:19   ` Wei Yang
2018-12-11 10:23     ` Michal Hocko
2018-12-11 14:41       ` Wei Yang

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