1219820Sjeff/*-
2219820Sjeff * Copyright (c) 2010 Isilon Systems, Inc.
3219820Sjeff * Copyright (c) 2010 iX Systems, Inc.
4219820Sjeff * Copyright (c) 2010 Panasas, Inc.
5271127Shselasky * Copyright (c) 2013, 2014 Mellanox Technologies, Ltd.
6219820Sjeff * All rights reserved.
7219820Sjeff *
8219820Sjeff * Redistribution and use in source and binary forms, with or without
9219820Sjeff * modification, are permitted provided that the following conditions
10219820Sjeff * are met:
11219820Sjeff * 1. Redistributions of source code must retain the above copyright
12219820Sjeff *    notice unmodified, this list of conditions, and the following
13219820Sjeff *    disclaimer.
14219820Sjeff * 2. Redistributions in binary form must reproduce the above copyright
15219820Sjeff *    notice, this list of conditions and the following disclaimer in the
16219820Sjeff *    documentation and/or other materials provided with the distribution.
17219820Sjeff *
18219820Sjeff * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19219820Sjeff * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20219820Sjeff * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21219820Sjeff * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22219820Sjeff * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23219820Sjeff * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24219820Sjeff * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25219820Sjeff * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26219820Sjeff * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27219820Sjeff * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28219820Sjeff */
29271127Shselasky
30219820Sjeff#ifndef	_ASM_TYPES_H_
31219820Sjeff#define	_ASM_TYPES_H_
32219820Sjeff
33219820Sjeff#ifdef _KERNEL
34219820Sjeff
35271127Shselaskytypedef uint8_t u8;
36271127Shselaskytypedef uint8_t __u8;
37271127Shselaskytypedef uint16_t u16;
38271127Shselaskytypedef uint16_t __u16;
39271127Shselaskytypedef uint32_t u32;
40271127Shselaskytypedef uint32_t __u32;
41271127Shselaskytypedef uint64_t u64;
42271127Shselaskytypedef uint64_t __u64;
43219820Sjeff
44271127Shselaskytypedef int8_t s8;
45271127Shselaskytypedef int8_t __s8;
46271127Shselaskytypedef int16_t s16;
47271127Shselaskytypedef int16_t __s16;
48271127Shselaskytypedef int32_t s32;
49271127Shselaskytypedef int32_t __s32;
50271127Shselaskytypedef int64_t s64;
51271127Shselaskytypedef int64_t __s64;
52219820Sjeff
53219820Sjeff/* DMA addresses come in generic and 64-bit flavours.  */
54219820Sjefftypedef vm_paddr_t dma_addr_t;
55219820Sjefftypedef vm_paddr_t dma64_addr_t;
56219820Sjeff
57271127Shselaskytypedef unsigned short umode_t;
58271127Shselasky
59219820Sjeff#endif	/* _KERNEL */
60219820Sjeff
61219820Sjeff#endif	/* _ASM_TYPES_H_ */
62