Compare commits
11
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4230864da9 | ||
|
|
046121a814 | ||
|
|
e353d4686f | ||
|
|
d9f0d1b206 | ||
|
|
f529859a7f | ||
|
|
cc20dcc771 | ||
|
|
373a3ee987 | ||
|
|
a53e7df138 | ||
|
|
60e98f8638 | ||
|
|
f6005873fe | ||
|
|
8be9ccc297 |
+19
-13
@@ -1,13 +1,19 @@
|
|||||||
.build*.log
|
libvirt-0.0.3.tar.gz
|
||||||
*.rpm
|
libvirt-0.0.4.tar.gz
|
||||||
i686
|
libvirt-0.0.5.tar.gz
|
||||||
x86_64
|
libvirt-0.0.6.tar.gz
|
||||||
libvirt-*.tar.gz
|
libvirt-0.1.0.tar.gz
|
||||||
libvirt-0.6.0.tar.gz
|
libvirt-0.1.2.tar.gz
|
||||||
libvirt-0.6.1.tar.gz
|
libvirt-0.1.1.tar.gz
|
||||||
libvirt-0.6.2.tar.gz
|
libvirt-0.1.3.tar.gz
|
||||||
libvirt-0.6.3.tar.gz
|
libvirt-0.1.4.tar.gz
|
||||||
libvirt-0.6.4.tar.gz
|
libvirt-0.1.5.tar.gz
|
||||||
libvirt-0.6.5.tar.gz
|
libvirt-0.1.6.tar.gz
|
||||||
libvirt-0.7.0.tar.gz
|
libvirt-0.1.7.tar.gz
|
||||||
libvirt-0.7.1.tar.gz
|
libvirt-0.1.8.tar.gz
|
||||||
|
libvirt-0.1.9.tar.gz
|
||||||
|
libvirt-0.1.10.tar.gz
|
||||||
|
libvirt-0.1.11.tar.gz
|
||||||
|
libvirt-0.2.0.tar.gz
|
||||||
|
libvirt-0.2.1.tar.gz
|
||||||
|
libvirt-0.2.2.tar.gz
|
||||||
|
|||||||
@@ -3,19 +3,4 @@
|
|||||||
NAME := libvirt
|
NAME := libvirt
|
||||||
SPECFILE = $(firstword $(wildcard *.spec))
|
SPECFILE = $(firstword $(wildcard *.spec))
|
||||||
|
|
||||||
define find-makefile-common
|
include ../common/Makefile.common
|
||||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
|
||||||
|
|
||||||
ifeq ($(MAKEFILE_COMMON),)
|
|
||||||
# attempt a checkout
|
|
||||||
define checkout-makefile-common
|
|
||||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(MAKEFILE_COMMON)
|
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
diff -rup libvirt-0.4.0.orig/src/conf.c libvirt-0.4.0.new/src/conf.c
|
||||||
|
--- libvirt-0.4.0.orig/src/conf.c 2007-12-12 08:30:49.000000000 -0500
|
||||||
|
+++ libvirt-0.4.0.new/src/conf.c 2008-01-02 16:30:12.000000000 -0500
|
||||||
|
@@ -705,7 +705,7 @@ error:
|
||||||
|
virConfPtr
|
||||||
|
__virConfReadFile(const char *filename)
|
||||||
|
{
|
||||||
|
- char content[4096];
|
||||||
|
+ char content[8192];
|
||||||
|
int fd;
|
||||||
|
int len;
|
||||||
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
From 127a39777e9809053bb98a9082e27c73543ccfa2 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Daniel P. Berrange <berrange@redhat.com>
|
|
||||||
Date: Mon, 17 Aug 2009 08:32:08 +0100
|
|
||||||
Subject: [PATCH] Disable sound cards when running sVirt
|
|
||||||
|
|
||||||
Temporary hack till PulseAudio autostart problems are sorted out when
|
|
||||||
SELinux enforcing (bz 486112)
|
|
||||||
|
|
||||||
Fedora-patch: libvirt-0.6.4-svirt-sound.patch
|
|
||||||
---
|
|
||||||
src/qemu_conf.c | 17 ++++++++++++++++-
|
|
||||||
1 files changed, 16 insertions(+), 1 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/qemu_conf.c b/src/qemu_conf.c
|
|
||||||
index f92bcef..f3b4ef0 100644
|
|
||||||
--- a/src/qemu_conf.c
|
|
||||||
+++ b/src/qemu_conf.c
|
|
||||||
@@ -1510,6 +1510,20 @@ int qemudBuildCommandLine(virConnectPtr conn,
|
|
||||||
char uuid[VIR_UUID_STRING_BUFLEN];
|
|
||||||
char domid[50];
|
|
||||||
const char *cpu = NULL;
|
|
||||||
+ int skipSound = 0;
|
|
||||||
+
|
|
||||||
+ if (driver->securityDriver &&
|
|
||||||
+ driver->securityDriver->name &&
|
|
||||||
+ STREQ(driver->securityDriver->name, "selinux") &&
|
|
||||||
+ getuid() == 0) {
|
|
||||||
+ static int soundWarned = 0;
|
|
||||||
+ skipSound = 1;
|
|
||||||
+ if (def->nsounds &&
|
|
||||||
+ !soundWarned) {
|
|
||||||
+ soundWarned = 1;
|
|
||||||
+ VIR_WARN0("Sound cards for VMs are disabled while SELinux security model is active");
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
|
|
||||||
uname_normalize(&ut);
|
|
||||||
|
|
||||||
@@ -2181,7 +2195,8 @@ int qemudBuildCommandLine(virConnectPtr conn,
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Add sound hardware */
|
|
||||||
- if (def->nsounds) {
|
|
||||||
+ if (def->nsounds &&
|
|
||||||
+ !skipSound) {
|
|
||||||
int size = 100;
|
|
||||||
char *modstr;
|
|
||||||
if (VIR_ALLOC_N(modstr, size+1) < 0)
|
|
||||||
--
|
|
||||||
1.6.2.5
|
|
||||||
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
From 2f6e857ac7d6ed5cd417e684147dd9c98775ab3d Mon Sep 17 00:00:00 2001
|
|
||||||
From: Chris Lalancette <clalance@redhat.com>
|
|
||||||
Date: Mon, 21 Sep 2009 14:53:31 +0200
|
|
||||||
Subject: [PATCH] Don't do virSetConnError when virDrvSupportsFeature is successful.
|
|
||||||
|
|
||||||
Signed-off-by: Chris Lalancette <clalance@redhat.com>
|
|
||||||
Fedora-patch: libvirt-fix-drv-supports-feature-bogus-error.patch
|
|
||||||
---
|
|
||||||
src/libvirt.c | 7 +++++--
|
|
||||||
1 files changed, 5 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/libvirt.c b/src/libvirt.c
|
|
||||||
index 4a11688..fa59dc7 100644
|
|
||||||
--- a/src/libvirt.c
|
|
||||||
+++ b/src/libvirt.c
|
|
||||||
@@ -1349,8 +1349,11 @@ virDrvSupportsFeature (virConnectPtr conn, int feature)
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = VIR_DRV_SUPPORTS_FEATURE (conn->driver, conn, feature);
|
|
||||||
- /* Copy to connection error object for back compatability */
|
|
||||||
- virSetConnError(conn);
|
|
||||||
+
|
|
||||||
+ if (ret < 0)
|
|
||||||
+ /* Copy to connection error object for back compatability */
|
|
||||||
+ virSetConnError(conn);
|
|
||||||
+
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
--
|
|
||||||
1.6.2.5
|
|
||||||
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
From d09ff3c35c29d14760d5ea03559042cc024e09ab Mon Sep 17 00:00:00 2001
|
|
||||||
From: Mark McLoughlin <markmc@redhat.com>
|
|
||||||
Date: Thu, 17 Sep 2009 15:31:08 +0100
|
|
||||||
Subject: [PATCH] Fix net/disk hot-unplug segfault
|
|
||||||
|
|
||||||
When we hot-unplug the last device, we're currently double-freeing
|
|
||||||
the device definition.
|
|
||||||
|
|
||||||
Reported by Michal Nowak here:
|
|
||||||
|
|
||||||
https://bugzilla.redhat.com/523953
|
|
||||||
|
|
||||||
* src/qemu_driver.c: fix double free
|
|
||||||
|
|
||||||
(cherry-picked from commit 8881ae1bf8783006777429403cc543c33187175d)
|
|
||||||
|
|
||||||
Fedora-patch: libvirt-fix-net-hotunplug-double-free.patch
|
|
||||||
---
|
|
||||||
src/qemu_driver.c | 4 ++--
|
|
||||||
1 files changed, 2 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/qemu_driver.c b/src/qemu_driver.c
|
|
||||||
index a65334f..de31581 100644
|
|
||||||
--- a/src/qemu_driver.c
|
|
||||||
+++ b/src/qemu_driver.c
|
|
||||||
@@ -5998,7 +5998,7 @@ try_command:
|
|
||||||
/* ignore, harmless */
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
- VIR_FREE(vm->def->disks[0]);
|
|
||||||
+ VIR_FREE(vm->def->disks);
|
|
||||||
vm->def->ndisks = 0;
|
|
||||||
}
|
|
||||||
virDomainDiskDefFree(detach);
|
|
||||||
@@ -6100,7 +6100,7 @@ qemudDomainDetachNetDevice(virConnectPtr conn,
|
|
||||||
/* ignore, harmless */
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
- VIR_FREE(vm->def->nets[0]);
|
|
||||||
+ VIR_FREE(vm->def->nets);
|
|
||||||
vm->def->nnets = 0;
|
|
||||||
}
|
|
||||||
virDomainNetDefFree(detach);
|
|
||||||
--
|
|
||||||
1.6.2.5
|
|
||||||
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
From d04ac8624f5fabe7587982796f2e2161220b0fcc Mon Sep 17 00:00:00 2001
|
|
||||||
From: Mark McLoughlin <markmc@redhat.com>
|
|
||||||
Date: Thu, 17 Sep 2009 15:32:45 +0100
|
|
||||||
Subject: [PATCH] Fix leak in PCI hostdev hot-unplug
|
|
||||||
|
|
||||||
* src/qemu_driver.c: sync the hostdev hot-unplug code with the disk/net
|
|
||||||
code.
|
|
||||||
|
|
||||||
(cherry-picked from commit a70da51ff76ed860bfc0cdee2e1d556da997c557)
|
|
||||||
|
|
||||||
Fedora-patch: libvirt-fix-pci-hostdev-hotunplug-leak.patch
|
|
||||||
---
|
|
||||||
src/qemu_driver.c | 20 +++++++++++++-------
|
|
||||||
1 files changed, 13 insertions(+), 7 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/qemu_driver.c b/src/qemu_driver.c
|
|
||||||
index de31581..2ddcdc0 100644
|
|
||||||
--- a/src/qemu_driver.c
|
|
||||||
+++ b/src/qemu_driver.c
|
|
||||||
@@ -6206,14 +6206,20 @@ static int qemudDomainDetachHostPciDevice(virConnectPtr conn,
|
|
||||||
pciFreeDevice(conn, pci);
|
|
||||||
}
|
|
||||||
|
|
||||||
- if (i != --vm->def->nhostdevs)
|
|
||||||
- memmove(&vm->def->hostdevs[i],
|
|
||||||
- &vm->def->hostdevs[i+1],
|
|
||||||
- sizeof(*vm->def->hostdevs) * (vm->def->nhostdevs-i));
|
|
||||||
- if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs) < 0) {
|
|
||||||
- virReportOOMError(conn);
|
|
||||||
- ret = -1;
|
|
||||||
+ if (vm->def->nhostdevs > 1) {
|
|
||||||
+ memmove(vm->def->hostdevs + i,
|
|
||||||
+ vm->def->hostdevs + i + 1,
|
|
||||||
+ sizeof(*vm->def->hostdevs) *
|
|
||||||
+ (vm->def->nhostdevs - (i + 1)));
|
|
||||||
+ vm->def->nhostdevs--;
|
|
||||||
+ if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs) < 0) {
|
|
||||||
+ /* ignore, harmless */
|
|
||||||
+ }
|
|
||||||
+ } else {
|
|
||||||
+ VIR_FREE(vm->def->hostdevs);
|
|
||||||
+ vm->def->nhostdevs = 0;
|
|
||||||
}
|
|
||||||
+ virDomainHostdevDefFree(detach);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
--
|
|
||||||
1.6.2.5
|
|
||||||
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
From e50c91fdcea5d81e3eb2051c05f4e51a16c3e692 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Charles Duffy <Charles_Duffy@dell.com>
|
|
||||||
Date: Fri, 18 Sep 2009 11:32:35 -0500
|
|
||||||
Subject: [PATCH] Prevent attempt to call cat -c during virDomainSave to raw
|
|
||||||
|
|
||||||
Fedora-patch: libvirt-fix-qemu-raw-format-save.patch
|
|
||||||
---
|
|
||||||
src/qemu_driver.c | 28 ++++++++++++++++++----------
|
|
||||||
1 files changed, 18 insertions(+), 10 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/qemu_driver.c b/src/qemu_driver.c
|
|
||||||
index 2ddcdc0..7c7b985 100644
|
|
||||||
--- a/src/qemu_driver.c
|
|
||||||
+++ b/src/qemu_driver.c
|
|
||||||
@@ -3905,17 +3905,25 @@ static int qemudDomainSave(virDomainPtr dom,
|
|
||||||
goto cleanup;
|
|
||||||
}
|
|
||||||
|
|
||||||
- const char *prog = qemudSaveCompressionTypeToString(header.compressed);
|
|
||||||
- if (prog == NULL) {
|
|
||||||
- qemudReportError(dom->conn, dom, NULL, VIR_ERR_INTERNAL_ERROR,
|
|
||||||
- _("Invalid compress format %d"), header.compressed);
|
|
||||||
- goto cleanup;
|
|
||||||
- }
|
|
||||||
+ {
|
|
||||||
+ const char *prog = qemudSaveCompressionTypeToString(header.compressed);
|
|
||||||
+ const char *args;
|
|
||||||
|
|
||||||
- if (STREQ (prog, "raw"))
|
|
||||||
- prog = "cat";
|
|
||||||
- internalret = virAsprintf(&command, "migrate \"exec:"
|
|
||||||
- "%s -c >> '%s' 2>/dev/null\"", prog, safe_path);
|
|
||||||
+ if (prog == NULL) {
|
|
||||||
+ qemudReportError(dom->conn, dom, NULL, VIR_ERR_INTERNAL_ERROR,
|
|
||||||
+ _("Invalid compress format %d"), header.compressed);
|
|
||||||
+ goto cleanup;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if (STREQ (prog, "raw")) {
|
|
||||||
+ prog = "cat";
|
|
||||||
+ args = "";
|
|
||||||
+ } else {
|
|
||||||
+ args = "-c";
|
|
||||||
+ }
|
|
||||||
+ internalret = virAsprintf(&command, "migrate \"exec:"
|
|
||||||
+ "%s %s >> '%s' 2>/dev/null\"", prog, args, safe_path);
|
|
||||||
+ }
|
|
||||||
|
|
||||||
if (internalret < 0) {
|
|
||||||
virReportOOMError(dom->conn);
|
|
||||||
--
|
|
||||||
1.6.2.5
|
|
||||||
|
|
||||||
+64
-748
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user