[libvirt] [PATCH v5 0/9] Add basic driver for Parallels Virtuozzo Server

Dmitry Guryanov dguryanov at parallels.com
Fri Apr 20 16:01:25 UTC 2012


Parallels Virtuozzo Server is a cloud-ready virtualization
solution that allows users to simultaneously run multiple virtual
machines and containers on the same physical server.

Current name of this product is Parallels Server Bare Metal and
more information about it can be found here -
http://www.parallels.com/products/server/baremetal/sp/.

This driver will work with PVS version 6.0 , beta version
scheduled at 2012 Q2.

changes in v5:
    * rebased to current version
changes in v4:
    * fix errors, found by 'make syntax-check'

Dmitry Guryanov (9):
  pvs: add driver skeleton
  util: add functions for interating over json object
  pvs: add functions to list domains and get info
  pvs: implement functions for domain life cycle management
  pvs: get info about serial ports
  pvs: add support of VNC remote display
  pvs: implement virDomainDefineXML operation for existing domains
  pvs: add storage driver
  pvs: implement VM creation

 AUTHORS                     |    1 +
 cfg.mk                      |    1 +
 configure.ac                |   23 +
 docs/drvpvs.html.in         |   28 +
 include/libvirt/virterror.h |    1 +
 libvirt.spec.in             |    7 +
 mingw32-libvirt.spec.in     |    6 +
 po/POTFILES.in              |    3 +
 src/Makefile.am             |   23 +
 src/conf/domain_conf.c      |    3 +-
 src/conf/domain_conf.h      |    1 +
 src/driver.h                |    1 +
 src/libvirt.c               |   12 +
 src/pvs/pvs_driver.c        | 1280 +++++++++++++++++++++++++++++++++++++
 src/pvs/pvs_driver.h        |   75 +++
 src/pvs/pvs_storage.c       | 1458 +++++++++++++++++++++++++++++++++++++++++++
 src/pvs/pvs_utils.c         |  143 +++++
 src/util/json.c             |   30 +
 src/util/json.h             |    4 +
 src/util/virterror.c        |    3 +
 20 files changed, 3102 insertions(+), 1 deletions(-)
 create mode 100644 docs/drvpvs.html.in
 create mode 100644 src/pvs/pvs_driver.c
 create mode 100644 src/pvs/pvs_driver.h
 create mode 100644 src/pvs/pvs_storage.c
 create mode 100644 src/pvs/pvs_utils.c




More information about the libvir-list mailing list