- 20 10月, 2010 1 次提交
-
-
由 Daniel Veillard 提交于
-
- 14 10月, 2010 1 次提交
-
-
由 Eric Blake 提交于
* AUTHORS: List Harsh Prateek Bora, for 'make syntax-check'.
-
- 13 10月, 2010 2 次提交
-
-
由 Lai Jiangshan 提交于
In origin code, double quote is only allowed at the begin or end "complicated argument" --some_opt="complicated string" (we split this argument into 2 parts, option and data, the data is "complicated string"). This patch makes it allow double quote at any position of an argument: complicated" argument" complicated" "argument --"some opt=complicated string" This patch is also needed for the following patches, the following patches will not split option argument into 2 parts, so we have to allow double quote at any position of an argument. Signed-off-by: NLai Jiangshan <laijs@cn.fujitsu.com>
-
由 Nikunj A. Dadhania 提交于
Public api to set/get memory tunables supported by the hypervisors. dv: * some cleanups in libvirt.c * adding extra checks in libvirt.c new entry points v4: * Move exporting public API to this patch * Add unsigned int flags to the public api for future extensions v3: * Add domainGetMemoryParamters and NULL in all the driver interface v2: * Initialize domainSetMemoryParameters to NULL in all the driver interface structure.
-
- 08 9月, 2010 1 次提交
-
-
由 Justin Clift 提交于
As recommended by Eric. :)
-
- 25 8月, 2010 1 次提交
-
-
由 Serge Hallyn 提交于
* docs/drvlxc.html.in: Use correct VM name, and mention that libvirt_lxc might be in an alternate location.
-
- 20 8月, 2010 1 次提交
-
-
由 Patrick Dignan 提交于
I wrote a patch to add support for listing the Vendor and Model of a storage pool in the storage pool XML. This would allow vendor extensions of specific devices. The patch includes a test for the new attributes as well. Patrick Dignan
-
- 10 8月, 2010 1 次提交
-
-
由 Eric Blake 提交于
* AUTHORS (Soren Hansen): Update address. * .mailmap: Alias other addresses to new preference.
-
- 03 8月, 2010 1 次提交
-
-
由 Daniel Veillard 提交于
-
- 09 7月, 2010 1 次提交
-
-
由 Justin Clift 提交于
-
- 23 6月, 2010 1 次提交
-
-
由 Alan Pevec 提交于
-
- 02 6月, 2010 1 次提交
-
-
由 Justin Clift 提交于
This is just a trivial patch to virsh.pod (from git master). It adds the following pieces to the virsh man page: + Shows the --inactive and --all optional parameters for the list command. Closes Bugzilla #575512, reported by Renich Bon Ciric https://bugzilla.redhat.com/show_bug.cgi?id=575512 + Corrects the existing description of the list command, to now say that only running domains are listed if no domains are specified. The man page up until this point has said all domains are listed if no domains are specified, which is incorrect. + Adds the "shut off" state to the list of states for the list command. + Adds a missing =back around line 755, that pod2man was complaining was missing.
-
- 28 5月, 2010 1 次提交
-
-
由 Eric Blake 提交于
git shortlog $(git log -1 --format=%H AUTHORS).. | grep -v "^ " then add missing entries to AUTHORS. * AUTHORS: Update.
-
- 25 5月, 2010 1 次提交
-
-
由 Eric Blake 提交于
git shortlog $(git log -1 --format=%H AUTHORS).. | grep -v "^ " then add missing entries to AUTHORS. * AUTHORS: Update.
-
- 23 4月, 2010 2 次提交
-
-
由 Marco Bozzolan 提交于
* AUTHORS: Use preferred name. Signed-off-by: NEric Blake <eblake@redhat.com>
-
由 Eric Blake 提交于
git shortlog $(git log -1 --format=%H AUTHORS).. | grep -v "^ " then add missing entries to AUTHORS. * AUTHORS: Update.
-
- 31 3月, 2010 1 次提交
-
-
由 Eric Blake 提交于
* AUTHORS: Add recent contributors.
-
- 30 3月, 2010 1 次提交
-
-
由 Daniel Veillard 提交于
Laine Stump, Stefan Berger, Eric Blake now have commit rights !
-
- 18 3月, 2010 1 次提交
-
-
由 Philip Hahn 提交于
According to: http://libvirt.org/html/libvirt-libvirt.html#virNetworkLookupByUUID virNetworkLookupByUUID() expects a virConnectPtr as its first argument, thus making it a method of the virConnect Python class. Currently it's a method of libvirt.virNetwork. @@ -805,13 +805,6 @@ class virNetwork: if ret == -1: raise libvirtError ('virNetworkGetAutostart() failed', net=self) return ret - def networkLookupByUUID(self, uuid): - """Try to lookup a network on the given hypervisor based on its UUID. """ - ret = libvirtmod.virNetworkLookupByUUID(self._o, uuid) - if ret is None:raise libvirtError('virNetworkLookupByUUID() failed', net=self) - __tmp = virNetwork(self, _obj=ret) - return __tmp - class virInterface: def __init__(self, conn, _obj=None): self._conn = conn @@ -1689,6 +1682,13 @@ class virConnect: __tmp = virDomain(self,_obj=ret) return __tmp + def networkLookupByUUID(self, uuid): + """Try to lookup a network on the given hypervisor based on its UUID. """ + ret = libvirtmod.virNetworkLookupByUUID(self._o, uuid) + if ret is None:raise libvirtError('virNetworkLookupByUUID() failed', conn=self) + __tmp = virNetwork(self, _obj=ret) + return __tmp +
-
- 12 3月, 2010 1 次提交
-
-
由 Daniel Veillard 提交于
-
- 10 3月, 2010 1 次提交
-
-
由 Eric Blake 提交于
-
- 19 1月, 2010 1 次提交
-
-
由 Daniel Veillard 提交于
-
- 22 12月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
-
- 24 9月, 2009 2 次提交
-
-
由 Mark McLoughlin 提交于
-
由 Daniel Veillard 提交于
-
- 02 9月, 2009 1 次提交
-
-
由 Daniel P. Berrange 提交于
-
- 24 7月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
-
- 16 7月, 2009 1 次提交
-
-
由 Paolo Bonzini 提交于
* src/virsh.c: adds cd and pwd commands to virsh useful for save and restore commands * docs/virsh.pod virsh.1: update the documentation * AUTHORS: add Paolo Bonzini
-
- 02 7月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
* docs/schemas/network.rng: fix the network schemas to match new accepted elements, patch by Satoru SATOH * src/network_conf.c: fix network driver to save the domain name in XML if present, patch by Satoru SATOH * AUTHORS: adding Satoru SATOH Daniel
-
- 27 6月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
* src/libvirt_private.syms src/parthelper.c src/storage_backend_disk.c src/storage_conf.c src/storage_conf.h: allow to create storage volumes on disk backend, patches by Henrik Persson * AUTHORS: add Henrik Persson Daniel
-
- 25 6月, 2009 2 次提交
-
-
由 Daniel Veillard 提交于
* src/uml_driver.c: fix UML driver logging macros, patch by Amy Griffis * AUTHORS: adding Amy Griffis Daniel
-
由 Daniel Veillard 提交于
* src/qemu_driver.c: fix a domain state problem after migration, patch by Federico Simoncelli, fixes #507537 * src/domain_conf.c: fix a transcient domain state problem after destroy, patch by Federico Simoncelli, fixes #507304 * AUTHORS: add Federico Simoncelli and Javier Fontan daniel
-
- 11 6月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
* configure.in src/libvirt_private.syms src/storage_backend_fs.c src/util.c src/util.h: find and use kvm-img, qemu-img or qcow-create dynamically at runtime, patch by Doug Goldstein * AUTHORS: add Doug Goldstein Daniel
-
- 25 5月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
* src/opennebula/one_conf.[ch] src/opennebula/one_driver.[ch]: the OpenNebula driver * configure.in include/libvirt/virterror.h qemud/Makefile.am qemud/qemud.c src/Makefile.am src/domain_conf.[ch] src/driver.h src/libvirt.c src/virterror.c: integration of the OpenNebula driver in the libvirt infrastructure * AUTHORS: add Abel Miguez Rodriguez daniel
-
- 20 5月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
* configure.in include/libvirt/libvirt.h[.in] include/libvirt/virterror.h qemud/remote.c qemud/remote_dispatch_args.h qemud/remote_dispatch_prototypes.h qemud/remote_dispatch_ret.h qemud/remote_dispatch_table.h qemud/remote_protocol.[chx] src/Makefile.am src/datatypes.c src/datatypes.h src/driver.h src/libvirt.c src/remote_internal.c src/virterror.c src/libvirt_private.syms src/libvirt_public.syms: Add the Interface config APIs and remote stubs for those, patch by Laine Stump * AUTHORS: add Laine daniel
-
- 08 5月, 2009 1 次提交
-
-
由 Daniel P. Berrange 提交于
-
- 24 4月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
* po/*: updated a could of locale, regenerated * docs/libvirt-api.xml docs/libvirt-refs.xml: regenerated too daniel
-
- 22 4月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
support, patch by Soren Hansen * AUTHORS: add Soren daniel
-
- 16 4月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
-
- 03 4月, 2009 1 次提交
-
-
由 Daniel Veillard 提交于
* configure.in libvirt.spec.in NEWS docs/*: release of 0.6.2 * po/*: Gujarati and Polish updates, rebuild * AUTHORS: add one missing Daniel
-