aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorLiang Li <liang.z.li@intel.com>2016-08-09 08:30:42 +0800
committerMichael S. Tsirkin <mst@redhat.com>2016-10-10 01:16:57 +0300
commit17871f71fd2ff5d76196051470e9604bfb6f0c09 (patch)
treed6cb6ebebd2f13dc9504076fce14b14be14fde84 /hw
parent48f592118ab42f83a1a7561c4bfd2b72a100f241 (diff)
downloadqemu-17871f71fd2ff5d76196051470e9604bfb6f0c09.zip
qemu-17871f71fd2ff5d76196051470e9604bfb6f0c09.tar.gz
qemu-17871f71fd2ff5d76196051470e9604bfb6f0c09.tar.bz2
virtio-balloon: Remove needless precompiled directive
Since there in wrapper around madvise(), the virtio-balloon code is able to work without the precompiled directive, the directive can be removed. Signed-off-by: Liang Li <liang.z.li@intel.com> Suggested-by: Thomas Huth <thuth@redhat.com> Reviewd-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/virtio/virtio-balloon.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/virtio/virtio-balloon.c b/hw/virtio/virtio-balloon.c
index 49a2f4a..eb572e6 100644
--- a/hw/virtio/virtio-balloon.c
+++ b/hw/virtio/virtio-balloon.c
@@ -34,13 +34,11 @@
static void balloon_page(void *addr, int deflate)
{
-#if defined(__linux__)
if (!qemu_balloon_is_inhibited() && (!kvm_enabled() ||
kvm_has_sync_mmu())) {
qemu_madvise(addr, BALLOON_PAGE_SIZE,
deflate ? QEMU_MADV_WILLNEED : QEMU_MADV_DONTNEED);
}
-#endif
}
static const char *balloon_stat_names[] = {