From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47206) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dqMM0-0007Bh-VT for qemu-devel@nongnu.org; Fri, 08 Sep 2017 12:42:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dqMLx-0007hp-2t for qemu-devel@nongnu.org; Fri, 08 Sep 2017 12:42:05 -0400 Received: from research.iiit.ac.in ([196.12.53.8]:60938) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dqMLw-0007e8-E6 for qemu-devel@nongnu.org; Fri, 08 Sep 2017 12:42:01 -0400 From: Ishani Chugh Date: Fri, 8 Sep 2017 22:11:42 +0530 Message-Id: <1504888905-22396-1-git-send-email-chugh.ishani@research.iiit.ac.in> Subject: [Qemu-devel] [PATCH v4 0/3] QEMU Backup Tool List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: stefanha@redhat.com, jsnow@redhat.com, famz@redhat.com, Ishani Chugh This patch series is intended to introduce QEMU Backup tool. qemu-backup will be a command-line tool for performing full and incremental disk backups on running VMs. It is intended as a reference implementation for management stack and backup developers to see QEMU's backup features in action. This patch series contains three patches, 1) QEMU Backup command line tool. 2) Test for full backup. 3) Manpage for the tool. v4: * Reorganize patch structure. * Modify commit message for backup tool commit. * Organize examples by subcommands. * Add checks for required arguments. * Adds required arguments group to mandatory arguments. * Add checks for validating socket path. Ishani Chugh (3): Add manpage for QEMU Backup Tool backup: Adds Backup Tool Test for full Backup Makefile | 14 +- contrib/backup/qemu-backup.py | 373 ++++++++++++++++++++++++++++++++++++++++ contrib/backup/qemu-backup.texi | 142 +++++++++++++++ tests/qemu-iotests/191 | 86 +++++++++ tests/qemu-iotests/191.out | 35 ++++ tests/qemu-iotests/group | 1 + 6 files changed, 647 insertions(+), 4 deletions(-) create mode 100755 contrib/backup/qemu-backup.py create mode 100644 contrib/backup/qemu-backup.texi create mode 100755 tests/qemu-iotests/191 create mode 100644 tests/qemu-iotests/191.out -- 2.7.4