diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-27 16:59:05 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-27 16:59:05 -0500 |
commit | 6131ffaa1f091415b7a24abb01f033d9c0a727f4 (patch) | |
tree | 8983574e9458a5328a30900cb3466e3648421355 /kernel | |
parent | 45e09bd51b2be1fbb86c2e3d5bb00d32744f1ecb (diff) |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/futex.c b/kernel/futex.c index fbc07a29ec53..f0090a993dab 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 | * |