From: Christoph Hellwig <hch@lst.de>
To: xfs@oss.sgi.com
Subject: Re: [PATCH 4/4] fix biosize option
Date: Fri, 29 Aug 2008 01:19:04 +0200 [thread overview]
Message-ID: <20080828231904.GD19757@lst.de> (raw)
In-Reply-To: <20080723080520.GC3417@lst.de>
ping^2?
On Wed, Jul 23, 2008 at 10:05:20AM +0200, Christoph Hellwig wrote:
> ping?
>
> On Sun, May 25, 2008 at 09:07:54PM +0200, Christoph Hellwig wrote:
> > iosizelog shouldn't be the same as iosize but the logarithm of it. Then
> > again the current biosize option doesn't make much sense to me as it
> > doesn't set the preferred I/O size as mentioned in the comment next to
> > it but rather the allocation size and thus is identical to the allocsize
> > option (except for the missing logarithm). It's also not documented in
> > Documentation/filesystems/xfs.txt or the mount manpage.
> >
> >
> > Signed-off-by: Christoph Hellwig <hch@lst.de>
> >
> > Index: linux-2.6-xfs/fs/xfs/linux-2.6/xfs_super.c
> > ===================================================================
> > --- linux-2.6-xfs.orig/fs/xfs/linux-2.6/xfs_super.c 2008-05-25 20:59:04.000000000 +0200
> > +++ linux-2.6-xfs/fs/xfs/linux-2.6/xfs_super.c 2008-05-25 20:59:38.000000000 +0200
> > @@ -252,7 +252,7 @@ xfs_parseargs(
> > return EINVAL;
> > }
> > iosize = simple_strtoul(value, &eov, 10);
> > - iosizelog = (uint8_t) iosize;
> > + iosizelog = ffs(iosize) - 1;
> > } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
> > if (!value || !*value) {
> > cmn_err(CE_WARN,
> ---end quoted text---
---end quoted text---
next prev parent reply other threads:[~2008-08-28 23:17 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-25 19:07 [PATCH 4/4] fix biosize option Christoph Hellwig
2008-07-23 8:05 ` Christoph Hellwig
2008-08-28 23:19 ` Christoph Hellwig [this message]
2008-07-24 7:15 ` Dave Chinner
2008-07-24 19:54 ` Christoph Hellwig
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=20080828231904.GD19757@lst.de \
--to=hch@lst.de \
--cc=xfs@oss.sgi.com \
/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