xref: /freebsd/sys/sys/exterr_cat.h (revision 7d495be8d4bd3a0e315233346b2f7267b8390612)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2025 The FreeBSD Foundation
5  * All rights reserved.
6  *
7  * This software were developed by Konstantin Belousov <kib@FreeBSD.org>
8  * under sponsorship from the FreeBSD Foundation.
9  */
10 
11 #ifndef _SYS_EXTERR_CAT_H_
12 #define	_SYS_EXTERR_CAT_H_
13 
14 #define	EXTERR_CAT_MMAP		1
15 #define	EXTERR_CAT_FILEDESC	2
16 #define	EXTERR_KTRACE		3	/* To allow inclusion of this
17 					   file into kern_ktrace.c */
18 #define	EXTERR_CAT_FUSE		4
19 #define	EXTERR_CAT_INOTIFY	5
20 #define	EXTERR_CAT_GENIO	6
21 #define	EXTERR_CAT_BRIDGE	7
22 #define	EXTERR_CAT_SWAP		8
23 #define	EXTERR_CAT_VFSSYSCALL	9
24 #define	EXTERR_CAT_VFSBIO	10
25 #define	EXTERR_CAT_GEOMVFS	11
26 #define	EXTERR_CAT_GEOM		12
27 
28 #endif
29 
30