qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] migration: flush migration data to disk.
@ 2011-10-27  7:12 Gerd Hoffmann
  2011-11-01 18:03 ` Anthony Liguori
  0 siblings, 1 reply; 2+ messages in thread
From: Gerd Hoffmann @ 2011-10-27  7:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: Jiri Denemark, Gerd Hoffmann, Juan Quintela

This patch increases robustness when migrating to a file with
two little changes:

 (1) Before closing the migration file handle checks if it happens to be
     a regular file and if so it issues a fsync.  This way the data is
     flushed to disk before qemu sends the migration completed event.
 (2) It adds error checking.  In case either fsync or close syscall
     fails pass up the error (and fail migration).

[ v2: return -errno instead of -1 ]

Cc: Juan Quintela <quintela@redhat.com>
Cc: Jiri Denemark <jdenemar@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 migration-fd.c |   23 ++++++++++++++++++++++-
 1 files changed, 22 insertions(+), 1 deletions(-)

diff --git a/migration-fd.c b/migration-fd.c
index d0aec89..6211124 100644
--- a/migration-fd.c
+++ b/migration-fd.c
@@ -42,10 +42,31 @@ static int fd_write(MigrationState *s, const void * buf, size_t size)
 
 static int fd_close(MigrationState *s)
 {
+    struct stat st;
+    int ret;
+
     DPRINTF("fd_close\n");
     if (s->fd != -1) {
-        close(s->fd);
+        ret = fstat(s->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(s->fd);
+            if (ret != 0) {
+                ret = -errno;
+                perror("migration-fd: fsync");
+                return ret;
+            }
+        }
+        ret = close(s->fd);
         s->fd = -1;
+        if (ret != 0) {
+            ret = -errno;
+            perror("migration-fd: close");
+            return ret;
+        }
     }
     return 0;
 }
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PATCH v2] migration: flush migration data to disk.
  2011-10-27  7:12 [Qemu-devel] [PATCH v2] migration: flush migration data to disk Gerd Hoffmann
@ 2011-11-01 18:03 ` Anthony Liguori
  0 siblings, 0 replies; 2+ messages in thread
From: Anthony Liguori @ 2011-11-01 18:03 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: Jiri Denemark, qemu-devel, Juan Quintela

On 10/27/2011 02:12 AM, Gerd Hoffmann wrote:
> This patch increases robustness when migrating to a file with
> two little changes:
>
>   (1) Before closing the migration file handle checks if it happens to be
>       a regular file and if so it issues a fsync.  This way the data is
>       flushed to disk before qemu sends the migration completed event.
>   (2) It adds error checking.  In case either fsync or close syscall
>       fails pass up the error (and fail migration).
>
> [ v2: return -errno instead of -1 ]
>
> Cc: Juan Quintela<quintela@redhat.com>
> Cc: Jiri Denemark<jdenemar@redhat.com>
> Signed-off-by: Gerd Hoffmann<kraxel@redhat.com>

Applied.  Thanks.

Regards,

Anthony Liguori

> ---
>   migration-fd.c |   23 ++++++++++++++++++++++-
>   1 files changed, 22 insertions(+), 1 deletions(-)
>
> diff --git a/migration-fd.c b/migration-fd.c
> index d0aec89..6211124 100644
> --- a/migration-fd.c
> +++ b/migration-fd.c
> @@ -42,10 +42,31 @@ static int fd_write(MigrationState *s, const void * buf, size_t size)
>
>   static int fd_close(MigrationState *s)
>   {
> +    struct stat st;
> +    int ret;
> +
>       DPRINTF("fd_close\n");
>       if (s->fd != -1) {
> -        close(s->fd);
> +        ret = fstat(s->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(s->fd);
> +            if (ret != 0) {
> +                ret = -errno;
> +                perror("migration-fd: fsync");
> +                return ret;
> +            }
> +        }
> +        ret = close(s->fd);
>           s->fd = -1;
> +        if (ret != 0) {
> +            ret = -errno;
> +            perror("migration-fd: close");
> +            return ret;
> +        }
>       }
>       return 0;
>   }

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-11-01 18:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-27  7:12 [Qemu-devel] [PATCH v2] migration: flush migration data to disk Gerd Hoffmann
2011-11-01 18:03 ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).