From: Matt Mackall <mpm@selenic.com>
To: Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] shrink core hashes on small systems
Date: Mon, 5 Apr 2004 16:19:16 -0500 [thread overview]
Message-ID: <20040405211916.GH6248@waste.org> (raw)
In-Reply-To: <20040405140223.2f775da4.akpm@osdl.org>
On Mon, Apr 05, 2004 at 02:02:23PM -0700, Andrew Morton wrote:
> Matt Mackall <mpm@selenic.com> wrote:
> >
> > Shrink hashes on small systems
> >
> > Tweak vfs_caches_init logic so that hashes don't start growing as
> > quickly on small systems.
> >
> > - vfs_caches_init(num_physpages);
> > + /* Treat machines smaller than 6M as having 2M of memory
> > + for hash-sizing purposes */
> > + vfs_caches_init(max(500, (int)num_physpages-1000));
>
> This seems rather arbitrary. It also implicitly "knows" that
> PAGE_SIZE=4096.
Yep. I can reword it in terms of pages, if that helps. Boxes with 8k
pages tend to have larger instruction words and data structures by
virtue of being RISC/64bit/etc., so I think 1000 pages is a reasonable
number in either case.
> num_physpages is of course the wrong thing to use here - on small systems
> we should be accounting for memory which is pinned by kernel text, etc.
>
> But you're going further than that. What's the theory here?
Basically, the numfreepages approach doesn't take into account the
size of the kernel/critical userspace at all. So we assume that
anything less than 4M is already tight and that we're not yet in a
position to trade space for performance, so lets just pull that off the top.
Longer term, I think some serious thought needs to go into scaling
hash sizes across the board, but this serves my purposes on the
low-end without changing behaviour asymptotically.
--
Matt Mackall : http://www.selenic.com : Linux development and consulting
next prev parent reply other threads:[~2004-04-05 21:42 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-04-05 20:49 Matt Mackall
2004-04-05 21:02 ` Andrew Morton
2004-04-05 21:19 ` Matt Mackall [this message]
2004-04-05 21:38 ` Andrew Morton
2004-04-05 22:59 ` Matt Mackall
2004-04-06 6:31 ` Bryan Rittmeyer
2004-04-07 5:21 ` Marcelo Tosatti
2004-04-07 18:10 ` Matt Mackall
2004-04-07 22:53 ` Benjamin Herrenschmidt
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=20040405211916.GH6248@waste.org \
--to=mpm@selenic.com \
--cc=akpm@osdl.org \
--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
all inboxes | Powered by JetHome®