]>
Commit | Line | Data |
---|---|---|
0b61f8a4 | 1 | // SPDX-License-Identifier: GPL-2.0 |
1da177e4 | 2 | /* |
7b718769 NS |
3 | * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc. |
4 | * All Rights Reserved. | |
1da177e4 LT |
5 | */ |
6 | #ifndef __XFS_H__ | |
7 | #define __XFS_H__ | |
93c189c1 VA |
8 | |
9 | #ifdef CONFIG_XFS_DEBUG | |
93c189c1 | 10 | #define DEBUG 1 |
93c189c1 VA |
11 | #endif |
12 | ||
1040960e BF |
13 | #ifdef CONFIG_XFS_ASSERT_FATAL |
14 | #define XFS_ASSERT_FATAL 1 | |
15 | #endif | |
16 | ||
742ae1e3 DC |
17 | #ifdef CONFIG_XFS_WARN |
18 | #define XFS_WARN 1 | |
19 | #endif | |
20 | ||
21 | ||
06f8e2d6 AE |
22 | #include "xfs_linux.h" |
23 | ||
1da177e4 | 24 | #endif /* __XFS_H__ */ |