[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: scalable kmap (was Re: vm lock contention reduction)
Benjamin LaHaise wrote:
>
> On Mon, Jul 08, 2002 at 01:39:04PM -0700, Andrew Morton wrote:
> > I think I'll just go for pinning the damn page. It's a spinlock and
> > maybe three cachelines but the kernel is about to do a 4k memcpy
> > anyway. And get_user_pages() doesn't show up much on O_DIRECT
> > profiles and it'll be a net win and we need to do SOMETHING, dammit.
>
> Pinning the page costs too much (remember, it's only a win with a
> reduced copy of more that 512 bytes).
Could you expand on that?
> The right way of doing it is
> letting copy_*_user fail on a page fault for places like this where
> we need to drop locks before going into the page fault handler.
OK. There are a few things which need to be fixed up in there. One
is to drop and reacquire the atomic kmap. Another is the page
lock (for the write-to-mmaped-page-from-the-same-file thing).
Another is to undo the ->prepare_write call. Or to remember to not
run it again on the retry.
It's really the page lock which is the tricky one. It could be
a new, uninitialised page. It's in pagecache and it is not
fully uptodate. If we drop the page lock and that page is
inside i_size then the kernel has exposed uninitialised data.
Tricky. A sleazy approach would be to not unlock the page at
all. ie: no change. Sure, the kernel can deadlock. But it's
always been that way - the deadlock requires two improbable things,
whereas the schedule-inside-atomic-kmap requires just one.
hmm. Bit stumped on that one.
Btw, is it safe to drop and reacquire an atomic kmap if you
found out that you accidentally slept while holding it?
-
--
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/