[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: scalable kmap (was Re: vm lock contention reduction)
On Mon, Jul 08, 2002 at 02:45:35PM -0700, Andrew Morton wrote:
> > 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?
I'm going from data that I gather while fiddling with aio and the pipe
code. As a thought experiment, look at it this way: pinning the page
involves a minimum 4-5 data dependent cache line accesses (mm struct,
2-3 page table levels, then a locked cycle on the page struct itself)
compared to the use of tlb entries that are likely to be present (free,
plus recent cpus have hardware to prefect them completely asynchronous
to instruction execution).
> > 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.
Hmmm, do we really need to insert a new, uninitialised page into
the page cache before filling it with data? If we could defer that
until the data is copied into the page (most of the time there would
be no collisions during writes, so a spurious copy is unlikely)
Side note: I did an alternative fix for this which just stuffed a
copy of the struct page * into the task struct, and checked for this
inside filemap.c. Very gross, but it worked.
> 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.
It's not unlikely if you've got a malicious user behind the shell.
> Btw, is it safe to drop and reacquire an atomic kmap if you
> found out that you accidentally slept while holding it?
Yes and no: it works, but if debugging is enabled it bugs out.
-ben
--
"You will be reincarnated as a toad; and you will be much happier."
--
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/