diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2013-12-27 14:14:23 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2014-01-20 14:45:25 -0800 |
commit | f8dcdf0130d3ba34f8f7531af7c45616efe1e32e (patch) | |
tree | d4c8ea7597c8585e66a6579136d850256f41c2ea /include/uapi/linux/shm.h | |
parent | 386916598e901e406c1f1fc801ade2646a1e8137 (diff) | |
download | op-kernel-dev-f8dcdf0130d3ba34f8f7531af7c45616efe1e32e.zip op-kernel-dev-f8dcdf0130d3ba34f8f7531af7c45616efe1e32e.tar.gz |
uapi: Use __kernel_ulong_t in shmid64_ds/shminfo64/shm_info
Both x32 and x86-64 use the same struct shmid64_ds/shminfo64/shm_info for
system calls. But x32 long is 32-bit. This patch replaces unsigned long
with __kernel_ulong_t in struct shmid64_ds/shminfo64/shm_info.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Link: http://lkml.kernel.org/r/1388182464-28428-8-git-send-email-hjl.tools@gmail.com
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'include/uapi/linux/shm.h')
-rw-r--r-- | include/uapi/linux/shm.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/uapi/linux/shm.h b/include/uapi/linux/shm.h index ec36fa1..78b6941 100644 --- a/include/uapi/linux/shm.h +++ b/include/uapi/linux/shm.h @@ -68,11 +68,11 @@ struct shminfo { struct shm_info { int used_ids; - unsigned long shm_tot; /* total allocated shm */ - unsigned long shm_rss; /* total resident shm */ - unsigned long shm_swp; /* total swapped shm */ - unsigned long swap_attempts; - unsigned long swap_successes; + __kernel_ulong_t shm_tot; /* total allocated shm */ + __kernel_ulong_t shm_rss; /* total resident shm */ + __kernel_ulong_t shm_swp; /* total swapped shm */ + __kernel_ulong_t swap_attempts; + __kernel_ulong_t swap_successes; }; |