mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 09:01:34 +00:00
x86, x32: Use __kernel_long_t for __statfs_word
x32 statfs system call is the same as x86-64 statfs system call, which uses 64-bit integer for __statfs_word. This patch defines __statfs_word as __kernel_long_t instead of long. Signed-off-by: H.J. Lu <hjl.tools@gmail.com> Link: http://lkml.kernel.org/r/CAMe9rOrcppHvC5g8U9n7D%2BpxVGdu1G598pge3Erfw7Pr-iEpAQ@mail.gmail.com Cc: Arnd Bergmann <arnd@arndb.de> Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
parent
b70fedc158
commit
79dbbc6049
@ -13,7 +13,7 @@
|
|||||||
*/
|
*/
|
||||||
#ifndef __statfs_word
|
#ifndef __statfs_word
|
||||||
#if __BITS_PER_LONG == 64
|
#if __BITS_PER_LONG == 64
|
||||||
#define __statfs_word long
|
#define __statfs_word __kernel_long_t
|
||||||
#else
|
#else
|
||||||
#define __statfs_word __u32
|
#define __statfs_word __u32
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user