blob: bf0dd7524b2a81cb660723c08ce76857991df54e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_TYPES_H
2#define _LINUX_TYPES_H
3
Jaswinder Singh Rajput9d506382009-02-08 11:00:25 +05304#include <asm/types.h>
5
Jaswinder Singh Rajput527bdfe2009-02-06 20:47:58 +05306#ifndef __ASSEMBLY__
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#define DECLARE_BITMAP(name,bits) \
10 unsigned long name[BITS_TO_LONGS(bits)]
Justin P. Mattock69c8f522010-07-01 14:28:27 -070011#else
12#ifndef __EXPORTED_HEADERS__
13#warning "Attempt to use kernel headers from user space, see http://kernelnewbies.org/KernelHeaders"
14#endif /* __EXPORTED_HEADERS__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#endif
16
17#include <linux/posix_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Arnd Bergmann3a471cb2009-02-26 00:51:45 +010019#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
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;
Al Viro0583fcc2011-07-26 17:04:15 -040027typedef unsigned short umode_t;
Al Virobb8ac182012-05-19 10:25:23 -040028typedef __u32 nlink_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029typedef __kernel_off_t off_t;
30typedef __kernel_pid_t pid_t;
31typedef __kernel_daddr_t daddr_t;
32typedef __kernel_key_t key_t;
33typedef __kernel_suseconds_t suseconds_t;
34typedef __kernel_timer_t timer_t;
35typedef __kernel_clockid_t clockid_t;
36typedef __kernel_mqd_t mqd_t;
37
Richard Knutsson6e218282006-09-30 23:27:11 -070038typedef _Bool bool;
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040typedef __kernel_uid32_t uid_t;
41typedef __kernel_gid32_t gid_t;
42typedef __kernel_uid16_t uid16_t;
43typedef __kernel_gid16_t gid16_t;
44
Al Viro142956a2007-10-29 05:11:28 +000045typedef unsigned long uintptr_t;
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#ifdef CONFIG_UID16
48/* This is defined by include/asm-{arch}/posix_types.h */
49typedef __kernel_old_uid_t old_uid_t;
50typedef __kernel_old_gid_t old_gid_t;
51#endif /* CONFIG_UID16 */
52
Mike Frysinger7437a512008-02-08 04:21:24 -080053#if defined(__GNUC__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054typedef __kernel_loff_t loff_t;
55#endif
56
57/*
58 * The following typedefs are also protected by individual ifdefs for
59 * historical reasons:
60 */
61#ifndef _SIZE_T
62#define _SIZE_T
63typedef __kernel_size_t size_t;
64#endif
65
66#ifndef _SSIZE_T
67#define _SSIZE_T
68typedef __kernel_ssize_t ssize_t;
69#endif
70
71#ifndef _PTRDIFF_T
72#define _PTRDIFF_T
73typedef __kernel_ptrdiff_t ptrdiff_t;
74#endif
75
76#ifndef _TIME_T
77#define _TIME_T
78typedef __kernel_time_t time_t;
79#endif
80
81#ifndef _CLOCK_T
82#define _CLOCK_T
83typedef __kernel_clock_t clock_t;
84#endif
85
86#ifndef _CADDR_T
87#define _CADDR_T
88typedef __kernel_caddr_t caddr_t;
89#endif
90
91/* bsd */
92typedef unsigned char u_char;
93typedef unsigned short u_short;
94typedef unsigned int u_int;
95typedef unsigned long u_long;
96
97/* sysv */
98typedef unsigned char unchar;
99typedef unsigned short ushort;
100typedef unsigned int uint;
101typedef unsigned long ulong;
102
103#ifndef __BIT_TYPES_DEFINED__
104#define __BIT_TYPES_DEFINED__
105
106typedef __u8 u_int8_t;
107typedef __s8 int8_t;
108typedef __u16 u_int16_t;
109typedef __s16 int16_t;
110typedef __u32 u_int32_t;
111typedef __s32 int32_t;
112
113#endif /* !(__BIT_TYPES_DEFINED__) */
114
115typedef __u8 uint8_t;
116typedef __u16 uint16_t;
117typedef __u32 uint32_t;
118
Mike Frysinger7437a512008-02-08 04:21:24 -0800119#if defined(__GNUC__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120typedef __u64 uint64_t;
121typedef __u64 u_int64_t;
122typedef __s64 int64_t;
123#endif
124
Andrew Mortona75d3772010-10-26 14:21:10 -0700125/* this is a special 64bit data type that is 8-byte aligned */
Jan Engelhardtc82a5cb2008-01-31 03:57:36 -0800126#define aligned_u64 __u64 __attribute__((aligned(8)))
Al Viro98a4a862006-11-08 00:26:51 -0800127#define aligned_be64 __be64 __attribute__((aligned(8)))
128#define aligned_le64 __le64 __attribute__((aligned(8)))
Harald Welte0ba2c6e2005-08-13 13:55:44 -0700129
Roger Gammans2c2345c2006-10-04 13:37:45 +0200130/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * The type used for indexing onto a disc or disc partition.
Roger Gammans2c2345c2006-10-04 13:37:45 +0200132 *
133 * Linux always considers sectors to be 512 bytes long independently
134 * of the devices real block size.
Jens Axboeb3a6ffe2008-12-12 09:51:16 +0100135 *
136 * blkcnt_t is the type of the inode's block count.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 */
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200138#ifdef CONFIG_LBDAF
Matthew Wilcoxe6243862006-12-04 03:38:31 -0700139typedef u64 sector_t;
Matthew Wilcoxe6243862006-12-04 03:38:31 -0700140typedef u64 blkcnt_t;
141#else
Jens Axboeb3a6ffe2008-12-12 09:51:16 +0100142typedef unsigned long sector_t;
Takashi Satoa0f62ac2006-03-26 01:37:52 -0800143typedef unsigned long blkcnt_t;
144#endif
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/*
147 * The type of an index into the pagecache. Use a #define so asm/types.h
148 * can override it.
149 */
150#ifndef pgoff_t
151#define pgoff_t unsigned long
152#endif
153
FUJITA Tomonori3e505942011-03-22 16:33:50 -0700154#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
155typedef u64 dma_addr_t;
156#else
157typedef u32 dma_addr_t;
158#endif /* dma_addr_t */
159
Arnd Bergmann3a471cb2009-02-26 00:51:45 +0100160#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162/*
163 * Below are truly Linux-specific types that should never collide with
164 * any application/library that wants linux/types.h.
165 */
166
167#ifdef __CHECKER__
Al Viroaf4ca452005-10-21 02:55:38 -0400168#define __bitwise__ __attribute__((bitwise))
169#else
170#define __bitwise__
171#endif
172#ifdef __CHECK_ENDIAN__
173#define __bitwise __bitwise__
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#else
175#define __bitwise
176#endif
177
178typedef __u16 __bitwise __le16;
179typedef __u16 __bitwise __be16;
180typedef __u32 __bitwise __le32;
181typedef __u32 __bitwise __be32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182typedef __u64 __bitwise __le64;
183typedef __u64 __bitwise __be64;
Detlef Riekenberg940fbf42009-01-07 10:11:44 +0100184
Al Viro2bc35792006-11-14 21:14:18 -0800185typedef __u16 __bitwise __sum16;
186typedef __u32 __bitwise __wsum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Andrew Mortona75d3772010-10-26 14:21:10 -0700188/*
189 * aligned_u64 should be used in defining kernel<->userspace ABIs to avoid
190 * common 32/64-bit compat problems.
191 * 64-bit values align to 4-byte boundaries on x86_32 (and possibly other
Mark Einona469ebd2011-12-06 23:18:14 +0000192 * architectures) and to 8-byte boundaries on 64-bit architectures. The new
Andrew Mortona75d3772010-10-26 14:21:10 -0700193 * aligned_64 type enforces 8-byte alignment so that structs containing
194 * aligned_64 values have the same alignment on 32-bit and 64-bit architectures.
195 * No conversions are necessary between 32-bit user-space and a 64-bit kernel.
196 */
Eric Paris79b5dc02010-10-15 14:34:14 -0700197#define __aligned_u64 __u64 __attribute__((aligned(8)))
198#define __aligned_be64 __be64 __attribute__((aligned(8)))
199#define __aligned_le64 __le64 __attribute__((aligned(8)))
200
Al Virodd0fc662005-10-07 07:46:04 +0100201#ifdef __KERNEL__
Al Viroaf4ca452005-10-21 02:55:38 -0400202typedef unsigned __bitwise__ gfp_t;
Al Viroaeb5d722008-09-02 15:28:45 -0400203typedef unsigned __bitwise__ fmode_t;
Greg Kroah-Hartmancf7c7122006-06-12 15:49:31 -0700204
Jeremy Fitzhardinge600715d2008-09-11 01:31:45 -0700205#ifdef CONFIG_PHYS_ADDR_T_64BIT
206typedef u64 phys_addr_t;
207#else
208typedef u32 phys_addr_t;
209#endif
210
Jeremy Fitzhardinge8308c542008-09-11 01:31:50 -0700211typedef phys_addr_t resource_size_t;
212
Grant Likelya699e4e2012-04-03 07:11:04 -0600213/*
214 * This type is the placeholder for a hardware interrupt number. It has to be
215 * big enough to enclose whatever representation is used by a given platform.
216 */
217typedef unsigned long irq_hw_number_t;
218
Matthew Wilcoxea4354672009-01-06 14:40:39 -0800219typedef struct {
Anton Blanchard81880d62010-05-17 14:34:57 +1000220 int counter;
Matthew Wilcoxea4354672009-01-06 14:40:39 -0800221} atomic_t;
222
223#ifdef CONFIG_64BIT
224typedef struct {
Anton Blanchard81880d62010-05-17 14:34:57 +1000225 long counter;
Matthew Wilcoxea4354672009-01-06 14:40:39 -0800226} atomic64_t;
227#endif
228
Chris Metcalfde5d9bf2010-07-02 13:41:14 -0400229struct list_head {
230 struct list_head *next, *prev;
231};
232
233struct hlist_head {
234 struct hlist_node *first;
235};
236
237struct hlist_node {
238 struct hlist_node *next, **pprev;
239};
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241struct ustat {
242 __kernel_daddr_t f_tfree;
243 __kernel_ino_t f_tinode;
244 char f_fname[6];
245 char f_fpack[6];
246};
247
Paul E. McKenney99098752011-05-31 21:03:55 -0700248/**
Al Viro67d12142012-06-27 11:07:19 +0400249 * struct callback_head - callback structure for use with RCU and task_work
Paul E. McKenney99098752011-05-31 21:03:55 -0700250 * @next: next update requests in a list
251 * @func: actual update function to call after the grace period.
252 */
Al Viro67d12142012-06-27 11:07:19 +0400253struct callback_head {
254 struct callback_head *next;
255 void (*func)(struct callback_head *head);
Paul E. McKenney99098752011-05-31 21:03:55 -0700256};
Al Viro67d12142012-06-27 11:07:19 +0400257#define rcu_head callback_head
Paul E. McKenney99098752011-05-31 21:03:55 -0700258
maximilian attems6c7c6af2008-05-23 13:04:29 -0700259#endif /* __KERNEL__ */
Jaswinder Singh Rajput527bdfe2009-02-06 20:47:58 +0530260#endif /* __ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261#endif /* _LINUX_TYPES_H */