]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mm-rename-is_mlocked_vma-to-mlocked_vma_newpage-fix
authorAndrew Morton <akpm@linux-foundation.org>
Thu, 3 May 2012 05:43:50 +0000 (15:43 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 3 May 2012 05:46:30 +0000 (15:46 +1000)
s/mlock_vma_newpage/mlock_vma_newpage/, per Minchan.

Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujtisu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Minchan Kim <minchan@kernel.org>
Cc: Rik van Riel <riel@redhat.com>
Cc: Ying Han <yinghan@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/internal.h
mm/vmscan.c

index 0b45014d6c535998e613b36a89f2b718217c7f27..8b0fc8da802893d1f7be5892345950032b42d51f 100644 (file)
@@ -164,7 +164,7 @@ static inline void munlock_vma_pages_all(struct vm_area_struct *vma)
  * to determine if it's being mapped into a LOCKED vma.
  * If so, mark page as mlocked.
  */
-static inline int mlock_vma_newpage(struct vm_area_struct *vma,
+static inline int mlocked_vma_newpage(struct vm_area_struct *vma,
                                    struct page *page)
 {
        VM_BUG_ON(PageLRU(page));
@@ -223,7 +223,7 @@ extern unsigned long vma_address(struct page *page,
                                 struct vm_area_struct *vma);
 #endif
 #else /* !CONFIG_MMU */
-static inline int mlock_vma_newpage(struct vm_area_struct *v, struct page *p)
+static inline int mlocked_vma_newpage(struct vm_area_struct *v, struct page *p)
 {
        return 0;
 }
index e4e00d991b841e91e025bc69187f2151a52d5ec6..44f04364a304a8f38084531b36b9fce7b22a1b03 100644 (file)
@@ -3321,7 +3321,7 @@ int page_evictable(struct page *page, struct vm_area_struct *vma)
        if (mapping_unevictable(page_mapping(page)))
                return 0;
 
-       if (PageMlocked(page) || (vma && mlock_vma_newpage(vma, page)))
+       if (PageMlocked(page) || (vma && mlocked_vma_newpage(vma, page)))
                return 0;
 
        return 1;