Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1189828 > unrolled thread
| Started by | "Kirill A. Shutemov" <kirill@shutemov.name> |
|---|---|
| First post | 2015-07-22 13:30 +0200 |
| Last post | 2015-07-22 17:50 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH V4 5/6] mm: mmap: Add mmap flag to request VM_LOCKONFAULT "Kirill A. Shutemov" <kirill@shutemov.name> - 2015-07-22 13:30 +0200
Re: [PATCH V4 5/6] mm: mmap: Add mmap flag to request VM_LOCKONFAULT Eric B Munson <emunson@akamai.com> - 2015-07-22 16:40 +0200
Re: [PATCH V4 5/6] mm: mmap: Add mmap flag to request VM_LOCKONFAULT "Kirill A. Shutemov" <kirill@shutemov.name> - 2015-07-22 17:50 +0200
| From | "Kirill A. Shutemov" <kirill@shutemov.name> |
|---|---|
| Date | 2015-07-22 13:30 +0200 |
| Subject | Re: [PATCH V4 5/6] mm: mmap: Add mmap flag to request VM_LOCKONFAULT |
| Message-ID | <pP0nL-5o8-1@gated-at.bofh.it> |
On Tue, Jul 21, 2015 at 03:59:40PM -0400, Eric B Munson wrote: > The cost of faulting in all memory to be locked can be very high when > working with large mappings. If only portions of the mapping will be > used this can incur a high penalty for locking. > > Now that we have the new VMA flag for the locked but not present state, > expose it as an mmap option like MAP_LOCKED -> VM_LOCKED. What is advantage over mmap() + mlock(MLOCK_ONFAULT)? -- Kirill A. Shutemov -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Eric B Munson <emunson@akamai.com> |
|---|---|
| Date | 2015-07-22 16:40 +0200 |
| Message-ID | <pP3lD-19S-5@gated-at.bofh.it> |
| In reply to | #1189828 |
[Multipart message — attachments visible in raw view] — view raw
On Wed, 22 Jul 2015, Kirill A. Shutemov wrote: > On Tue, Jul 21, 2015 at 03:59:40PM -0400, Eric B Munson wrote: > > The cost of faulting in all memory to be locked can be very high when > > working with large mappings. If only portions of the mapping will be > > used this can incur a high penalty for locking. > > > > Now that we have the new VMA flag for the locked but not present state, > > expose it as an mmap option like MAP_LOCKED -> VM_LOCKED. > > What is advantage over mmap() + mlock(MLOCK_ONFAULT)? There isn't one, it was added to maintain parity with the mlock(MLOCK_LOCK) -> mmap(MAP_LOCKED) set. I think not having will lead to confusion because we have MAP_LOCKED so why don't we support LOCKONFAULT from mmap as well.
[toc] | [prev] | [next] | [standalone]
| From | "Kirill A. Shutemov" <kirill@shutemov.name> |
|---|---|
| Date | 2015-07-22 17:50 +0200 |
| Message-ID | <pP4ro-2L3-17@gated-at.bofh.it> |
| In reply to | #1190019 |
On Wed, Jul 22, 2015 at 10:32:20AM -0400, Eric B Munson wrote: > On Wed, 22 Jul 2015, Kirill A. Shutemov wrote: > > > On Tue, Jul 21, 2015 at 03:59:40PM -0400, Eric B Munson wrote: > > > The cost of faulting in all memory to be locked can be very high when > > > working with large mappings. If only portions of the mapping will be > > > used this can incur a high penalty for locking. > > > > > > Now that we have the new VMA flag for the locked but not present state, > > > expose it as an mmap option like MAP_LOCKED -> VM_LOCKED. > > > > What is advantage over mmap() + mlock(MLOCK_ONFAULT)? > > There isn't one, it was added to maintain parity with the > mlock(MLOCK_LOCK) -> mmap(MAP_LOCKED) set. I think not having will lead > to confusion because we have MAP_LOCKED so why don't we support > LOCKONFAULT from mmap as well. I don't think it's ia good idea to spend bits in flags unless we have a reason for that. BTW, you have typo on sparc: s/0x8000/0x80000/. -- Kirill A. Shutemov -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web