Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-x86_64 / types.h
blob32bd1426b523dec2d2e251a9902295f6f628f023
1 #ifndef _X86_64_TYPES_H
2 #define _X86_64_TYPES_H
4 #ifndef __ASSEMBLY__
6 typedef unsigned short umode_t;
8 /*
9 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
10 * header files exported to user space
13 typedef __signed__ char __s8;
14 typedef unsigned char __u8;
16 typedef __signed__ short __s16;
17 typedef unsigned short __u16;
19 typedef __signed__ int __s32;
20 typedef unsigned int __u32;
22 typedef __signed__ long long __s64;
23 typedef unsigned long long __u64;
25 #endif /* __ASSEMBLY__ */
28 * These aren't exported outside the kernel to avoid name space clashes
30 #ifdef __KERNEL__
32 #define BITS_PER_LONG 64
34 #ifndef __ASSEMBLY__
36 typedef signed char s8;
37 typedef unsigned char u8;
39 typedef signed short s16;
40 typedef unsigned short u16;
42 typedef signed int s32;
43 typedef unsigned int u32;
45 typedef signed long long s64;
46 typedef unsigned long long u64;
48 typedef u64 dma64_addr_t;
49 typedef u64 dma_addr_t;
51 typedef u64 sector_t;
52 #define HAVE_SECTOR_T
54 typedef unsigned short kmem_bufctl_t;
56 #endif /* __ASSEMBLY__ */
58 #endif /* __KERNEL__ */
60 #endif