From: Chao Yu <chao2.yu@samsung.com>
To: "'Changman Lee'" <cm224.lee@samsung.com>
Cc: "'Jaegeuk Kim'" <jaegeuk@kernel.org>,
linux-f2fs-devel@lists.sourceforge.net,
linux-kernel@vger.kernel.org
Subject: RE: [RFC PATCH] f2fs: add extent cache base on rb-tree
Date: Mon, 22 Dec 2014 17:06:52 +0800 [thread overview]
Message-ID: <000401d01dc6$bce92330$36bb6990$@samsung.com> (raw)
In-Reply-To: <20141222020317.GB3335@lcm>
Hi Changman,
> -----Original Message-----
> From: Changman Lee [mailto:cm224.lee@samsung.com]
> Sent: Monday, December 22, 2014 10:03 AM
> To: Chao Yu
> Cc: Jaegeuk Kim; linux-f2fs-devel@lists.sourceforge.net; linux-kernel@vger.kernel.org
> Subject: Re: [RFC PATCH] f2fs: add extent cache base on rb-tree
>
> Hi Yu,
>
> Good approach.
> As you know, however, f2fs breaks extent itself due to COW.
> Unlike other filesystem like btrfs, minimum extent of f2fs could have 4KB granularity.
> So we would have lots of extents per inode and it could lead to overhead
> to manage extents.
>
> Anyway, mount option could be alternative for this patch.
>
> On Fri, Dec 19, 2014 at 06:49:29PM +0800, Chao Yu wrote:
> > Now f2fs have page-block mapping cache which can cache only one extent mapping
> > between contiguous logical address and physical address.
> > Normally, this design will work well because f2fs will expand coverage area of
> > the mapping extent when we write forward sequentially. But when we write data
> > randomly in Out-Place-Update mode, the extent will be shorten and hardly be
> > expanded for most time as following reasons:
> > 1.The short part of extent will be discarded if we break contiguous mapping in
> > the middle of extent.
> > 2.The new mapping will be added into mapping cache only at head or tail of the
> > extent.
> > 3.We will drop the extent cache when the extent became very fragmented.
> > 4.We will not update the extent with mapping which we get from readpages or
> > readpage.
> >
> > To solve above problems, this patch adds extent cache base on rb-tree like other
> > filesystems (e.g.: ext4/btrfs) in f2fs. By this way, f2fs can support another
> > more effective cache between dnode page cache and disk. It will supply high hit
> > ratio in the cache with fewer memory when dnode page cache are reclaimed in
> > environment of low memory.
> >
> > Todo:
> > *introduce mount option for extent cache.
> > *add shrink ability for extent cache.
> >
> > Signed-off-by: Chao Yu <chao2.yu@samsung.com>
[snip]
> > +static void __try_merge_extent(struct inode *inode, struct extent_info *ei)
> > +{
> > + struct rb_root *root = &F2FS_I(inode)->ei_tree.root;
> > + struct extent_info *pei = NULL;
> > + struct rb_node *node;
> > +
> > + node = rb_prev(&ei->rb_node);
> > + if (node) {
> > + pei = rb_entry(node, struct extent_info, rb_node);
> > + if (ei->blk == pei->blk + pei->len) {
>
> Shouldn't we check below together, too?
> if (ei->fofs == pei->fofs + pei->len)
Yes, you're right.
The following "if (ei->blk + 1 == pei->blk)" has the same problem.
I will fix this issue, thanks for your review!
Regards,
Yu
prev parent reply other threads:[~2014-12-22 9:07 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-19 10:49 [RFC PATCH] f2fs: add extent cache base on rb-tree Chao Yu
2014-12-22 2:03 ` Changman Lee
2014-12-22 7:10 ` Chao Yu
2014-12-22 23:16 ` Jaegeuk Kim
2014-12-23 3:01 ` Chao Yu
2014-12-23 7:36 ` Jaegeuk Kim
2014-12-23 8:45 ` Changman Lee
2014-12-24 8:01 ` Chao Yu
2014-12-25 8:35 ` Jaegeuk Kim
2014-12-29 7:19 ` Chao Yu
2014-12-29 21:23 ` Jaegeuk Kim
2014-12-30 0:32 ` Changman Lee
2015-01-04 3:19 ` Chao Yu
2015-01-07 11:16 ` Changman Lee
2015-01-12 7:06 ` Chao Yu
2014-12-30 10:10 ` Chao Yu
2014-12-31 8:26 ` Jaegeuk Kim
2015-01-04 8:24 ` Chao Yu
2015-01-06 23:00 ` Jaegeuk Kim
2015-01-12 7:04 ` Chao Yu
2014-12-23 4:30 ` Changman Lee
2014-12-23 9:35 ` Chao Yu
2014-12-23 19:24 ` Jaegeuk Kim
2014-12-22 9:06 ` Chao Yu [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='000401d01dc6$bce92330$36bb6990$@samsung.com' \
--to=chao2.yu@samsung.com \
--cc=cm224.lee@samsung.com \
--cc=jaegeuk@kernel.org \
--cc=linux-f2fs-devel@lists.sourceforge.net \
--cc=linux-kernel@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