summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorHelge Bahmann <helge.bahmann@secunet.com>2009-02-20 16:24:12 +0300
committerGreg Kroah-Hartman <gregkh@suse.de>2009-03-16 17:32:27 -0700
commitc3f0c63d33f21deffdf78fe7b506bb0ee2b4d249 (patch)
tree4130e303600d539060bf0b592e4222fa4f450fd1 /fs
parent5e32aa7c4c760ee75dbce330c3374e177ceea18f (diff)
proc: fix PG_locked reporting in /proc/kpageflags
commit e07a4b9217d1e97d2f3a62b6b070efdc61212110 upstream. Expr always evaluates to zero. Cc: Matt Mackall <mpm@selenic.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs')
-rw-r--r--fs/proc/page.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/page.c b/fs/proc/page.c
index e9f6cd70f497..e9983837d08d 100644
--- a/fs/proc/page.c
+++ b/fs/proc/page.c
@@ -107,7 +107,7 @@ static ssize_t kpageflags_read(struct file *file, char __user *buf,
else
kflags = ppage->flags;
- uflags = kpf_copy_bit(KPF_LOCKED, PG_locked, kflags) |
+ uflags = kpf_copy_bit(kflags, KPF_LOCKED, PG_locked) |
kpf_copy_bit(kflags, KPF_ERROR, PG_error) |
kpf_copy_bit(kflags, KPF_REFERENCED, PG_referenced) |
kpf_copy_bit(kflags, KPF_UPTODATE, PG_uptodate) |