]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Enable batched ballooning for linux and windows guest.
authorVMware, Inc <>
Fri, 12 Apr 2013 19:38:13 +0000 (12:38 -0700)
committerDmitry Torokhov <dtor@vmware.com>
Wed, 17 Apr 2013 19:16:41 +0000 (12:16 -0700)
Enough testing has been done to enable it by default.

Signed-off-by: Dmitry Torokhov <dtor@vmware.com>
open-vm-tools/modules/shared/vmmemctl/balloonInt.h

index facca9ebecfb7f32acfb8bd6910200c2e02aa5f7..8bdefa5a888b2c0035e1e6bb701414a6f997902e 100644 (file)
 #define BALLOON_NAME_VERBOSE            "VMware memory control driver"
 
 #if defined __linux__ || defined __FreeBSD__ || defined _WIN32
-/*
- * FIXME: Even if the driver support batched commands keep using the
- * non-batched one until more testing has been done.
- */
-#define BALLOON_CAPABILITIES    BALLOON_BASIC_CMDS
+#define BALLOON_CAPABILITIES    (BALLOON_BASIC_CMDS|BALLOON_BATCHED_CMDS)
 #else
 #define BALLOON_CAPABILITIES    BALLOON_BASIC_CMDS
 #endif