blob: baf718324f4ab5bbd10d0a9ffa7069fdba8b2f18 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_TYPES_H
2#define _LINUX_TYPES_H
3
David Howells607ca462012-10-13 10:46:48 +01004#define __EXPORTED_HEADERS__
5#include <uapi/linux/types.h>
Jaswinder Singh Rajput9d506382009-02-08 11:00:25 +05306
Jaswinder Singh Rajput527bdfe2009-02-06 20:47:58 +05307#ifndef __ASSEMBLY__
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)]
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12typedef __u32 __kernel_dev_t;
13
14typedef __kernel_fd_set fd_set;
15typedef __kernel_dev_t dev_t;
16typedef __kernel_ino_t ino_t;
17typedef __kernel_mode_t mode_t;
Al Viro0583fcc2011-07-26 17:04:15 -040018typedef unsigned short umode_t;
Al Virobb8ac182012-05-19 10:25:23 -040019typedef __u32 nlink_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020typedef __kernel_off_t off_t;
21typedef __kernel_pid_t pid_t;
22typedef __kernel_daddr_t daddr_t;
23typedef __kernel_key_t key_t;
24typedef __kernel_suseconds_t suseconds_t;
25typedef __kernel_timer_t timer_t;
26typedef __kernel_clockid_t clockid_t;
27typedef __kernel_mqd_t mqd_t;
28
Richard Knutsson6e218282006-09-30 23:27:11 -070029typedef _Bool bool;
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031typedef __kernel_uid32_t uid_t;
32typedef __kernel_gid32_t gid_t;
33typedef __kernel_uid16_t uid16_t;
34typedef __kernel_gid16_t gid16_t;
35
Al Viro142956a2007-10-29 05:11:28 +000036typedef unsigned long uintptr_t;
37
Arnd Bergmannfbc416f2015-11-20 12:12:21 +010038#ifdef CONFIG_HAVE_UID16
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* This is defined by include/asm-{arch}/posix_types.h */
40typedef __kernel_old_uid_t old_uid_t;
41typedef __kernel_old_gid_t old_gid_t;
42#endif /* CONFIG_UID16 */
43
Mike Frysinger7437a512008-02-08 04:21:24 -080044#if defined(__GNUC__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045typedef __kernel_loff_t loff_t;
46#endif
47
48/*
49 * The following typedefs are also protected by individual ifdefs for
50 * historical reasons:
51 */
52#ifndef _SIZE_T
53#define _SIZE_T
54typedef __kernel_size_t size_t;
55#endif
56
57#ifndef _SSIZE_T
58#define _SSIZE_T
59typedef __kernel_ssize_t ssize_t;
60#endif
61
62#ifndef _PTRDIFF_T
63#define _PTRDIFF_T
64typedef __kernel_ptrdiff_t ptrdiff_t;
65#endif
66
67#ifndef _TIME_T
68#define _TIME_T
69typedef __kernel_time_t time_t;
70#endif
71
72#ifndef _CLOCK_T
73#define _CLOCK_T
74typedef __kernel_clock_t clock_t;
75#endif
76
77#ifndef _CADDR_T
78#define _CADDR_T
79typedef __kernel_caddr_t caddr_t;
80#endif
81
82/* bsd */
83typedef unsigned char u_char;
84typedef unsigned short u_short;
85typedef unsigned int u_int;
86typedef unsigned long u_long;
87
88/* sysv */
89typedef unsigned char unchar;
90typedef unsigned short ushort;
91typedef unsigned int uint;
92typedef unsigned long ulong;
93
94#ifndef __BIT_TYPES_DEFINED__
95#define __BIT_TYPES_DEFINED__
96
97typedef __u8 u_int8_t;
98typedef __s8 int8_t;
99typedef __u16 u_int16_t;
100typedef __s16 int16_t;
101typedef __u32 u_int32_t;
102typedef __s32 int32_t;
103
104#endif /* !(__BIT_TYPES_DEFINED__) */
105
106typedef __u8 uint8_t;
107typedef __u16 uint16_t;
108typedef __u32 uint32_t;
109
Mike Frysinger7437a512008-02-08 04:21:24 -0800110#if defined(__GNUC__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111typedef __u64 uint64_t;
112typedef __u64 u_int64_t;
113typedef __s64 int64_t;
114#endif
115
Andrew Mortona75d3772010-10-26 14:21:10 -0700116/* this is a special 64bit data type that is 8-byte aligned */
Jan Engelhardtc82a5cb2008-01-31 03:57:36 -0800117#define aligned_u64 __u64 __attribute__((aligned(8)))
Al Viro98a4a862006-11-08 00:26:51 -0800118#define aligned_be64 __be64 __attribute__((aligned(8)))
119#define aligned_le64 __le64 __attribute__((aligned(8)))
Harald Welte0ba2c6e2005-08-13 13:55:44 -0700120
Roger Gammans2c2345c2006-10-04 13:37:45 +0200121/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 * The type used for indexing onto a disc or disc partition.
Roger Gammans2c2345c2006-10-04 13:37:45 +0200123 *
124 * Linux always considers sectors to be 512 bytes long independently
125 * of the devices real block size.
Jens Axboeb3a6ffe2008-12-12 09:51:16 +0100126 *
127 * blkcnt_t is the type of the inode's block count.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200129#ifdef CONFIG_LBDAF
Matthew Wilcoxe6243862006-12-04 03:38:31 -0700130typedef u64 sector_t;
Matthew Wilcoxe6243862006-12-04 03:38:31 -0700131typedef u64 blkcnt_t;
132#else
Jens Axboeb3a6ffe2008-12-12 09:51:16 +0100133typedef unsigned long sector_t;
Takashi Satoa0f62ac2006-03-26 01:37:52 -0800134typedef unsigned long blkcnt_t;
135#endif
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/*
Geert Uytterhoevendd4a5c12015-02-12 15:01:22 -0800138 * The type of an index into the pagecache.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#define pgoff_t unsigned long
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Yinghai Lu3a9ad0b2015-05-27 17:23:51 -0700142/*
143 * A dma_addr_t can hold any valid DMA address, i.e., any address returned
144 * by the DMA API.
145 *
146 * If the DMA API only uses 32-bit addresses, dma_addr_t need only be 32
147 * bits wide. Bus addresses, e.g., PCI BARs, may be wider than 32 bits,
148 * but drivers do memory-mapped I/O to ioremapped kernel virtual addresses,
149 * so they don't care about the size of the actual bus addresses.
150 */
FUJITA Tomonori3e505942011-03-22 16:33:50 -0700151#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
152typedef u64 dma_addr_t;
153#else
154typedef u32 dma_addr_t;
Yinghai Lu3a9ad0b2015-05-27 17:23:51 -0700155#endif
FUJITA Tomonori3e505942011-03-22 16:33:50 -0700156
Al Viroaf4ca452005-10-21 02:55:38 -0400157typedef unsigned __bitwise__ gfp_t;
Al Viroaeb5d722008-09-02 15:28:45 -0400158typedef unsigned __bitwise__ fmode_t;
Greg Kroah-Hartmancf7c7122006-06-12 15:49:31 -0700159
Jeremy Fitzhardinge600715d2008-09-11 01:31:45 -0700160#ifdef CONFIG_PHYS_ADDR_T_64BIT
161typedef u64 phys_addr_t;
162#else
163typedef u32 phys_addr_t;
164#endif
165
Jeremy Fitzhardinge8308c542008-09-11 01:31:50 -0700166typedef phys_addr_t resource_size_t;
167
Grant Likelya699e4e2012-04-03 07:11:04 -0600168/*
169 * This type is the placeholder for a hardware interrupt number. It has to be
170 * big enough to enclose whatever representation is used by a given platform.
171 */
172typedef unsigned long irq_hw_number_t;
173
Matthew Wilcoxea4354672009-01-06 14:40:39 -0800174typedef struct {
Anton Blanchard81880d62010-05-17 14:34:57 +1000175 int counter;
Matthew Wilcoxea4354672009-01-06 14:40:39 -0800176} atomic_t;
177
178#ifdef CONFIG_64BIT
179typedef struct {
Anton Blanchard81880d62010-05-17 14:34:57 +1000180 long counter;
Matthew Wilcoxea4354672009-01-06 14:40:39 -0800181} atomic64_t;
182#endif
183
Chris Metcalfde5d9bf2010-07-02 13:41:14 -0400184struct list_head {
185 struct list_head *next, *prev;
186};
187
188struct hlist_head {
189 struct hlist_node *first;
190};
191
192struct hlist_node {
193 struct hlist_node *next, **pprev;
194};
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196struct ustat {
197 __kernel_daddr_t f_tfree;
198 __kernel_ino_t f_tinode;
199 char f_fname[6];
200 char f_fpack[6];
201};
202
Paul E. McKenney99098752011-05-31 21:03:55 -0700203/**
Al Viro67d12142012-06-27 11:07:19 +0400204 * struct callback_head - callback structure for use with RCU and task_work
Paul E. McKenney99098752011-05-31 21:03:55 -0700205 * @next: next update requests in a list
206 * @func: actual update function to call after the grace period.
Kirill A. Shutemov720abae2015-11-05 18:44:18 -0800207 *
208 * The struct is aligned to size of pointer. On most architectures it happens
209 * naturally due ABI requirements, but some architectures (like CRIS) have
210 * weird ABI and we need to ask it explicitly.
211 *
212 * The alignment is required to guarantee that bits 0 and 1 of @next will be
213 * clear under normal conditions -- as long as we use call_rcu(),
214 * call_rcu_bh(), call_rcu_sched(), or call_srcu() to queue callback.
215 *
216 * This guarantee is important for few reasons:
217 * - future call_rcu_lazy() will make use of lower bits in the pointer;
218 * - the structure shares storage spacer in struct page with @compound_head,
219 * which encode PageTail() in bit 0. The guarantee is needed to avoid
220 * false-positive PageTail().
Paul E. McKenney99098752011-05-31 21:03:55 -0700221 */
Al Viro67d12142012-06-27 11:07:19 +0400222struct callback_head {
223 struct callback_head *next;
224 void (*func)(struct callback_head *head);
Kirill A. Shutemov720abae2015-11-05 18:44:18 -0800225} __attribute__((aligned(sizeof(void *))));
Al Viro67d12142012-06-27 11:07:19 +0400226#define rcu_head callback_head
Paul E. McKenney99098752011-05-31 21:03:55 -0700227
Paul E. McKenneyec90a192015-06-10 12:53:06 -0700228typedef void (*rcu_callback_t)(struct rcu_head *head);
229typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
230
Richard Cochran74d23cc2014-12-21 19:46:56 +0100231/* clocksource cycle base type */
232typedef u64 cycle_t;
233
Jaswinder Singh Rajput527bdfe2009-02-06 20:47:58 +0530234#endif /* __ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235#endif /* _LINUX_TYPES_H */