libvirt/src
Martin Kletzander 0186885dac vbox: remove unused code that causes build failures
Since 87dea4fcff vboxGetDrivers() is not
used for getting the vbox network driver.  The only call the code does
is using NULL as the @networkDriver_ret param , but the code still used
vbox[0-9][0-9]NetworkDriver that didn't exist anymore.

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
2014-10-03 22:43:09 +02:00
..
access polkit_driver: fix possible segfault 2014-09-25 12:53:37 +02:00
bhyve Wire up the interface backend options 2014-09-16 16:02:34 +02:00
conf qemu: Build command line for ivshmem device 2014-10-03 22:43:09 +02:00
cpu Also filter out non-migratable features out of host-passthrough 2014-09-30 10:51:08 +02:00
esx
hyperv
interface maint: Prohibit "devname" by a syntax check rules 2014-10-01 16:39:01 +02:00
libxl libxl: Drop driver lock in libxlDomainDefineXML 2014-09-19 08:15:52 -06:00
locking
lxc lxc_monitor_protocol: Redefine xdr_uint64_t if needed 2014-09-26 10:15:03 +02:00
network Wire up the interface backend options 2014-09-16 16:02:34 +02:00
node_device
nwfilter
openvz maint: clean up _virDomainInterfaceStats 2014-09-17 11:28:48 -06:00
parallels parallels: login to parallels SDK 2014-09-25 15:42:32 +02:00
phyp
qemu qemu: Build command line for ivshmem device 2014-10-03 22:43:09 +02:00
remote remoteNodeGetFreePages: Don't alloc args.pages.pages_val 2014-09-26 10:02:21 +02:00
rpc virnetserver: Raise log level of max_clients related messages 2014-09-25 13:45:29 +02:00
secret
security security: Fix labelling host devices (bz 1145968) 2014-09-24 17:04:28 -04:00
storage storage: Improve error message when traversing backing chains 2014-09-24 10:19:13 +02:00
test maint: clean up _virDomainBlockStats 2014-09-17 11:28:48 -06:00
uml nodeinfo: fix version of nodeAllocPages 2014-09-26 09:58:01 +02:00
util Add virCgroupTerminateMachine stub 2014-10-02 11:11:10 +02:00
vbox vbox: remove unused code that causes build failures 2014-10-03 22:43:09 +02:00
vmware
vmx
xen maint: clean up _virDomainBlockStats 2014-09-17 11:28:48 -06:00
xenapi
xenconfig
check-aclperms.pl
check-aclrules.pl
check-driverimpls.pl
check-drivername.pl
check-symfile.pl
check-symsorting.pl
datatypes.c
datatypes.h
driver.c
driver.h Introduce virNodeAllocPages 2014-09-25 10:24:44 +02:00
dtrace2systemtap.pl
fdstream.c
fdstream.h
gnutls_1_0_compat.h
internal.h
libvirt_atomic.syms
libvirt_daemon.syms
libvirt_driver_modules.syms
libvirt_esx.syms
libvirt_gnutls.syms
libvirt_internal.h
libvirt_libssh2.syms
libvirt_linux.syms
libvirt_lxc.syms
libvirt_openvz.syms
libvirt_private.syms qemu: use systemd's TerminateMachine to kill all processes 2014-10-01 20:17:46 +02:00
libvirt_probes.d
libvirt_public.syms Introduce virNodeAllocPages 2014-09-25 10:24:44 +02:00
libvirt_qemu_probes.d
libvirt_qemu.syms
libvirt_remote.syms remote: create virNetServerServiceNewFDOrUNIX() wrapper 2014-08-22 09:12:13 +02:00
libvirt_sasl.syms
libvirt_vmware.syms
libvirt_vmx.syms
libvirt_xenconfig.syms
libvirt-lxc.c
libvirt-lxc.pc.in
libvirt-qemu.c
libvirt-qemu.pc.in
libvirt.c qemu: bulk stats: add block allocation information 2014-10-01 10:58:33 +02:00
libvirt.conf
libvirt.pc.in
lock_protocol-structs
lxc_monitor_protocol-structs
lxc_protocol-structs
Makefile.am Makefile: Fix build without driver modules 2014-10-03 13:59:12 +02:00
nodeinfo.c nodeinfo: Implement nodeAllocPages 2014-09-25 10:24:45 +02:00
nodeinfo.h nodeinfo: Implement nodeAllocPages 2014-09-25 10:24:45 +02:00
nodeinfopriv.h
qemu_protocol-structs
README
remote_protocol-structs Introduce virNodeAllocPages 2014-09-25 10:24:44 +02:00
virkeepaliveprotocol-structs
virnetprotocol-structs

       libvirt library code README
       ===========================

The directory provides the bulk of the libvirt codebase. Everything
except for the libvirtd daemon and client tools. The build uses a
large number of libtool convenience libraries - one for each child
directory, and then links them together for the final libvirt.so,
although some bits get linked directly to libvirtd daemon instead.

The files directly in this directory are supporting the public API
entry points & data structures.

There are two core shared modules to be aware of:

 * util/  - a collection of shared APIs that can be used by any
            code. This directory is always in the include path
            for all things built

 * conf/  - APIs for parsing / manipulating all the official XML
            files used by the public API. This directory is only
            in the include path for driver implementation modules

 * vmx/   - VMware VMX config handling (used by esx/ and vmware/)


Then there are the hypervisor implementations:

 * bhyve         - bhyve - The BSD Hypervisor
 * esx/          - VMware ESX and GSX support using vSphere API over SOAP
 * hyperv/       - Microsoft Hyper-V support using WinRM
 * lxc/          - Linux Native Containers
 * openvz/       - OpenVZ containers using cli tools
 * phyp/         - IBM Power Hypervisor using CLI tools over SSH
 * qemu/         - QEMU / KVM using qemu CLI/monitor
 * remote/       - Generic libvirt native RPC client
 * test/         - A "mock" driver for testing
 * uml/          - User Mode Linux
 * vbox/         - Virtual Box using native API
 * vmware/       - VMware Workstation and Player using the vmrun tool
 * xen/          - Xen using hypercalls, XenD SEXPR & XenStore
 * xenapi/       - Xen using libxenserver


Finally some secondary drivers that are shared for several HVs.
Currently these are used by LXC, OpenVZ, QEMU, UML and Xen drivers.
The ESX, Hyper-V, Power Hypervisor, Remote, Test & VirtualBox drivers all
implement the secondary drivers directly

 * cpu/          - CPU feature management
 * interface/    - Host network interface management
 * network/      - Virtual NAT networking
 * nwfilter/     - Network traffic filtering rules
 * node_device/  - Host device enumeration
 * secret/       - Secret management
 * security/     - Mandatory access control drivers
 * storage/      - Storage management drivers


Since both the hypervisor and secondary drivers can be built as
dlopen()able modules, it is *FORBIDDEN* to have build dependencies
between these directories. Drivers are only allowed to depend on
the public API, and the internal APIs in the util/ and conf/
directories