Older gcc warns (and due to -Werror fails) on this ASSERT() now that "node" is of unsigned type. Make it more useful at once.
Signed-off-by: Jan Beulich <jbeul...@suse.com> --- a/xen/common/page_alloc.c +++ b/xen/common/page_alloc.c @@ -604,7 +604,7 @@ static struct page_info *alloc_heap_page } first_node = node; - ASSERT(node >= 0); + ASSERT(node < MAX_NUMNODES); ASSERT(zone_lo <= zone_hi); ASSERT(zone_hi < NR_ZONES);
adjust assertion in alloc_heap_pages() Older gcc warns (and due to -Werror fails) on this ASSERT() now that "node" is of unsigned type. Make it more useful at once. Signed-off-by: Jan Beulich <jbeul...@suse.com> --- a/xen/common/page_alloc.c +++ b/xen/common/page_alloc.c @@ -604,7 +604,7 @@ static struct page_info *alloc_heap_page } first_node = node; - ASSERT(node >= 0); + ASSERT(node < MAX_NUMNODES); ASSERT(zone_lo <= zone_hi); ASSERT(zone_hi < NR_ZONES);
_______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel