From: Thomas Graf <tgraf@suug.ch>
To: Ying Xue <ying.xue@windriver.com>
Cc: davem@davemloft.net, eric.dumazet@gmail.com, netdev@vger.kernel.org
Subject: Re: [PATCH net-next v2] lib/rhashtable: allow users to set the minimum shifts of shrinking
Date: Fri, 29 Aug 2014 10:31:07 +0100 [thread overview]
Message-ID: <20140829093107.GA3563@casper.infradead.org> (raw)
In-Reply-To: <1409190324-27828-1-git-send-email-ying.xue@windriver.com>
On 08/28/14 at 09:45am, Ying Xue wrote:
> Now the resizeable hash table size is allowed to shrink a too smaller
> size - HASH_MIN_SIZE(4) although users initially specify a rather big
> size when table is created. Especially when the number of objects
> saved in the table keeps a small value in comparison with the initial
> setting of table size during a quite long time, lots of actions of
> expanding and shrinking are involved with objects being inserted or
Can you work on this part of the commit message a bit? I know what
you want to say but it's not very clear from the text.
> removed from table. However, as synchronize_rcu() has to be called
> during expanding and shrinking, these unnecessary actions would
> seriously hit users' performance.
>
> Therefore, we should permit users to set the minimum table size
> through configuring the minimum of number of shifts when table is
> created according to users specific requirement.
>
> diff --git a/lib/rhashtable.c b/lib/rhashtable.c
> index a2c7881..85a4ac2 100644
> --- a/lib/rhashtable.c
> +++ b/lib/rhashtable.c
> @@ -566,8 +568,13 @@ int rhashtable_init(struct rhashtable *ht, struct rhashtable_params *params)
> (!params->key_len && !params->obj_hashfn))
> return -EINVAL;
>
> + if (params->min_shift)
> + params->min_shift = max(params->min_shift, min_shift);
> + else
> + params->min_shift = min_shift;
> +
You can simplify all of the above to just:
params->min_shift = max(params->min_shift, ilog2(HASH_MIN_SIZE));
next prev parent reply other threads:[~2014-08-29 9:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-28 1:45 [PATCH net-next v2] lib/rhashtable: allow users to set the minimum shifts of shrinking Ying Xue
2014-08-29 9:31 ` Thomas Graf [this message]
2014-08-29 10:08 ` Ying Xue
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=20140829093107.GA3563@casper.infradead.org \
--to=tgraf@suug.ch \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=ying.xue@windriver.com \
/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