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

2017-09-18 Thread Ishani
- On Sep 16, 2017, at 12:41 AM, jsnow js...@redhat.com wrote: > On 09/08/2017 12:41 PM, Ishani Chugh wrote: >> 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

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

2017-09-18 Thread Ishani
- On Sep 16, 2017, at 12:43 AM, jsnow js...@redhat.com wrote: > On 09/08/2017 12:41 PM, Ishani Chugh wrote: >> 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

[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
g 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 --- Makefile| 14 ++-- contrib/backup

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

2017-09-08 Thread Ishani Chugh
store --guest Signed-off-by: Ishani Chugh --- 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/contrib/backup/qemu-backup.py new file

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

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

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

2017-09-08 Thread Ishani
ly this patch?" > "It will 'Add QEMU backup tool'" > > On 08/30/2017 01:14 PM, Ishani Chugh wrote: >> qemu-backup will be a command-line tool for performing full and >> incremental disk backups on running VMs. It is intended as a >> reference im

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

2017-09-06 Thread Ishani
Hello, I apologize for late reply. I was occupied by exams. I will send a revision asap. Thanks. - On Sep 2, 2017, at 4:23 AM, jsnow js...@redhat.com wrote: > On 08/30/2017 10:02 PM, Fam Zheng wrote: >> On Thu, 08/31 00:45, Ishani Chugh wrote: >>> This patch is the te

[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 --- contrib/backup/qemu-backup.py | 101 +- 1 file changed, 99 insertions(+), 2 deletions(-) diff --git a/contrib/backup/qemu-backup.py b/contrib/backup/qemu-backup.py index 248ca9f

[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 --- contrib/backup/qemu-backup.texi | 18 ++ 1 file changed, 18 insertions(+) diff --git a/contrib/backup/qemu-backup.texi b/contrib/backup/qemu-backup.texi index

[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 --- tests/qemu-iotests/193 | 86 ++ tests/qemu-iotests/193.out | 34 ++ tests/qemu-iotests/group | 1 + 3 files changed, 121 insertions(+) create mode 100755 tests/qemu-iotests/193 create mode

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

2017-08-30 Thread Ishani Chugh
emove --guest Signed-off-by: Ishani Chugh --- 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/backup/qemu-backup.py new file

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

2017-08-30 Thread Ishani Chugh
g 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 --- Makefile| 14 ++-- contrib/backup

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

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

[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

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

2017-08-30 Thread Ishani
- On Aug 30, 2017, at 9:51 AM, Fam Zheng f...@redhat.com wrote: > On Tue, 08/29 22:13, Ishani Chugh wrote: >> +class BackupTool(object): >> +"""BackupTool Class""" >> +def __init__(self, config_file=os.path.expanduser('~&#x

[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
npage 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 --- Makefile| 14 ++-- contrib/b

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

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

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

2017-08-29 Thread Ishani Chugh
emove --guest Signed-off-by: Ishani Chugh --- 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/backup/qemu-backup.py new file

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

2017-08-29 Thread Ishani
I apologize for it. I have sent a new patch series by the same way again just now. Will correct in future patches. Regards, Ishani. - On Aug 29, 2017, at 8:19 PM, Eric Blake ebl...@redhat.com wrote: > On 08/29/2017 08:47 AM, Ishani Chugh wrote: >> This patch series is intended to

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

2017-08-29 Thread Ishani Chugh
emove --guest Signed-off-by: Ishani Chugh --- 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/backup/qemu-backup.py new file

[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
ction. 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 Mak

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

2017-08-29 Thread Ishani Chugh
npage 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 --- Makefile| 14 ++-- contrib/b

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

2017-08-29 Thread Ishani Chugh
npage 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 --- Makefile| 14 ++-- contrib/b

[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
ction. 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 Mak

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

2017-08-29 Thread Ishani Chugh
emove --guest Signed-off-by: Ishani Chugh --- 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/backup/qemu-backup.py new file

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

2017-08-23 Thread Ishani Chugh
emove --guest Signed-off-by: Ishani Chugh --- 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/backup/qemu-backup.py new file

[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
ction. 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 Mak

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

2017-08-23 Thread Ishani Chugh
npage 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 --- Makefile| 14 ++-- contrib/b

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

2017-08-22 Thread Ishani
- On Aug 22, 2017, at 7:43 PM, stefanha stefa...@redhat.com wrote: > On Mon, Aug 21, 2017 at 04:40:37PM +0530, Ishani Chugh wrote: >> qemu-backup will be a command-line tool for performing full and >> incremental disk backups on running VMs. It is intended as a >> ref

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

2017-08-21 Thread Ishani Chugh
emove --guest Signed-off-by: Ishani Chugh --- 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/backup/qemu-backup.py new file

[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
ction. 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 Mak

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

2017-08-21 Thread Ishani Chugh
npage 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 --- Makefile| 14 +++-- contrib/b

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

2017-08-11 Thread Ishani Chugh
emove --guest Signed-off-by: Ishani Chugh --- 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/backup/qemu-backup.py new file

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

2017-08-11 Thread Ishani Chugh
npage 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 --- Makefile| 14 +++-- contrib/b

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

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

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

2017-08-10 Thread Ishani Chugh
emove --guest Signed-off-by: Ishani Chugh --- 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/backup/qemu-backup.py new file

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

2017-08-10 Thread Ishani Chugh
npage 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 --- Makefile| 15 +++-- contrib/b

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

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

[Qemu-devel] [PATCH] QEMU Backup Tool

2017-08-09 Thread Ishani Chugh
emove --guest Signed-off-by: Ishani Chugh --- 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 9c3dc53..9bbbdb7 100644 --- a/contrib/b

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

2017-07-20 Thread Ishani
- On Jul 17, 2017, at 8:02 PM, stefanha stefa...@redhat.com wrote: > On Sun, Jul 16, 2017 at 02:13:21AM +0530, Ishani Chugh wrote: >> +def write_config(self): >> +""" >> +Writes configuration to ini file. >> +"&qu

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

2017-07-20 Thread Ishani
- On Jul 19, 2017, at 2:59 AM, jsnow js...@redhat.com wrote: > On 07/17/2017 03:37 PM, Ishani wrote: >> - On Jul 17, 2017, at 12:48 PM, Fam Zheng f...@redhat.com wrote: >>> On Sun, 07/16 02:13, Ishani Chugh wrote: > > [...] > >>> Only full backup

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

2017-07-20 Thread Ishani
- On Jul 20, 2017, at 6:16 PM, stefanha stefa...@redhat.com wrote: > On Tue, Jul 18, 2017 at 12:45:36AM +0530, Ishani Chugh wrote: > > This looks good. I think it makes sense to include this patch with the > patch series that adds the qemu-backup command. That way the comma

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

2017-07-17 Thread Ishani
Thanks for the review. - On Jul 17, 2017, at 12:48 PM, Fam Zheng f...@redhat.com wrote: > On Sun, 07/16 02:13, Ishani Chugh wrote: >> This is a Request For Comments patch for qemu backup tool. As an >> Outreachy intern, I am assigned to the project for creating a backup >&

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

2017-07-17 Thread Ishani Chugh
npage 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 --- Makefile| 14 +++-- contrib/b

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

2017-07-15 Thread Ishani Chugh
ff-by: Ishani Chugh --- 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.py new file mode 100644 index 00

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

2017-07-15 Thread Ishani Chugh
npage 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 --- Makefile| 15 +++-- contrib/b

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

2017-07-13 Thread Ishani
- On Jul 7, 2017, at 4:31 PM, Daniel P. Berrange berra...@redhat.com wrote: > On Fri, Jul 07, 2017 at 12:38:47AM +0530, Ishani Chugh wrote: >> This patch intends to make qmp.py compatible with both python2 and python3. >> >> * Python 3 does not have dict.has_key(

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

2017-07-06 Thread Ishani Chugh
function. Signed-off-by: Ishani Chugh --- 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 100644 --- a/scripts/qmp/qmp.py +++ b/scripts

[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 --- scripts/qmp/qmp.py | 66 +++--- 1 file changed, 43 insertions(+), 23 deletions(-) diff --git a/scripts/qmp/qmp.py b/scripts/qmp/qmp.py

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

2017-06-22 Thread Ishani Chugh
npage listing the commands which the backup tool will support. Signed-off-by: Ishani Chugh --- Makefile| 2 +- contrib/backup/qemu-backup.texi | 132 2 files changed, 133 insertions(+), 1 deletion(-) create mode 100644 contrib/b

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

2017-06-19 Thread Ishani Chugh
npage listing the commands which the backup tool will support. Signed-off-by: Ishani Chugh --- Makefile| 2 +- contrib/backup/qemu-backup.texi | 139 2 files changed, 140 insertions(+), 1 deletion(-) create mode 100644 contrib/b

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

2017-06-13 Thread Ishani Chugh
Signed-off-by: Ishani Chugh --- Makefile| 2 +- contrib/backup/qemu-backup.texi | 139 2 files changed, 140 insertions(+), 1 deletion(-) create mode 100644 contrib/backup/qemu-backup.texi diff --git a/Makefile b/Makefile index

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

2017-06-08 Thread Ishani Chugh
Signed-off-by: Ishani Chugh --- Makefile| 2 +- contrib/backup/qemu-backup.texi | 147 2 files changed, 148 insertions(+), 1 deletion(-) create mode 100644 contrib/backup/qemu-backup.texi diff --git a/Makefile b/Makefile index

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

2017-04-07 Thread Ishani Chugh
Signed-off-by: Ishani Chugh --- 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 +940,7 @@ bool kvm_arm_handle_debug