Libvirt provides a portable, long term stable C API for managing the virtualization technologies provided by many operating systems. It includes support for QEMU, KVM, Xen, LXC, bhyve, Virtuozzo, VMware vCenter and ESX, VMware Desktop, Hyper-V, VirtualBox and the POWER Hypervisor.
Go to file
Jiri Denemark 2073ed6f20 Fix <cpu> element in domain XML schema
The current schema is more permissive than the XML parsing code in
libvirt. Precisely, 'match' attribute is optional in schema while in
reality its use is bound to <model> element:

- <cpu> element without 'match' attribute is allowed only if <topology>
  element is the only child element of <cpu>

- <cpu> element with 'match' attribute requires <model> element to be
  present; <topology> and <feature> elements are optional

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
2010-02-11 16:46:20 +01:00
.gnulib@11fbc57405 build: update gnulib submodule to latest 2010-02-05 18:06:06 +01:00
build-aux Commit bootstrap .gitignore additions 2010-01-12 14:36:11 -05:00
daemon Re-generate remote protocol files for new APIs 2010-02-09 12:09:05 +00:00
docs Fix <cpu> element in domain XML schema 2010-02-11 16:46:20 +01:00
examples maint: avoid excess parens in STREQ 2010-02-01 17:21:26 +01:00
include Public API 2010-02-08 10:48:16 -07:00
m4
po Remove conn parameter from Linux stats functions 2010-02-09 01:04:55 +01:00
proxy Fix compile error in Xen proxy from virConnectPtr changes 2010-02-10 12:51:41 +00:00
python Add virConnectGetVersion Python API 2010-01-22 11:01:09 +01:00
src Fix up a misspelled comment. 2010-02-11 09:02:24 -05:00
tests Annotate some virConnectPtr as mandatory non-null 2010-02-10 13:33:06 +00:00
tools Remove conn parameter from util functions 2010-02-09 01:04:54 +01:00
.gitignore
.gitmodules
.hgignore
.x-sc_avoid_ctype_macros
.x-sc_avoid_if_before_free
.x-sc_avoid_write
.x-sc_m4_quote_check
.x-sc_prohibit_asprintf add .x-sc_prohibit_asprintf 2008-12-23 13:40:42 +00:00
.x-sc_prohibit_gethostby
.x-sc_prohibit_gethostname Add a new syntax-check rule for gethostname. 2009-10-26 10:34:27 +01:00
.x-sc_prohibit_have_config_h maint: sync from coreutils 2009-01-29 18:06:19 +00:00
.x-sc_prohibit_HAVE_MBRTOWC
.x-sc_prohibit_nonreentrant
.x-sc_prohibit_readlink Add a rule to check for uses of readlink. 2010-01-22 09:42:35 -05:00
.x-sc_prohibit_strcmp
.x-sc_prohibit_strcmp_and_strncmp Ignore docs/ directory for strcmp() syntax check 2009-11-23 11:58:13 +00:00
.x-sc_prohibit_strncpy
.x-sc_prohibit_VIR_ERR_NO_MEMORY
.x-sc_require_config_h
.x-sc_require_config_h_first
.x-sc_trailing_blank
acinclude.m4
AUTHORS Add Jiri Denemark <jdenemar@redhat.com> to commiters 2010-01-19 14:41:19 +01:00
autobuild.sh
autogen.sh Add --system flag to autogen.sh to make it easy to build with right prefix 2009-12-07 14:13:53 +00:00
bootstrap absolutePathFromBaseFile: don't leak when first arg contains no "/" 2010-02-05 12:31:55 +01:00
cfg.mk Add a rule to check for uses of readlink. 2010-01-22 09:42:35 -05:00
ChangeLog-old
configure.ac Release of libvirt-0.7.6 2010-02-03 18:16:25 +01:00
COPYING.LIB
HACKING Remove conn parameter from virReportOOMError 2010-02-09 01:04:54 +01:00
libvirt.pc.in * libvirt.pc.in: applied patch from Daniel Berrange to fix --cflags 2006-03-24 13:18:12 +00:00
libvirt.spec.in Release of libvirt-0.7.6 2010-02-03 18:16:25 +01:00
Makefile.am add AppArmor test and examples to dist 2009-12-14 13:40:42 +01:00
Makefile.nonreentrant
mingw32-libvirt.spec.in
README
README-hacking
TODO

         LibVirt : simple API for virtualization

  Libvirt is a C toolkit to interact with the virtualization capabilities
of recent versions of Linux (and other OSes). It is free software
available under the GNU Lesser General Public License. Virtualization of
the Linux Operating System means the ability to run multiple instances of
Operating Systems concurrently on a single hardware system where the basic
resources are driven by a Linux instance. The library aim at providing
long term stable C API initially for the Xen paravirtualization but
should be able to integrate other virtualization mechanisms if needed.

Daniel Veillard <veillard@redhat.com>