1219820Sjeff/*-
2219820Sjeff * Copyright (c) 2010 Isilon Systems, Inc.
3219820Sjeff * Copyright (c) 2010 iX Systems, Inc.
4219820Sjeff * Copyright (c) 2010 Panasas, Inc.
5219820Sjeff * All rights reserved.
6219820Sjeff *
7219820Sjeff * Redistribution and use in source and binary forms, with or without
8219820Sjeff * modification, are permitted provided that the following conditions
9219820Sjeff * are met:
10219820Sjeff * 1. Redistributions of source code must retain the above copyright
11219820Sjeff *    notice unmodified, this list of conditions, and the following
12219820Sjeff *    disclaimer.
13219820Sjeff * 2. Redistributions in binary form must reproduce the above copyright
14219820Sjeff *    notice, this list of conditions and the following disclaimer in the
15219820Sjeff *    documentation and/or other materials provided with the distribution.
16219820Sjeff *
17219820Sjeff * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18219820Sjeff * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19219820Sjeff * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20219820Sjeff * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21219820Sjeff * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22219820Sjeff * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23219820Sjeff * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24219820Sjeff * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25219820Sjeff * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26219820Sjeff * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27219820Sjeff */
28219820Sjeff#ifndef	_ASM_TYPES_H_
29219820Sjeff#define	_ASM_TYPES_H_
30219820Sjeff
31219820Sjefftypedef unsigned short umode_t;
32219820Sjeff
33228469Sedtypedef signed char __s8;
34219820Sjefftypedef unsigned char __u8;
35219820Sjeff
36228469Sedtypedef signed short __s16;
37219820Sjefftypedef unsigned short __u16;
38219820Sjeff
39228469Sedtypedef signed int __s32;
40219820Sjefftypedef unsigned int __u32;
41219820Sjeff
42219820Sjeff#if defined(__GNUC__) // && !defined(__STRICT_ANSI__)
43228469Sedtypedef signed long long __s64;
44219820Sjefftypedef unsigned long long __u64;
45219820Sjeff#endif
46219820Sjeff
47219820Sjeff#ifdef _KERNEL
48219820Sjeff
49219820Sjefftypedef signed char s8;
50219820Sjefftypedef unsigned char u8;
51219820Sjeff
52219820Sjefftypedef signed short s16;
53219820Sjefftypedef unsigned short u16;
54219820Sjeff
55219820Sjefftypedef signed int s32;
56219820Sjefftypedef unsigned int u32;
57219820Sjeff
58219820Sjefftypedef signed long long s64;
59219820Sjefftypedef unsigned long long u64;
60219820Sjeff
61219820Sjeff/* DMA addresses come in generic and 64-bit flavours.  */
62219820Sjefftypedef vm_paddr_t dma_addr_t;
63219820Sjefftypedef vm_paddr_t dma64_addr_t;
64219820Sjeff
65219820Sjeff#endif	/* _KERNEL */
66219820Sjeff
67219820Sjeff#endif	/* _ASM_TYPES_H_ */
68