aboutsummaryrefslogtreecommitdiffstats
path: root/QMP
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2010-06-13 14:15:46 +0200
committerBlue Swirl <blauwirbel@gmail.com>2010-06-13 15:33:02 +0300
commitea4e78e590e5dbef9c41d987d2553d752ecb49b1 (patch)
tree8338c1adce314af3dab36cc759a381526b3980df /QMP
parent8caa0065b82c1a223aeaca62e7d572c89db2b6eb (diff)
monitor/QMP: Drop info hpet / query-hpet
This command was of minimal use before, now it is useless as the hpet become a qdev device and is thus easily discoverable. We should definitely not set query-hpet in QMP's stone, and there is also no good reason to keep it for the interactive monitor. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'QMP')
-rwxr-xr-xQMP/vm-info2
1 files changed, 1 insertions, 1 deletions
diff --git a/QMP/vm-info b/QMP/vm-info
index b150d8240..8ebaeb38c 100755
--- a/QMP/vm-info
+++ b/QMP/vm-info
@@ -25,7 +25,7 @@ def main():
qemu = qmp.QEMUMonitorProtocol(argv[1])
qemu.connect()
- for cmd in [ 'version', 'hpet', 'kvm', 'status', 'uuid', 'balloon' ]:
+ for cmd in [ 'version', 'kvm', 'status', 'uuid', 'balloon' ]:
print cmd + ': ' + str(qemu.send('query-' + cmd))
if __name__ == '__main__':