savevm: make qemu_fflush() return an error code

Adjust all the callers.  We moved the set of last_error from inside
qemu_fflush() to all the callers.

Signed-off-by: Juan Quintela <quintela@redhat.com>

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Juan Quintela 2012-08-29 19:08:59 +02:00
parent e5ae97cee4
commit 7311bea33f

View File

@ -459,23 +459,22 @@ static void qemu_file_set_if_error(QEMUFile *f, int ret)
/** Flushes QEMUFile buffer /** Flushes QEMUFile buffer
* *
* In case of error, last_error is set.
*/ */
static void qemu_fflush(QEMUFile *f) static int qemu_fflush(QEMUFile *f)
{ {
int ret = 0;
if (!f->put_buffer) if (!f->put_buffer)
return; return 0;
if (f->is_write && f->buf_index > 0) { if (f->is_write && f->buf_index > 0) {
int len; ret = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
if (ret >= 0) {
len = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
if (len > 0)
f->buf_offset += f->buf_index; f->buf_offset += f->buf_index;
else }
qemu_file_set_error(f, -EINVAL);
f->buf_index = 0; f->buf_index = 0;
} }
return ret;
} }
static void qemu_fill_buffer(QEMUFile *f) static void qemu_fill_buffer(QEMUFile *f)
@ -533,9 +532,13 @@ static int qemu_fclose_internal(QEMUFile *f)
*/ */
int qemu_fclose(QEMUFile *f) int qemu_fclose(QEMUFile *f)
{ {
int ret; int ret, ret2;
qemu_fflush(f); ret = qemu_fflush(f);
ret = qemu_fclose_internal(f); ret2 = qemu_fclose_internal(f);
if (ret >= 0) {
ret = ret2;
}
/* If any error was spotted before closing, we should report it /* If any error was spotted before closing, we should report it
* instead of the close() return value. * instead of the close() return value.
*/ */
@ -570,8 +573,10 @@ void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
f->buf_index += l; f->buf_index += l;
buf += l; buf += l;
size -= l; size -= l;
if (f->buf_index >= IO_BUF_SIZE) if (f->buf_index >= IO_BUF_SIZE) {
qemu_fflush(f); int ret = qemu_fflush(f);
qemu_file_set_if_error(f, ret);
}
} }
} }
@ -585,8 +590,10 @@ void qemu_put_byte(QEMUFile *f, int v)
f->buf[f->buf_index++] = v; f->buf[f->buf_index++] = v;
f->is_write = 1; f->is_write = 1;
if (f->buf_index >= IO_BUF_SIZE) if (f->buf_index >= IO_BUF_SIZE) {
qemu_fflush(f); int ret = qemu_fflush(f);
qemu_file_set_if_error(f, ret);
}
} }
static void qemu_file_skip(QEMUFile *f, int size) static void qemu_file_skip(QEMUFile *f, int size)