Re: [Qemu-devel] [PATCH 0/2] Improve qemu-img dd

2018-08-19 Thread Eric Blake
On 08/14/2018 09:56 PM, Eric Blake wrote: I was trying to test NBD fleecing by copying subsets of one file to another, and had the idea to use: $ export NBD drive to be fleeced on port 10809 $ qemu-img create -f qcow2 copy $size $ qemu-nbd -f qcow2 -p 10810 copy $ qemu-img dd -f raw -O raw if=nb

Re: [Qemu-devel] [PATCH 0/2] Improve qemu-img dd

2018-08-16 Thread no-reply
Hi, This series failed docker-quick@centos7 build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. Type: series Message-id: 20180815025614.53588-1-ebl...@redhat.com Subject: [Qemu-devel] [PATCH 0/2] Improve qemu

Re: [Qemu-devel] [PATCH 0/2] Improve qemu-img dd

2018-08-16 Thread no-reply
Hi, This series failed docker-mingw@fedora build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. Type: series Message-id: 20180815025614.53588-1-ebl...@redhat.com Subject: [Qemu-devel] [PATCH 0/2] Improve qemu

Re: [Qemu-devel] [PATCH 0/2] Improve qemu-img dd

2018-08-15 Thread Eric Blake
On 08/14/2018 09:56 PM, Eric Blake wrote: I was trying to test NBD fleecing by copying subsets of one file to another, and had the idea to use: $ export NBD drive to be fleeced on port 10809 $ qemu-img create -f qcow2 copy $size $ qemu-nbd -f qcow2 -p 10810 copy $ qemu-img dd -f raw -O raw if=nb

[Qemu-devel] [PATCH 0/2] Improve qemu-img dd

2018-08-14 Thread Eric Blake
I was trying to test NBD fleecing by copying subsets of one file to another, and had the idea to use: $ export NBD drive to be fleeced on port 10809 $ qemu-img create -f qcow2 copy $size $ qemu-nbd -f qcow2 -p 10810 copy $ qemu-img dd -f raw -O raw if=nbd://localhost:10809 of=nbd://localhost:10810