]> git.proxmox.com Git - qemu.git/commit
bitmap: add a generic bitmap and bitops library
authorCorentin Chary <corentincj@iksaif.net>
Fri, 4 Feb 2011 08:06:04 +0000 (09:06 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Wed, 23 Feb 2011 22:28:29 +0000 (16:28 -0600)
commite0e53b2f1b7aaf341ddb629ce861e02b2ac95fad
treee21f1f39b8b0f382b96a61402f89212db6f52b14
parent207f328afc2137d422f59293ba37b8be5d3e1617
bitmap: add a generic bitmap and bitops library

Add most used bitmap and bitops functions into bitmap.c and bitops.c.
Theses functions are mostly copied from Linux kernel source.

Some of these functions are already redefined in the VNC server. Some
of them could be used for some block stuff. The yet yo be submitted
NUMA work also need bitmaps.

bitops_ffsl() and bitops_flsl() are here because bitops/bitmap works
on unsigned long, not int, and we can't use current code because:
* ffs only works on int
* qemu_fls only works on int
* ffsl is a GNU extension

Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Makefile.objs
bitmap.c [new file with mode: 0644]
bitmap.h [new file with mode: 0644]
bitops.c [new file with mode: 0644]
bitops.h [new file with mode: 0644]
osdep.h