xfs_super.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright (c) 2000-2005 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write the Free Software Foundation,
  16. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef __XFS_SUPER_H__
  19. #define __XFS_SUPER_H__
  20. #include <linux/exportfs.h>
  21. #ifdef CONFIG_XFS_QUOTA
  22. extern void xfs_qm_init(void);
  23. extern void xfs_qm_exit(void);
  24. # define vfs_initquota() xfs_qm_init()
  25. # define vfs_exitquota() xfs_qm_exit()
  26. #else
  27. # define vfs_initquota() do { } while (0)
  28. # define vfs_exitquota() do { } while (0)
  29. #endif
  30. #ifdef CONFIG_XFS_POSIX_ACL
  31. # define XFS_ACL_STRING "ACLs, "
  32. # define set_posix_acl_flag(sb) ((sb)->s_flags |= MS_POSIXACL)
  33. #else
  34. # define XFS_ACL_STRING
  35. # define set_posix_acl_flag(sb) do { } while (0)
  36. #endif
  37. #define XFS_SECURITY_STRING "security attributes, "
  38. #ifdef CONFIG_XFS_RT
  39. # define XFS_REALTIME_STRING "realtime, "
  40. #else
  41. # define XFS_REALTIME_STRING
  42. #endif
  43. #if XFS_BIG_BLKNOS
  44. # if XFS_BIG_INUMS
  45. # define XFS_BIGFS_STRING "large block/inode numbers, "
  46. # else
  47. # define XFS_BIGFS_STRING "large block numbers, "
  48. # endif
  49. #else
  50. # define XFS_BIGFS_STRING
  51. #endif
  52. #ifdef CONFIG_XFS_TRACE
  53. # define XFS_TRACE_STRING "tracing, "
  54. #else
  55. # define XFS_TRACE_STRING
  56. #endif
  57. #ifdef CONFIG_XFS_DMAPI
  58. # define XFS_DMAPI_STRING "dmapi support, "
  59. #else
  60. # define XFS_DMAPI_STRING
  61. #endif
  62. #ifdef DEBUG
  63. # define XFS_DBG_STRING "debug"
  64. #else
  65. # define XFS_DBG_STRING "no debug"
  66. #endif
  67. #define XFS_BUILD_OPTIONS XFS_ACL_STRING \
  68. XFS_SECURITY_STRING \
  69. XFS_REALTIME_STRING \
  70. XFS_BIGFS_STRING \
  71. XFS_TRACE_STRING \
  72. XFS_DMAPI_STRING \
  73. XFS_DBG_STRING /* DBG must be last */
  74. struct xfs_inode;
  75. struct xfs_mount;
  76. struct xfs_buftarg;
  77. struct block_device;
  78. extern __uint64_t xfs_max_file_offset(unsigned int);
  79. extern void xfs_blkdev_issue_flush(struct xfs_buftarg *);
  80. extern const struct export_operations xfs_export_operations;
  81. extern struct xattr_handler *xfs_xattr_handlers[];
  82. extern struct quotactl_ops xfs_quotactl_operations;
  83. #define XFS_M(sb) ((struct xfs_mount *)((sb)->s_fs_info))
  84. #endif /* __XFS_SUPER_H__ */