[libvirt PATCH v2] Adds e1000e/vmxnet3 Vnet_hdr suuport

2020-08-08 Thread Patrick Magauran
Changes from Original: Moved Comparison to qemuInterfaceIsVnetCompatModel in qemu_interface.c per the recommendation of Daniel Berrangé - Libvirt bases its decision about whether to apply the vnet_hdr flag to the tap interface on whether or not the selected model is VirtIO. Originally,

[PATCH] NVRAM: check NVRAM file size and recover from template

2020-08-08 Thread Hao Wang
From: Hao Wang Subject: [PATCH] NVRAM: check NVRAM file size and recover from template A corrupted nvram file (e.g. caused by last unsuccessful creation due to insufficient memory) can lead to boot or migration failure. Check the size of the existed nvram file when qemuPrepareNVRAM, and

[PATCH] meson: fix some FreeBSD checks regressions

2020-08-08 Thread Roman Bogorodskiy
* Add missing prerequisite headers for checking link_addr(3) in net/if_dl.h, * Add missing prerequisite headers for checking BRDGSFD, BRDGADD, BRDGDEL in net/if_bridgevar.h, * When checking for ifconfig(8), set not only IFCONFIG value, but also IFCONFIG_PATH as it's used in

Re: [PATCH v3 4/6] bhyve: allow to specify host sound device

2020-08-08 Thread Roman Bogorodskiy
Daniel P. Berrangé wrote: > On Fri, Aug 07, 2020 at 07:09:33PM +0400, Roman Bogorodskiy wrote: > > Allow to map sound playback and recording devices to host devices > > using "" OSS audio backend. > > > > Signed-off-by: Roman Bogorodskiy > > --- > > src/bhyve/bhyve_command.c

[PATCH] doCoreDump: fix return value not expect as result

2020-08-08 Thread Hao Wang
From: Hao Wang Subject: [PATCH] doCoreDump: fix return value not expect as result In a case that qemuDumpToFd() return zero while VIR_CLOSE(fd) fails, codes will go to "cleanup" with "ret=0", resulting in unexpected return value. Fix that. Signed-off-by: Hao Wang --- src/qemu/qemu_driver.c |