aboutsummaryrefslogtreecommitdiffstats
path: root/mm/filemap.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/filemap.c')
-rw-r--r--mm/filemap.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mm/filemap.c b/mm/filemap.c
index 8144f87dcbb4..88354ae0b1fd 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -58,16 +58,16 @@
58/* 58/*
59 * Lock ordering: 59 * Lock ordering:
60 * 60 *
61 * ->i_mmap_lock (truncate_pagecache) 61 * ->i_mmap_mutex (truncate_pagecache)
62 * ->private_lock (__free_pte->__set_page_dirty_buffers) 62 * ->private_lock (__free_pte->__set_page_dirty_buffers)
63 * ->swap_lock (exclusive_swap_page, others) 63 * ->swap_lock (exclusive_swap_page, others)
64 * ->mapping->tree_lock 64 * ->mapping->tree_lock
65 * 65 *
66 * ->i_mutex 66 * ->i_mutex
67 * ->i_mmap_lock (truncate->unmap_mapping_range) 67 * ->i_mmap_mutex (truncate->unmap_mapping_range)
68 * 68 *
69 * ->mmap_sem 69 * ->mmap_sem
70 * ->i_mmap_lock 70 * ->i_mmap_mutex
71 * ->page_table_lock or pte_lock (various, mainly in memory.c) 71 * ->page_table_lock or pte_lock (various, mainly in memory.c)
72 * ->mapping->tree_lock (arch-dependent flush_dcache_mmap_lock) 72 * ->mapping->tree_lock (arch-dependent flush_dcache_mmap_lock)
73 * 73 *
@@ -84,7 +84,7 @@
84 * sb_lock (fs/fs-writeback.c) 84 * sb_lock (fs/fs-writeback.c)
85 * ->mapping->tree_lock (__sync_single_inode) 85 * ->mapping->tree_lock (__sync_single_inode)
86 * 86 *
87 * ->i_mmap_lock 87 * ->i_mmap_mutex
88 * ->anon_vma.lock (vma_adjust) 88 * ->anon_vma.lock (vma_adjust)
89 * 89 *
90 * ->anon_vma.lock 90 * ->anon_vma.lock
@@ -106,7 +106,7 @@
106 * 106 *
107 * (code doesn't rely on that order, so you could switch it around) 107 * (code doesn't rely on that order, so you could switch it around)
108 * ->tasklist_lock (memory_failure, collect_procs_ao) 108 * ->tasklist_lock (memory_failure, collect_procs_ao)
109 * ->i_mmap_lock 109 * ->i_mmap_mutex
110 */ 110 */
111 111
112/* 112/*