types.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_TYPES_H
  3. #define _LINUX_TYPES_H
  4. #define __EXPORTED_HEADERS__
  5. #include <uapi/linux/types.h>
  6. #ifndef __ASSEMBLY__
  7. #define DECLARE_BITMAP(name,bits) \
  8. unsigned long name[BITS_TO_LONGS(bits)]
  9. typedef u32 __kernel_dev_t;
  10. typedef __kernel_fd_set fd_set;
  11. typedef __kernel_dev_t dev_t;
  12. typedef __kernel_ino_t ino_t;
  13. typedef __kernel_mode_t mode_t;
  14. typedef unsigned short umode_t;
  15. typedef u32 nlink_t;
  16. typedef __kernel_off_t off_t;
  17. typedef __kernel_pid_t pid_t;
  18. typedef __kernel_daddr_t daddr_t;
  19. typedef __kernel_key_t key_t;
  20. typedef __kernel_suseconds_t suseconds_t;
  21. typedef __kernel_timer_t timer_t;
  22. typedef __kernel_clockid_t clockid_t;
  23. typedef __kernel_mqd_t mqd_t;
  24. typedef _Bool bool;
  25. typedef __kernel_uid32_t uid_t;
  26. typedef __kernel_gid32_t gid_t;
  27. typedef __kernel_uid16_t uid16_t;
  28. typedef __kernel_gid16_t gid16_t;
  29. typedef unsigned long uintptr_t;
  30. #ifdef CONFIG_HAVE_UID16
  31. /* This is defined by include/asm-{arch}/posix_types.h */
  32. typedef __kernel_old_uid_t old_uid_t;
  33. typedef __kernel_old_gid_t old_gid_t;
  34. #endif /* CONFIG_UID16 */
  35. #if defined(__GNUC__)
  36. typedef __kernel_loff_t loff_t;
  37. #endif
  38. /*
  39. * The following typedefs are also protected by individual ifdefs for
  40. * historical reasons:
  41. */
  42. #ifndef _SIZE_T
  43. #define _SIZE_T
  44. typedef __kernel_size_t size_t;
  45. #endif
  46. #ifndef _SSIZE_T
  47. #define _SSIZE_T
  48. typedef __kernel_ssize_t ssize_t;
  49. #endif
  50. #ifndef _PTRDIFF_T
  51. #define _PTRDIFF_T
  52. typedef __kernel_ptrdiff_t ptrdiff_t;
  53. #endif
  54. #ifndef _TIME_T
  55. #define _TIME_T
  56. typedef __kernel_time_t time_t;
  57. #endif
  58. #ifndef _CLOCK_T
  59. #define _CLOCK_T
  60. typedef __kernel_clock_t clock_t;
  61. #endif
  62. #ifndef _CADDR_T
  63. #define _CADDR_T
  64. typedef __kernel_caddr_t caddr_t;
  65. #endif
  66. /* bsd */
  67. typedef unsigned char u_char;
  68. typedef unsigned short u_short;
  69. typedef unsigned int u_int;
  70. typedef unsigned long u_long;
  71. /* sysv */
  72. typedef unsigned char unchar;
  73. typedef unsigned short ushort;
  74. typedef unsigned int uint;
  75. typedef unsigned long ulong;
  76. #ifndef __BIT_TYPES_DEFINED__
  77. #define __BIT_TYPES_DEFINED__
  78. typedef u8 u_int8_t;
  79. typedef s8 int8_t;
  80. typedef u16 u_int16_t;
  81. typedef s16 int16_t;
  82. typedef u32 u_int32_t;
  83. typedef s32 int32_t;
  84. #endif /* !(__BIT_TYPES_DEFINED__) */
  85. typedef u8 uint8_t;
  86. typedef u16 uint16_t;
  87. typedef u32 uint32_t;
  88. #if defined(__GNUC__)
  89. typedef u64 uint64_t;
  90. typedef u64 u_int64_t;
  91. typedef s64 int64_t;
  92. #endif
  93. /* this is a special 64bit data type that is 8-byte aligned */
  94. #define aligned_u64 __aligned_u64
  95. #define aligned_be64 __aligned_be64
  96. #define aligned_le64 __aligned_le64
  97. /**
  98. * The type used for indexing onto a disc or disc partition.
  99. *
  100. * Linux always considers sectors to be 512 bytes long independently
  101. * of the devices real block size.
  102. *
  103. * blkcnt_t is the type of the inode's block count.
  104. */
  105. #ifdef CONFIG_LBDAF
  106. typedef u64 sector_t;
  107. typedef u64 blkcnt_t;
  108. #else
  109. typedef unsigned long sector_t;
  110. typedef unsigned long blkcnt_t;
  111. #endif
  112. /*
  113. * The type of an index into the pagecache.
  114. */
  115. #define pgoff_t unsigned long
  116. /*
  117. * A dma_addr_t can hold any valid DMA address, i.e., any address returned
  118. * by the DMA API.
  119. *
  120. * If the DMA API only uses 32-bit addresses, dma_addr_t need only be 32
  121. * bits wide. Bus addresses, e.g., PCI BARs, may be wider than 32 bits,
  122. * but drivers do memory-mapped I/O to ioremapped kernel virtual addresses,
  123. * so they don't care about the size of the actual bus addresses.
  124. */
  125. #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
  126. typedef u64 dma_addr_t;
  127. #else
  128. typedef u32 dma_addr_t;
  129. #endif
  130. typedef unsigned __bitwise gfp_t;
  131. typedef unsigned __bitwise slab_flags_t;
  132. typedef unsigned __bitwise fmode_t;
  133. #ifdef CONFIG_PHYS_ADDR_T_64BIT
  134. typedef u64 phys_addr_t;
  135. #else
  136. typedef u32 phys_addr_t;
  137. #endif
  138. typedef phys_addr_t resource_size_t;
  139. /*
  140. * This type is the placeholder for a hardware interrupt number. It has to be
  141. * big enough to enclose whatever representation is used by a given platform.
  142. */
  143. typedef unsigned long irq_hw_number_t;
  144. typedef struct {
  145. int counter;
  146. } atomic_t;
  147. #ifdef CONFIG_64BIT
  148. typedef struct {
  149. long counter;
  150. } atomic64_t;
  151. #endif
  152. struct list_head {
  153. struct list_head *next, *prev;
  154. };
  155. struct hlist_head {
  156. struct hlist_node *first;
  157. };
  158. struct hlist_node {
  159. struct hlist_node *next, **pprev;
  160. };
  161. struct ustat {
  162. __kernel_daddr_t f_tfree;
  163. __kernel_ino_t f_tinode;
  164. char f_fname[6];
  165. char f_fpack[6];
  166. };
  167. /**
  168. * struct callback_head - callback structure for use with RCU and task_work
  169. * @next: next update requests in a list
  170. * @func: actual update function to call after the grace period.
  171. *
  172. * The struct is aligned to size of pointer. On most architectures it happens
  173. * naturally due ABI requirements, but some architectures (like CRIS) have
  174. * weird ABI and we need to ask it explicitly.
  175. *
  176. * The alignment is required to guarantee that bit 0 of @next will be
  177. * clear under normal conditions -- as long as we use call_rcu(),
  178. * call_rcu_bh(), call_rcu_sched(), or call_srcu() to queue callback.
  179. *
  180. * This guarantee is important for few reasons:
  181. * - future call_rcu_lazy() will make use of lower bits in the pointer;
  182. * - the structure shares storage space in struct page with @compound_head,
  183. * which encode PageTail() in bit 0. The guarantee is needed to avoid
  184. * false-positive PageTail().
  185. */
  186. struct callback_head {
  187. struct callback_head *next;
  188. void (*func)(struct callback_head *head);
  189. } __attribute__((aligned(sizeof(void *))));
  190. #define rcu_head callback_head
  191. typedef void (*rcu_callback_t)(struct rcu_head *head);
  192. typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
  193. #endif /* __ASSEMBLY__ */
  194. #endif /* _LINUX_TYPES_H */