[Qemu-devel] [PATCH v4 3/3] Test for full Backup

2017-09-08 Thread Ishani Chugh
This patch is the test for full backup implementation in Backup tool. The test employs two basic substests: 1) Backing up an empty guest and comparing it with base image. 2) Writing a pattern to the guest, creating backup and comparing with the base image. Signed-off-by: Ishani Chugh

[Qemu-devel] [PATCH v4 1/3] Add manpage for QEMU Backup Tool

2017-09-08 Thread Ishani Chugh
the commands which the backup tool will support. The manpage will be built along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [PATCH v4 2/3] backup: Adds Backup Tool

2017-09-08 Thread Ishani Chugh
--guest Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 373 ++ 1 file changed, 373 insertions(+) create mode 100755 contrib/backup/qemu-backup.py diff --git a/contrib/backup/qemu-backup.py b/c

[Qemu-devel] [PATCH v4 0/3] QEMU Backup Tool

2017-09-08 Thread Ishani Chugh
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

[Qemu-devel] [PATCH 2/3] Backup Tool: Support for Incremental Backup

2017-08-30 Thread Ishani Chugh
Adds incremental backup functionality. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 101 +- 1 file changed, 99 insertions(+), 2 deletions(-) diff --git a/contrib/backup/qemu-backup.py b/contrib/

[Qemu-devel] [PATCH 1/3] Backup Tool: Manpage for Incremental Backup

2017-08-30 Thread Ishani Chugh
Adds command description to perform incremental backup and a full example for the same. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.texi | 18 ++ 1 file changed, 18 insertions(+) diff --git a/contrib/backup/qemu-backup.

[Qemu-devel] [PATCH 0/3] Backup Tool: Incremental backup

2017-08-30 Thread Ishani Chugh
example). Based on: 1504113297-22052-1-git-send-email-chugh.ish...@research.iiit.ac.in Ishani Chugh (3): Backup Tool: Manpage for Incremental Backup Backup Tool: Support for Incremental Backup Backup Tool: Test for Incremental Backup contrib/backup/qemu-backup.py | 101

[Qemu-devel] [PATCH 3/3] Backup Tool: Test for Incremental Backup

2017-08-30 Thread Ishani Chugh
image. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- tests/qemu-iotests/193 | 86 ++ tests/qemu-iotests/193.out | 34 ++ tests/qemu-iotests/group | 1 + 3 files changed, 121 insertions(+) create mode

[Qemu-devel] [PATCH v3 1/3] backup: QEMU Backup Tool

2017-08-30 Thread Ishani Chugh
--guest Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 343 ++ 1 file changed, 343 insertions(+) create mode 100644 contrib/backup/qemu-backup.py diff --git a/contrib/backup/qemu-backup.py b/contrib/

[Qemu-devel] [PATCH v3 3/3] Add manpage for QEMU Backup Tool

2017-08-30 Thread Ishani Chugh
the commands which the backup tool will support. The manpage will be built along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [PATCH v3 0/3] QEMU Backup Tool

2017-08-30 Thread Ishani Chugh
from manpage Ishani Chugh (3): backup: QEMU Backup Tool Test for full Backup Add manpage for QEMU Backup Tool Makefile| 14 +- contrib/backup/qemu-backup.py | 343 contrib/backup/qemu-backup.texi | 142

[Qemu-devel] [PATCH v3 2/3] Test for full Backup

2017-08-30 Thread Ishani Chugh
This patch is the test for full backup implementation in Backup tool. The test employs two basic substests: 1) Backing up an empty guest and comparing it with base image. 2) Writing a pattern to the guest, creating backup and comparing with the base image. Signed-off-by: Ishani Chugh

[Qemu-devel] [PATCH v2 2/3] Test for full Backup

2017-08-29 Thread Ishani Chugh
This patch is the test for full backup implementation in Backup tool. The test employs two basic substests: 1) Backing up an empty guest and comparing it with base image. 2) Writing a pattern to the guest, creating backup and comparing with the base image. Signed-off-by: Ishani Chugh

[Qemu-devel] [PATCH v2 3/3] Add manpage for QEMU Backup Tool

2017-08-29 Thread Ishani Chugh
listing the commands which the backup tool will support. The manpage wil be build along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [PATCH v2 0/3] QEMU Backup Tool

2017-08-29 Thread Ishani Chugh
. 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

[Qemu-devel] [PATCH v2 1/3] backup: QEMU Backup Tool

2017-08-29 Thread Ishani Chugh
--guest Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 335 ++ 1 file changed, 335 insertions(+) create mode 100644 contrib/backup/qemu-backup.py diff --git a/contrib/backup/qemu-backup.py b/contrib/

[Qemu-devel] [PATCH 1/3] backup: QEMU Backup Tool

2017-08-29 Thread Ishani Chugh
--guest Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 335 ++ 1 file changed, 335 insertions(+) create mode 100644 contrib/backup/qemu-backup.py diff --git a/contrib/backup/qemu-backup.py b/c

[Qemu-devel] [PATCH 2/3] Test for full Backup

2017-08-29 Thread Ishani Chugh
This patch is the test for full backup implementation in Backup tool. The test employs two basic substests: 1) Backing up an empty guest and comparing it with base image. 2) Writing a pattern to the guest, creating backup and comparing with the base image. Signed-off-by: Ishani Chugh

[Qemu-devel] [PATCH 0/3] QEMU Backup Tool

2017-08-29 Thread Ishani Chugh
. 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

[Qemu-devel] [PATCH 3/3] Add manpage for QEMU Backup Tool

2017-08-29 Thread Ishani Chugh
listing the commands which the backup tool will support. The manpage wil be build along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [PATCH 3/3] Add manpage for QEMU Backup Tool

2017-08-29 Thread Ishani Chugh
listing the commands which the backup tool will support. The manpage wil be build along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [PATCH 2/3] Test for full Backup

2017-08-29 Thread Ishani Chugh
This patch is the test for full backup implementation in Backup tool. The test employs two basic substests: 1) Backing up an empty guest and comparing it with base image. 2) Writing a pattern to the guest, creating backup and comparing with the base image. Signed-off-by: Ishani Chugh

[Qemu-devel] [PATCH 0/3] QEMU Backup Tool

2017-08-29 Thread Ishani Chugh
. 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

[Qemu-devel] [PATCH 1/3] backup: QEMU Backup Tool

2017-08-29 Thread Ishani Chugh
--guest Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 339 ++ 1 file changed, 339 insertions(+) create mode 100644 contrib/backup/qemu-backup.py diff --git a/contrib/backup/qemu-backup.py b/contrib/

[Qemu-devel] [PATCH 1/3] backup: QEMU Backup Tool

2017-08-23 Thread Ishani Chugh
--guest Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 338 ++ 1 file changed, 338 insertions(+) create mode 100644 contrib/backup/qemu-backup.py diff --git a/contrib/backup/qemu-backup.py b/contrib/

[Qemu-devel] [PATCH 2/3] Test for full Backup

2017-08-23 Thread Ishani Chugh
This patch is the test for full backup implementation in Backup tool. The test employs two basic substests: 1) Backing up an empty guest and comparing it with base image. 2) Writing a pattern to the guest, creating backup and comparing with the base image. Signed-off-by: Ishani Chugh

[Qemu-devel] [PATCH 0/3] QEMU Backup Tool

2017-08-23 Thread Ishani Chugh
. 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

[Qemu-devel] [PATCH 3/3] Add manpage for QEMU Backup Tool

2017-08-23 Thread Ishani Chugh
listing the commands which the backup tool will support. The manpage wil be build along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [PATCH 1/3] backup: QEMU Backup Tool

2017-08-21 Thread Ishani Chugh
--guest Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 334 ++ 1 file changed, 334 insertions(+) create mode 100644 contrib/backup/qemu-backup.py diff --git a/contrib/backup/qemu-backup.py b/contrib/

[Qemu-devel] [PATCH 2/3] Test for full Backup

2017-08-21 Thread Ishani Chugh
This patch is the test for full backup implementation in Backup tool. The test employs two basic substests: 1) Backing up an empty guest and comparing it with base image. 2) Writing a pattern to the guest, creating backup and comparing with the base image. Signed-off-by: Ishani Chugh

[Qemu-devel] [PATCH 0/3] QEMU Backup Tool

2017-08-21 Thread Ishani Chugh
. 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

[Qemu-devel] [PATCH 3/3] Add manpage for QEMU Backup Tool

2017-08-21 Thread Ishani Chugh
listing the commands which the backup tool will support. The manpage wil be build along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [PATCH 2/2] backup: QEMU Backup Tool

2017-08-11 Thread Ishani Chugh
--guest Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 309 ++ 1 file changed, 309 insertions(+) create mode 100644 contrib/backup/qemu-backup.py diff --git a/contrib/backup/qemu-backup.py b/contrib/

[Qemu-devel] [PATCH 1/2] Add manpage for QEMU Backup Tool

2017-08-11 Thread Ishani Chugh
listing the commands which the backup tool will support. The manpage wil be build along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [PATCH 0/2] QEMU Backup Tool

2017-08-11 Thread Ishani Chugh
. This patch series contains two patches, 1) Adding Manpage for the tool 2) QEMU Backup command line tool Ishani Chugh (2): Add manpage for QEMU Backup Tool backup: QEMU Backup Tool Makefile| 14 +- contrib/backup/qemu-backup.py | 309

[Qemu-devel] [PATCH 2/2] backup: QEMU Backup Tool

2017-08-10 Thread Ishani Chugh
--guest Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 309 ++ 1 file changed, 309 insertions(+) create mode 100644 contrib/backup/qemu-backup.py diff --git a/contrib/backup/qemu-backup.py b/contrib/

[Qemu-devel] [PATCH 1/2] Add manpage for QEMU Backup Tool

2017-08-10 Thread Ishani Chugh
listing the commands which the backup tool will support. The manpage wil be build along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [PATCH 0/2] QEMU Backup Tool

2017-08-10 Thread Ishani Chugh
. This patch series contains two patches, 1) Adding Manpage for the tool 2) QEMU Backup command line tool Ishani Chugh (2): Add manpage for QEMU Backup Tool backup: QEMU Backup Tool Makefile| 15 +- contrib/backup/qemu-backup.py | 309

[Qemu-devel] [PATCH] QEMU Backup Tool

2017-08-09 Thread Ishani Chugh
--guest Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 217 +++--- 1 file changed, 141 insertions(+), 76 deletions(-) diff --git a/contrib/backup/qemu-backup.py b/contrib/backup/qemu-backup.py index 9

[Qemu-devel] [PATCH v6] Add manpage for QEMU Backup Tool

2017-07-17 Thread Ishani Chugh
listing the commands which the backup tool will support. The manpage wil be build along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [RFC] RFC on Backup tool

2017-07-15 Thread Ishani Chugh
-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- contrib/backup/qemu-backup.py | 244 ++ 1 file changed, 244 insertions(+) create mode 100644 contrib/backup/qemu-backup.py diff --git a/contrib/backup/qemu-backup.py b/contrib/backup/qemu-backup.

[Qemu-devel] [PATCH v5] Add manpage for QEMU Backup Tool

2017-07-15 Thread Ishani Chugh
listing the commands which the backup tool will support. The manpage wil be build along with other docs when configure is provided with --enable-docs flag in the location contrib/backup in build directory. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Ma

[Qemu-devel] [PATCH v2] Python3 Support for qmp.py

2017-07-06 Thread Ishani Chugh
function. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- scripts/qmp/qmp.py | 58 ++ 1 file changed, 37 insertions(+), 21 deletions(-) diff --git a/scripts/qmp/qmp.py b/scripts/qmp/qmp.py index 62d3651..58fb7d1

[Qemu-devel] [PATCH] Python3 Support for qmp.py

2017-06-30 Thread Ishani Chugh
This patch intends to make qmp.py compatible with both python2 and python3. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- scripts/qmp/qmp.py | 66 +++--- 1 file changed, 43 insertions(+), 23 deletions(-) diff --git a/s

[Qemu-devel] [PATCH v4] Add manpage for QEMU Backup Tool

2017-06-22 Thread Ishani Chugh
listing the commands which the backup tool will support. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Makefile| 2 +- contrib/backup/qemu-backup.texi | 132 2 files changed, 133 insertions(+), 1 de

[Qemu-devel] [PATCH v3] Add manpage for QEMU Backup Tool

2017-06-19 Thread Ishani Chugh
listing the commands which the backup tool will support. Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Makefile| 2 +- contrib/backup/qemu-backup.texi | 139 2 files changed, 140 insertions(+), 1 de

[Qemu-devel] [PATCH v2] Add manpage for QEMU Backup Tool

2017-06-13 Thread Ishani Chugh
Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Makefile| 2 +- contrib/backup/qemu-backup.texi | 139 2 files changed, 140 insertions(+), 1 deletion(-) create mode 100644 contrib/backup/qemu-backup.texi

[Qemu-devel] [PATCH] Add manpage for QEMU Backup Tool

2017-06-08 Thread Ishani Chugh
Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- Makefile| 2 +- contrib/backup/qemu-backup.texi | 147 2 files changed, 148 insertions(+), 1 deletion(-) create mode 100644 contrib/backup/qemu-backup.texi

[Qemu-devel] [PATCH] Removed trailing newline from error_report()

2017-04-07 Thread Ishani Chugh
Signed-off-by: Ishani Chugh <chugh.ish...@research.iiit.ac.in> --- target/arm/kvm64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/arm/kvm64.c b/target/arm/kvm64.c index 609..a16abc8 100644 --- a/target/arm/kvm64.c +++ b/target/arm/kvm64.c @@ -940,7