From: Josef Bacik <jbacik@redhat.com>
To: Andreas Dilger <adilger@sun.com>
Cc: Josef Bacik <jbacik@redhat.com>, linux-ext4@vger.kernel.org
Subject: Re: [RFC][PATCH] fiemap support for ext3
Date: Mon, 21 Apr 2008 20:16:07 -0400 [thread overview]
Message-ID: <20080422001607.GB14775@unused.rdu.redhat.com> (raw)
In-Reply-To: <20080421220851.GP2775@webber.adilger.int>
On Mon, Apr 21, 2008 at 04:08:51PM -0600, Andreas Dilger wrote:
> On Apr 18, 2008 17:09 -0400, Josef Bacik wrote:
> > Here is my patch for fiemap support on ext3. The main reason for doing this is
> > because it will make it easier for application developers who are wanting to
> > take advantage of fiemap on extent based fs's to be able to use the same
> > interface for ext3 as well without having to fallback onto something like
> > fibmap. Fibmap also means you are calling ext3_get_block for _every_ block in
> > the file, which is ineffecient when ext3_get_blocks can map multiple contiguous
> > blocks all at once, reducing the number of times you have to call
> > ext3_get_blocks. Tested this with sandeens fiemap test program and verified it
> > with filefrag. Thanks much,
> >
> > Signed-off-by: Josef Bacik <jbacik@redhat.com>
>
> Josef, thanks for doing this work. Having more than a single filesystem
> implement FIEMAP (especially a block-mapped one) is very useful. Did you
> look at all at making a "generic_fiemap()" function? It seems very little
> of ext3_fiemap() is ext3 specific, only the call to ext3_force_commit()
> (which could just be a sync on the inode), ext3_block_map() (generic for
> all block-based filesystems), and truncate_mutex (would i_sem be enough?).
>
Like Eric points out I wasn't sure if other fs's would handle the case where
b_size > blocksize properly and map contiguous blocks together until it hit an
unallocated block. If that is a safe assumption to take then I'll do it
generically. I thought i_sem would be a bit heavy handed, but if you would
prefer it that way I can change it.
> > +int ext3_fiemap(struct inode *inode, unsigned long arg)
> > +{
> > + /*
> > + * if fm_start is in the middle of the current block, get the next
> > + * block so we don't end up returning a start thats before the given
> > + * fm_start
> > + */
> > + start_blk = (fiemap_s->fm_start + (1 << inode->i_blkbits) - 1) >>
> > + inode->i_blkbits;
>
> Hmm, I'd think that if someone is requesting the mapping for bytes [50-5000]
> they wouldn't be very happy with the mapping returned being [4096-8191],
> because it is missing part of the requested range. Instead, the fm_start
> should be rounded down to the start of the first block and up to the end
> of the last block to return [0-8191] (fm_start = 0, fm_length = 8192).
>
Ok I will change it, just wasn't sure if returning a start value before the
given start value would be appreciated or not. I guess we can say what it will
do in the man page :). Thanks much,
Josef
prev parent reply other threads:[~2008-04-22 0:26 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-18 21:09 [RFC][PATCH] fiemap support for ext3 Josef Bacik
2008-04-21 22:08 ` Andreas Dilger
2008-04-21 22:16 ` Eric Sandeen
2008-04-22 2:33 ` Andreas Dilger
2008-04-22 0:16 ` Josef Bacik [this message]
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=20080422001607.GB14775@unused.rdu.redhat.com \
--to=jbacik@redhat.com \
--cc=adilger@sun.com \
--cc=linux-ext4@vger.kernel.org \
/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