From: Chandan Rajendra <chandan@linux.vnet.ibm.com>
To: Eric Sandeen <sandeen@sandeen.net>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH] mkfs: Remove messages printed when blocksize < physical sectorsize
Date: Sat, 09 Sep 2017 12:11:35 +0530 [thread overview]
Message-ID: <2418689.2OC4k4y5ao@localhost.localdomain> (raw)
In-Reply-To: <81dc9410-c9d1-20d3-65a6-6763d31b64b7@sandeen.net>
On Friday, September 8, 2017 10:25:26 PM IST Eric Sandeen wrote:
> On 9/5/17 12:44 AM, Chandan Rajendra wrote:
> > Linux kernel commit 6c6b6f28b3335fd85ec833ee0005d9c9dca6c003 (loop: set
> > physical block size to PAGE_SIZE) now sets PAGE_SIZE as the default
> > physical sector size of loop devices. On ppc64, this causes loop devices
> > to have 64k as the physical sector size.
> >
> > With these changes, mkfs.xfs now prints error messages when filesystem
> > blocksize (4k) is less than underlying device's physical
> > sectorsize (64k). These messages (printed on stderr) now cause several
> > xfstests to fail on ppc64 machine since xfstests' _filter_mkfs() isn't
> > able to filter out stderr.
> >
> > Also, the messages themselves describe a possible sub-optimal setup. But
> > the setup is still usable.
> >
> > Hence this commit removes the calls to fprintf() used to print the
> > messages.
>
> So, it looks like the loop change is getting reverted, right ... still -
>
> Although I suggested this change, I'm rethinking it. I'm not a fan
> of the warning for a default situation; the user can get this warning
> with nothing but a bare mkfs, which is not good IMHO.
>
> (dchinner OTOH thinks we should warn about this suboptimal situation
> in any case - but I really don't think it's mkfs's job to be warning
> about every suboptimal geometry - there are a lot of them out there!)
>
> What I'd now propose is that we change this warning into a failure,
> but only if a too-small block size was actually /specified/, i.e.
> bsflag is set. If we're adjusting sector size based on device geometry
> and /default/ blocksize, I think we should just shut up about it.
>
> i.e. something like:
>
> if ((blocksize < sectorsize) && (blocksize >= ft.lsectorsize)) {
I agree with your changes from a system administrator's perspective. But
without these messages, the sectorsize change for the loop device would
most likely not have been noticed.
> if (bsflag) {
Just FYI, We should also be checking blflag's value.
> fprintf(stderr,
> _("specified blocksize %d cannot be less than device physical sector size %d\n"),
> blocksize, ft.psectorsize);
> usage();
> }
> sectorsize = ft.lsectorsize ? ft.lsectorsize :
> XFS_MIN_SECTORSIZE;
> }
>
> Thoughts?
>
--
chandan
next prev parent reply other threads:[~2017-09-09 6:40 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-05 5:44 [PATCH] mkfs: Remove messages printed when blocksize < physical sectorsize Chandan Rajendra
2017-09-05 6:31 ` Christoph Hellwig
2017-09-05 6:42 ` Omar Sandoval
2017-09-05 7:37 ` Chandan Rajendra
2017-09-05 15:00 ` Jens Axboe
2017-09-05 22:06 ` Dave Chinner
2017-09-05 22:18 ` Omar Sandoval
2017-09-05 23:24 ` Dave Chinner
2017-09-06 0:01 ` Omar Sandoval
2017-09-05 6:44 ` Dave Chinner
2017-09-05 14:17 ` Eric Sandeen
2017-09-05 22:10 ` Dave Chinner
2017-09-05 22:16 ` Eric Sandeen
2017-09-08 16:55 ` Eric Sandeen
2017-09-09 6:41 ` Chandan Rajendra [this message]
2017-09-09 7:06 ` Dave Chinner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2418689.2OC4k4y5ao@localhost.localdomain \
--to=chandan@linux.vnet.ibm.com \
--cc=linux-xfs@vger.kernel.org \
--cc=sandeen@sandeen.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox