[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Xen-devel] [PATCH for Xen 4.6 4/5] tools/libxl: fix range check in main_psr_cat_cbm_set



On Mon, Sep 28, 2015 at 07:54:52PM +0800, Chao Peng wrote:
> The 'end' should be inclusive.
> 
> Signed-off-by: Chao Peng <chao.p.peng@xxxxxxxxxxxxxxx>

Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx>

> ---
>  tools/libxl/xl_cmdimpl.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c
> index cec0d2c..045b70e 100644
> --- a/tools/libxl/xl_cmdimpl.c
> +++ b/tools/libxl/xl_cmdimpl.c
> @@ -8525,7 +8525,7 @@ int main_psr_cat_cbm_set(int argc, char **argv)
>          len = libxl_string_list_length(&socket_list);
>          for (i = 0; i < len; i++) {
>              parse_range(socket_list[i], &start, &end);
> -            for (j = start; j < end; j++)
> +            for (j = start; j <= end; j++)
>                  libxl_bitmap_set(&target_map, j);
>          }
>  
> -- 
> 1.9.1

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.