summaryrefslogtreecommitdiffstats
path: root/include/linux/pagemap.h
diff options
context:
space:
mode:
authorDave Chinner2016-09-26 01:57:33 +0200
committerLinus Torvalds2016-09-26 03:16:44 +0200
commit90b75db6498a19da96dac4b55c909ff3721f3045 (patch)
treefa40265db710d5f6b599eeeeac14f5df7ec37842 /include/linux/pagemap.h
parentmm: check VMA flags to avoid invalid PROT_NONE NUMA balancing (diff)
downloadkernel-qcow2-linux-90b75db6498a19da96dac4b55c909ff3721f3045.tar.gz
kernel-qcow2-linux-90b75db6498a19da96dac4b55c909ff3721f3045.tar.xz
kernel-qcow2-linux-90b75db6498a19da96dac4b55c909ff3721f3045.zip
fault_in_multipages_readable() throws set-but-unused error
When building XFS with -Werror, it now fails with: include/linux/pagemap.h: In function 'fault_in_multipages_readable': include/linux/pagemap.h:602:16: error: variable 'c' set but not used [-Werror=unused-but-set-variable] volatile char c; ^ This is a regression caused by commit e23d4159b109 ("fix fault_in_multipages_...() on architectures with no-op access_ok()"). Fix it by re-adding the "(void)c" trick taht was previously used to make the compiler think the variable is used. Signed-off-by: Dave Chinner <dchinner@redhat.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/pagemap.h')
-rw-r--r--include/linux/pagemap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h
index 7e3d53753612..01e84436cddf 100644
--- a/include/linux/pagemap.h
+++ b/include/linux/pagemap.h
@@ -620,6 +620,7 @@ static inline int fault_in_multipages_readable(const char __user *uaddr,
return __get_user(c, end);
}
+ (void)c;
return 0;
}