]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
mkfs.xfs: always use underlying fs sector size when mkfs'ing a file
authorEric Sandeen <sandeen@sandeen.net>
Thu, 30 Jul 2015 23:04:11 +0000 (09:04 +1000)
committerDave Chinner <david@fromorbit.com>
Thu, 30 Jul 2015 23:04:11 +0000 (09:04 +1000)
If we are mkfs'ing a file, and that file is on a 4k sector filesystem,
we should make the fs image file with the same sector size, or things
may fail when they try to do direct IO in 512 byte chunks (depending
on whether it is a 512e or "hard" 4k device).

Earlier commits attempted this to some degree:

5a7d59 xfsprogs: try to handle mkfs of a file on 4k sector device
3800a2 mkfs.xfs: don't call blkid_get_topology on existing regular files

but inexplicably missed the case where mkfs.xfs with "-d file" was
specified.

One more try; in get_topology(), try to get the underlying fs sector
size in *all* cases where we are mkfs'ing a file, and set the sector size
accordingly.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
mkfs/xfs_mkfs.c

index 57a8683732ec829dd399ce02b0e8c54b6131383e..e66350b3b1c574e187b20533c0ec10392426ffc5 100644 (file)
@@ -462,31 +462,35 @@ static void get_topology(
        struct fs_topology      *ft,
        int                     force_overwrite)
 {
-       if (!xi->disfile) {
-               char *dfile = xi->volname ? xi->volname : xi->dname;
-               struct stat statbuf;
+       struct stat statbuf;
+       char *dfile = xi->volname ? xi->volname : xi->dname;
 
-               /*
-                * If our target is a regular file, and xi->disfile isn't
-                * set (i.e. no "-d file" invocation), use platform_findsizes
-                * to try to obtain the underlying filesystem's requirements
-                * for direct IO; we'll set our sector size to that if possible.
-                */
-               if (!stat(dfile, &statbuf) && S_ISREG(statbuf.st_mode)) {
-                       int fd;
-                       long long dummy;
-
-                       fd = open(dfile, O_RDONLY);
-                       if (fd >= 0) {
-                               platform_findsizes(dfile, fd, &dummy,
-                                                  &ft->lsectorsize);
-                               close(fd);
-                       }
-               } else {
-                       blkid_get_topology(dfile, &ft->dsunit, &ft->dswidth,
-                                          &ft->lsectorsize, &ft->psectorsize,
-                                          force_overwrite);
-               }
+       /*
+        * If our target is a regular file, use platform_findsizes
+        * to try to obtain the underlying filesystem's requirements
+        * for direct IO; we'll set our sector size to that if possible.
+        */
+       if (xi->disfile ||
+           (!stat(dfile, &statbuf) && S_ISREG(statbuf.st_mode))) {
+               int fd;
+               int flags = O_RDONLY;
+               long long dummy;
+
+               /* with xi->disfile we may not have the file yet! */
+               if (xi->disfile)
+                       flags |= O_CREAT;
+
+               fd = open(dfile, flags, 0666);
+               if (fd >= 0) {
+                       platform_findsizes(dfile, fd, &dummy, &ft->lsectorsize);
+                       close(fd);
+                       ft->psectorsize = ft->lsectorsize;
+               } else
+                       ft->psectorsize = ft->lsectorsize = BBSIZE;
+       } else {
+               blkid_get_topology(dfile, &ft->dsunit, &ft->dswidth,
+                                  &ft->lsectorsize, &ft->psectorsize,
+                                  force_overwrite);
        }
 
        if (xi->rtname && !xi->risfile) {
@@ -525,11 +529,32 @@ static void get_topology(
        struct fs_topology      *ft,
        int                     force_overwrite)
 {
-
+       struct stat statbuf;
        char *dfile = xi->volname ? xi->volname : xi->dname;
        int bsz = BBSIZE;
 
-       if (!xi->disfile) {
+        /*
+        * If our target is a regular file, use platform_findsizes
+        * to try to obtain the underlying filesystem's requirements
+        * for direct IO; we'll set our sector size to that if possible.
+        */
+       if (xi->disfile ||
+           (!stat(dfile, &statbuf) && S_ISREG(statbuf.st_mode))) {
+               int fd;
+               int flags = O_RDONLY;
+               long long dummy;
+
+               /* with xi->disfile we may not have the file yet! */
+               if (xi->disfile)
+                       flags |= O_CREAT;
+
+               fd = open(dfile, flags, 0666);
+               /* If this fails we just fall back to BBSIZE */
+               if (fd >= 0) {
+                       platform_findsizes(dfile, fd, &dummy, &bsz);
+                       close(fd);
+               }
+       } else {
                int fd;
                long long dummy;