Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 3 | * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc. |
4 | * All Rights Reserved. | ||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
6 | #ifndef __XFS_H__ | ||||
7 | #define __XFS_H__ | ||||
Vlad Apostolov | 93c189c | 2006-11-11 18:03:49 +1100 | [diff] [blame] | 8 | |
9 | #ifdef CONFIG_XFS_DEBUG | ||||
Vlad Apostolov | 93c189c | 2006-11-11 18:03:49 +1100 | [diff] [blame] | 10 | #define DEBUG 1 |
11 | #define XFS_BUF_LOCK_TRACKING 1 | ||||
Vlad Apostolov | 93c189c | 2006-11-11 18:03:49 +1100 | [diff] [blame] | 12 | #endif |
13 | |||||
Brian Foster | 1040960e | 2017-06-14 21:29:13 -0700 | [diff] [blame] | 14 | #ifdef CONFIG_XFS_ASSERT_FATAL |
15 | #define XFS_ASSERT_FATAL 1 | ||||
16 | #endif | ||||
17 | |||||
Dave Chinner | 742ae1e | 2013-04-30 21:39:34 +1000 | [diff] [blame] | 18 | #ifdef CONFIG_XFS_WARN |
19 | #define XFS_WARN 1 | ||||
20 | #endif | ||||
21 | |||||
22 | |||||
Alex Elder | 06f8e2d | 2011-08-12 13:57:55 -0500 | [diff] [blame] | 23 | #include "xfs_linux.h" |
24 | |||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #endif /* __XFS_H__ */ |