Displaying 2 results from an estimated 2 matches for "domain_optargs".
2019 Sep 15
0
[PATCH nbdkit 2/4] guestfs, libvirt: Rename ‘connect’ global to avoid -Wshadow warning.
...strcmp (key, "connect") == 0) {
- connect = value;
+ libvirt_uri = value;
}
else if (strcmp (key, "export") == 0) {
export = value;
@@ -355,9 +355,9 @@ add_disks (guestfs_h *g, int readonly, struct drive *drives)
GUESTFS_ADD_DOMAIN_ALLOWUUID_BITMASK;
domain_optargs.readonly = readonly;
domain_optargs.allowuuid = 1;
- if (connect) {
+ if (libvirt_uri) {
domain_optargs.bitmask |= GUESTFS_ADD_DOMAIN_LIBVIRTURI_BITMASK;
- domain_optargs.libvirturi = connect;
+ domain_optargs.libvirturi = libvirt_uri;
}
if (guestfs_add_domain_...
2019 Sep 15
13
[PATCH nbdkit 0/4] Reflection plugin, peer name.
This series is based on my blog posting here:
https://rwmj.wordpress.com/2019/09/13/nbdkit-supports-exportnames/
It depends on the fix for realloc:
https://www.redhat.com/archives/libguestfs/2019-September/thread.html#00103
This series adds a fun plugin, and also an semi-related feature I've
long thought to be desirable. You can consider patches 1 & 4, and
patches 2 & 3 as forming