1
2
3
4
5
6
7
8 #ifndef _LINUX_TYPES_H
9 #define _LINUX_TYPES_H
10
11 #define __EXPORTED_HEADERS__
12 #include <uapi/linux/types.h>
13
14 #ifndef __ASSEMBLY__
15
16 #define DECLARE_BITMAP(name, bits) \
17 unsigned long name[BITS_TO_LONGS(bits)]
18
19 typedef __u32 __kernel_dev_t;
20
21
22 typedef unsigned char u_char;
23 typedef unsigned short u_short;
24 typedef unsigned int u_int;
25 typedef unsigned long u_long;
26
27
28 typedef unsigned char unchar;
29 typedef unsigned short ushort;
30 typedef unsigned int uint;
31 typedef unsigned long ulong;
32
33 #ifndef __BIT_TYPES_DEFINED__
34 #define __BIT_TYPES_DEFINED__
35
36 typedef __u8 u_int8_t;
37 typedef __s8 int8_t;
38 typedef __u16 u_int16_t;
39 typedef __s16 int16_t;
40 typedef __u32 u_int32_t;
41 typedef __s32 int32_t;
42
43 #endif
44
45 typedef __u8 uint8_t;
46 typedef __u16 uint16_t;
47 typedef __u32 uint32_t;
48
49
50 #define aligned_u64 __u64 __attribute__((aligned(8)))
51 #define aligned_be64 __be64 __attribute__((aligned(8)))
52 #define aligned_le64 __le64 __attribute__((aligned(8)))
53
54
55
56
57
58
59
60
61
62 typedef u64 sector_t;
63
64
65
66
67 #define pgoff_t unsigned long
68
69
70
71
72
73
74
75
76
77
78 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
79 typedef u64 dma_addr_t;
80 #else
81 typedef u32 dma_addr_t;
82 #endif
83
84 #ifdef CONFIG_PHYS_ADDR_T_64BIT
85 typedef u64 phys_addr_t;
86 #else
87 typedef u32 phys_addr_t;
88 #endif
89
90 typedef phys_addr_t resource_size_t;
91
92
93
94
95
96 typedef unsigned long irq_hw_number_t;
97
98 typedef struct {
99 int counter;
100 } atomic_t;
101
102 #ifdef CONFIG_64BIT
103 typedef struct {
104 long counter;
105 } atomic64_t;
106 #endif
107
108 struct list_head {
109 struct list_head *next, *prev;
110 };
111
112 struct hlist_head {
113 struct hlist_node *first;
114 };
115
116 struct hlist_node {
117 struct hlist_node *next, **pprev;
118 };
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139 struct callback_head {
140 struct callback_head *next;
141 void (*func)(struct callback_head *head);
142 } __attribute__((aligned(sizeof(void *))));
143 #define rcu_head callback_head
144
145 typedef void (*rcu_callback_t)(struct rcu_head *head);
146 typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
147
148
149 typedef u64 cycle_t;
150
151 #endif
152 #endif