From: Andrew Morton <akpm@zip.com.au>
To: Rik van Riel <riel@conectiva.com.br>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>
Subject: throttling dirtiers
Date: Wed, 31 Jul 2002 01:26:09 -0700 [thread overview]
Message-ID: <3D479F21.F08C406C@zip.com.au> (raw)
Here's an interesting test.
- mem=512m
- Run a program which mallocs 400 megs and then madly sits
there touching each page.
- Do a big `dd' to a file.
Everything works nicely - all the anon memory sits on the active
list, all writeback is via shrink_cache -> vm_writeback.
Bandwidth is good.
But as we discussed, we really shouldn't be doing the IO from
within the VM. balance_dirty_pages() is never triggering
because the system is not reaching 40% dirty.
It would make sense for the VM to detect an overload
of dirty pages coming off the tail of the LRU and to reach
over and tell balance_dirty_pages() to provide throttling,
If we were to say "gee, of the last 1,000 pages, 25% were
dirty, so tell balance_dirty_pages() to throttle everyone"
then that would be too late because the LRU will be _full_
of dirty pages.
I can't think of a sane way of keeping track of the number
of dirty pages on the inactive list, because the locking
is quite disjoint.
But we can certainly track the amount of anon memory in
the machine, and set the balance_dirty_pages thresholds
at 0.4 * (total memory - anon memory) or something like
that.
Thoughts?
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/
next reply other threads:[~2002-07-31 8:26 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-07-31 8:26 Andrew Morton [this message]
2002-07-31 20:06 ` William Lee Irwin III
2002-07-31 20:23 ` Benjamin LaHaise
2002-07-31 20:26 ` Rik van Riel
2002-07-31 20:59 ` William Lee Irwin III
2002-07-31 21:02 ` Andrew Morton
2002-07-31 21:14 ` Benjamin LaHaise
2002-07-31 21:25 ` Rik van Riel
2002-07-31 21:32 ` Andrew Morton
2002-07-31 21:55 ` Rik van Riel
2002-07-31 22:24 ` Andrew Morton
2002-07-31 22:32 ` Rik van Riel
2002-07-31 21:28 ` Andrew Morton
2002-07-31 21:35 ` Rik van Riel
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=3D479F21.F08C406C@zip.com.au \
--to=akpm@zip.com.au \
--cc=linux-mm@kvack.org \
--cc=riel@conectiva.com.br \
/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