diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2012-12-03 15:56:41 -0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2013-01-25 10:36:54 -0200 |
commit | 01ceb97e7b8b00a1d4779543fe4b958df7e16890 (patch) | |
tree | 280988f4b1ad0390006ad575c4173e4df44411fc /qmp-commands.hx | |
parent | 58513bde833804bc9395d79fd81aae631b97c348 (diff) | |
download | qemu-01ceb97e7b8b00a1d4779543fe4b958df7e16890.tar.gz qemu-01ceb97e7b8b00a1d4779543fe4b958df7e16890.tar.bz2 qemu-01ceb97e7b8b00a1d4779543fe4b958df7e16890.zip |
balloon: drop old stats code & API
Next commit will re-enable balloon stats with a different interface, but
this old code conflicts with it. Let's drop it.
It's important to note that the QMP and HMP interfaces are also dropped
by this commit. That shouldn't be a problem though, because:
1. All QMP fields are optional
2. This feature has always been disabled
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'qmp-commands.hx')
-rw-r--r-- | qmp-commands.hx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/qmp-commands.hx b/qmp-commands.hx index cbf12804be..3be5330bb8 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -2549,13 +2549,6 @@ Make an asynchronous request for balloon info. When the request completes a json-object will be returned containing the following data: - "actual": current balloon value in bytes (json-int) -- "mem_swapped_in": Amount of memory swapped in bytes (json-int, optional) -- "mem_swapped_out": Amount of memory swapped out in bytes (json-int, optional) -- "major_page_faults": Number of major faults (json-int, optional) -- "minor_page_faults": Number of minor faults (json-int, optional) -- "free_mem": Total amount of free and unused memory in - bytes (json-int, optional) -- "total_mem": Total amount of available memory in bytes (json-int, optional) Example: @@ -2563,12 +2556,6 @@ Example: <- { "return":{ "actual":1073741824, - "mem_swapped_in":0, - "mem_swapped_out":0, - "major_page_faults":142, - "minor_page_faults":239245, - "free_mem":1014185984, - "total_mem":1044668416 } } |