diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2012-04-26 14:45:16 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2012-04-30 15:55:15 -0400 |
commit | f5c2347ee20a8d6964d6a6b1ad04f200f8d4dfa7 (patch) | |
tree | 88fc7d201dfa1e14b1689cccee512c3852a8c346 /include/asm-generic/statfs.h | |
parent | f7f286a910221ae18b21c18d9d0f4cd88965829f (diff) |
asm-generic: Use __BITS_PER_LONG in statfs.h
<asm-generic/statfs.h> is exported to userspace, so using
BITS_PER_LONG is invalid. We need to use __BITS_PER_LONG instead.
This is kernel bugzilla 43165.
Reported-by: H.J. Lu <hjl.tools@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Link: http://lkml.kernel.org/r/1335465916-16965-1-git-send-email-hpa@linux.intel.com
Acked-by: Arnd Bergmann <arnd@arndb.de>
Cc: <stable@vger.kernel.org>
Diffstat (limited to 'include/asm-generic/statfs.h')
-rw-r--r-- | include/asm-generic/statfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-generic/statfs.h b/include/asm-generic/statfs.h index 0fd28e028de1..c749af9c0983 100644 --- a/include/asm-generic/statfs.h +++ b/include/asm-generic/statfs.h | |||
@@ -15,7 +15,7 @@ typedef __kernel_fsid_t fsid_t; | |||
15 | * with a 10' pole. | 15 | * with a 10' pole. |
16 | */ | 16 | */ |
17 | #ifndef __statfs_word | 17 | #ifndef __statfs_word |
18 | #if BITS_PER_LONG == 64 | 18 | #if __BITS_PER_LONG == 64 |
19 | #define __statfs_word long | 19 | #define __statfs_word long |
20 | #else | 20 | #else |
21 | #define __statfs_word __u32 | 21 | #define __statfs_word __u32 |