Re: [libvirt] [PATCH v2 1/2] make qemu dump memory in kdump-compressed format

2014-02-26 Thread Qiao Nuohan
On 02/25/2014 06:56 PM, Jiri Denemark wrote: On Tue, Feb 25, 2014 at 17:54:30 +0800, Qiao Nuohan wrote: --memory-only option is introduced without compression supported. Therefore, this is a freature regression of virsh dump. Now qemu has support dumping memory in kdump-compressed format

[libvirt] [PATCH v2 0/2] support dumping guest memory in compressed format

2014-02-25 Thread Qiao Nuohan
dumping guest's memroy is introduced without compression supported, and this is a freature regression of 'virsh dump --memory-only'. This patchset is used to add support in libvirt side to make qemu dump guest's memory in kdump-compressed format and please refer the following address to see

[libvirt] [PATCH v2 1/2] make qemu dump memory in kdump-compressed format

2014-02-25 Thread Qiao Nuohan
dump-guest-memory command to qemu with dump format specified to one of elf, kdump-zlib, kdump-lzo and kdump-snappy. Signed-off-by: Qiao Nuohan qiaonuo...@cn.fujitsu.com --- include/libvirt/libvirt.h.in | 15 ++- src/driver.h | 3 ++- src/libvirt.c| 10

[libvirt] add dump_memory_format in qemu.conf

2014-02-25 Thread Qiao Nuohan
one of elf, kdump-zlib, kdump-lzo and kdump-snappy. And elf is the default value. Signed-off-by: Qiao Nuohan qiaonuo...@cn.fujitsu.com --- src/qemu/libvirtd_qemu.aug | 1 + src/qemu/qemu.conf | 13 - src/qemu/qemu_conf.c | 3 +++ src/qemu

Re: [libvirt] add dump_memory_format in qemu.conf

2014-02-25 Thread Qiao Nuohan
On 02/25/2014 05:55 PM, Qiao Nuohan wrote: This patch is used to add dump_memory_format to qemu.conf and libvirt will use it to specify the default format in which qemu dumps guest's memory. But when --compress is specified with virsh dump --memory-only, the format configured

Re: [libvirt] [PATCH v1 1/2] make qemu dump memory in kdump-compressed format

2014-02-24 Thread Qiao Nuohan
On 02/24/2014 06:30 PM, Daniel P. Berrange wrote: On Thu, Feb 20, 2014 at 10:30:31AM +0800, Qiao Nuohan wrote: --memory-only option is introduced without compression supported. Therefore, this is a freature regression of virsh dump. Now qemu has support dumping memory in kdump-compressed format

Re: [libvirt] [PATCH v1 0/2] support dumping guest memory in compressed format

2014-02-23 Thread Qiao Nuohan
ping... On 02/20/2014 10:28 AM, Qiao Nuohan wrote: dumping guest's memroy is introduced without compression supported, and this is a freature regression of 'virsh dump --memory-only'. This patchset is used to add support in libvirt side to make qemu dump guest's memory in kdump-compressed

[libvirt] [PATCH v1 0/2] support dumping guest memory in compressed format

2014-02-19 Thread Qiao Nuohan
dumping guest's memroy is introduced without compression supported, and this is a freature regression of 'virsh dump --memory-only'. This patchset is used to add support in libvirt side to make qemu dump guest's memory in kdump-compressed format and please refer the following address to see

[libvirt] [PATCH v1 1/2] make qemu dump memory in kdump-compressed format

2014-02-19 Thread Qiao Nuohan
dump-guest-memory command to qemu with dump format specified to one of elf, kdump-zlib, kdump-lzo and kdump-snappy. Signed-off-by: Qiao Nuohan qiaonuo...@cn.fujitsu.com --- include/libvirt/libvirt.h.in | 19 ++- src/qemu/qemu_driver.c | 20 src/qemu

[libvirt] [PATCH v1 2/2] add dump_memory_format in qemu.conf

2014-02-19 Thread Qiao Nuohan
one of elf, kdump-zlib, kdump-lzo and kdump-snappy. And elf is the default value. Signed-off-by: Qiao Nuohan qiaonuo...@cn.fujitsu.com --- src/qemu/libvirtd_qemu.aug | 1 + src/qemu/qemu.conf | 13 - src/qemu/qemu_conf.c | 3 +++ src/qemu

Re: [libvirt] [PATCH RFC 0/2] support compression with dumping guest memory

2014-02-12 Thread Qiao Nuohan
| 2 +- tools/virsh-domain.c | 29 + 14 files changed, 127 insertions(+), 16 deletions(-) Hello Do you have some comments on my patches? -- Regards Qiao Nuohan -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo

Re: [libvirt] [PATCH RFC 2/2] support configuring the format of dumping memory in qemu.conf

2014-02-10 Thread Qiao Nuohan
On 01/29/2014 07:52 PM, Daniel P. Berrange wrote: On Wed, Jan 29, 2014 at 10:15:36AM +0800, Qiao Nuohan wrote: This patch is used to add dump_memory_format to qemu.conf and make the specified format as the default dump format of 'virsh dump --memory-only'. But when --compress is specified

[libvirt] [PATCH RFC 0/2] support compression with dumping guest memory

2014-01-28 Thread Qiao Nuohan
--memory-only option is introduced without compression supported. Therefore, this is a freature regression of virsh dump. This patchset is used to add compression support in libvirt side and please refer the following address to see the qemu side, the lastest version of qemu side v7(ready for

[libvirt] [PATCH RFC 1/2] support compression when --memory-only option is specified

2014-01-28 Thread Qiao Nuohan
specified to one of elf, kdump-zlib, kdump-lzo and kdump-snappy. Signed-off-by: Qiao Nuohan qiaonuo...@cn.fujitsu.com --- include/libvirt/libvirt.h.in | 18 +- src/libvirt.c| 15 +++ src/qemu/qemu_driver.c | 21 + src/qemu

[libvirt] [PATCH RFC 2/2] support configuring the format of dumping memory in qemu.conf

2014-01-28 Thread Qiao Nuohan
, kdump-zlib, kdump-lzo and kdump-snappy. And elf is the default value. Signed-off-by: Qiao Nuohan qiaonuo...@cn.fujitsu.com --- src/qemu/libvirtd_qemu.aug | 1 + src/qemu/qemu.conf | 6 ++ src/qemu/qemu_conf.c | 2 ++ src/qemu/qemu_conf.h

Re: [libvirt] [PATCH 0/2] support compression with dumping guest memory

2014-01-27 Thread Qiao Nuohan
/test_libvirtd_qemu.aug.in | 1 + tests/qemumonitorjsontest.c| 2 +- tools/virsh-domain.c | 29 + 14 files changed, 127 insertions(+), 16 deletions(-) -- Regards Qiao Nuohan -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo