Re: [Qemu-devel] [PATCH 2/2] Dump: add command "fuse-mount"

2016-05-10 Thread Nan Li
>>> On 5/10/2016 at 12:48 AM, Eric Blake wrote: > On 05/07/2016 05:32 PM, Nan Li wrote: >> Add a "fuse-mount" command to support the Filesystem in Userspace (FUSE). >> It can mount or unmount the filesystem with both hmp and qmp commands. >> It calls the AP

Re: [Qemu-devel] [PATCH 1/2] Dump: introduce a Filesystem in Userspace

2016-05-10 Thread Nan Li
>>> On 5/10/2016 at 5:42 PM, Petr Tesarik wrote: > On Tue, 10 May 2016 09:48:48 +0100 > "Daniel P. Berrange" wrote: > >> On Tue, May 10, 2016 at 07:59:41AM +0200, Petr Tesarik wrote: >> > On Mon, 9 May 2016 09:52:28 ‑0600 >> > Eric Blake wrot

Re: [Qemu-devel] [PATCH 1/2] Dump: introduce a Filesystem in Userspace

2016-05-10 Thread Nan Li
>>> On 5/10/2016 at 5:56 PM, Stefan Hajnoczi wrote: > On Tue, May 10, 2016 at 07:59:41AM +0200, Petr Tesarik wrote: >> On Mon, 9 May 2016 09:52:28 ‑0600 >> Eric Blake wrote: >> >> > On 05/07/2016 05:32 PM, Nan Li wrote: >> > > When running

[Qemu-devel] [PATCH 1/2] Dump: introduce a Filesystem in Userspace

2016-05-09 Thread Nan Li
_readdir, .create = qemu_fuse_create, .open = qemu_fuse_open, .read = qemu_fuse_read, .write = qemu_fuse_write, .unlink = qemu_fuse_unlink, }; Signed-off-by: Nan Li --- Makefile.target | 1 + configure | 34 +++

[Qemu-devel] [PATCH 2/2] Dump: add command "fuse-mount"

2016-05-09 Thread Nan Li
Add a "fuse-mount" command to support the Filesystem in Userspace (FUSE). It can mount or unmount the filesystem with both hmp and qmp commands. It calls the API function qemu_fuse_main(int argc, char *argv[]). Signed-off-by: Nan Li --- dump.c

[Qemu-devel] [PATCH 0/2] Dump: add a Filesystem in Userspace and command "fuse-mount"

2016-05-09 Thread Nan Li
ommand "fuse-mount" It can mount or unmount the filesystem with both hmp and qmp commands. It calls the API function qemu_fuse_main(int argc, char *argv[]). Nan Li (2): Dump: introduce a Filesystem in Userspace Dump: add command "fuse-mount" Makefile.target | 1 + configure