aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorAl Viro2013-02-27 15:59:05 -0600
committerAl Viro2013-02-27 15:59:05 -0600
commit6131ffaa1f091415b7a24abb01f033d9c0a727f4 (patch)
tree8983574e9458a5328a30900cb3466e3648421355 /kernel
parent45e09bd51b2be1fbb86c2e3d5bb00d32744f1ecb (diff)
downloadam43-linux-kernel-6131ffaa1f091415b7a24abb01f033d9c0a727f4.tar.gz
am43-linux-kernel-6131ffaa1f091415b7a24abb01f033d9c0a727f4.tar.xz
am43-linux-kernel-6131ffaa1f091415b7a24abb01f033d9c0a727f4.zip
more file_inode() open-coded instances
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/futex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/futex.c b/kernel/futex.c
index fbc07a29ec5..f0090a993da 100644
--- a/kernel/futex.c
+++ b/kernel/futex.c
@@ -226,7 +226,7 @@ static void drop_futex_key_refs(union futex_key *key)
226 * Returns a negative error code or 0 226 * Returns a negative error code or 0
227 * The key words are stored in *key on success. 227 * The key words are stored in *key on success.
228 * 228 *
229 * For shared mappings, it's (page->index, vma->vm_file->f_path.dentry->d_inode, 229 * For shared mappings, it's (page->index, file_inode(vma->vm_file),
230 * offset_within_page). For private mappings, it's (uaddr, current->mm). 230 * offset_within_page). For private mappings, it's (uaddr, current->mm).
231 * We can usually work out the index without swapping in the page. 231 * We can usually work out the index without swapping in the page.
232 * 232 *