diff options
Diffstat (limited to 'arch/parisc/include/uapi/asm/shmbuf.h')
| -rw-r--r-- | arch/parisc/include/uapi/asm/shmbuf.h | 19 | 
1 files changed, 8 insertions, 11 deletions
| diff --git a/arch/parisc/include/uapi/asm/shmbuf.h b/arch/parisc/include/uapi/asm/shmbuf.h index cd4dbce55d0b..c89b3dd8db21 100644 --- a/arch/parisc/include/uapi/asm/shmbuf.h +++ b/arch/parisc/include/uapi/asm/shmbuf.h @@ -10,25 +10,22 @@   * between kernel and user space.   *   * Pad space is left for: - * - 64-bit time_t to solve y2038 problem   * - 2 miscellaneous 32-bit values   */  struct shmid64_ds {  	struct ipc64_perm	shm_perm;	/* operation perms */ -#if __BITS_PER_LONG != 64 -	unsigned int		__pad1; -#endif +#if __BITS_PER_LONG == 64  	__kernel_time_t		shm_atime;	/* last attach time */ -#if __BITS_PER_LONG != 64 -	unsigned int		__pad2; -#endif  	__kernel_time_t		shm_dtime;	/* last detach time */ -#if __BITS_PER_LONG != 64 -	unsigned int		__pad3; -#endif  	__kernel_time_t		shm_ctime;	/* last change time */ -#if __BITS_PER_LONG != 64 +#else +	unsigned long		shm_atime_high; +	unsigned long		shm_atime;	/* last attach time */ +	unsigned long		shm_dtime_high; +	unsigned long		shm_dtime;	/* last detach time */ +	unsigned long		shm_ctime_high; +	unsigned long		shm_ctime;	/* last change time */  	unsigned int		__pad4;  #endif  	__kernel_size_t		shm_segsz;	/* size of segment (bytes) */ |