Linux Audio

Check our new training course

Loading...
v5.14.15
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#ifndef _LINUX_TYPES_H
  3#define _LINUX_TYPES_H
  4
  5#define __EXPORTED_HEADERS__
  6#include <uapi/linux/types.h>
  7
  8#ifndef __ASSEMBLY__
  9
 10#define DECLARE_BITMAP(name,bits) \
 11	unsigned long name[BITS_TO_LONGS(bits)]
 12
 13typedef u32 __kernel_dev_t;
 14
 15typedef __kernel_fd_set		fd_set;
 16typedef __kernel_dev_t		dev_t;
 17typedef __kernel_ulong_t	ino_t;
 18typedef __kernel_mode_t		mode_t;
 19typedef unsigned short		umode_t;
 20typedef u32			nlink_t;
 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
 30typedef _Bool			bool;
 31
 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
 37typedef unsigned long		uintptr_t;
 38
 39#ifdef CONFIG_HAVE_UID16
 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
 45#if defined(__GNUC__)
 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
 
 
 
 
 
 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
 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;
 99
100#endif /* !(__BIT_TYPES_DEFINED__) */
101
102typedef u8			uint8_t;
103typedef u16			uint16_t;
104typedef u32			uint32_t;
105
106#if defined(__GNUC__)
107typedef u64			uint64_t;
108typedef u64			u_int64_t;
109typedef s64			int64_t;
110#endif
111
112/* this is a special 64bit data type that is 8-byte aligned */
113#define aligned_u64		__aligned_u64
114#define aligned_be64		__aligned_be64
115#define aligned_le64		__aligned_le64
116
117/**
118 * The type used for indexing onto a disc or disc partition.
119 *
120 * Linux always considers sectors to be 512 bytes long independently
121 * of the devices real block size.
122 *
123 * blkcnt_t is the type of the inode's block count.
124 */
 
125typedef u64 sector_t;
126typedef u64 blkcnt_t;
 
 
 
 
127
128/*
129 * The type of an index into the pagecache.
130 */
131#define pgoff_t unsigned long
132
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 */
142#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
143typedef u64 dma_addr_t;
144#else
145typedef u32 dma_addr_t;
146#endif
147
148typedef unsigned int __bitwise gfp_t;
149typedef unsigned int __bitwise slab_flags_t;
150typedef unsigned int __bitwise fmode_t;
151
152#ifdef CONFIG_PHYS_ADDR_T_64BIT
153typedef u64 phys_addr_t;
154#else
155typedef u32 phys_addr_t;
156#endif
157
158typedef phys_addr_t resource_size_t;
159
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
166typedef struct {
167	int counter;
168} atomic_t;
169
170#define ATOMIC_INIT(i) { (i) }
171
172#ifdef CONFIG_64BIT
173typedef struct {
174	s64 counter;
175} atomic64_t;
176#endif
177
178struct list_head {
179	struct list_head *next, *prev;
180};
181
182struct hlist_head {
183	struct hlist_node *first;
184};
185
186struct hlist_node {
187	struct hlist_node *next, **pprev;
188};
189
190struct ustat {
191	__kernel_daddr_t	f_tfree;
192#ifdef CONFIG_ARCH_32BIT_USTAT_F_TINODE
193	unsigned int		f_tinode;
194#else
195	unsigned long		f_tinode;
196#endif
197	char			f_fname[6];
198	char			f_fpack[6];
199};
200
201/**
202 * struct callback_head - callback structure for use with RCU and task_work
203 * @next: next update requests in a list
204 * @func: actual update function to call after the grace period.
205 *
206 * The struct is aligned to size of pointer. On most architectures it happens
207 * naturally due ABI requirements, but some architectures (like CRIS) have
208 * weird ABI and we need to ask it explicitly.
209 *
210 * The alignment is required to guarantee that bit 0 of @next will be
211 * clear under normal conditions -- as long as we use call_rcu() or
212 * call_srcu() to queue the callback.
213 *
214 * This guarantee is important for few reasons:
215 *  - future call_rcu_lazy() will make use of lower bits in the pointer;
216 *  - the structure shares storage space in struct page with @compound_head,
217 *    which encode PageTail() in bit 0. The guarantee is needed to avoid
218 *    false-positive PageTail().
219 */
220struct callback_head {
221	struct callback_head *next;
222	void (*func)(struct callback_head *head);
223} __attribute__((aligned(sizeof(void *))));
224#define rcu_head callback_head
225
226typedef void (*rcu_callback_t)(struct rcu_head *head);
227typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
228
229typedef void (*swap_func_t)(void *a, void *b, int size);
230
231typedef int (*cmp_r_func_t)(const void *a, const void *b, const void *priv);
232typedef int (*cmp_func_t)(const void *a, const void *b);
233
234#endif /*  __ASSEMBLY__ */
235#endif /* _LINUX_TYPES_H */
v4.6
 
  1#ifndef _LINUX_TYPES_H
  2#define _LINUX_TYPES_H
  3
  4#define __EXPORTED_HEADERS__
  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
 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;
 18typedef unsigned short		umode_t;
 19typedef __u32			nlink_t;
 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
 29typedef _Bool			bool;
 30
 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
 36typedef unsigned long		uintptr_t;
 37
 38#ifdef CONFIG_HAVE_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
 44#if defined(__GNUC__)
 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
110#if defined(__GNUC__)
111typedef		__u64		uint64_t;
112typedef		__u64		u_int64_t;
113typedef		__s64		int64_t;
114#endif
115
116/* this is a special 64bit data type that is 8-byte aligned */
117#define aligned_u64 __u64 __attribute__((aligned(8)))
118#define aligned_be64 __be64 __attribute__((aligned(8)))
119#define aligned_le64 __le64 __attribute__((aligned(8)))
120
121/**
122 * The type used for indexing onto a disc or disc partition.
123 *
124 * Linux always considers sectors to be 512 bytes long independently
125 * of the devices real block size.
126 *
127 * blkcnt_t is the type of the inode's block count.
128 */
129#ifdef CONFIG_LBDAF
130typedef u64 sector_t;
131typedef u64 blkcnt_t;
132#else
133typedef unsigned long sector_t;
134typedef unsigned long blkcnt_t;
135#endif
136
137/*
138 * The type of an index into the pagecache.
139 */
140#define pgoff_t unsigned long
141
142/*
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 */
151#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
152typedef u64 dma_addr_t;
153#else
154typedef u32 dma_addr_t;
155#endif
156
157typedef unsigned __bitwise__ gfp_t;
158typedef unsigned __bitwise__ fmode_t;
159typedef unsigned __bitwise__ oom_flags_t;
160
161#ifdef CONFIG_PHYS_ADDR_T_64BIT
162typedef u64 phys_addr_t;
163#else
164typedef u32 phys_addr_t;
165#endif
166
167typedef phys_addr_t resource_size_t;
168
169/*
170 * This type is the placeholder for a hardware interrupt number. It has to be
171 * big enough to enclose whatever representation is used by a given platform.
172 */
173typedef unsigned long irq_hw_number_t;
174
175typedef struct {
176	int counter;
177} atomic_t;
178
 
 
179#ifdef CONFIG_64BIT
180typedef struct {
181	long counter;
182} atomic64_t;
183#endif
184
185struct list_head {
186	struct list_head *next, *prev;
187};
188
189struct hlist_head {
190	struct hlist_node *first;
191};
192
193struct hlist_node {
194	struct hlist_node *next, **pprev;
195};
196
197struct ustat {
198	__kernel_daddr_t	f_tfree;
199	__kernel_ino_t		f_tinode;
 
 
 
 
200	char			f_fname[6];
201	char			f_fpack[6];
202};
203
204/**
205 * struct callback_head - callback structure for use with RCU and task_work
206 * @next: next update requests in a list
207 * @func: actual update function to call after the grace period.
208 *
209 * The struct is aligned to size of pointer. On most architectures it happens
210 * naturally due ABI requirements, but some architectures (like CRIS) have
211 * weird ABI and we need to ask it explicitly.
212 *
213 * The alignment is required to guarantee that bits 0 and 1 of @next will be
214 * clear under normal conditions -- as long as we use call_rcu(),
215 * call_rcu_bh(), call_rcu_sched(), or call_srcu() to queue callback.
216 *
217 * This guarantee is important for few reasons:
218 *  - future call_rcu_lazy() will make use of lower bits in the pointer;
219 *  - the structure shares storage spacer in struct page with @compound_head,
220 *    which encode PageTail() in bit 0. The guarantee is needed to avoid
221 *    false-positive PageTail().
222 */
223struct callback_head {
224	struct callback_head *next;
225	void (*func)(struct callback_head *head);
226} __attribute__((aligned(sizeof(void *))));
227#define rcu_head callback_head
228
229typedef void (*rcu_callback_t)(struct rcu_head *head);
230typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
231
232/* clocksource cycle base type */
233typedef u64 cycle_t;
 
 
234
235#endif /*  __ASSEMBLY__ */
236#endif /* _LINUX_TYPES_H */