xref: /freebsd/sys/compat/linuxkpi/common/include/linux/kernel_stat.h (revision f570760e5fefc8544400ff3328c5f7dde8c8fcf0)
1*f570760eSJean-Sébastien Pédron /*-
2*f570760eSJean-Sébastien Pédron  * SPDX-License-Identifier: BSD-2-Clause
3*f570760eSJean-Sébastien Pédron  *
4*f570760eSJean-Sébastien Pédron  * Copyright (c) 2025 Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
5*f570760eSJean-Sébastien Pédron  *
6*f570760eSJean-Sébastien Pédron  * Redistribution and use in source and binary forms, with or without
7*f570760eSJean-Sébastien Pédron  * modification, are permitted provided that the following conditions are
8*f570760eSJean-Sébastien Pédron  * met:
9*f570760eSJean-Sébastien Pédron  * 1. Redistributions of source code must retain the above copyright
10*f570760eSJean-Sébastien Pédron  *    notice, this list of conditions and the following disclaimer.
11*f570760eSJean-Sébastien Pédron  * 2. Redistributions in binary form must reproduce the above copyright
12*f570760eSJean-Sébastien Pédron  *    notice, this list of conditions and the following disclaimer in
13*f570760eSJean-Sébastien Pédron  *    the documentation and/or other materials provided with the
14*f570760eSJean-Sébastien Pédron  *    distribution.
15*f570760eSJean-Sébastien Pédron  *
16*f570760eSJean-Sébastien Pédron  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17*f570760eSJean-Sébastien Pédron  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18*f570760eSJean-Sébastien Pédron  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19*f570760eSJean-Sébastien Pédron  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20*f570760eSJean-Sébastien Pédron  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21*f570760eSJean-Sébastien Pédron  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22*f570760eSJean-Sébastien Pédron  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23*f570760eSJean-Sébastien Pédron  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24*f570760eSJean-Sébastien Pédron  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25*f570760eSJean-Sébastien Pédron  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26*f570760eSJean-Sébastien Pédron  * SUCH DAMAGE.
27*f570760eSJean-Sébastien Pédron  */
28*f570760eSJean-Sébastien Pédron 
29*f570760eSJean-Sébastien Pédron #ifndef _LINUXKPI_LINUX_KERNEL_STAT_H_
30*f570760eSJean-Sébastien Pédron #define _LINUXKPI_LINUX_KERNEL_STAT_H_
31*f570760eSJean-Sébastien Pédron 
32*f570760eSJean-Sébastien Pédron #include <linux/interrupt.h>
33*f570760eSJean-Sébastien Pédron 
34*f570760eSJean-Sébastien Pédron #endif	/* _LINUXKPI_LINUX_KERNEL_STAT_H_ */
35