Files
kernel/include/linux/types.h
T

237 lines
5.7 KiB
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
2005-04-16 15:20:36 -07:00
#ifndef _LINUX_TYPES_H
#define _LINUX_TYPES_H
2012-10-13 10:46:48 +01:00
#define __EXPORTED_HEADERS__
#include <uapi/linux/types.h>
2009-02-06 20:47:58 +05:30
#ifndef __ASSEMBLY__
2005-04-16 15:20:36 -07:00
#define DECLARE_BITMAP(name,bits) \
unsigned long name[BITS_TO_LONGS(bits)]
typedef u32 __kernel_dev_t;
2005-04-16 15:20:36 -07:00
typedef __kernel_fd_set fd_set;
typedef __kernel_dev_t dev_t;
2021-02-10 21:51:02 +01:00
typedef __kernel_ulong_t ino_t;
2005-04-16 15:20:36 -07:00
typedef __kernel_mode_t mode_t;
2011-07-26 17:04:15 -04:00
typedef unsigned short umode_t;
typedef u32 nlink_t;
2005-04-16 15:20:36 -07:00
typedef __kernel_off_t off_t;
typedef __kernel_pid_t pid_t;
typedef __kernel_daddr_t daddr_t;
typedef __kernel_key_t key_t;
typedef __kernel_suseconds_t suseconds_t;
typedef __kernel_timer_t timer_t;
typedef __kernel_clockid_t clockid_t;
typedef __kernel_mqd_t mqd_t;
2006-09-30 23:27:11 -07:00
typedef _Bool bool;
2005-04-16 15:20:36 -07:00
typedef __kernel_uid32_t uid_t;
typedef __kernel_gid32_t gid_t;
typedef __kernel_uid16_t uid16_t;
typedef __kernel_gid16_t gid16_t;
2007-10-29 05:11:28 +00:00
typedef unsigned long uintptr_t;
2015-11-20 12:12:21 +01:00
#ifdef CONFIG_HAVE_UID16
2005-04-16 15:20:36 -07:00
/* This is defined by include/asm-{arch}/posix_types.h */
typedef __kernel_old_uid_t old_uid_t;
typedef __kernel_old_gid_t old_gid_t;
#endif /* CONFIG_UID16 */
2008-02-08 04:21:24 -08:00
#if defined(__GNUC__)
2005-04-16 15:20:36 -07:00
typedef __kernel_loff_t loff_t;
#endif
/*
* The following typedefs are also protected by individual ifdefs for
* historical reasons:
*/
#ifndef _SIZE_T
#define _SIZE_T
typedef __kernel_size_t size_t;
#endif
#ifndef _SSIZE_T
#define _SSIZE_T
typedef __kernel_ssize_t ssize_t;
#endif
#ifndef _PTRDIFF_T
#define _PTRDIFF_T
typedef __kernel_ptrdiff_t ptrdiff_t;
#endif
#ifndef _CLOCK_T
#define _CLOCK_T
typedef __kernel_clock_t clock_t;
#endif
#ifndef _CADDR_T
#define _CADDR_T
typedef __kernel_caddr_t caddr_t;
#endif
/* bsd */
typedef unsigned char u_char;
typedef unsigned short u_short;
typedef unsigned int u_int;
typedef unsigned long u_long;
/* sysv */
typedef unsigned char unchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;
#ifndef __BIT_TYPES_DEFINED__
#define __BIT_TYPES_DEFINED__
typedef u8 u_int8_t;
typedef s8 int8_t;
typedef u16 u_int16_t;
typedef s16 int16_t;
typedef u32 u_int32_t;
typedef s32 int32_t;
2005-04-16 15:20:36 -07:00
#endif /* !(__BIT_TYPES_DEFINED__) */
typedef u8 uint8_t;
typedef u16 uint16_t;
typedef u32 uint32_t;
2005-04-16 15:20:36 -07:00
2008-02-08 04:21:24 -08:00
#if defined(__GNUC__)
typedef u64 uint64_t;
typedef u64 u_int64_t;
typedef s64 int64_t;
2005-04-16 15:20:36 -07:00
#endif
2010-10-26 14:21:10 -07:00
/* this is a special 64bit data type that is 8-byte aligned */
#define aligned_u64 __aligned_u64
#define aligned_be64 __aligned_be64
#define aligned_le64 __aligned_le64
2006-10-04 13:37:45 +02:00
/**
2005-04-16 15:20:36 -07:00
* The type used for indexing onto a disc or disc partition.
2006-10-04 13:37:45 +02:00
*
* Linux always considers sectors to be 512 bytes long independently
* of the devices real block size.
2008-12-12 09:51:16 +01:00
*
* blkcnt_t is the type of the inode's block count.
2005-04-16 15:20:36 -07:00
*/
typedef u64 sector_t;
typedef u64 blkcnt_t;
2006-03-26 01:37:52 -08:00
2005-04-16 15:20:36 -07:00
/*
* The type of an index into the pagecache.
2005-04-16 15:20:36 -07:00
*/
#define pgoff_t unsigned long
2015-05-27 17:23:51 -07:00
/*
* A dma_addr_t can hold any valid DMA address, i.e., any address returned
* by the DMA API.
*
* If the DMA API only uses 32-bit addresses, dma_addr_t need only be 32
* bits wide. Bus addresses, e.g., PCI BARs, may be wider than 32 bits,
* but drivers do memory-mapped I/O to ioremapped kernel virtual addresses,
* so they don't care about the size of the actual bus addresses.
*/
#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
typedef u64 dma_addr_t;
#else
typedef u32 dma_addr_t;
2015-05-27 17:23:51 -07:00
#endif
typedef unsigned int __bitwise gfp_t;
typedef unsigned int __bitwise slab_flags_t;
typedef unsigned int __bitwise fmode_t;
#ifdef CONFIG_PHYS_ADDR_T_64BIT
typedef u64 phys_addr_t;
#else
typedef u32 phys_addr_t;
#endif
typedef phys_addr_t resource_size_t;
2012-04-03 07:11:04 -06:00
/*
* This type is the placeholder for a hardware interrupt number. It has to be
* big enough to enclose whatever representation is used by a given platform.
*/
typedef unsigned long irq_hw_number_t;
2009-01-06 14:40:39 -08:00
typedef struct {
int counter;
2009-01-06 14:40:39 -08:00
} atomic_t;
#define ATOMIC_INIT(i) { (i) }
2009-01-06 14:40:39 -08:00
#ifdef CONFIG_64BIT
typedef struct {
s64 counter;
2009-01-06 14:40:39 -08:00
} atomic64_t;
#endif
struct list_head {
struct list_head *next, *prev;
};
struct hlist_head {
struct hlist_node *first;
};
struct hlist_node {
struct hlist_node *next, **pprev;
};
2005-04-16 15:20:36 -07:00
struct ustat {
__kernel_daddr_t f_tfree;
2021-02-10 21:51:02 +01:00
#ifdef CONFIG_ARCH_32BIT_USTAT_F_TINODE
unsigned int f_tinode;
#else
unsigned long f_tinode;
#endif
2005-04-16 15:20:36 -07:00
char f_fname[6];
char f_fpack[6];
};
2011-05-31 21:03:55 -07:00
/**
* struct callback_head - callback structure for use with RCU and task_work
2011-05-31 21:03:55 -07:00
* @next: next update requests in a list
* @func: actual update function to call after the grace period.
*
* The struct is aligned to size of pointer. On most architectures it happens
* naturally due ABI requirements, but some architectures (like CRIS) have
* weird ABI and we need to ask it explicitly.
*
* The alignment is required to guarantee that bit 0 of @next will be
* clear under normal conditions -- as long as we use call_rcu() or
* call_srcu() to queue the callback.
*
* This guarantee is important for few reasons:
* - future call_rcu_lazy() will make use of lower bits in the pointer;
2017-12-21 16:16:10 +08:00
* - the structure shares storage space in struct page with @compound_head,
* which encode PageTail() in bit 0. The guarantee is needed to avoid
* false-positive PageTail().
2011-05-31 21:03:55 -07:00
*/
struct callback_head {
struct callback_head *next;
void (*func)(struct callback_head *head);
} __attribute__((aligned(sizeof(void *))));
#define rcu_head callback_head
2011-05-31 21:03:55 -07:00
2015-06-10 12:53:06 -07:00
typedef void (*rcu_callback_t)(struct rcu_head *head);
typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
2022-03-16 13:24:07 +01:00
typedef void (*swap_r_func_t)(void *a, void *b, int size, const void *priv);
typedef void (*swap_func_t)(void *a, void *b, int size);
typedef int (*cmp_r_func_t)(const void *a, const void *b, const void *priv);
typedef int (*cmp_func_t)(const void *a, const void *b);
2009-02-06 20:47:58 +05:30
#endif /* __ASSEMBLY__ */
2005-04-16 15:20:36 -07:00
#endif /* _LINUX_TYPES_H */