Skip to content

Commit

Permalink
qemu-file: fsync a writable stdio QEMUFile
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
bonzini authored and Juan Quintela committed Mar 11, 2013
1 parent 817b9ed commit ce39ee3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions savevm.c
Expand Up @@ -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;
}
Expand Down

0 comments on commit ce39ee3

Please sign in to comment.