From ea4e78e590e5dbef9c41d987d2553d752ecb49b1 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Sun, 13 Jun 2010 14:15:46 +0200 Subject: 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 Signed-off-by: Blue Swirl --- QMP/vm-info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'QMP') diff --git a/QMP/vm-info b/QMP/vm-info index b150d8240c..8ebaeb38c0 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__': -- cgit v1.2.1