]> Git Repo - qemu.git/commitdiff
qga: Add "guest-get-memory-block-info" to blacklist
authorBasil Salman <[email protected]>
Thu, 17 Oct 2019 12:34:38 +0000 (15:34 +0300)
committerMichael Roth <[email protected]>
Mon, 4 Nov 2019 14:50:54 +0000 (08:50 -0600)
Memory block commands are only supported for linux with sysfs,
"guest-get-memory-block-info" was not in blacklist for other
cases.

Reported on:
https://bugzilla.redhat.com/show_bug.cgi?id=1751431

Signed-off-by: Basil Salman <[email protected]>
Reviewed-by: Marc-AndrĂ© Lureau <[email protected]>
Signed-off-by: Michael Roth <[email protected]>
qga/commands-posix.c
qga/commands-win32.c

index dfc05f5b8ab958ef43aca36258e151ee2525ebf5..1c1a165daed803c611a06f5f46515ae5be9ed79c 100644 (file)
@@ -2730,7 +2730,8 @@ GList *ga_command_blacklist_init(GList *blacklist)
             "guest-suspend-hybrid", "guest-network-get-interfaces",
             "guest-get-vcpus", "guest-set-vcpus",
             "guest-get-memory-blocks", "guest-set-memory-blocks",
-            "guest-get-memory-block-size", NULL};
+            "guest-get-memory-block-size", "guest-get-memory-block-info",
+            NULL};
         char **p = (char **)list;
 
         while (*p) {
index 64b1c754b0caf40c30b09ccd1344490153af16b6..55ba5b263af3d96b42b2194b1a66a76703924bcb 100644 (file)
@@ -1894,7 +1894,7 @@ GList *ga_command_blacklist_init(GList *blacklist)
         "guest-suspend-hybrid",
         "guest-set-vcpus",
         "guest-get-memory-blocks", "guest-set-memory-blocks",
-        "guest-get-memory-block-size",
+        "guest-get-memory-block-size", "guest-get-memory-block-info",
         NULL};
     char **p = (char **)list_unsupported;
 
This page took 0.033127 seconds and 4 git commands to generate.