]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commitdiff
Use fsync() at the end of file allocation instead of O_DSYNC
authorJiri Denemark <jdenemar@redhat.com>
Tue, 16 Mar 2010 15:03:59 +0000 (16:03 +0100)
committerJiri Denemark <jdenemar@redhat.com>
Tue, 16 Mar 2010 15:04:39 +0000 (16:04 +0100)
Instead of opening storage file with O_DSYNC, make sure data are written
to a disk only before we claim allocation has finished.

src/storage/storage_backend.c

index ec9fc430800dfafa9d8d801828f0260df1cd570b..7294a009dcbb6becf01e50fa650e7ea6c3614eb7 100644 (file)
@@ -331,6 +331,13 @@ static int createRawFileOpHook(int fd, void *data) {
                 goto cleanup;
             }
         }
+
+        if (fsync(fd) < 0) {
+            ret = errno;
+            virReportSystemError(errno, _("cannot sync data to file '%s'"),
+                                 hdata->vol->target.path);
+            goto cleanup;
+        }
     }
 
 cleanup:
@@ -359,7 +366,7 @@ virStorageBackendCreateRaw(virConnectPtr conn ATTRIBUTE_UNUSED,
     gid_t gid = (vol->target.perms.gid == -1) ? getgid() : vol->target.perms.gid;
 
     if ((createstat = virFileOperation(vol->target.path,
-                                       O_RDWR | O_CREAT | O_EXCL | O_DSYNC,
+                                       O_RDWR | O_CREAT | O_EXCL,
                                        vol->target.perms.mode, uid, gid,
                                        createRawFileOpHook, &hdata,
                                        VIR_FILE_OP_FORCE_PERMS |