projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b3fffe
)
nommu: fix typo vma->pg_off to vma->vm_pgoff
author
Nobuhiro Iwamatsu
<
[email protected]
>
Wed, 8 Apr 2009 04:21:43 +0000
(21:21 -0700)
committer
Linus Torvalds
<
[email protected]
>
Wed, 8 Apr 2009 17:21:44 +0000
(10:21 -0700)
6260a4b0521a41189b2c2a8119096c1e21dbdf2c
("/proc/pid/maps: don't show
pgoff of pure ANON VMAs" had a typo.
fs/proc/task_nommu.c:138: error: 'struct vm_area_struct' has no member named 'pg_off'
distcc[21484] ERROR: compile fs/proc/task_nommu.c on sprygo/32 failed
Signed-off-by: Nobuhiro Iwamatsu <
[email protected]
>
Cc: KAMEZAWA Hiroyuki <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
fs/proc/task_nommu.c
patch
|
blob
|
history
diff --git
a/fs/proc/task_nommu.c
b/fs/proc/task_nommu.c
index 12c20377772d86f33111d7ea2797c9b077dcc979..64a72e2e76509545bf6c0d4d4e0788779baaab26 100644
(file)
--- a/
fs/proc/task_nommu.c
+++ b/
fs/proc/task_nommu.c
@@
-135,7
+135,7
@@
static int nommu_vma_show(struct seq_file *m, struct vm_area_struct *vma)
struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
dev = inode->i_sb->s_dev;
ino = inode->i_ino;
- pgoff = (loff_t)vma->
pg_
off << PAGE_SHIFT;
+ pgoff = (loff_t)vma->
vm_pg
off << PAGE_SHIFT;
}
seq_printf(m,