diff options
author | Hugh Dickins <hugh@veritas.com> | 2009-01-06 17:39:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-06 18:59:02 -0500 |
commit | 2afd1c928f1132b8d0099866e75ce8ad713a1180 (patch) | |
tree | e31d1cfd0b11df74e0241fe43e4be2c72a8946ff /mm/rmap.c | |
parent | b5934c531849ff4a51ce0f290141efe564290e40 (diff) |
mm: make page_lock_anon_vma() static
page_lock_anon_vma() and page_unlock_anon_vma() were made available to
show_page_path() in vmscan.c; but now that has been removed, make them
static in rmap.c again, they're better kept private if possible.
Signed-off-by: Hugh Dickins <hugh@veritas.com>
Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/rmap.c')
-rw-r--r-- | mm/rmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -193,7 +193,7 @@ void __init anon_vma_init(void) | |||
193 | * Getting a lock on a stable anon_vma from a page off the LRU is | 193 | * Getting a lock on a stable anon_vma from a page off the LRU is |
194 | * tricky: page_lock_anon_vma rely on RCU to guard against the races. | 194 | * tricky: page_lock_anon_vma rely on RCU to guard against the races. |
195 | */ | 195 | */ |
196 | struct anon_vma *page_lock_anon_vma(struct page *page) | 196 | static struct anon_vma *page_lock_anon_vma(struct page *page) |
197 | { | 197 | { |
198 | struct anon_vma *anon_vma; | 198 | struct anon_vma *anon_vma; |
199 | unsigned long anon_mapping; | 199 | unsigned long anon_mapping; |
@@ -213,7 +213,7 @@ out: | |||
213 | return NULL; | 213 | return NULL; |
214 | } | 214 | } |
215 | 215 | ||
216 | void page_unlock_anon_vma(struct anon_vma *anon_vma) | 216 | static void page_unlock_anon_vma(struct anon_vma *anon_vma) |
217 | { | 217 | { |
218 | spin_unlock(&anon_vma->lock); | 218 | spin_unlock(&anon_vma->lock); |
219 | rcu_read_unlock(); | 219 | rcu_read_unlock(); |