fixes types mismatch warning reported by kbuild

Signed-off-by: Pavel Tatashin <pasha.tatas...@oracle.com>
---
 mm/page_alloc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index b310a0587c3b..5a45255e3aa0 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -6354,8 +6354,8 @@ void __paginginit free_area_init_node(int nid, unsigned 
long *zones_size,
         * We start only with one section of pages, more pages are added as
         * needed until the rest of deferred pages are initialized.
         */
-       pgdat->static_init_pgcnt = min(PAGES_PER_SECTION,
-                                      pgdat->node_spanned_pages);
+       pgdat->static_init_pgcnt = min_t(unsigned long, PAGES_PER_SECTION,
+                                        pgdat->node_spanned_pages);
        pgdat->first_deferred_pfn = ULONG_MAX;
 #endif
        free_area_init_core(pgdat);
-- 
2.16.1

Reply via email to