summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndi Kleen2010-08-10 02:19:02 +0200
committerLinus Torvalds2010-08-10 05:44:58 +0200
commit627295e492638936e76f3d8fcb1e0a3367b88341 (patch)
tree94ef884e0e248fef8de4b5605a67812191cd3762
parentavr32: invoke oom-killer from page fault (diff)
downloadkernel-qcow2-linux-627295e492638936e76f3d8fcb1e0a3367b88341.tar.gz
kernel-qcow2-linux-627295e492638936e76f3d8fcb1e0a3367b88341.tar.xz
kernel-qcow2-linux-627295e492638936e76f3d8fcb1e0a3367b88341.zip
gcc-4.6: pagemap: avoid unused-but-set variable
Avoid quite a lot of warnings in header files in a gcc 4.6 -Wall builds Signed-off-by: Andi Kleen <ak@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--include/linux/pagemap.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h
index 3c62ed408492..78a702ce4fcb 100644
--- a/include/linux/pagemap.h
+++ b/include/linux/pagemap.h
@@ -423,8 +423,10 @@ static inline int fault_in_pages_readable(const char __user *uaddr, int size)
const char __user *end = uaddr + size - 1;
if (((unsigned long)uaddr & PAGE_MASK) !=
- ((unsigned long)end & PAGE_MASK))
+ ((unsigned long)end & PAGE_MASK)) {
ret = __get_user(c, end);
+ (void)c;
+ }
}
return ret;
}