Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | #ifndef __XFS_SUPER_H__ |
| 19 | #define __XFS_SUPER_H__ |
| 20 | |
Christoph Hellwig | a569425 | 2007-07-17 04:04:28 -0700 | [diff] [blame] | 21 | #include <linux/exportfs.h> |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #ifdef CONFIG_XFS_QUOTA |
Christoph Hellwig | a05931c | 2012-03-13 08:52:37 +0000 | [diff] [blame] | 24 | extern int xfs_qm_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | extern void xfs_qm_exit(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #else |
Christoph Hellwig | a05931c | 2012-03-13 08:52:37 +0000 | [diff] [blame] | 27 | # define xfs_qm_init() (0) |
| 28 | # define xfs_qm_exit() do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #endif |
| 30 | |
| 31 | #ifdef CONFIG_XFS_POSIX_ACL |
| 32 | # define XFS_ACL_STRING "ACLs, " |
| 33 | # define set_posix_acl_flag(sb) ((sb)->s_flags |= MS_POSIXACL) |
| 34 | #else |
| 35 | # define XFS_ACL_STRING |
| 36 | # define set_posix_acl_flag(sb) do { } while (0) |
| 37 | #endif |
| 38 | |
Eric Sandeen | f7d3c34 | 2008-04-17 16:50:22 +1000 | [diff] [blame] | 39 | #define XFS_SECURITY_STRING "security attributes, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | #ifdef CONFIG_XFS_RT |
| 42 | # define XFS_REALTIME_STRING "realtime, " |
| 43 | #else |
| 44 | # define XFS_REALTIME_STRING |
| 45 | #endif |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #ifdef DEBUG |
| 48 | # define XFS_DBG_STRING "debug" |
| 49 | #else |
| 50 | # define XFS_DBG_STRING "no debug" |
| 51 | #endif |
| 52 | |
Christoph Hellwig | 668332e | 2010-10-06 18:41:15 +0000 | [diff] [blame] | 53 | #define XFS_VERSION_STRING "SGI XFS" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #define XFS_BUILD_OPTIONS XFS_ACL_STRING \ |
| 55 | XFS_SECURITY_STRING \ |
| 56 | XFS_REALTIME_STRING \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | XFS_DBG_STRING /* DBG must be last */ |
| 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | struct xfs_inode; |
| 60 | struct xfs_mount; |
| 61 | struct xfs_buftarg; |
| 62 | struct block_device; |
| 63 | |
| 64 | extern __uint64_t xfs_max_file_offset(unsigned int); |
| 65 | |
Dave Chinner | 9aa0500 | 2012-10-08 21:56:04 +1100 | [diff] [blame] | 66 | extern void xfs_flush_inodes(struct xfs_mount *mp); |
Christoph Hellwig | f538d4d | 2005-11-02 10:26:59 +1100 | [diff] [blame] | 67 | extern void xfs_blkdev_issue_flush(struct xfs_buftarg *); |
Eric Sandeen | 9de67c3 | 2014-07-24 20:51:54 +1000 | [diff] [blame] | 68 | extern xfs_agnumber_t xfs_set_inode32(struct xfs_mount *, xfs_agnumber_t agcount); |
| 69 | extern xfs_agnumber_t xfs_set_inode64(struct xfs_mount *, xfs_agnumber_t agcount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Christoph Hellwig | 3965516 | 2007-10-21 16:42:17 -0700 | [diff] [blame] | 71 | extern const struct export_operations xfs_export_operations; |
Stephen Hemminger | 46e5876 | 2010-05-13 17:53:20 -0700 | [diff] [blame] | 72 | extern const struct xattr_handler *xfs_xattr_handlers[]; |
Alexey Dobriyan | 0d54b21 | 2009-09-21 17:01:09 -0700 | [diff] [blame] | 73 | extern const struct quotactl_ops xfs_quotactl_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Christoph Hellwig | b267ce9 | 2007-08-30 17:21:30 +1000 | [diff] [blame] | 75 | #define XFS_M(sb) ((struct xfs_mount *)((sb)->s_fs_info)) |
Christoph Hellwig | b09cc77 | 2007-08-30 17:19:57 +1000 | [diff] [blame] | 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | #endif /* __XFS_SUPER_H__ */ |