From: Mark_H_Johnson@raytheon.com To: frankeh@watson.ibm.com Cc: Andrew Morton <akpm@digeo.com>, linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH] recognize MAP_LOCKED in mmap() call Date: Wed, 25 Sep 2002 11:57:35 -0500 [thread overview] Message-ID: <OFA909F528.299706E8-ON86256C3F.005D287A-86256C3F.005D29EC@hou.us.ray.com> (raw) >This is what the manpage says... > > mlockall disables paging for all pages mapped into the > address space of the calling process. This includes the > pages of the code, data and stack segment, as well as > shared libraries, user space kernel data, shared memory > and memory mapped files. All mapped pages are guaranteed > to be resident in RAM when the mlockall system call > returns successfully and they are guaranteed to stay in > RAM until the pages are unlocked again by munlock or > munlockall or until the process terminates or starts > another program with exec. Child processes do not inherit > page locks across a fork. > >Do you read that all pages must be faulted in apriori ? >Or is it sufficient to to make sure none of the currently mapped >pages are swapped out and future swapout is prohibited. > The key phrase is that "...all mapped pages are guaranteed to be resident in RAM when the mlockall system call returns successfully..." (third sentence) In that way I would expect the segments containing the code, heap, and current stack allocations to be resident. I do not expect the full stack allocation (e.g., 2M for each thread if that is the stack size) to be mapped (nor resident) unless I take special action to grow the stack that large. We happen to have special code to grow each stack and allocate heap variables to account for what we expect to use prior to mlockall. That does raise a question though - are there other segments (e.g., debug information) that may be in the total size calculations that are mapped only when some special action is taken (e.g., I run the debugger)? That would explain the difference - the measures I reported on were with executables built with debug symbols. That might also explain a possible problem we have had when trying to debug such an application after an hour of run time or so. If running gdb triggers a growth in locked memory (and we don't have enough) - we would likely get an error condition that isn't normally expected by gdb. >This still allows for page faults on pages that have not been >mapped in the specified range or process. If required the >app could touch these and they wouldn't be swapped later. > I don't think touching the pages is enough - they have to be allocated and the maps generated (e.g., calls to mmap, malloc). That is a possibly expensive operation when real time is active and something we try to avoid whenever possible. -- --Mark H Johnson <mailto:Mark_H_Johnson@raytheon.com>
next reply other threads:[~2002-09-25 17:05 UTC|newest] Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top 2002-09-25 16:57 Mark_H_Johnson [this message] -- strict thread matches above, loose matches on Subject: below -- 2002-09-18 19:18 Mark_H_Johnson 2002-09-18 19:39 ` Rik van Riel 2002-09-18 19:54 ` Andrew Morton 2002-09-25 15:42 ` Hubertus Franke 2002-09-25 16:35 ` Andrew Morton 2002-09-25 15:36 ` Hubertus Franke 2002-09-13 3:33 [PATCH] per-zone kswapd process Dave Hansen 2002-09-13 13:05 ` Alan Cox 2002-09-13 21:30 ` William Lee Irwin III 2002-09-18 16:07 ` [PATCH] recognize MAP_LOCKED in mmap() call Hubertus Franke 2002-09-18 16:29 ` Andrew Morton
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=OFA909F528.299706E8-ON86256C3F.005D287A-86256C3F.005D29EC@hou.us.ray.com \ --to=mark_h_johnson@raytheon.com \ --cc=akpm@digeo.com \ --cc=frankeh@watson.ibm.com \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-mm@kvack.org \ --subject='Re: [PATCH] recognize MAP_LOCKED in mmap() call' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).