Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755271AbbGFM0P (ORCPT ); Mon, 6 Jul 2015 08:26:15 -0400 Received: from mailout1.samsung.com ([203.254.224.24]:32781 "EHLO mailout1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754861AbbGFM0M (ORCPT ); Mon, 6 Jul 2015 08:26:12 -0400 X-AuditID: cbfee61b-f79416d0000014c0-71-559a73e1a50f From: Chao Yu To: "'Jaegeuk Kim'" Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net References: <1435713946-6910-1-git-send-email-jaegeuk@kernel.org> <1435713946-6910-2-git-send-email-jaegeuk@kernel.org> <20150704062917.GD15817@jaegeuk-mac02.hsd1.ca.comcast.net> In-reply-to: <20150704062917.GD15817@jaegeuk-mac02.hsd1.ca.comcast.net> Subject: RE: [f2fs-dev] [PATCH 2/2] f2fs: shrink unreferenced extent_caches first Date: Mon, 06 Jul 2015 20:25:23 +0800 Message-id: <004401d0b7e6$ee859f80$cb90de80$@samsung.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit X-Mailer: Microsoft Outlook 14.0 Thread-index: AQH2JPDzBuMfMbUPnofZkiyM2omNxALsEycpAexF6tEBniW7551PoKLQ Content-language: zh-cn X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFnrCLMWRmVeSWpSXmKPExsVy+t9jQd1HxbNCDS7kWjxZP4vZ4tIid4s9 e0+yWFzeNYfNgcVj06pONo/dCz4zeXzeJBfAHMVlk5Kak1mWWqRvl8CV0fx9M0vBIvWKK9P7 WBoYD8l3MXJwSAiYSKz9DWRyApliEhfurWfrYuTiEBKYzijx8vpxFgjnFaPEivWb2UCq2ARU JJZ3/GcCsUUE1CR6900Bs5kFMiXmvJ7MCtHwklFi6rEdYA2cAu4SF0//YAWxhQWCJQ5u+8oK splFQFXidH8GSJhXwFJi5ZlVTBC2oMSPyfdYIGZqSazfeRxqvrzE5jVvmSEuVZDYcfY1I8QN bhL9X56xQtSIS2w8cotlAqPQLCSjZiEZNQvJqFlIWhYwsqxiFE0tSC4oTkrPNdIrTswtLs1L 10vOz93ECA77Z9I7GFc1WBxiFOBgVOLh3VA3M1SINbGsuDL3EKMEB7OSCG+1z6xQId6UxMqq 1KL8+KLSnNTiQ4zSHCxK4rwn831ChQTSE0tSs1NTC1KLYLJMHJxSDYw1dp2lXbM44he3Vs7/ vCPP6pGSt6Ku/LP8E7N5TvuGTHgyY5mWbMLUywcPvzR4yBUTse/ZJc2Z13gnLnuj37JQLGDX jwDvHO/Or91V3T2SCjM7O14uiAqdpmXxqoLHnN1PyvnolIsWljsU5s1n21B0h2fexTxlzWyW dRMehZnlFt9aO3vVWzYlluKMREMt5qLiRAD3IyBodwIAAA== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 5152 Lines: 125 > -----Original Message----- > From: Jaegeuk Kim [mailto:jaegeuk@kernel.org] > Sent: Saturday, July 04, 2015 2:29 PM > To: Chao Yu > Cc: linux-fsdevel@vger.kernel.org; linux-kernel@vger.kernel.org; > linux-f2fs-devel@lists.sourceforge.net > Subject: Re: [f2fs-dev] [PATCH 2/2] f2fs: shrink unreferenced extent_caches first > > On Thu, Jul 02, 2015 at 08:39:43PM +0800, Chao Yu wrote: > > > -----Original Message----- > > > From: Jaegeuk Kim [mailto:jaegeuk@kernel.org] > > > Sent: Wednesday, July 01, 2015 9:26 AM > > > To: linux-kernel@vger.kernel.org; linux-fsdevel@vger.kernel.org; > > > linux-f2fs-devel@lists.sourceforge.net; linux-kernel@vger.kernel.org; > > > linux-fsdevel@vger.kernel.org; linux-f2fs-devel@lists.sourceforge.net > > > Cc: Jaegeuk Kim; Jaegeuk Kim > > > Subject: [f2fs-dev] [PATCH 2/2] f2fs: shrink unreferenced extent_caches first > > > > > > If an extent_tree entry has a zero reference count, we can drop it from the > > > cache in higher priority rather than currently referencing entries. > > > > > > Signed-off-by: Jaegeuk Kim > > > --- > > > fs/f2fs/data.c | 51 +++++++++++++++++++++++++++++++++++++++++---------- > > > 1 file changed, 41 insertions(+), 10 deletions(-) > > > > > > diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c > > > index 8f059e0..a0a0e2b 100644 > > > --- a/fs/f2fs/data.c > > > +++ b/fs/f2fs/data.c > > > @@ -661,21 +661,54 @@ unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int > > > nr_shrink) > > > struct radix_tree_root *root = &sbi->extent_tree_root; > > > unsigned int found; > > > unsigned int node_cnt = 0, tree_cnt = 0; > > > + int remained; > > > > > > if (!test_opt(sbi, EXTENT_CACHE)) > > > return 0; > > > > > > + if (!down_write_trylock(&sbi->extent_tree_lock)) > > > + goto out; > > > + > > > + /* 1. remove unreferenced extent tree */ > > > > We always release extent node and tree from inode with lowest ino, > > why not random ino? > > Here what I want to do is to > 1. drop unreferenced inodes' extent trees; > the inodes were already evicted before, > 2. drop LRU ordered extent nodes. Actually, I got it, you codes show this method very clearly. :) > > You're right. We don't need to drop it having the lowest ino first. > Actually, I was supposed to add an LRU list for extent_trees. > But, do we need to really take care of its order for already evicted inodes? > > Here, we should think about two types of hit ratios. > One is for inodes, and the other is for data. > The VFS maintains inode_cache in an LRU order, while its data is cached via > page cache also conrolled by LRU. And, whenever inode is evicted, VFS drops > all the cached data. > So, I believe we should give a higher priority to inodes rather than data. > > And, in order to increase the hit ratio, we're trying to keep an extent tree > and its nodes even if its corresponding inode was evicted. > So, I concluded that the dropping order would not be critical especially for > the already evicted inodes. >From perspective of shrinking memory size, I think you're completely right, because we can regard extent tree and its nodes as metadata of one inode, if VFS evict one inode, all its data and metadata include data in extent cache should be evicted. But from perspective of arising hit ratio of our cache, I'm not sure this is the best way. I guess in this method, we may encounter lower coverage area of dnode + extent cache and double caches exist issue, like: a) all data of inode is evicted by VFS, and its tree and nodes in extent cache is evicted too, resulting lower hit raito of further access. b) data and node cache of inode is exist in VFS, and its tree and nodes in extent cache is exist too. > > > > > And this step releasing breaks the rule of lru runs. > > > > Some unreferenced file has high hit ratio and some referenced file may > > have low hit ratio. Why not release low hit ratio extent tree at first? > > But, still user has opened the referenced file to further access, right? It depends on access model. What I mean is that if extent cache of one inode can be hit for many times, we can assume the access model is re-accessly, that means, we can expect this cache can be hit more times. On the contrary, we can release it if it is necessary. Thanks, > And, the unreferenced file was evicted by VFS. > > Thanks, > > ------------------------------------------------------------------------------ > Don't Limit Your Business. Reach for the Cloud. > GigeNET's Cloud Solutions provide you with the tools and support that > you need to offload your IT needs and focus on growing your business. > Configured For All Businesses. Start Your Cloud Today. > https://www.gigenetcloud.com/ > _______________________________________________ > Linux-f2fs-devel mailing list > Linux-f2fs-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/