]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/types.h
types.h: define __aligned_u64 and expose to userspace
[net-next-2.6.git] / include / linux / types.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_TYPES_H
2#define _LINUX_TYPES_H
3
9d50638b
JSR
4#include <asm/types.h>
5
527bdfee 6#ifndef __ASSEMBLY__
1da177e4 7#ifdef __KERNEL__
1da177e4 8
1da177e4
LT
9#define DECLARE_BITMAP(name,bits) \
10 unsigned long name[BITS_TO_LONGS(bits)]
69c8f52b
JM
11#else
12#ifndef __EXPORTED_HEADERS__
13#warning "Attempt to use kernel headers from user space, see http://kernelnewbies.org/KernelHeaders"
14#endif /* __EXPORTED_HEADERS__ */
1da177e4
LT
15#endif
16
17#include <linux/posix_types.h>
1da177e4 18
3a471cbc 19#ifdef __KERNEL__
1da177e4
LT
20
21typedef __u32 __kernel_dev_t;
22
23typedef __kernel_fd_set fd_set;
24typedef __kernel_dev_t dev_t;
25typedef __kernel_ino_t ino_t;
26typedef __kernel_mode_t mode_t;
27typedef __kernel_nlink_t nlink_t;
28typedef __kernel_off_t off_t;
29typedef __kernel_pid_t pid_t;
30typedef __kernel_daddr_t daddr_t;
31typedef __kernel_key_t key_t;
32typedef __kernel_suseconds_t suseconds_t;
33typedef __kernel_timer_t timer_t;
34typedef __kernel_clockid_t clockid_t;
35typedef __kernel_mqd_t mqd_t;
36
6e218287
RK
37typedef _Bool bool;
38
1da177e4
LT
39typedef __kernel_uid32_t uid_t;
40typedef __kernel_gid32_t gid_t;
41typedef __kernel_uid16_t uid16_t;
42typedef __kernel_gid16_t gid16_t;
43
142956af
AV
44typedef unsigned long uintptr_t;
45
1da177e4
LT
46#ifdef CONFIG_UID16
47/* This is defined by include/asm-{arch}/posix_types.h */
48typedef __kernel_old_uid_t old_uid_t;
49typedef __kernel_old_gid_t old_gid_t;
50#endif /* CONFIG_UID16 */
51
7437a51b 52#if defined(__GNUC__)
1da177e4
LT
53typedef __kernel_loff_t loff_t;
54#endif
55
56/*
57 * The following typedefs are also protected by individual ifdefs for
58 * historical reasons:
59 */
60#ifndef _SIZE_T
61#define _SIZE_T
62typedef __kernel_size_t size_t;
63#endif
64
65#ifndef _SSIZE_T
66#define _SSIZE_T
67typedef __kernel_ssize_t ssize_t;
68#endif
69
70#ifndef _PTRDIFF_T
71#define _PTRDIFF_T
72typedef __kernel_ptrdiff_t ptrdiff_t;
73#endif
74
75#ifndef _TIME_T
76#define _TIME_T
77typedef __kernel_time_t time_t;
78#endif
79
80#ifndef _CLOCK_T
81#define _CLOCK_T
82typedef __kernel_clock_t clock_t;
83#endif
84
85#ifndef _CADDR_T
86#define _CADDR_T
87typedef __kernel_caddr_t caddr_t;
88#endif
89
90/* bsd */
91typedef unsigned char u_char;
92typedef unsigned short u_short;
93typedef unsigned int u_int;
94typedef unsigned long u_long;
95
96/* sysv */
97typedef unsigned char unchar;
98typedef unsigned short ushort;
99typedef unsigned int uint;
100typedef unsigned long ulong;
101
102#ifndef __BIT_TYPES_DEFINED__
103#define __BIT_TYPES_DEFINED__
104
105typedef __u8 u_int8_t;
106typedef __s8 int8_t;
107typedef __u16 u_int16_t;
108typedef __s16 int16_t;
109typedef __u32 u_int32_t;
110typedef __s32 int32_t;
111
112#endif /* !(__BIT_TYPES_DEFINED__) */
113
114typedef __u8 uint8_t;
115typedef __u16 uint16_t;
116typedef __u32 uint32_t;
117
7437a51b 118#if defined(__GNUC__)
1da177e4
LT
119typedef __u64 uint64_t;
120typedef __u64 u_int64_t;
121typedef __s64 int64_t;
122#endif
123
79b5dc0c
EP
124/*
125 * aligned_u64 should be used in defining kernel<->userspace ABIs to avoid
126 * common 32/64-bit compat problems.
127 * 64-bit values align to 4-byte boundaries on x86_32 (and possibly other
128 * architectures) and to 8-byte boundaries on 64-bit architetures. The new
129 * aligned_64 type enforces 8-byte alignment so that structs containing
130 * aligned_64 values have the same alignment on 32-bit and 64-bit architectures.
131 * No conversions are necessary between 32-bit user-space and a 64-bit kernel.
132 */
c82a5cb8 133#define aligned_u64 __u64 __attribute__((aligned(8)))
98a4a861
AV
134#define aligned_be64 __be64 __attribute__((aligned(8)))
135#define aligned_le64 __le64 __attribute__((aligned(8)))
0ba2c6e8 136
2c2345c2 137/**
1da177e4 138 * The type used for indexing onto a disc or disc partition.
2c2345c2
RG
139 *
140 * Linux always considers sectors to be 512 bytes long independently
141 * of the devices real block size.
b3a6ffe1
JA
142 *
143 * blkcnt_t is the type of the inode's block count.
1da177e4 144 */
90c699a9 145#ifdef CONFIG_LBDAF
e6243863 146typedef u64 sector_t;
e6243863
MW
147typedef u64 blkcnt_t;
148#else
b3a6ffe1 149typedef unsigned long sector_t;
a0f62ac6
TS
150typedef unsigned long blkcnt_t;
151#endif
152
1da177e4
LT
153/*
154 * The type of an index into the pagecache. Use a #define so asm/types.h
155 * can override it.
156 */
157#ifndef pgoff_t
158#define pgoff_t unsigned long
159#endif
160
3a471cbc 161#endif /* __KERNEL__ */
1da177e4
LT
162
163/*
164 * Below are truly Linux-specific types that should never collide with
165 * any application/library that wants linux/types.h.
166 */
167
168#ifdef __CHECKER__
af4ca457
AV
169#define __bitwise__ __attribute__((bitwise))
170#else
171#define __bitwise__
172#endif
173#ifdef __CHECK_ENDIAN__
174#define __bitwise __bitwise__
1da177e4
LT
175#else
176#define __bitwise
177#endif
178
179typedef __u16 __bitwise __le16;
180typedef __u16 __bitwise __be16;
181typedef __u32 __bitwise __le32;
182typedef __u32 __bitwise __be32;
1da177e4
LT
183typedef __u64 __bitwise __le64;
184typedef __u64 __bitwise __be64;
940fbf41 185
2bc35798
AV
186typedef __u16 __bitwise __sum16;
187typedef __u32 __bitwise __wsum;
1da177e4 188
79b5dc0c
EP
189/* this is a special 64bit data type that is 8-byte aligned */
190#define __aligned_u64 __u64 __attribute__((aligned(8)))
191#define __aligned_be64 __be64 __attribute__((aligned(8)))
192#define __aligned_le64 __le64 __attribute__((aligned(8)))
193
dd0fc66f 194#ifdef __KERNEL__
af4ca457 195typedef unsigned __bitwise__ gfp_t;
aeb5d727 196typedef unsigned __bitwise__ fmode_t;
cf7c712c 197
600715dc
JF
198#ifdef CONFIG_PHYS_ADDR_T_64BIT
199typedef u64 phys_addr_t;
200#else
201typedef u32 phys_addr_t;
202#endif
203
8308c54d
JF
204typedef phys_addr_t resource_size_t;
205
ea435467 206typedef struct {
81880d60 207 int counter;
ea435467
MW
208} atomic_t;
209
210#ifdef CONFIG_64BIT
211typedef struct {
81880d60 212 long counter;
ea435467
MW
213} atomic64_t;
214#endif
215
de5d9bf6
CM
216struct list_head {
217 struct list_head *next, *prev;
218};
219
220struct hlist_head {
221 struct hlist_node *first;
222};
223
224struct hlist_node {
225 struct hlist_node *next, **pprev;
226};
227
1da177e4
LT
228struct ustat {
229 __kernel_daddr_t f_tfree;
230 __kernel_ino_t f_tinode;
231 char f_fname[6];
232 char f_fpack[6];
233};
234
6c7c6afb 235#endif /* __KERNEL__ */
527bdfee 236#endif /* __ASSEMBLY__ */
1da177e4 237#endif /* _LINUX_TYPES_H */