diff options
author | Vladimir Sementsov-Ogievskiy | 2020-02-05 12:20:34 +0100 |
---|---|---|
committer | John Snow | 2020-03-18 19:03:46 +0100 |
commit | 30b8346cc3e1e9d73d55bb442e2b4a670dccd444 (patch) | |
tree | d57b33486e6ef211ca187edb317026682ac159c0 /include/qemu/hbitmap.h | |
parent | hbitmap: move hbitmap_iter_next_word to hbitmap.c (diff) | |
download | qemu-30b8346cc3e1e9d73d55bb442e2b4a670dccd444.tar.gz qemu-30b8346cc3e1e9d73d55bb442e2b4a670dccd444.tar.xz qemu-30b8346cc3e1e9d73d55bb442e2b4a670dccd444.zip |
hbitmap: unpublish hbitmap_iter_skip_words
Function is internal and even commented as internal. Drop its
definition from .h file.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Message-id: 20200205112041.6003-4-vsementsov@virtuozzo.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'include/qemu/hbitmap.h')
-rw-r--r-- | include/qemu/hbitmap.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/qemu/hbitmap.h b/include/qemu/hbitmap.h index ab227b117f..15837a0e2d 100644 --- a/include/qemu/hbitmap.h +++ b/include/qemu/hbitmap.h @@ -297,13 +297,6 @@ void hbitmap_free(HBitmap *hb); */ void hbitmap_iter_init(HBitmapIter *hbi, const HBitmap *hb, uint64_t first); -/* hbitmap_iter_skip_words: - * @hbi: HBitmapIter to operate on. - * - * Internal function used by hbitmap_iter_next and hbitmap_iter_next_word. - */ -unsigned long hbitmap_iter_skip_words(HBitmapIter *hbi); - /* hbitmap_next_zero: * * Find next not dirty bit within selected range. If not found, return -1. |