All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Monakhov <dmonakhov@openvz.org>
To: Theodore Ts'o <tytso@mit.edu>
Cc: Dave Chinner <david@fromorbit.com>, fstests@vger.kernel.org
Subject: Re: [PATCH 2/6] common: _scratch_mkfs_sized should inherent default block size from test_dev
Date: Fri, 22 Aug 2014 19:48:07 +0400	[thread overview]
Message-ID: <874mx4r0eg.fsf@openvz.org> (raw)
In-Reply-To: <20140822150915.GN11085@thunk.org>

On Fri, 22 Aug 2014 11:09:15 -0400, "Theodore Ts'o" <tytso@mit.edu> wrote:
> The mke2fs command will allow a subsequent -b option to override a
> pervious one.  So something like this will work:
> 
> mke2fs -t ext4 -b 4096 -b 2048 -b 1024 /tmp/foo.img 100
No, This will not works. Looks like you have missed the point.
helper has following signature:
_scratch_mkfs_sized <size in bytes> [optional blocksize]
But mke2fs accept filesystem size accounted in fs-blocks, so in order
to convert size in blocks to number of blocks we have to figure out blocksize.
In fact currently _ALL_ users of _scratch_mkfs_sized skip this optional
parameter, so it is reasonable to use the one from MKFS_OPTIONS instead other
which is hard coded inside helper. And as you can see from my patch logic is follows:
1) Use explicit block size if it was passed as function parameter
2) if not (1) then Use block size defined from MKFS_OPTION
3) if not (2) Use default block size (4096) 
> 
> So you don't really need to do hacks with sed.  Also, if MKFS_OPTIONS
> has a -b option, then you shouldn't need to do any -b overrides at
> all, since that probably means the person doing the xfstest run
> actually specified a block size directly for a Good Reason.  We might
> want to issue a warning message if the block size specified by
> MKFS_OPTIONS doesn't match what the test file system uses, but that's
> more of a sanity check than anything else.
> 
> Also, see my comments about dbsize; it might be a good idea if we want
> to do this sort of thing to refactor out a standard way of determining
> the block size of the test file system.
> 
> Cheers,
> 
> 						- Ted

  reply	other threads:[~2014-08-22 15:48 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-16 13:13 [PATCH 1/6] common: add _mkfs_dev helper Dmitry Monakhov
2014-08-16 13:13 ` [PATCH 2/6] common: _scratch_mkfs_sized should inherent default block size from test_dev Dmitry Monakhov
2014-08-20 23:14   ` Dave Chinner
2014-08-21  7:36     ` Dmitry Monakhov
2014-08-21  9:23       ` Dave Chinner
2014-08-21 14:01         ` Theodore Ts'o
2014-08-21 20:44           ` Dave Chinner
2014-08-22 13:24         ` Dmitry Monakhov
2014-08-22 15:09           ` Theodore Ts'o
2014-08-22 15:48             ` Dmitry Monakhov [this message]
2014-08-22 16:37               ` Theodore Ts'o
2014-08-23  0:31                 ` Dave Chinner
2014-08-16 13:13 ` [PATCH 3/6] src/e4compact cleanup Dmitry Monakhov
2014-08-16 13:13 ` [PATCH 4/6] src/e4compact: handle various block_size correctly Dmitry Monakhov
2014-08-16 13:13 ` [PATCH 5/6] src/e4compact: add sparse file optimization Dmitry Monakhov
2014-08-16 13:13 ` [PATCH 6/6] ext4/308: add new defrag compact test case Dmitry Monakhov
2014-09-08 12:21   ` 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=874mx4r0eg.fsf@openvz.org \
    --to=dmonakhov@openvz.org \
    --cc=david@fromorbit.com \
    --cc=fstests@vger.kernel.org \
    --cc=tytso@mit.edu \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.