diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-02-22 17:36:37 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2013-03-11 13:32:02 +0100 |
commit | ce39ee3184a02eca7f9529cc19b1582f6f704c70 (patch) | |
tree | f7d8e40a1e0253f805651852ce3431be67ec0393 | |
parent | 817b9ed5eb300dbb434d752da416441028539a96 (diff) | |
download | hqemu-ce39ee3184a02eca7f9529cc19b1582f6f704c70.zip hqemu-ce39ee3184a02eca7f9529cc19b1582f6f704c70.tar.gz |
qemu-file: fsync a writable stdio QEMUFile
This is what fd_close does. Prepare for switching to a QEMUFile.
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
-rw-r--r-- | savevm.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -256,6 +256,24 @@ static int stdio_fclose(void *opaque) { QEMUFileStdio *s = opaque; int ret = 0; + + if (s->file->ops->put_buffer) { + int fd = fileno(s->stdio_file); + struct stat st; + + ret = fstat(fd, &st); + if (ret == 0 && S_ISREG(st.st_mode)) { + /* + * If the file handle is a regular file make sure the + * data is flushed to disk before signaling success. + */ + ret = fsync(fd); + if (ret != 0) { + ret = -errno; + return ret; + } + } + } if (fclose(s->stdio_file) == EOF) { ret = -errno; } |