summaryrefslogtreecommitdiff
path: root/savevm.c
diff options
context:
space:
mode:
authorOrit Wasserman <owasserm@redhat.com>2013-03-22 16:47:59 +0200
committerJuan Quintela <quintela@redhat.com>2013-03-26 13:32:33 +0100
commit7d8a30bb98e89c203b3d2289ab0638c38bbeb7c1 (patch)
tree48f2699e8feb9e59e763f90447331445713ce707 /savevm.c
parent28085f7b4d06970efa004257fcef013caf495a08 (diff)
downloadqemu-7d8a30bb98e89c203b3d2289ab0638c38bbeb7c1.tar.gz
Update bytes_xfer in qemu_put_byte
Signed-off-by: Orit Wasserman <owasserm@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'savevm.c')
-rw-r--r--savevm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/savevm.c b/savevm.c
index 3466ef4aac..5ab256c97d 100644
--- a/savevm.c
+++ b/savevm.c
@@ -648,6 +648,8 @@ void qemu_put_byte(QEMUFile *f, int v)
f->buf[f->buf_index++] = v;
f->is_write = 1;
+ f->bytes_xfer++;
+
if (f->buf_index >= IO_BUF_SIZE) {
qemu_fflush(f);
}