From: Wu Fengguang <fengguang.wu@intel.com>
To: Andi Kleen <andi@firstfloor.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Matt Mackall <mpm@selenic.com>,
LKML <linux-kernel@vger.kernel.org>,
"Rafael J. Wysocki" <rjw@sisk.pl>
Subject: [PATCH] pagemap: early return on unmapped areas
Date: Thu, 14 Jan 2010 16:52:30 +0800 [thread overview]
Message-ID: <20100114085230.GA12078@localhost> (raw)
In-Reply-To: <20100114083048.GC12241@basil.fritz.box>
On Thu, Jan 14, 2010 at 04:30:48PM +0800, Andi Kleen wrote:
> > ---
> > pagemap: early return on unmapped areas
>
> Yes seems like a reasonable idea.
Thanks!
I just changed the ">" to ">=", because it happen to make a difference
for cp/cat, which does 4k sized read:
4k read buffer = 4k/8 pages = 512 pages = NR_PMD_PAGES
So the change to ">=" makes cp exit immediately (4k buffer matches
exactly one PMD hole).
before
dd if=/proc/$$/pagemap of=/dev/null bs=4k
512+0 records in
512+0 records out
2097152 bytes (2.1 MB) copied, 0.0225796 s, 92.9 MB/s
after
dd if=/proc/$$/pagemap of=/dev/null bs=4k
0+0 records in
0+0 records out
0 bytes (0 B) copied, 2.8029e-05 s, 0.0 kB/s
page-types still works (only faster;) with this patch.
Thanks,
Fengguang
---
pagemap: early return on unmapped areas
This helps stop dumb cp/cat early instead of loop for days:
http://bugzilla.kernel.org/show_bug.cgi?id=15041
This also serves as an optimization to normal pagemap users (eg.
page-types).
CC: Andi Kleen <andi@firstfloor.org>
CC: Matt Mackall <mpm@selenic.com>
CC: <stable@kernel.org>
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
---
fs/proc/task_mmu.c | 4 ++++
1 file changed, 4 insertions(+)
--- linux-mm.orig/fs/proc/task_mmu.c 2010-01-14 13:38:44.000000000 +0800
+++ linux-mm/fs/proc/task_mmu.c 2010-01-14 16:38:49.000000000 +0800
@@ -586,6 +586,10 @@ static int pagemap_pte_hole(unsigned lon
struct pagemapread *pm = walk->private;
unsigned long addr;
int err = 0;
+
+ if ((end - start) / PAGE_SIZE >= pm->end - pm->out)
+ return PM_END_OF_BUFFER;
+
for (addr = start; addr < end; addr += PAGE_SIZE) {
err = add_to_pagemap(addr, PM_NOT_PRESENT, pm);
if (err)
next prev parent reply other threads:[~2010-01-14 8:53 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-10 2:09 2.6.33 pagemap endless read loop Andi Kleen
2010-01-10 6:33 ` Américo Wang
2010-01-10 12:37 ` Andi Kleen
2010-01-12 5:59 ` Mike Galbraith
2010-01-12 15:32 ` Américo Wang
2010-01-12 16:28 ` Andi Kleen
2010-01-13 2:08 ` Américo Wang
[not found] ` <20100113141648.42eff724.akpm@linux-foundation.org>
[not found] ` <1263421562.29868.5000.camel@calx>
[not found] ` <20100113143055.7bea30c5.akpm@linux-foundation.org>
[not found] ` <1263423916.29868.5009.camel@calx>
[not found] ` <20100113151502.fa425247.akpm@linux-foundation.org>
[not found] ` <20100114055319.GA17671@localhost>
[not found] ` <20100113221013.b1beecb4.akpm@linux-foundation.org>
2010-01-14 8:06 ` Wu Fengguang
2010-01-14 8:30 ` Andi Kleen
2010-01-14 8:52 ` Wu Fengguang [this message]
2010-01-14 17:02 ` [PATCH] pagemap: early return on unmapped areas Matt Mackall
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=20100114085230.GA12078@localhost \
--to=fengguang.wu@intel.com \
--cc=akpm@linux-foundation.org \
--cc=andi@firstfloor.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mpm@selenic.com \
--cc=rjw@sisk.pl \
/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.