Re: [Qemu-devel] [PATCH V3 5/7] qemu-img: add -L for snapshot in convert

2013-10-09 Thread Wenchao Xia
于 2013/10/2 0:07, Paolo Bonzini 写道: Il 26/09/2013 02:16, Wenchao Xia ha scritto: +c = getopt(argc, argv, "f:O:B:s:hce6o:pS:t:qnL:"); if (c == -1) { break; } @@ -1183,6 +1184,9 @@ static int img_convert(int argc, char **argv) case 's':

Re: [Qemu-devel] [PATCH V3 5/7] qemu-img: add -L for snapshot in convert

2013-10-01 Thread Paolo Bonzini
Il 26/09/2013 02:16, Wenchao Xia ha scritto: > +c = getopt(argc, argv, "f:O:B:s:hce6o:pS:t:qnL:"); > if (c == -1) { > break; > } > @@ -1183,6 +1184,9 @@ static int img_convert(int argc, char **argv) > case 's': > snapshot_name = optarg; >

Re: [Qemu-devel] [PATCH V3 5/7] qemu-img: add -L for snapshot in convert

2013-10-01 Thread Eric Blake
On 09/25/2013 06:16 PM, Wenchao Xia wrote: > Now qemu-img convert have similar options as qemu-nbd for internal > snapshot. > > Signed-off-by: Wenchao Xia > --- > qemu-img.c | 30 +- > 1 files changed, 21 insertions(+), 9 deletions(-) > > diff --git a/qemu-img.c b/

[Qemu-devel] [PATCH V3 5/7] qemu-img: add -L for snapshot in convert

2013-09-25 Thread Wenchao Xia
Now qemu-img convert have similar options as qemu-nbd for internal snapshot. Signed-off-by: Wenchao Xia --- qemu-img.c | 30 +- 1 files changed, 21 insertions(+), 9 deletions(-) diff --git a/qemu-img.c b/qemu-img.c index 6df58ed..a784ad4 100644 --- a/qemu-img.c +++