xfs.h 403 B

12345678910111213141516171819202122232425
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
  4. * All Rights Reserved.
  5. */
  6. #ifndef __XFS_H__
  7. #define __XFS_H__
  8. #ifdef CONFIG_XFS_DEBUG
  9. #define DEBUG 1
  10. #define XFS_BUF_LOCK_TRACKING 1
  11. #endif
  12. #ifdef CONFIG_XFS_ASSERT_FATAL
  13. #define XFS_ASSERT_FATAL 1
  14. #endif
  15. #ifdef CONFIG_XFS_WARN
  16. #define XFS_WARN 1
  17. #endif
  18. #include "xfs_linux.h"
  19. #endif /* __XFS_H__ */