Merge tag 'mm-hotfixes-stable-2023-05-03-16-27' of git://git.kernel.org/pub/scm/linux...
[linux-block.git] / include / linux / types.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _LINUX_TYPES_H
3#define _LINUX_TYPES_H
4
607ca46e
DH
5#define __EXPORTED_HEADERS__
6#include <uapi/linux/types.h>
9d50638b 7
527bdfee 8#ifndef __ASSEMBLY__
1da177e4 9
1da177e4
LT
10#define DECLARE_BITMAP(name,bits) \
11 unsigned long name[BITS_TO_LONGS(bits)]
1da177e4 12
b22f22a3 13typedef u32 __kernel_dev_t;
1da177e4
LT
14
15typedef __kernel_fd_set fd_set;
16typedef __kernel_dev_t dev_t;
96c0a6a7 17typedef __kernel_ulong_t ino_t;
1da177e4 18typedef __kernel_mode_t mode_t;
0583fcc9 19typedef unsigned short umode_t;
b22f22a3 20typedef u32 nlink_t;
1da177e4
LT
21typedef __kernel_off_t off_t;
22typedef __kernel_pid_t pid_t;
23typedef __kernel_daddr_t daddr_t;
24typedef __kernel_key_t key_t;
25typedef __kernel_suseconds_t suseconds_t;
26typedef __kernel_timer_t timer_t;
27typedef __kernel_clockid_t clockid_t;
28typedef __kernel_mqd_t mqd_t;
29
6e218287
RK
30typedef _Bool bool;
31
1da177e4
LT
32typedef __kernel_uid32_t uid_t;
33typedef __kernel_gid32_t gid_t;
34typedef __kernel_uid16_t uid16_t;
35typedef __kernel_gid16_t gid16_t;
36
142956af
AV
37typedef unsigned long uintptr_t;
38
fbc416ff 39#ifdef CONFIG_HAVE_UID16
1da177e4
LT
40/* This is defined by include/asm-{arch}/posix_types.h */
41typedef __kernel_old_uid_t old_uid_t;
42typedef __kernel_old_gid_t old_gid_t;
43#endif /* CONFIG_UID16 */
44
7437a51b 45#if defined(__GNUC__)
1da177e4
LT
46typedef __kernel_loff_t loff_t;
47#endif
48
49/*
50 * The following typedefs are also protected by individual ifdefs for
51 * historical reasons:
52 */
53#ifndef _SIZE_T
54#define _SIZE_T
55typedef __kernel_size_t size_t;
56#endif
57
58#ifndef _SSIZE_T
59#define _SSIZE_T
60typedef __kernel_ssize_t ssize_t;
61#endif
62
63#ifndef _PTRDIFF_T
64#define _PTRDIFF_T
65typedef __kernel_ptrdiff_t ptrdiff_t;
66#endif
67
1da177e4
LT
68#ifndef _CLOCK_T
69#define _CLOCK_T
70typedef __kernel_clock_t clock_t;
71#endif
72
73#ifndef _CADDR_T
74#define _CADDR_T
75typedef __kernel_caddr_t caddr_t;
76#endif
77
78/* bsd */
79typedef unsigned char u_char;
80typedef unsigned short u_short;
81typedef unsigned int u_int;
82typedef unsigned long u_long;
83
84/* sysv */
85typedef unsigned char unchar;
86typedef unsigned short ushort;
87typedef unsigned int uint;
88typedef unsigned long ulong;
89
90#ifndef __BIT_TYPES_DEFINED__
91#define __BIT_TYPES_DEFINED__
92
b22f22a3
MY
93typedef u8 u_int8_t;
94typedef s8 int8_t;
95typedef u16 u_int16_t;
96typedef s16 int16_t;
97typedef u32 u_int32_t;
98typedef s32 int32_t;
1da177e4
LT
99
100#endif /* !(__BIT_TYPES_DEFINED__) */
101
b22f22a3
MY
102typedef u8 uint8_t;
103typedef u16 uint16_t;
104typedef u32 uint32_t;
1da177e4 105
7437a51b 106#if defined(__GNUC__)
b22f22a3
MY
107typedef u64 uint64_t;
108typedef u64 u_int64_t;
109typedef s64 int64_t;
1da177e4
LT
110#endif
111
a75d3776 112/* this is a special 64bit data type that is 8-byte aligned */
6d0e8d53
MY
113#define aligned_u64 __aligned_u64
114#define aligned_be64 __aligned_be64
115#define aligned_le64 __aligned_le64
0ba2c6e8 116
2c2345c2 117/**
1da177e4 118 * The type used for indexing onto a disc or disc partition.
2c2345c2
RG
119 *
120 * Linux always considers sectors to be 512 bytes long independently
121 * of the devices real block size.
b3a6ffe1
JA
122 *
123 * blkcnt_t is the type of the inode's block count.
1da177e4 124 */
e6243863 125typedef u64 sector_t;
e6243863 126typedef u64 blkcnt_t;
a0f62ac6 127
1da177e4 128/*
dd4a5c1e 129 * The type of an index into the pagecache.
1da177e4 130 */
1da177e4 131#define pgoff_t unsigned long
1da177e4 132
3a9ad0b4
YL
133/*
134 * A dma_addr_t can hold any valid DMA address, i.e., any address returned
135 * by the DMA API.
136 *
137 * If the DMA API only uses 32-bit addresses, dma_addr_t need only be 32
138 * bits wide. Bus addresses, e.g., PCI BARs, may be wider than 32 bits,
139 * but drivers do memory-mapped I/O to ioremapped kernel virtual addresses,
140 * so they don't care about the size of the actual bus addresses.
141 */
3e50594e
FT
142#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
143typedef u64 dma_addr_t;
144#else
145typedef u32 dma_addr_t;
3a9ad0b4 146#endif
3e50594e 147
30ff9ec4
W
148typedef unsigned int __bitwise gfp_t;
149typedef unsigned int __bitwise slab_flags_t;
150typedef unsigned int __bitwise fmode_t;
cf7c712c 151
600715dc
JF
152#ifdef CONFIG_PHYS_ADDR_T_64BIT
153typedef u64 phys_addr_t;
154#else
155typedef u32 phys_addr_t;
156#endif
157
8308c54d
JF
158typedef phys_addr_t resource_size_t;
159
a699e4e4
GL
160/*
161 * This type is the placeholder for a hardware interrupt number. It has to be
162 * big enough to enclose whatever representation is used by a given platform.
163 */
164typedef unsigned long irq_hw_number_t;
165
ea435467 166typedef struct {
81880d60 167 int counter;
ea435467
MW
168} atomic_t;
169
7ca8cf53
HX
170#define ATOMIC_INIT(i) { (i) }
171
ea435467
MW
172#ifdef CONFIG_64BIT
173typedef struct {
37249213 174 s64 counter;
ea435467
MW
175} atomic64_t;
176#endif
177
ee1ee6db
TG
178typedef struct {
179 atomic_t refcnt;
180} rcuref_t;
181
182#define RCUREF_INIT(i) { .refcnt = ATOMIC_INIT(i - 1) }
183
de5d9bf6
CM
184struct 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
1da177e4
LT
196struct ustat {
197 __kernel_daddr_t f_tfree;
96c0a6a7
HC
198#ifdef CONFIG_ARCH_32BIT_USTAT_F_TINODE
199 unsigned int f_tinode;
200#else
201 unsigned long f_tinode;
202#endif
1da177e4
LT
203 char f_fname[6];
204 char f_fpack[6];
205};
206
99098751 207/**
67d12145 208 * struct callback_head - callback structure for use with RCU and task_work
99098751
PM
209 * @next: next update requests in a list
210 * @func: actual update function to call after the grace period.
720abae3
KS
211 *
212 * The struct is aligned to size of pointer. On most architectures it happens
213 * naturally due ABI requirements, but some architectures (like CRIS) have
214 * weird ABI and we need to ask it explicitly.
215 *
468d01be 216 * The alignment is required to guarantee that bit 0 of @next will be
d5cccfc7
PM
217 * clear under normal conditions -- as long as we use call_rcu() or
218 * call_srcu() to queue the callback.
720abae3
KS
219 *
220 * This guarantee is important for few reasons:
221 * - future call_rcu_lazy() will make use of lower bits in the pointer;
30a050de 222 * - the structure shares storage space in struct page with @compound_head,
720abae3
KS
223 * which encode PageTail() in bit 0. The guarantee is needed to avoid
224 * false-positive PageTail().
99098751 225 */
67d12145
AV
226struct callback_head {
227 struct callback_head *next;
228 void (*func)(struct callback_head *head);
720abae3 229} __attribute__((aligned(sizeof(void *))));
67d12145 230#define rcu_head callback_head
99098751 231
ec90a194
PM
232typedef void (*rcu_callback_t)(struct rcu_head *head);
233typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
234
a0019cd7 235typedef void (*swap_r_func_t)(void *a, void *b, int size, const void *priv);
52ae533b
AS
236typedef void (*swap_func_t)(void *a, void *b, int size);
237
238typedef int (*cmp_r_func_t)(const void *a, const void *b, const void *priv);
239typedef int (*cmp_func_t)(const void *a, const void *b);
240
527bdfee 241#endif /* __ASSEMBLY__ */
1da177e4 242#endif /* _LINUX_TYPES_H */