From: Olaf Hering Date: Tue, 5 Sep 2017 09:03:38 +0000 (+0200) Subject: libxc/bitops: correct comment for bitmap_size X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~1482 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=150dd3946c521a9257c4dd97e6190c6b0df680d3;p=xen.git libxc/bitops: correct comment for bitmap_size The returned value represents now units of bytes instead of longs. Fixes commit 11d0044a16 ("tools/libxc: Modify bitmap operations to take void pointers"). Signed-off-by: Olaf Hering Acked-by: Wei Liu --- diff --git a/tools/libxc/xc_bitops.h b/tools/libxc/xc_bitops.h index 3e7a544c9d..0951e8267d 100644 --- a/tools/libxc/xc_bitops.h +++ b/tools/libxc/xc_bitops.h @@ -13,7 +13,7 @@ #define BITMAP_ENTRY(_nr,_bmap) ((_bmap))[(_nr) / 8] #define BITMAP_SHIFT(_nr) ((_nr) % 8) -/* calculate required space for number of longs needed to hold nr_bits */ +/* calculate required space for number of bytes needed to hold nr_bits */ static inline int bitmap_size(int nr_bits) { return (nr_bits + 7) / 8;