On 23/04/15 07:20, Jan Beulich wrote:
> 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 <[email protected]>

Coverity-ID: 1055630

Reviewed-by: Andrew Cooper <[email protected]>

>
> --- 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
> [email protected]
> http://lists.xen.org/xen-devel

_______________________________________________
Xen-devel mailing list
[email protected]
http://lists.xen.org/xen-devel

Reply via email to