Merge tag 'pci-v4.1-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
[deliverable/linux.git] / include / linux / types.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_TYPES_H
2#define _LINUX_TYPES_H
3
607ca46e
DH
4#define __EXPORTED_HEADERS__
5#include <uapi/linux/types.h>
9d50638b 6
527bdfee 7#ifndef __ASSEMBLY__
1da177e4 8
1da177e4
LT
9#define DECLARE_BITMAP(name,bits) \
10 unsigned long name[BITS_TO_LONGS(bits)]
1da177e4
LT
11
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;
0583fcc9 18typedef unsigned short umode_t;
bb8ac181 19typedef __u32 nlink_t;
1da177e4
LT
20typedef __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
6e218287
RK
29typedef _Bool bool;
30
1da177e4
LT
31typedef __kernel_uid32_t uid_t;
32typedef __kernel_gid32_t gid_t;
33typedef __kernel_uid16_t uid16_t;
34typedef __kernel_gid16_t gid16_t;
35
142956af
AV
36typedef unsigned long uintptr_t;
37
1da177e4
LT
38#ifdef CONFIG_UID16
39/* 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
7437a51b 44#if defined(__GNUC__)
1da177e4
LT
45typedef __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
7437a51b 110#if defined(__GNUC__)
1da177e4
LT
111typedef __u64 uint64_t;
112typedef __u64 u_int64_t;
113typedef __s64 int64_t;
114#endif
115
a75d3776 116/* this is a special 64bit data type that is 8-byte aligned */
c82a5cb8 117#define aligned_u64 __u64 __attribute__((aligned(8)))
98a4a861
AV
118#define aligned_be64 __be64 __attribute__((aligned(8)))
119#define aligned_le64 __le64 __attribute__((aligned(8)))
0ba2c6e8 120
2c2345c2 121/**
1da177e4 122 * The type used for indexing onto a disc or disc partition.
2c2345c2
RG
123 *
124 * Linux always considers sectors to be 512 bytes long independently
125 * of the devices real block size.
b3a6ffe1
JA
126 *
127 * blkcnt_t is the type of the inode's block count.
1da177e4 128 */
90c699a9 129#ifdef CONFIG_LBDAF
e6243863 130typedef u64 sector_t;
e6243863
MW
131typedef u64 blkcnt_t;
132#else
b3a6ffe1 133typedef unsigned long sector_t;
a0f62ac6
TS
134typedef unsigned long blkcnt_t;
135#endif
136
1da177e4 137/*
dd4a5c1e 138 * The type of an index into the pagecache.
1da177e4 139 */
1da177e4 140#define pgoff_t unsigned long
1da177e4 141
77f2ea2f 142/* A dma_addr_t can hold any valid DMA or bus address for the platform */
3e50594e
FT
143#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
144typedef u64 dma_addr_t;
145#else
146typedef u32 dma_addr_t;
147#endif /* dma_addr_t */
148
af4ca457 149typedef unsigned __bitwise__ gfp_t;
aeb5d727 150typedef unsigned __bitwise__ fmode_t;
e1e12d2f 151typedef unsigned __bitwise__ oom_flags_t;
cf7c712c 152
600715dc
JF
153#ifdef CONFIG_PHYS_ADDR_T_64BIT
154typedef u64 phys_addr_t;
155#else
156typedef u32 phys_addr_t;
157#endif
158
8308c54d
JF
159typedef phys_addr_t resource_size_t;
160
a699e4e4
GL
161/*
162 * This type is the placeholder for a hardware interrupt number. It has to be
163 * big enough to enclose whatever representation is used by a given platform.
164 */
165typedef unsigned long irq_hw_number_t;
166
ea435467 167typedef struct {
81880d60 168 int counter;
ea435467
MW
169} atomic_t;
170
171#ifdef CONFIG_64BIT
172typedef struct {
81880d60 173 long counter;
ea435467
MW
174} atomic64_t;
175#endif
176
de5d9bf6
CM
177struct list_head {
178 struct list_head *next, *prev;
179};
180
181struct hlist_head {
182 struct hlist_node *first;
183};
184
185struct hlist_node {
186 struct hlist_node *next, **pprev;
187};
188
1da177e4
LT
189struct ustat {
190 __kernel_daddr_t f_tfree;
191 __kernel_ino_t f_tinode;
192 char f_fname[6];
193 char f_fpack[6];
194};
195
99098751 196/**
67d12145 197 * struct callback_head - callback structure for use with RCU and task_work
99098751
PM
198 * @next: next update requests in a list
199 * @func: actual update function to call after the grace period.
200 */
67d12145
AV
201struct callback_head {
202 struct callback_head *next;
203 void (*func)(struct callback_head *head);
99098751 204};
67d12145 205#define rcu_head callback_head
99098751 206
74d23cc7
RC
207/* clocksource cycle base type */
208typedef u64 cycle_t;
209
527bdfee 210#endif /* __ASSEMBLY__ */
1da177e4 211#endif /* _LINUX_TYPES_H */
This page took 1.512584 seconds and 5 git commands to generate.