[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] libxc/bitops: correct comment for bitmap_size
commit 150dd3946c521a9257c4dd97e6190c6b0df680d3 Author: Olaf Hering <olaf@xxxxxxxxx> AuthorDate: Tue Sep 5 11:03:38 2017 +0200 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Tue Sep 5 17:35:57 2017 +0100 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 <olaf@xxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/libxc/xc_bitops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxc/xc_bitops.h b/tools/libxc/xc_bitops.h index 3e7a544..0951e82 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; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |