diff options
author | Emmanuel Dreyfus <manu@netbsd.org> | 2014-05-21 05:45:39 +0200 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-06-02 03:58:32 -0700 |
commit | 4f9314a5eda016d5a03ad637f2c6171794cc9291 (patch) | |
tree | 839fa131ef1a0117df5d609e820f91e3bbca836a /contrib/qemu/util | |
parent | db022ef7ecca77cbecbcc4c046b6d3aafd2cb86f (diff) |
NetBSD qemu build fixes
Fix NetBSD build for glusterfs built in qmeu sources
BUG: 764655
Change-Id: I4428a88b1e0d7c5f6740022861ffe230dbbd84bd
Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org>
Reviewed-on: http://review.gluster.org/7815
Reviewed-by: Harshavardhana <harsha@harshavardhana.net>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'contrib/qemu/util')
-rw-r--r-- | contrib/qemu/util/hbitmap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/qemu/util/hbitmap.c b/contrib/qemu/util/hbitmap.c index d93683128bd..e063e681f52 100644 --- a/contrib/qemu/util/hbitmap.c +++ b/contrib/qemu/util/hbitmap.c @@ -92,10 +92,12 @@ struct HBitmap { unsigned long *levels[HBITMAP_LEVELS]; }; +#ifndef __NetBSD__ /* we have it in <strings.h> */ static inline int popcountl(unsigned long l) { return BITS_PER_LONG == 32 ? ctpop32(l) : ctpop64(l); } +#endif /* Advance hbi to the next nonzero word and return it. hbi->pos * is updated. Returns zero if we reach the end of the bitmap. |