mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* copy_page_range() with VM_LOCKED
@ 2008-03-10 16:26 Will Newton
  2008-03-10 17:40 ` Hugh Dickins
  0 siblings, 1 reply; 3+ messages in thread
From: Will Newton @ 2008-03-10 16:26 UTC (permalink / raw)
  To: LKML

Hi all,

In order to optimize fork performance copy_page_range avoids copying
page tables under certain circumstances:

        if (!(vma->vm_flags &
(VM_HUGETLB|VM_NONLINEAR|VM_PFNMAP|VM_INSERTPAGE))) {
                if (!vma->anon_vma)
                        return 0;
        }

I have a VM_LOCKED vma that I would really, really like not to fault
on, but because copy_page_range does not copy the page tables of the
vma I do end up faulting in my VM_LOCKED vma. Now as far as I'm aware
mmap with MAP_LOCKED only promises the page will not be paged out, not
that the page will never fault but I would like to get that behaviour.

Would it be possible to add VM_LOCKED to the above conditional so
copy_page_range would always copy VM_LOCKED vma page tables or would
that be considered insane and broken?

Thanks,

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-03-10 18:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-10 16:26 copy_page_range() with VM_LOCKED Will Newton
2008-03-10 17:40 ` Hugh Dickins
2008-03-10 18:53   ` Will Newton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®