From: Andrew Morton <akpm@osdl.org>
To: Ray Bryant <raybry@sgi.com>
Cc: mort@wildopensource.com, pj@sgi.com,
linux-kernel@vger.kernel.org, hilgeman@sgi.com
Subject: Re: [PATCH/RFC] A method for clearing out page cache
Date: Mon, 21 Feb 2005 14:41:08 -0800 [thread overview]
Message-ID: <20050221144108.40eba4d9.akpm@osdl.org> (raw)
In-Reply-To: <421A607B.4050606@sgi.com>
Ray Bryant <raybry@sgi.com> wrote:
>
> Andrew Morton wrote:
> > Martin Hicks <mort@wildopensource.com> wrote:
> >
> >>This patch introduces a new sysctl for NUMA systems that tries to drop
> >> as much of the page cache as possible from a set of nodes. The
> >> motivation for this patch is for setting up High Performance Computing
> >> jobs, where initial memory placement is very important to overall
> >> performance.
> >
> >
> > - Using a write to /proc for this seems a bit hacky. Why not simply add
> > a new system call for it?
> >
>
> We did it this way because it was easier to get it into SLES9 that way.
> But there is no particular reason that we couldn't use a system call.
> It's just that we figured adding system calls is hard.
aarggh. This is why you should target kernel.org kernels first. Now we
risk ending up with poor old suse carrying an obsolete interface and
application developers have to be able to cater for both interfaces.
> > If it does, then userspace could arrange for that concurrency by
> > starting a number of processes to perform the toss, each with a different
> > nodemask.
> >
>
> That works fine as well if we can get a system call number assigned and
> avoids the hackiness of both /proc and the kernel threads.
syscall numbers are per-arch. We don't need to assign a syscall number for
this one - we can surely have this ready for 2.6.12. Simply include i386
and ia64 in the initial patch and other architectures will catch up pretty
quickly. (It would be nice to generate patches for the arch maintainers,
however).
> > - Dropping "as much pagecache as possible" might be a bit crude. I
> > wonder if we should pass in some additional parameter which specifies how
> > much of the node's pagecache should be removed.
> >
> > Or, better, specify how much free memory we will actually require on
> > this node. The syscall terminates when it determines that enough
> > pagecache has been removed.
>
> Our thoughts exactly. This is clearly a "big hammer" and we want to
> make a lighter hammer to free up a certain number of pages. Indeed,
> we would like to have these calls occur automatically from __alloc_pages()
> when we try to allocate local storage and find that there isn't any.
> For our workloads, we want to free up unmapped, clean pagecache, if that
> is what is keeping us from allocating a local page. Not all workloads
> want that, however, so we would probably use a sysctl() to enable/disable
> this.
>
> However, the first step is to do this manually from user space.
Yup. The thing is, lots of people want this feature for various reasons.
Not just numerical-computing-users-on-NUMA. We should get it right for
them too.
Especially kernel developers, who have various nasty userspace tools which
will manually reclaim pagecache. But non-kernel-developers will use it
too, when they think the VM is screwing them over ;)
I think Solaris used to have such a tool - /usr/etc/chill, although I
don't know if it had kernel support.
> >
> > - To make the syscall more general, we should be able to reclaim mapped
> > pagecache and anonymous memory as well.
> >
> >
> > So what it comes down to is
> >
> > sys_free_node_memory(long node_id, long pages_to_make_free, long what_to_free)
> >
> > where `what_to_free' consists of a bunch of bitflags (unmapped pagecache,
> > mapped pagecache, anonymous memory, slab, ...).
>
> Do we have to implement all of those or just allow for the possibility of that
> being implemented in the future? E. g. in our case we'd just implement the
> bit that says "unmapped pagecache".
Well... please take a look at what's involved. It should just be a matter
of sprinkling a few test such as
+ if (sc->mode & SC_RECLAIM_SLAB) {
...
+ }
into the existing code. If things turn nasty then we can take another look
at it.
next prev parent reply other threads:[~2005-02-21 22:41 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-02-14 15:44 Martin Hicks
2005-02-15 3:37 ` Paul Jackson
2005-02-16 19:56 ` Martin Hicks
2005-02-21 19:27 ` Martin Hicks
2005-02-21 21:42 ` Andrew Morton
2005-02-21 22:12 ` Paul Jackson
2005-02-21 22:28 ` Andrew Morton
2005-02-21 23:52 ` Paul Jackson
2005-02-21 22:28 ` Ray Bryant
2005-02-21 22:41 ` Andrew Morton [this message]
2005-02-21 23:01 ` Ray Bryant
2005-02-22 7:53 ` Ingo Molnar
2005-02-22 8:07 ` Andrew Morton
2005-02-22 8:24 ` Ingo Molnar
2005-02-22 17:29 ` Ray Bryant
2005-02-22 11:26 ` Paul Jackson
2005-02-22 18:45 ` Andrew Morton
2005-02-22 18:59 ` Martin Hicks
2005-02-22 19:03 ` Ray Bryant
2005-02-23 0:14 ` Paul Jackson
2005-03-01 21:54 ` Pavel Machek
2005-02-21 21:52 ` Nish Aravamudan
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=20050221144108.40eba4d9.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=hilgeman@sgi.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mort@wildopensource.com \
--cc=pj@sgi.com \
--cc=raybry@sgi.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
all inboxes | Powered by JetHome®