linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] nfsd: don't halt scanning the DRC LRU list when there's an RC_INPROG entry
@ 2014-06-05 13:45 Jeff Layton
  2014-06-05 15:10 ` J. Bruce Fields
  0 siblings, 1 reply; 2+ messages in thread
From: Jeff Layton @ 2014-06-05 13:45 UTC (permalink / raw)
  To: bfields; +Cc: linux-nfs

Currently, the DRC cache pruner will stop scanning the list when it
hits an entry that is RC_INPROG. It's possible however for a call to
take a *very* long time. In that case, we don't want it to block other
entries from being pruned if they are expired or we need to trim the
cache to get back under the limit.

Fix the DRC cache pruner to just ignore RC_INPROG entries.

Signed-off-by: Jeff Layton <jlayton@primarydata.com>
---
 fs/nfsd/nfscache.c | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/fs/nfsd/nfscache.c b/fs/nfsd/nfscache.c
index f8f060ffbf4f..6040da8830ff 100644
--- a/fs/nfsd/nfscache.c
+++ b/fs/nfsd/nfscache.c
@@ -224,13 +224,6 @@ hash_refile(struct svc_cacherep *rp)
 	hlist_add_head(&rp->c_hash, cache_hash + hash_32(rp->c_xid, maskbits));
 }
 
-static inline bool
-nfsd_cache_entry_expired(struct svc_cacherep *rp)
-{
-	return rp->c_state != RC_INPROG &&
-	       time_after(jiffies, rp->c_timestamp + RC_EXPIRE);
-}
-
 /*
  * Walk the LRU list and prune off entries that are older than RC_EXPIRE.
  * Also prune the oldest ones when the total exceeds the max number of entries.
@@ -242,8 +235,14 @@ prune_cache_entries(void)
 	long freed = 0;
 
 	list_for_each_entry_safe(rp, tmp, &lru_head, c_lru) {
-		if (!nfsd_cache_entry_expired(rp) &&
-		    num_drc_entries <= max_drc_entries)
+		/*
+		 * Don't free entries attached to calls that are still
+		 * in-progress, but do keep scanning the list.
+		 */
+		if (rp->c_state == RC_INPROG)
+			continue;
+		if (num_drc_entries <= max_drc_entries &&
+		    time_before(jiffies, rp->c_timestamp + RC_EXPIRE))
 			break;
 		nfsd_reply_cache_free_locked(rp);
 		freed++;
-- 
1.9.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] nfsd: don't halt scanning the DRC LRU list when there's an RC_INPROG entry
  2014-06-05 13:45 [PATCH] nfsd: don't halt scanning the DRC LRU list when there's an RC_INPROG entry Jeff Layton
@ 2014-06-05 15:10 ` J. Bruce Fields
  0 siblings, 0 replies; 2+ messages in thread
From: J. Bruce Fields @ 2014-06-05 15:10 UTC (permalink / raw)
  To: Jeff Layton; +Cc: linux-nfs

On Thu, Jun 05, 2014 at 09:45:00AM -0400, Jeff Layton wrote:
> Currently, the DRC cache pruner will stop scanning the list when it
> hits an entry that is RC_INPROG. It's possible however for a call to
> take a *very* long time. In that case, we don't want it to block other
> entries from being pruned if they are expired or we need to trim the
> cache to get back under the limit.
> 
> Fix the DRC cache pruner to just ignore RC_INPROG entries.

Makes sense, applying for 3.16.  (Doesn't look like stable material.)

--b.

> 
> Signed-off-by: Jeff Layton <jlayton@primarydata.com>
> ---
>  fs/nfsd/nfscache.c | 17 ++++++++---------
>  1 file changed, 8 insertions(+), 9 deletions(-)
> 
> diff --git a/fs/nfsd/nfscache.c b/fs/nfsd/nfscache.c
> index f8f060ffbf4f..6040da8830ff 100644
> --- a/fs/nfsd/nfscache.c
> +++ b/fs/nfsd/nfscache.c
> @@ -224,13 +224,6 @@ hash_refile(struct svc_cacherep *rp)
>  	hlist_add_head(&rp->c_hash, cache_hash + hash_32(rp->c_xid, maskbits));
>  }
>  
> -static inline bool
> -nfsd_cache_entry_expired(struct svc_cacherep *rp)
> -{
> -	return rp->c_state != RC_INPROG &&
> -	       time_after(jiffies, rp->c_timestamp + RC_EXPIRE);
> -}
> -
>  /*
>   * Walk the LRU list and prune off entries that are older than RC_EXPIRE.
>   * Also prune the oldest ones when the total exceeds the max number of entries.
> @@ -242,8 +235,14 @@ prune_cache_entries(void)
>  	long freed = 0;
>  
>  	list_for_each_entry_safe(rp, tmp, &lru_head, c_lru) {
> -		if (!nfsd_cache_entry_expired(rp) &&
> -		    num_drc_entries <= max_drc_entries)
> +		/*
> +		 * Don't free entries attached to calls that are still
> +		 * in-progress, but do keep scanning the list.
> +		 */
> +		if (rp->c_state == RC_INPROG)
> +			continue;
> +		if (num_drc_entries <= max_drc_entries &&
> +		    time_before(jiffies, rp->c_timestamp + RC_EXPIRE))
>  			break;
>  		nfsd_reply_cache_free_locked(rp);
>  		freed++;
> -- 
> 1.9.3
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-06-05 15:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-05 13:45 [PATCH] nfsd: don't halt scanning the DRC LRU list when there's an RC_INPROG entry Jeff Layton
2014-06-05 15:10 ` J. Bruce Fields

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).