All of lore.kernel.org
 help / color / mirror / Atom feed
* rmap.c: try_to_unmap_file(): VM_LOCKED not respected
@ 2005-06-14  5:14 li nux
  2005-06-14  5:22 ` William Lee Irwin III
  2005-06-14 13:51 ` Hugh Dickins
  0 siblings, 2 replies; 6+ messages in thread
From: li nux @ 2005-06-14  5:14 UTC (permalink / raw)
  To: linux

My application is using remap_file_pages and mlocks
those pages.
So in the code of  try_to_unmap_file (see below),
I should never reach the call to try_to_unmap_cluster,
because for those pages VM_LOCKED is always set.
But, under heavy load I am seeing try_to_unmap_cluster
is getting called. Stack:
try_to_unmap_cluster
try_to_unmap_file
try_to_unmap
shrink_list
__pagevec_release
shrink_cache
shrink_zone
balance_pgdat
prepare_to_wait
kswapd


Any idea why VM_LOCKED is not being respected ?

   do {
 list_for_each_entry(vma, &mapping->i_mmap_nonlinear,
                                                
shared.vm_set.list) {
     if (vma->vm_flags & (VM_LOCKED|VM_RESERVED))
              continue;
    cursor = (unsigned long) vma->vm_private_data;
while (vma->vm_mm->rss &&
cursor < max_nl_cursor &&                             
   cursor < vma->vm_end - vma->vm_start) {
                                
try_to_unmap_cluster(cursor, &mapcount, vma);
        cursor += CLUSTER_SIZE;
}
.....<snip>
   } while (max_nl_cursor <= max_nl_size);

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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

end of thread, other threads:[~2005-06-14 13:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-14  5:14 rmap.c: try_to_unmap_file(): VM_LOCKED not respected li nux
2005-06-14  5:22 ` William Lee Irwin III
2005-06-14  5:48   ` li nux
2005-06-14  6:31     ` William Lee Irwin III
2005-06-14  7:25       ` li nux
2005-06-14 13:51 ` Hugh Dickins

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.