On Mon, 19 Aug 2013 14:23:42 +0200 Vlastimil Babka <vbabka@xxxxxxx> wrote: > Currently munlock_vma_pages_range() calls follow_page_mask() to obtain each > struct page. This entails repeated full page table translations and page table > lock taken for each page separately. > > This patch attempts to avoid the costly follow_page_mask() where possible, by > iterating over ptes within single pmd under single page table lock. The first > pte is obtained by get_locked_pte() for non-THP page acquired by the initial > follow_page_mask(). The latter function is also used as a fallback in case > simple pte_present() and vm_normal_page() are not sufficient to obtain the > struct page. mm/mlock.c: In function 'munlock_vma_pages_range': mm/mlock.c:388: warning: 'pmd_end' may be used uninitialized in this function As far as I can tell, this is notabug, but I'm not at all confident in that - the protocol for locals `pte' and `pmd_end' is bizarre. The function is fantastically hard to follow and deserves to be dragged outside, shot repeatedly then burned. Could you please, as a matter of some urgency, take a look at rewriting the entire thing so that it is less than completely insane? -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>