blob: c42724f8c80210f6d50708ced60269c1dd3cc703 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_TYPES_H
2#define _LINUX_TYPES_H
3
Jaswinder Singh Rajput9d506382009-02-08 11:00:25 +05304#include <asm/types.h>
5
Jaswinder Singh Rajput527bdfe2009-02-06 20:47:58 +05306#ifndef __ASSEMBLY__
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#define DECLARE_BITMAP(name,bits) \
10 unsigned long name[BITS_TO_LONGS(bits)]
Bryan O'Sullivanf7589f22006-02-01 03:05:15 -080011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#endif
13
14#include <linux/posix_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Arnd Bergmann3a471cb2009-02-26 00:51:45 +010016#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18typedef __u32 __kernel_dev_t;
19
20typedef __kernel_fd_set fd_set;
21typedef __kernel_dev_t dev_t;
22typedef __kernel_ino_t ino_t;
23typedef __kernel_mode_t mode_t;
24typedef __kernel_nlink_t nlink_t;
25typedef __kernel_off_t off_t;
26typedef __kernel_pid_t pid_t;
27typedef __kernel_daddr_t daddr_t;
28typedef __kernel_key_t key_t;
29typedef __kernel_suseconds_t suseconds_t;
30typedef __kernel_timer_t timer_t;
31typedef __kernel_clockid_t clockid_t;
32typedef __kernel_mqd_t mqd_t;
33
Richard Knutsson6e218282006-09-30 23:27:11 -070034typedef _Bool bool;
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036typedef __kernel_uid32_t uid_t;
37typedef __kernel_gid32_t gid_t;
38typedef __kernel_uid16_t uid16_t;
39typedef __kernel_gid16_t gid16_t;
40
Al Viro142956a2007-10-29 05:11:28 +000041typedef unsigned long uintptr_t;
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#ifdef CONFIG_UID16
44/* This is defined by include/asm-{arch}/posix_types.h */
45typedef __kernel_old_uid_t old_uid_t;
46typedef __kernel_old_gid_t old_gid_t;
47#endif /* CONFIG_UID16 */
48
Mike Frysinger7437a512008-02-08 04:21:24 -080049#if defined(__GNUC__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050typedef __kernel_loff_t loff_t;
51#endif
52
53/*
54 * The following typedefs are also protected by individual ifdefs for
55 * historical reasons:
56 */
57#ifndef _SIZE_T
58#define _SIZE_T
59typedef __kernel_size_t size_t;
60#endif
61
62#ifndef _SSIZE_T
63#define _SSIZE_T
64typedef __kernel_ssize_t ssize_t;
65#endif
66
67#ifndef _PTRDIFF_T
68#define _PTRDIFF_T
69typedef __kernel_ptrdiff_t ptrdiff_t;
70#endif
71
72#ifndef _TIME_T
73#define _TIME_T
74typedef __kernel_time_t time_t;
75#endif
76
77#ifndef _CLOCK_T
78#define _CLOCK_T
79typedef __kernel_clock_t clock_t;
80#endif
81
82#ifndef _CADDR_T
83#define _CADDR_T
84typedef __kernel_caddr_t caddr_t;
85#endif
86
87/* bsd */
88typedef unsigned char u_char;
89typedef unsigned short u_short;
90typedef unsigned int u_int;
91typedef unsigned long u_long;
92
93/* sysv */
94typedef unsigned char unchar;
95typedef unsigned short ushort;
96typedef unsigned int uint;
97typedef unsigned long ulong;
98
99#ifndef __BIT_TYPES_DEFINED__
100#define __BIT_TYPES_DEFINED__
101
102typedef __u8 u_int8_t;
103typedef __s8 int8_t;
104typedef __u16 u_int16_t;
105typedef __s16 int16_t;
106typedef __u32 u_int32_t;
107typedef __s32 int32_t;
108
109#endif /* !(__BIT_TYPES_DEFINED__) */
110
111typedef __u8 uint8_t;
112typedef __u16 uint16_t;
113typedef __u32 uint32_t;
114
Mike Frysinger7437a512008-02-08 04:21:24 -0800115#if defined(__GNUC__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116typedef __u64 uint64_t;
117typedef __u64 u_int64_t;
118typedef __s64 int64_t;
119#endif
120
Harald Welte0ba2c6e2005-08-13 13:55:44 -0700121/* this is a special 64bit data type that is 8-byte aligned */
Jan Engelhardtc82a5cb2008-01-31 03:57:36 -0800122#define aligned_u64 __u64 __attribute__((aligned(8)))
Al Viro98a4a862006-11-08 00:26:51 -0800123#define aligned_be64 __be64 __attribute__((aligned(8)))
124#define aligned_le64 __le64 __attribute__((aligned(8)))
Harald Welte0ba2c6e2005-08-13 13:55:44 -0700125
Roger Gammans2c2345c2006-10-04 13:37:45 +0200126/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 * The type used for indexing onto a disc or disc partition.
Roger Gammans2c2345c2006-10-04 13:37:45 +0200128 *
129 * Linux always considers sectors to be 512 bytes long independently
130 * of the devices real block size.
Jens Axboeb3a6ffe2008-12-12 09:51:16 +0100131 *
132 * blkcnt_t is the type of the inode's block count.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 */
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200134#ifdef CONFIG_LBDAF
Matthew Wilcoxe6243862006-12-04 03:38:31 -0700135typedef u64 sector_t;
Matthew Wilcoxe6243862006-12-04 03:38:31 -0700136typedef u64 blkcnt_t;
137#else
Jens Axboeb3a6ffe2008-12-12 09:51:16 +0100138typedef unsigned long sector_t;
Takashi Satoa0f62ac2006-03-26 01:37:52 -0800139typedef unsigned long blkcnt_t;
140#endif
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * The type of an index into the pagecache. Use a #define so asm/types.h
144 * can override it.
145 */
146#ifndef pgoff_t
147#define pgoff_t unsigned long
148#endif
149
Arnd Bergmann3a471cb2009-02-26 00:51:45 +0100150#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152/*
153 * Below are truly Linux-specific types that should never collide with
154 * any application/library that wants linux/types.h.
155 */
156
157#ifdef __CHECKER__
Al Viroaf4ca452005-10-21 02:55:38 -0400158#define __bitwise__ __attribute__((bitwise))
159#else
160#define __bitwise__
161#endif
162#ifdef __CHECK_ENDIAN__
163#define __bitwise __bitwise__
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#else
165#define __bitwise
166#endif
167
168typedef __u16 __bitwise __le16;
169typedef __u16 __bitwise __be16;
170typedef __u32 __bitwise __le32;
171typedef __u32 __bitwise __be32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172typedef __u64 __bitwise __le64;
173typedef __u64 __bitwise __be64;
Detlef Riekenberg940fbf42009-01-07 10:11:44 +0100174
Al Viro2bc35792006-11-14 21:14:18 -0800175typedef __u16 __bitwise __sum16;
176typedef __u32 __bitwise __wsum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Al Virodd0fc662005-10-07 07:46:04 +0100178#ifdef __KERNEL__
Al Viroaf4ca452005-10-21 02:55:38 -0400179typedef unsigned __bitwise__ gfp_t;
Al Viroaeb5d722008-09-02 15:28:45 -0400180typedef unsigned __bitwise__ fmode_t;
Greg Kroah-Hartmancf7c7122006-06-12 15:49:31 -0700181
Jeremy Fitzhardinge600715d2008-09-11 01:31:45 -0700182#ifdef CONFIG_PHYS_ADDR_T_64BIT
183typedef u64 phys_addr_t;
184#else
185typedef u32 phys_addr_t;
186#endif
187
Jeremy Fitzhardinge8308c542008-09-11 01:31:50 -0700188typedef phys_addr_t resource_size_t;
189
Matthew Wilcoxea4354672009-01-06 14:40:39 -0800190typedef struct {
191 volatile int counter;
192} atomic_t;
193
194#ifdef CONFIG_64BIT
195typedef struct {
196 volatile long counter;
197} atomic64_t;
198#endif
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200struct ustat {
201 __kernel_daddr_t f_tfree;
202 __kernel_ino_t f_tinode;
203 char f_fname[6];
204 char f_fpack[6];
205};
206
maximilian attems6c7c6af2008-05-23 13:04:29 -0700207#endif /* __KERNEL__ */
Jaswinder Singh Rajput527bdfe2009-02-06 20:47:58 +0530208#endif /* __ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209#endif /* _LINUX_TYPES_H */