[libvirt] [PATCH v2 0/9] improve virBitmap

Hu Tao hutao at cn.fujitsu.com
Thu Sep 6 10:13:51 UTC 2012


In many places we store bitmap info in a chunk of data
(pointed to by a char *), and have redundant codes to
set/unset bits. This series extends virBitmap, and convert
those codes to use virBitmap.

changes:

v2:
  - fix bug in qemuSetupCgroupForEmulator
  - new function virBitmapNextSetBit
  - virBitmapcmp -> virBitmapEqual
  - virBitmap: store bits in little endian format
  - some improvements of virBitmap
  - fix some memory leaks

Hu Tao (9):
  fix bug in qemuSetupCgroupForEmulator
  New functions for virBitmap
  use virBitmap to store cpupin info
  use virBitmap to store cpu affinity info
  use virBitmap to store numa nodemask info.
  use virBitmap to store cpumask info.
  use virBitmap to store cells' cpumask info.
  use virBitmap to store nodeinfo.
  remove virDomainCpuSetFormat and virDomainCpuSetParse

 .gitignore                       |    1 +
 src/conf/cpu_conf.c              |   17 +-
 src/conf/cpu_conf.h              |    3 +-
 src/conf/domain_conf.c           |  392 ++++++---------------------------
 src/conf/domain_conf.h           |   18 +-
 src/libvirt_private.syms         |   14 +-
 src/lxc/lxc_controller.c         |   56 ++---
 src/nodeinfo.c                   |   26 +--
 src/nodeinfo.h                   |    6 +-
 src/parallels/parallels_driver.c |    5 +-
 src/qemu/qemu_cgroup.c           |   18 +-
 src/qemu/qemu_cgroup.h           |    2 +-
 src/qemu/qemu_command.c          |   43 +---
 src/qemu/qemu_driver.c           |  168 +++++++-------
 src/qemu/qemu_process.c          |  141 ++++--------
 src/test/test_driver.c           |    5 +-
 src/util/bitmap.c                |  451 +++++++++++++++++++++++++++++++++++++-
 src/util/bitmap.h                |   34 +++
 src/util/processinfo.c           |   36 +--
 src/util/processinfo.h           |    9 +-
 src/vmx/vmx.c                    |   36 +--
 tests/Makefile.am                |    7 +-
 tests/cpuset                     |    2 +-
 tests/virbitmaptest.c            |  233 ++++++++++++++++++++
 24 files changed, 1034 insertions(+), 689 deletions(-)
 create mode 100644 tests/virbitmaptest.c

-- 
1.7.10.2




More information about the libvir-list mailing list