xfs_super.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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_DMAPI
  22. # define vfs_insertdmapi(vfs) vfs_insertops(vfsp, &xfs_dmops)
  23. # define vfs_initdmapi() dmapi_init()
  24. # define vfs_exitdmapi() dmapi_uninit()
  25. #else
  26. # define vfs_insertdmapi(vfs) do { } while (0)
  27. # define vfs_initdmapi() do { } while (0)
  28. # define vfs_exitdmapi() do { } while (0)
  29. #endif
  30. #ifdef CONFIG_XFS_QUOTA
  31. # define vfs_insertquota(vfs) vfs_insertops(vfsp, &xfs_qmops)
  32. extern void xfs_qm_init(void);
  33. extern void xfs_qm_exit(void);
  34. # define vfs_initquota() xfs_qm_init()
  35. # define vfs_exitquota() xfs_qm_exit()
  36. #else
  37. # define vfs_insertquota(vfs) do { } while (0)
  38. # define vfs_initquota() do { } while (0)
  39. # define vfs_exitquota() do { } while (0)
  40. #endif
  41. #ifdef CONFIG_XFS_POSIX_ACL
  42. # define XFS_ACL_STRING "ACLs, "
  43. # define set_posix_acl_flag(sb) ((sb)->s_flags |= MS_POSIXACL)
  44. #else
  45. # define XFS_ACL_STRING
  46. # define set_posix_acl_flag(sb) do { } while (0)
  47. #endif
  48. #ifdef CONFIG_XFS_SECURITY
  49. # define XFS_SECURITY_STRING "security attributes, "
  50. # define ENOSECURITY 0
  51. #else
  52. # define XFS_SECURITY_STRING
  53. # define ENOSECURITY EOPNOTSUPP
  54. #endif
  55. #ifdef CONFIG_XFS_RT
  56. # define XFS_REALTIME_STRING "realtime, "
  57. #else
  58. # define XFS_REALTIME_STRING
  59. #endif
  60. #if XFS_BIG_BLKNOS
  61. # if XFS_BIG_INUMS
  62. # define XFS_BIGFS_STRING "large block/inode numbers, "
  63. # else
  64. # define XFS_BIGFS_STRING "large block numbers, "
  65. # endif
  66. #else
  67. # define XFS_BIGFS_STRING
  68. #endif
  69. #ifdef CONFIG_XFS_TRACE
  70. # define XFS_TRACE_STRING "tracing, "
  71. #else
  72. # define XFS_TRACE_STRING
  73. #endif
  74. #ifdef CONFIG_XFS_DMAPI
  75. # define XFS_DMAPI_STRING "dmapi support, "
  76. #else
  77. # define XFS_DMAPI_STRING
  78. #endif
  79. #ifdef DEBUG
  80. # define XFS_DBG_STRING "debug"
  81. #else
  82. # define XFS_DBG_STRING "no debug"
  83. #endif
  84. #define XFS_BUILD_OPTIONS XFS_ACL_STRING \
  85. XFS_SECURITY_STRING \
  86. XFS_REALTIME_STRING \
  87. XFS_BIGFS_STRING \
  88. XFS_TRACE_STRING \
  89. XFS_DMAPI_STRING \
  90. XFS_DBG_STRING /* DBG must be last */
  91. struct xfs_inode;
  92. struct xfs_mount;
  93. struct xfs_buftarg;
  94. struct block_device;
  95. extern __uint64_t xfs_max_file_offset(unsigned int);
  96. extern void xfs_initialize_vnode(struct xfs_mount *mp, bhv_vnode_t *vp,
  97. struct xfs_inode *ip);
  98. extern void xfs_flush_inode(struct xfs_inode *);
  99. extern void xfs_flush_device(struct xfs_inode *);
  100. extern int xfs_blkdev_get(struct xfs_mount *, const char *,
  101. struct block_device **);
  102. extern void xfs_blkdev_put(struct block_device *);
  103. extern void xfs_blkdev_issue_flush(struct xfs_buftarg *);
  104. extern struct export_operations xfs_export_operations;
  105. #define XFS_M(sb) ((struct xfs_mount *)((sb)->s_fs_info))
  106. #endif /* __XFS_SUPER_H__ */