This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
Releases: intel/nemu
Releases · intel/nemu
release-2019-08-27
New release to fix CVE-2019-14378
release-2019-05-21
New release including the fix for vhost-net and hugepages.
release-2019-05-17
virt: Increase DIMM alignment to support huge pages The DIMM needs to be aligned to the size of the pages that are being used by the VMM. Increase it to 2 MiB so that it can be used with huge pages. Fixes: kata-containers/runtime#1698 Signed-off-by: Rob Bradford <[email protected]>
release-2019-05-07
virtiofsd: use memcpy() for non-NUL terminated strings strncpy(dst, src, strlen(src)) does not NUL-terminate. This is a common source of bugs so gcc 9 warns about it. Use memcpy(3) to make the code clearer and silence compiler warnings. Signed-off-by: Stefan Hajnoczi <[email protected]>
release-2019-04-25
build: Generate and upload virtiofsd binary Because the virtio-fs userspace daemon called virtiofsd is part of the contrib code in NEMU, we have to also build this binary so that it can be uploaded and made accessible through our releases. Signed-off-by: Sebastien Boeuf <[email protected]>
Release 2019-03-11
virtio-pci: Correctly expose vector count for virtio-rng-pci The vector count should be 1 + the number of virtqueues which is one for virtio-rng. The other PCI devices correctly define this property and default value. This will then enable the use of MSI-X which prevents the kernel from falling back to legacy interrupts which we do not support. Signed-off-by: Rob Bradford <[email protected]>
Release 2018-12-17
hw: virt: Add basic ACPI timer support For the reduced ACPI platform implement the basic ACPI PM_TMR support. Implement only the basic counter and not the optional interupt triggering when the counter's carry changes value. This is useful for implementing basic timekeeping in early firmware. Signed-off-by: Rob Bradford <[email protected]>
Release 2018-11-29
sysfw: Bump BIOS region size The default seabios image is greater than 128KiB so ensure that the mapping can handle it. Signed-off-by: Rob Bradford <[email protected]>