1219820Sjeff/*-
2219820Sjeff * Copyright (c) 2010 Isilon Systems, Inc.
3219820Sjeff * Copyright (c) 2010 iX Systems, Inc.
4219820Sjeff * Copyright (c) 2010 Panasas, Inc.
5328653Shselasky * Copyright (c) 2013-2017 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.
28289644Shselasky *
29289644Shselasky * $FreeBSD: stable/11/sys/compat/linuxkpi/common/include/linux/types.h 361179 2020-05-18 09:10:52Z hselasky $
30219820Sjeff */
31219820Sjeff#ifndef	_LINUX_TYPES_H_
32219820Sjeff#define	_LINUX_TYPES_H_
33219820Sjeff
34219820Sjeff#include <sys/cdefs.h>
35219820Sjeff#include <sys/types.h>
36270710Shselasky#include <sys/param.h>
37270710Shselasky#include <sys/systm.h>
38219820Sjeff#include <linux/compiler.h>
39219820Sjeff#include <asm/types.h>
40219820Sjeff
41270710Shselasky#ifndef __bitwise__
42270710Shselasky#ifdef __CHECKER__
43270710Shselasky#define __bitwise__ __attribute__((bitwise))
44270710Shselasky#else
45270710Shselasky#define __bitwise__
46228443Smdf#endif
47270710Shselasky#endif
48219820Sjeff
49270710Shselaskytypedef uint16_t __le16;
50270710Shselaskytypedef uint16_t __be16;
51270710Shselaskytypedef uint32_t __le32;
52270710Shselaskytypedef uint32_t __be32;
53270710Shselaskytypedef uint64_t __le64;
54270710Shselaskytypedef uint64_t __be64;
55255932Salfred
56361179Shselaskytypedef uint16_t __aligned_u16 __aligned(sizeof(uint16_t));
57361179Shselaskytypedef uint32_t __aligned_u32 __aligned(sizeof(uint32_t));
58361179Shselaskytypedef uint64_t __aligned_u64 __aligned(sizeof(uint64_t));
59361179Shselasky
60346392Sbztypedef unsigned short ushort;
61219820Sjefftypedef unsigned int    uint;
62346392Sbztypedef unsigned long ulong;
63219820Sjefftypedef unsigned gfp_t;
64219820Sjefftypedef uint64_t loff_t;
65219820Sjefftypedef vm_paddr_t resource_size_t;
66328653Shselaskytypedef uint16_t __bitwise__ __sum16;
67328653Shselaskytypedef unsigned long pgoff_t;
68337895Shselaskytypedef unsigned __poll_t;
69219820Sjeff
70270710Shselaskytypedef u64 phys_addr_t;
71270710Shselasky
72335434Shselaskytypedef size_t __kernel_size_t;
73335434Shselasky
74219820Sjeff#define	DECLARE_BITMAP(n, bits)						\
75219820Sjeff	unsigned long n[howmany(bits, sizeof(long) * 8)]
76219820Sjeff
77328653Shselaskytypedef unsigned long irq_hw_number_t;
78328653Shselasky
79328653Shselaskystruct rcu_head {
80328653Shselasky	void *raw[2];
81328653Shselasky} __aligned(sizeof(void *));
82328653Shselasky
83328653Shselaskytypedef void (*rcu_callback_t)(struct rcu_head *head);
84328653Shselaskytypedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
85328653Shselaskytypedef int linux_task_fn_t(void *data);
86328653Shselasky
87219820Sjeff#endif	/* _LINUX_TYPES_H_ */
88