[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4CAB3C76.7040005@redhat.com>
Date: Tue, 05 Oct 2010 10:55:50 -0400
From: Rik van Riel <riel@...hat.com>
To: Michel Lespinasse <walken@...gle.com>
CC: linux-mm@...ck.org, Linus Torvalds <torvalds@...ux-foundation.org>,
Ying Han <yinghan@...gle.com>, linux-kernel@...r.kernel.org,
Andrew Morton <akpm@...ux-foundation.org>,
Nick Piggin <npiggin@...nel.dk>,
Peter Zijlstra <peterz@...radead.org>
Subject: Re: [PATCH 0/3] V2: Reduce mmap_sem hold times during file backed
page faults
On 10/05/2010 03:53 AM, Michel Lespinasse wrote:
> This is the second iteration of our change dropping mmap_sem when a disk
> access occurs during a page fault to a file backed VMA.
>
> Changes since V1:
> - Cleaned up 'Retry page fault when blocking on disk transfer' applying
> linus's suggestions
> - Added 'access_error API cleanup'
>
> Tests:
>
> - microbenchmark: thread A mmaps a large file and does random read accesses
> to the mmaped area - achieves about 55 iterations/s. Thread B does
> mmap/munmap in a loop at a separate location - achieves 55 iterations/s
> before, 15000 iterations/s after.
> - We are seeing related effects in some applications in house, which show
> significant performance regressions when running without this change.
> - I am looking for a microbenchmark to expose the worst case overhead of
> the page fault retry. Would FIO be a good match for that use ?
I imagine MySQL could show the problem, on a system with
so much memory pressure that part of MySQL itself gets
swapped out (a slightly too large innodb buffer?).
Without your patches, a new database thread can only be
created in-between page faults. With your patches, a
new thread can be started even while other threads are
waiting on page faults.
More importantly, multiple threads can start pagein
IO simultaneously after memory pressure has let up.
This should allow the system to go back to normal
performance much faster after a load spike has passed.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists