| To: | Eric Sandeen <sandeen@xxxxxxxxxxx> |
|---|---|
| Subject: | Re: [PATCH 2/2, RFC] mkfs.xfs: don't call blkid_get_topology on regular files |
| From: | Christoph Hellwig <hch@xxxxxxxxxxxxx> |
| Date: | Tue, 27 May 2014 22:40:34 -0700 |
| Cc: | Eric Sandeen <sandeen@xxxxxxxxxx>, xfs-oss <xfs@xxxxxxxxxxx> |
| Delivered-to: | xfs@xxxxxxxxxxx |
| In-reply-to: | <53852A98.7000809@xxxxxxxxxxx> |
| References: | <53852A05.5040006@xxxxxxxxxx> <53852A98.7000809@xxxxxxxxxxx> |
| User-agent: | Mutt/1.5.21 (2010-09-15) |
On Tue, May 27, 2014 at 07:15:20PM -0500, Eric Sandeen wrote:
> If we encounter a target that's really a regular file,
> even without "-d file..." on the cmdline, call
> platform_findsizes() instead of blkid_get_topology to
> try to discover the "sector size" via the fsgeom() call.
>
> Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx>
> ---
>
> diff --git a/mkfs/xfs_mkfs.c b/mkfs/xfs_mkfs.c
> index 37c05a9..74180c9 100644
> --- a/mkfs/xfs_mkfs.c
> +++ b/mkfs/xfs_mkfs.c
> @@ -454,12 +454,26 @@ static void get_topology(
> struct fs_topology *ft,
> int force_overwrite)
> {
> - if (!xi->disfile) {
> - const char *dfile = xi->volname ? xi->volname : xi->dname;
> + int is_a_file = 0;
> + struct stat statbuf;
> + char *dfile = xi->volname ? xi->volname : xi->dname;
>
> + if (!stat(dfile, &statbuf) && S_ISREG(statbuf.st_mode))
> + is_a_file = 1;
> +
> + if (!xi->disfile && !is_a_file) {
Why do need both xi->disfile and a local flag/ Why do we do the
that even if xi->disfile is set?
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 02/16] xfs: move directory block translatiosn to xfs_da_btree.h, Dave Chinner |
|---|---|
| Next by Date: | Re: [PATCH 0/2, RFC] xfsprogs: try to handle mkfs of a file on 4k sector device, Christoph Hellwig |
| Previous by Thread: | [PATCH 2/2, RFC] mkfs.xfs: don't call blkid_get_topology on regular files, Eric Sandeen |
| Next by Thread: | Re: [PATCH 2/2, RFC] mkfs.xfs: don't call blkid_get_topology on regular files, Eric Sandeen |
| Indexes: | [Date] [Thread] [Top] [All Lists] |