xfs_super.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 int xfs_qm_init(void);
  23. extern void xfs_qm_exit(void);
  24. #else
  25. # define xfs_qm_init() (0)
  26. # define xfs_qm_exit() do { } while (0)
  27. #endif
  28. #ifdef CONFIG_XFS_POSIX_ACL
  29. # define XFS_ACL_STRING "ACLs, "
  30. # define set_posix_acl_flag(sb) ((sb)->s_flags |= MS_POSIXACL)
  31. #else
  32. # define XFS_ACL_STRING
  33. # define set_posix_acl_flag(sb) do { } while (0)
  34. #endif
  35. #define XFS_SECURITY_STRING "security attributes, "
  36. #ifdef CONFIG_XFS_RT
  37. # define XFS_REALTIME_STRING "realtime, "
  38. #else
  39. # define XFS_REALTIME_STRING
  40. #endif
  41. #ifdef DEBUG
  42. # define XFS_DBG_STRING "debug"
  43. #else
  44. # define XFS_DBG_STRING "no debug"
  45. #endif
  46. #define XFS_VERSION_STRING "SGI XFS"
  47. #define XFS_BUILD_OPTIONS XFS_ACL_STRING \
  48. XFS_SECURITY_STRING \
  49. XFS_REALTIME_STRING \
  50. XFS_DBG_STRING /* DBG must be last */
  51. struct xfs_inode;
  52. struct xfs_mount;
  53. struct xfs_buftarg;
  54. struct block_device;
  55. extern __uint64_t xfs_max_file_offset(unsigned int);
  56. extern void xfs_flush_inodes(struct xfs_mount *mp);
  57. extern void xfs_blkdev_issue_flush(struct xfs_buftarg *);
  58. extern xfs_agnumber_t xfs_set_inode32(struct xfs_mount *, xfs_agnumber_t agcount);
  59. extern xfs_agnumber_t xfs_set_inode64(struct xfs_mount *, xfs_agnumber_t agcount);
  60. extern const struct export_operations xfs_export_operations;
  61. extern const struct xattr_handler *xfs_xattr_handlers[];
  62. extern const struct quotactl_ops xfs_quotactl_operations;
  63. extern void xfs_reinit_percpu_counters(struct xfs_mount *mp);
  64. #define XFS_M(sb) ((struct xfs_mount *)((sb)->s_fs_info))
  65. #endif /* __XFS_SUPER_H__ */