From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53893) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dmimd-0005mQ-74 for qemu-devel@nongnu.org; Tue, 29 Aug 2017 11:50:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dmimZ-0000Du-8f for qemu-devel@nongnu.org; Tue, 29 Aug 2017 11:50:31 -0400 Received: from research.iiit.ac.in ([196.12.53.8]:58832) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dmimY-0000AC-HB for qemu-devel@nongnu.org; Tue, 29 Aug 2017 11:50:27 -0400 From: Ishani Chugh Date: Tue, 29 Aug 2017 21:20:15 +0530 Message-Id: <1504021818-12128-1-git-send-email-chugh.ishani@research.iiit.ac.in> Subject: [Qemu-devel] [PATCH 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, 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. Ishani Chugh (3): backup: QEMU Backup Tool Test for full Backup Add manpage for QEMU Backup Tool Makefile | 14 +- contrib/backup/qemu-backup.py | 335 ++++++++++++++++++++++++++++++++++++++++ contrib/backup/qemu-backup.texi | 144 +++++++++++++++++ tests/qemu-iotests/191 | 86 +++++++++++ tests/qemu-iotests/191.out | 35 +++++ tests/qemu-iotests/group | 2 + 6 files changed, 612 insertions(+), 4 deletions(-) create mode 100644 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