search for: virtio_device_nam

Displaying 4 results from an estimated 4 matches for "virtio_device_nam".

Did you mean: virtio_device_name
2018 Dec 06
0
[PATCH v2] Revert "launch: libvirt: Use qemu-bridge-helper to implement a full network (RHBZ#1148012)."
...74dcdf0..57647d11c 100644 --- a/lib/guestfs-internal.h +++ b/lib/guestfs-internal.h @@ -136,6 +136,17 @@ #define MACHINE_TYPE "pseries" #endif +/* Differences in qemu device names on ARMv7 (virtio-mmio), s/390x + * (CCW) vs normal hardware with PCI. + */ +#if defined(__arm__) +#define VIRTIO_DEVICE_NAME(type) type "-device" +#elif defined(__s390x__) +#define VIRTIO_DEVICE_NAME(type) type "-ccw" +#else +#define VIRTIO_DEVICE_NAME(type) type "-pci" +#endif + /* Guestfs handle and associated structures. */ /* State. */ diff --git a/lib/guestfs.pod b/lib/guestfs.pod...
2018 Dec 06
2
[PATCH v2] Revert "launch: libvirt: Use qemu-bridge-helper to implement a full network (RHBZ#1148012)."
Let's actually compile and test the patch this time, rather than trusting the RHEL 7.6 patch to apply directly to head ... Rich.
2018 Dec 06
1
[PATCH] Revert "launch: libvirt: Use qemu-bridge-helper to implement
Possibly for post 1.40. Rich.
2018 Nov 30
1
[PATCH] Replace -nodefconfig with -no-user-config.
...-machine accel=kvm:tcg \ -m 2048 \ diff --git a/lib/launch-direct.c b/lib/launch-direct.c index 496b333c1..1e51d2a45 100644 --- a/lib/launch-direct.c +++ b/lib/launch-direct.c @@ -480,8 +480,8 @@ launch_direct (guestfs_h *g, void *datav, const char *arg) */ arg ("-global", VIRTIO_DEVICE_NAME ("virtio-blk") ".scsi=off"); - if (guestfs_int_qemu_supports (g, data->qemu_data, "-nodefconfig")) - flag ("-nodefconfig"); + if (guestfs_int_qemu_supports (g, data->qemu_data, "-no-user-config")) + flag ("-no-user-config"...