From: "J. Bruce Fields" <bfields@fieldses.org>
To: Jeff Layton <jlayton@redhat.com>
Cc: linux-nfs@vger.kernel.org
Subject: Re: [PATCH v1 15/16] nfsd: register a shrinker for DRC cache entries
Date: Wed, 30 Jan 2013 10:24:49 -0500 [thread overview]
Message-ID: <20130130152449.GG12306@fieldses.org> (raw)
In-Reply-To: <1359402082-29195-16-git-send-email-jlayton@redhat.com>
On Mon, Jan 28, 2013 at 02:41:21PM -0500, Jeff Layton wrote:
> Since we dynamically allocate them now, allow the system to call us
> up to release them if we get low on memory.
>
> We set the "seeks" value very high, to discourage it and release
> them in LRU order.
I don't understand how the mm uses seeks. I guess I'll do some reading.
This looks straightforward enough, but I'm not sure how to judge whether
this is the correct policy.
--b.
> We may end up releasing some prematurely if the
> box is really low on memory.
>
> Signed-off-by: Jeff Layton <jlayton@redhat.com>
> ---
> fs/nfsd/nfscache.c | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 53 insertions(+), 1 deletion(-)
>
> diff --git a/fs/nfsd/nfscache.c b/fs/nfsd/nfscache.c
> index bd21230..27edd47 100644
> --- a/fs/nfsd/nfscache.c
> +++ b/fs/nfsd/nfscache.c
> @@ -35,6 +35,18 @@ static inline u32 request_hash(u32 xid)
>
> static int nfsd_cache_append(struct svc_rqst *rqstp, struct kvec *vec);
> static void cache_cleaner_func(struct work_struct *unused);
> +static int nfsd_reply_cache_shrink(struct shrinker *shrink,
> + struct shrink_control *sc);
> +
> +/*
> + * We set "seeks" to a large value here since we really can't recreate these
> + * entries. We're just gambling that they won't actually be needed if and
> + * when the box comes under memory pressure.
> + */
> +struct shrinker nfsd_reply_cache_shrinker = {
> + .shrink = nfsd_reply_cache_shrink,
> + .seeks = 64,
> +};
>
> /*
> * locking for the reply cache:
> @@ -80,6 +92,7 @@ nfsd_reply_cache_free(struct svc_cacherep *rp)
>
> int nfsd_reply_cache_init(void)
> {
> + register_shrinker(&nfsd_reply_cache_shrinker);
> drc_slab = kmem_cache_create("nfsd_drc", sizeof(struct svc_cacherep),
> 0, 0, NULL);
> if (!drc_slab)
> @@ -102,6 +115,7 @@ void nfsd_reply_cache_shutdown(void)
> {
> struct svc_cacherep *rp;
>
> + unregister_shrinker(&nfsd_reply_cache_shrinker);
> cancel_delayed_work_sync(&cache_cleaner);
>
> while (!list_empty(&lru_head)) {
> @@ -152,15 +166,17 @@ nfsd_cache_entry_expired(struct svc_cacherep *rp)
> * if we hit one that isn't old enough, then we can stop the walking. Must
> * be called with cache_lock held.
> */
> -static void
> +static int
> prune_old_cache_entries(void)
> {
> + int freed = 0;
> struct svc_cacherep *rp, *tmp;
>
> list_for_each_entry_safe(rp, tmp, &lru_head, c_lru) {
> if (!nfsd_cache_entry_expired(rp))
> break;
> nfsd_reply_cache_free_locked(rp);
> + ++freed;
> }
>
> /*
> @@ -173,6 +189,8 @@ prune_old_cache_entries(void)
> cancel_delayed_work(&cache_cleaner);
> else
> mod_delayed_work(system_wq, &cache_cleaner, RC_EXPIRE);
> +
> + return freed;
> }
>
> static void
> @@ -183,6 +201,40 @@ cache_cleaner_func(struct work_struct *unused)
> spin_unlock(&cache_lock);
> }
>
> +static int
> +nfsd_reply_cache_shrink(struct shrinker *shrink, struct shrink_control *sc)
> +{
> + int nr_to_scan = sc->nr_to_scan;
> + unsigned int num;
> +
> + spin_lock(&cache_lock);
> + if (!nr_to_scan)
> + goto out;
> +
> + nr_to_scan -= prune_old_cache_entries();
> +
> + /*
> + * If that didn't free enough, then keep going. It's better to free
> + * some prematurely than to have the box keel over due to lack of
> + * memory.
> + */
> + while (nr_to_scan > 0) {
> + struct svc_cacherep *rp;
> +
> + if (list_empty(&lru_head))
> + break;
> + rp = list_first_entry(&lru_head, struct svc_cacherep, c_lru);
> + nfsd_reply_cache_free_locked(rp);
> + --nr_to_scan;
> + }
> +
> +out:
> + num = num_drc_entries;
> + spin_unlock(&cache_lock);
> +
> + return num;
> +}
> +
> /*
> * Search the request hash for an entry that matches the given rqstp.
> * Must be called with cache_lock held. Returns the found entry or
> --
> 1.7.11.7
>
next prev parent reply other threads:[~2013-01-30 15:24 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-28 19:41 [PATCH v1 00/16] nfsd: duplicate reply cache overhaul Jeff Layton
2013-01-28 19:41 ` [PATCH v1 01/16] nfsd: fix IPv6 address handling in the DRC Jeff Layton
2013-01-28 19:51 ` Chuck Lever
2013-01-28 20:05 ` Jeff Layton
2013-01-28 20:16 ` Chuck Lever
2013-01-28 20:26 ` Jeff Layton
2013-01-28 20:34 ` Chuck Lever
2013-01-28 20:45 ` Jeff Layton
2013-01-28 20:54 ` Chuck Lever
2013-01-28 21:06 ` Jeff Layton
2013-01-28 21:32 ` Chuck Lever
2013-01-29 13:33 ` Jeff Layton
2013-01-31 20:59 ` J. Bruce Fields
2013-01-31 21:06 ` Jeff Layton
2013-01-28 19:41 ` [PATCH v1 02/16] nfsd: remove unneeded spinlock in nfsd_cache_update Jeff Layton
2013-01-31 21:23 ` J. Bruce Fields
2013-01-28 19:41 ` [PATCH v1 03/16] nfsd: get rid of RC_INTR Jeff Layton
2013-01-28 19:41 ` [PATCH v1 04/16] nfsd: create a dedicated slabcache for DRC entries Jeff Layton
2013-01-28 19:41 ` [PATCH v1 05/16] nfsd: add alloc and free functions " Jeff Layton
2013-01-28 19:41 ` [PATCH v1 06/16] nfsd: remove redundant test from nfsd_reply_cache_free Jeff Layton
2013-01-28 19:41 ` [PATCH v1 07/16] nfsd: clean up and clarify the cache expiration code Jeff Layton
2013-01-28 19:41 ` [PATCH v1 08/16] nfsd: break out hashtable search into separate function Jeff Layton
2013-02-01 13:14 ` J. Bruce Fields
2013-02-01 15:26 ` Jeff Layton
2013-02-01 15:48 ` Jeff Layton
2013-02-01 15:51 ` J. Bruce Fields
2013-02-01 16:01 ` Jeff Layton
2013-02-01 16:05 ` J. Bruce Fields
2013-01-28 19:41 ` [PATCH v1 09/16] nfsd: always move DRC entries to the end of LRU list when updating timestamp Jeff Layton
2013-01-28 19:41 ` [PATCH v1 10/16] nfsd: dynamically allocate DRC entries Jeff Layton
2013-01-30 15:16 ` J. Bruce Fields
2013-01-30 15:20 ` Jeff Layton
2013-01-28 19:41 ` [PATCH v1 11/16] nfsd: remove the cache_disabled flag Jeff Layton
2013-01-28 19:41 ` [PATCH v1 12/16] nfsd: when updating an entry with RC_NOCACHE, just free it Jeff Layton
2013-01-28 19:41 ` [PATCH v1 13/16] nfsd: add recurring workqueue job to clean the cache Jeff Layton
2013-01-28 19:41 ` [PATCH v1 14/16] nfsd: track the number of DRC entries in " Jeff Layton
2013-01-28 19:41 ` [PATCH v1 15/16] nfsd: register a shrinker for DRC cache entries Jeff Layton
2013-01-30 15:24 ` J. Bruce Fields [this message]
2013-01-30 15:37 ` Jeff Layton
2013-01-28 19:41 ` [PATCH v1 16/16] nfsd: keep a checksum of the first 256 bytes of request Jeff Layton
2013-01-29 18:20 ` Jeff Layton
2013-01-30 15:14 ` J. Bruce Fields
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=20130130152449.GG12306@fieldses.org \
--to=bfields@fieldses.org \
--cc=jlayton@redhat.com \
--cc=linux-nfs@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 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.