From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:41818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhLp9-0004G2-PY for qemu-devel@nongnu.org; Tue, 28 May 2013 11:28:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UhLp3-0007Ln-Nh for qemu-devel@nongnu.org; Tue, 28 May 2013 11:28:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:63961) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhLp3-0007Lj-FU for qemu-devel@nongnu.org; Tue, 28 May 2013 11:28:25 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r4SFSOEi017032 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 28 May 2013 11:28:24 -0400 From: Kevin Wolf Date: Tue, 28 May 2013 17:27:20 +0200 Message-Id: <1369754856-30036-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 00/16] Make qemu-io commands available in the monitor List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, pbonzini@redhat.com, stefanha@redhat.com, lcapitulino@redhat.com This is a prerequisite for some kind of tests. It involves reorganising the qemu-io code so that the command part can be separated and doesn't pollute the global namespace any more, so we can link it with qemu. Kevin Wolf (16): qemu-io: Remove unused args_command cutils: Support 'P' and 'E' suffixes in strtosz() qemu-io: Make cvtnum() a wrapper around strtosz_suffix() qemu-io: Handle cvtnum() errors in 'alloc' qemu-io: Don't use global bs in command implementations qemu-io: Split off commands to qemu-io-cmds.c qemu-io: Factor out qemuio_command qemu-io: Move 'help' function qemu-io: Move 'quit' function qemu-io: Move qemu_strsep() to cutils.c qemu-io: Move functions for registering and running commands qemu-io: Move command_loop() and friends qemu-io: Move remaining helpers from cmd.c qemu-io: Interface cleanup qemu-io: Use the qemu version for -V Make qemu-io commands available in the monitor Makefile | 2 +- Makefile.objs | 1 + blockdev.c | 15 + cmd.c | 612 ------------- cmd.h | 79 -- hmp-commands.hx | 16 + hmp.c | 10 + hmp.h | 1 + include/qemu-common.h | 3 + include/qemu-io.h | 46 + monitor.c | 8 +- qapi-schema.json | 16 + qemu-img.c | 10 +- qemu-io-cmds.c | 2118 ++++++++++++++++++++++++++++++++++++++++++++ qemu-io.c | 1988 ++++------------------------------------- qmp-commands.hx | 28 + tests/qemu-iotests/049.out | 8 +- util/cutils.c | 25 + 18 files changed, 2466 insertions(+), 2520 deletions(-) delete mode 100644 cmd.c delete mode 100644 cmd.h create mode 100644 include/qemu-io.h create mode 100644 qemu-io-cmds.c -- 1.8.1.4