Displaying 6 results from an estimated 6 matches for "libvirt_x".
Did you mean:
  libvirt_c
  
2017 Dec 05
1
[PATCH] lib: libvirt: stop using <shareable/> for appliance disk (RHBZ#1518517)
...rrange, Richard W.M. Jones,  Peter Krempa.
---
 lib/launch-libvirt.c | 6 ------
 1 file changed, 6 deletions(-)
diff --git a/lib/launch-libvirt.c b/lib/launch-libvirt.c
index e5121799e..5aae1b611 100644
--- a/lib/launch-libvirt.c
+++ b/lib/launch-libvirt.c
@@ -985,10 +985,6 @@ static int construct_libvirt_xml_appliance (guestfs_h *g, const struct libvirt_x
     }						\
   } while (0)
 
-/* <element/> */
-#define empty_element(element)					\
-  do { start_element(element) {} end_element (); } while (0)
-
 /* key=value attribute of the current element. */
 #define attribute(key,value)...
2013 Feb 28
5
[PATCH v2 0/5] Fix SELinux security contexts so we can access shared disks (RHBZ#912499).
Link to version 1:
https://www.redhat.com/archives/libguestfs/2013-February/thread.html#00122
Changes since version 1:
 - I've pushed two (of the three) code refactoring patches.  The third
   one proved rather hard to move.
 - selinuxnorelabel option is no more.  Instead there is a second
   internal API (internal_set_libvirt_selinux_norelabel_disks).
 - fixed bogus commit message
 -
2014 Jan 16
3
[PATCH 0/2] Don't use snapshot=on
QEMU upstream has broken snapshot=on ... again.
These two patches stop using it entirely.  Instead we run
'qemu-img create' to create overlay disks as required.
Note that the libvirt and UML backends were already doing this: The
libvirt backend because <transient/> has never worked, and the UML
backend was running uml_mkcow because the UML-equivalent syntax of
snapshot=on was
2015 Oct 05
0
[PATCH 2/2] Fix whitespace.
...;
+			"\n"
+			"Try running qemu directly without libvirt using this environment variable:\n"
+			"export LIBGUESTFS_BACKEND=direct\n"
+			"\n"
+			"Original error from libvirt"));
     goto cleanup;
   }
 
@@ -912,30 +912,30 @@ static int construct_libvirt_xml_appliance (guestfs_h *g, const struct libvirt_x
  */
 
 /* <element */
-#define start_element(element)                                        \
-  if (xmlTextWriterStartElement (xo, BAD_CAST (element)) == -1) {     \
-    xml_error ("xmlTextWriterStartElement");...
2014 Mar 10
5
[PATCH 0/3] Add discard support.
These patches contain the beginnings of discard (a.k.a. trim or unmap)
support.  This will allow us to change virt-sparsify to work on disk
images in-place (instead of using slow & inefficient copying).
The approach used is to add an optional 'discard' parameter to
add-drive.  It has 3 possible settings:
 - 'disable' : the default, no discard is done
 - 'besteffort' :
2015 Oct 05
3
[PATCH 1/2] Change 'fprintf (stdout,...)' -> printf.
Result of earlier copy and paste.
---
 align/scan.c          | 35 ++++++++++---------
 cat/cat.c             | 39 +++++++++++----------
 cat/filesystems.c     | 69 +++++++++++++++++++-------------------
 cat/log.c             | 35 ++++++++++---------
 cat/ls.c              | 61 +++++++++++++++++----------------
 df/main.c             | 43 ++++++++++++------------
 diff/diff.c           | 67