[libvirt] [PATCH 12/16] Ensure we always read a full buffer in tunnelled migration

Eric Blake eblake at redhat.com
Thu May 12 20:17:25 UTC 2011


On 05/12/2011 10:04 AM, Daniel P. Berrange wrote:
> The 'nbytes' variable was not re-initialized to the
> buffer size on each iteration of the tunnelled migration
> loop. While saferead() will ensure a full read, except
> on EOF, it is clearer to use the real buffer size
> 
> * src/qemu/qemu_migration.c: Always read full buffer of data
> ---
>  src/qemu/qemu_migration.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/src/qemu/qemu_migration.c b/src/qemu/qemu_migration.c
> index 5a149ab..0eefe5c 100644
> --- a/src/qemu/qemu_migration.c
> +++ b/src/qemu/qemu_migration.c
> @@ -1300,7 +1300,7 @@ static int doTunnelSendAll(virStreamPtr st,
>      }
>  
>      for (;;) {
> -        nbytes = saferead(sock, buffer, nbytes);
> +        nbytes = saferead(sock, buffer, TUNNEL_SEND_BUF_SIZE);
>          if (nbytes < 0) {
>              virReportSystemError(errno, "%s",
>                                   _("tunnelled migration failed to read from qemu"));

ACK.

-- 
Eric Blake   eblake at redhat.com    +1-801-349-2682
Libvirt virtualization library http://libvirt.org

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 619 bytes
Desc: OpenPGP digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20110512/a6b54a33/attachment-0001.sig>


More information about the libvir-list mailing list