From: Matt Mackall <mpm@selenic.com>
To: linux-kernel <linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@osdl.org>
Subject: [PATCH] shrink core hashes on small systems
Date: Mon, 5 Apr 2004 15:49:58 -0500 [thread overview]
Message-ID: <20040405204957.GF6248@waste.org> (raw)
Shrink hashes on small systems
Tweak vfs_caches_init logic so that hashes don't start growing as
quickly on small systems.
tiny-mpm/init/main.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletion(-)
diff -puN init/main.c~hash-sizes init/main.c
--- tiny/init/main.c~hash-sizes 2004-03-20 12:14:43.000000000 -0600
+++ tiny-mpm/init/main.c 2004-03-20 12:14:43.000000000 -0600
@@ -470,7 +470,9 @@ asmlinkage void __init start_kernel(void
buffer_init();
unnamed_dev_init();
security_scaffolding_startup();
- 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));
radix_tree_init();
signals_init();
/* rootfs populating might need page-writeback */
_
--
Matt Mackall : http://www.selenic.com : Linux development and consulting
next reply other threads:[~2004-04-05 20:50 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-04-05 20:49 Matt Mackall [this message]
2004-04-05 21:02 ` [PATCH] shrink core hashes on small systems Andrew Morton
2004-04-05 21:19 ` Matt Mackall
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=20040405204957.GF6248@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 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.