1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _LINUX_TYPES_H 3 #define _LINUX_TYPES_H 4 5 #include <uapi/linux/types.h> 6 7 #ifndef __ASSEMBLY__ 8 9 #define DECLARE_BITMAP(name,bits) \ 10 unsigned long name[BITS_TO_LONGS(bits)] 11 12 #ifdef __SIZEOF_INT128__ 13 typedef __s128 s128; 14 typedef __u128 u128; 15 #endif 16 17 typedef u32 __kernel_dev_t; 18 19 typedef __kernel_fd_set fd_set; 20 typedef __kernel_dev_t dev_t; 21 typedef __kernel_ulong_t ino_t; 22 typedef __kernel_mode_t mode_t; 23 typedef unsigned short umode_t; 24 typedef u32 nlink_t; 25 typedef __kernel_off_t off_t; 26 typedef __kernel_pid_t pid_t; 27 typedef __kernel_daddr_t daddr_t; 28 typedef __kernel_key_t key_t; 29 typedef __kernel_suseconds_t suseconds_t; 30 typedef __kernel_timer_t timer_t; 31 typedef __kernel_clockid_t clockid_t; 32 typedef __kernel_mqd_t mqd_t; 33 34 typedef _Bool bool; 35 36 typedef __kernel_uid32_t uid_t; 37 typedef __kernel_gid32_t gid_t; 38 typedef __kernel_uid16_t uid16_t; 39 typedef __kernel_gid16_t gid16_t; 40 41 typedef unsigned long uintptr_t; 42 typedef long intptr_t; 43 44 #ifdef CONFIG_HAVE_UID16 45 /* This is defined by arch/{arch}/include/asm/posix_types.h */ 46 typedef __kernel_old_uid_t old_uid_t; 47 typedef __kernel_old_gid_t old_gid_t; 48 #endif /* CONFIG_UID16 */ 49 50 #if defined(__GNUC__) 51 typedef __kernel_loff_t loff_t; 52 typedef __kernel_uoff_t uoff_t; 53 #endif 54 55 /* 56 * The following typedefs are also protected by individual ifdefs for 57 * historical reasons: 58 */ 59 #ifndef _SIZE_T 60 #define _SIZE_T 61 typedef __kernel_size_t size_t; 62 #endif 63 64 #ifndef _SSIZE_T 65 #define _SSIZE_T 66 typedef __kernel_ssize_t ssize_t; 67 #endif 68 69 #ifndef _PTRDIFF_T 70 #define _PTRDIFF_T 71 typedef __kernel_ptrdiff_t ptrdiff_t; 72 #endif 73 74 #ifndef _CLOCK_T 75 #define _CLOCK_T 76 typedef __kernel_clock_t clock_t; 77 #endif 78 79 #ifndef _CADDR_T 80 #define _CADDR_T 81 typedef __kernel_caddr_t caddr_t; 82 #endif 83 84 /* bsd */ 85 typedef unsigned char u_char; 86 typedef unsigned short u_short; 87 typedef unsigned int u_int; 88 typedef unsigned long u_long; 89 90 /* sysv */ 91 typedef unsigned char unchar; 92 typedef unsigned short ushort; 93 typedef unsigned int uint; 94 typedef unsigned long ulong; 95 typedef unsigned long long ullong; 96 97 #ifndef __BIT_TYPES_DEFINED__ 98 #define __BIT_TYPES_DEFINED__ 99 100 typedef u8 u_int8_t; 101 typedef s8 int8_t; 102 typedef u16 u_int16_t; 103 typedef s16 int16_t; 104 typedef u32 u_int32_t; 105 typedef s32 int32_t; 106 107 #endif /* !(__BIT_TYPES_DEFINED__) */ 108 109 typedef u8 uint8_t; 110 typedef u16 uint16_t; 111 typedef u32 uint32_t; 112 113 #if defined(__GNUC__) 114 typedef u64 uint64_t; 115 typedef u64 u_int64_t; 116 typedef s64 int64_t; 117 #endif 118 119 /* These are the special 64-bit data types that are 8-byte aligned */ 120 #define aligned_u64 __aligned_u64 121 #define aligned_s64 __aligned_s64 122 #define aligned_be64 __aligned_be64 123 #define aligned_le64 __aligned_le64 124 125 /* Nanosecond scalar representation for kernel time values */ 126 typedef s64 ktime_t; 127 128 /** 129 * The type used for indexing onto a disc or disc partition. 130 * 131 * Linux always considers sectors to be 512 bytes long independently 132 * of the devices real block size. 133 * 134 * blkcnt_t is the type of the inode's block count. 135 */ 136 typedef u64 sector_t; 137 typedef u64 blkcnt_t; 138 139 /* generic data direction definitions */ 140 #define READ 0 141 #define WRITE 1 142 143 /* 144 * The type of an index into the pagecache. 145 */ 146 #define pgoff_t unsigned long 147 148 /* 149 * A dma_addr_t can hold any valid DMA address, i.e., any address returned 150 * by the DMA API. 151 * 152 * If the DMA API only uses 32-bit addresses, dma_addr_t need only be 32 153 * bits wide. Bus addresses, e.g., PCI BARs, may be wider than 32 bits, 154 * but drivers do memory-mapped I/O to ioremapped kernel virtual addresses, 155 * so they don't care about the size of the actual bus addresses. 156 */ 157 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT 158 typedef u64 dma_addr_t; 159 #else 160 typedef u32 dma_addr_t; 161 #endif 162 163 typedef unsigned int __bitwise gfp_t; 164 typedef unsigned int __bitwise slab_flags_t; 165 typedef unsigned int __bitwise fmode_t; 166 167 #ifdef CONFIG_PHYS_ADDR_T_64BIT 168 typedef u64 phys_addr_t; 169 #else 170 typedef u32 phys_addr_t; 171 #endif 172 173 struct phys_vec { 174 phys_addr_t paddr; 175 size_t len; 176 }; 177 178 typedef phys_addr_t resource_size_t; 179 180 /* 181 * This type is the placeholder for a hardware interrupt number. It has to be 182 * big enough to enclose whatever representation is used by a given platform. 183 */ 184 typedef unsigned long irq_hw_number_t; 185 186 typedef struct { 187 int __aligned(sizeof(int)) counter; 188 } atomic_t; 189 190 #define ATOMIC_INIT(i) { (i) } 191 192 #ifdef CONFIG_64BIT 193 typedef struct { 194 s64 counter; 195 } atomic64_t; 196 #endif 197 198 typedef struct { 199 atomic_t refcnt; 200 } rcuref_t; 201 202 #define RCUREF_INIT(i) { .refcnt = ATOMIC_INIT(i - 1) } 203 204 struct list_head { 205 struct list_head *next, *prev; 206 }; 207 208 struct hlist_head { 209 struct hlist_node *first; 210 }; 211 212 struct hlist_node { 213 struct hlist_node *next, **pprev; 214 }; 215 216 struct ustat { 217 __kernel_daddr_t f_tfree; 218 #ifdef CONFIG_ARCH_32BIT_USTAT_F_TINODE 219 unsigned int f_tinode; 220 #else 221 unsigned long f_tinode; 222 #endif 223 char f_fname[6]; 224 char f_fpack[6]; 225 }; 226 227 /** 228 * struct callback_head - callback structure for use with RCU and task_work 229 * @next: next update requests in a list 230 * @func: actual update function to call after the grace period. 231 * 232 * The struct is aligned to size of pointer. On most architectures it happens 233 * naturally due ABI requirements, but some architectures (like CRIS) have 234 * weird ABI and we need to ask it explicitly. 235 * 236 * The alignment is required to guarantee that bit 0 of @next will be 237 * clear under normal conditions -- as long as we use call_rcu() or 238 * call_srcu() to queue the callback. 239 * 240 * This guarantee is important for few reasons: 241 * - future call_rcu_lazy() will make use of lower bits in the pointer; 242 * - the structure shares storage space in struct page with @compound_head, 243 * which encode PageTail() in bit 0. The guarantee is needed to avoid 244 * false-positive PageTail(). 245 */ 246 struct callback_head { 247 struct callback_head *next; 248 void (*func)(struct callback_head *head); 249 } __attribute__((aligned(sizeof(void *)))); 250 #define rcu_head callback_head 251 252 typedef void (*rcu_callback_t)(struct rcu_head *head); 253 typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func); 254 255 typedef void (*swap_r_func_t)(void *a, void *b, int size, const void *priv); 256 typedef void (*swap_func_t)(void *a, void *b, int size); 257 258 typedef int (*cmp_r_func_t)(const void *a, const void *b, const void *priv); 259 typedef int (*cmp_func_t)(const void *a, const void *b); 260 261 /* 262 * rcuwait provides a way of blocking and waking up a single 263 * task in an rcu-safe manner. 264 * 265 * The only time @task is non-nil is when a user is blocked (or 266 * checking if it needs to) on a condition, and reset as soon as we 267 * know that the condition has succeeded and are awoken. 268 */ 269 struct rcuwait { 270 struct task_struct __rcu *task; 271 }; 272 273 #endif /* __ASSEMBLY__ */ 274 #endif /* _LINUX_TYPES_H */ 275