diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | util.c | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,8 @@ Changes Prior to 1.10.0 release - Fix bug with --config=partitions - Open sub-devices with O_EXCL to detect if already in use - + - Make sure superblock updates are flushed directly to disk. + Changes Prior to 1.9.0 release - Fix rpm build problem (stray %) - Minor manpage updates @@ -278,6 +278,7 @@ int store_super(int fd, mdp_super_t *super) if (write(fd, super, sizeof(*super)) != sizeof(*super)) return 4; + fsync(fd); return 0; } |