blob: 50a3266c999e591dee1728aa02173c862bd73838 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * 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 Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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 Torvalds1da177e2005-04-16 15:20:36 -070017 */
18#ifndef __XFS_SUPER_H__
19#define __XFS_SUPER_H__
20
Christoph Hellwiga5694252007-07-17 04:04:28 -070021#include <linux/exportfs.h>
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#ifdef CONFIG_XFS_QUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -070024extern void xfs_qm_init(void);
25extern void xfs_qm_exit(void);
26# define vfs_initquota() xfs_qm_init()
27# define vfs_exitquota() xfs_qm_exit()
28#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070029# define vfs_initquota() do { } while (0)
30# define vfs_exitquota() do { } while (0)
31#endif
32
33#ifdef CONFIG_XFS_POSIX_ACL
34# define XFS_ACL_STRING "ACLs, "
35# define set_posix_acl_flag(sb) ((sb)->s_flags |= MS_POSIXACL)
36#else
37# define XFS_ACL_STRING
38# define set_posix_acl_flag(sb) do { } while (0)
39#endif
40
Eric Sandeenf7d3c342008-04-17 16:50:22 +100041#define XFS_SECURITY_STRING "security attributes, "
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#ifdef CONFIG_XFS_RT
44# define XFS_REALTIME_STRING "realtime, "
45#else
46# define XFS_REALTIME_STRING
47#endif
48
49#if XFS_BIG_BLKNOS
50# if XFS_BIG_INUMS
51# define XFS_BIGFS_STRING "large block/inode numbers, "
52# else
53# define XFS_BIGFS_STRING "large block numbers, "
54# endif
55#else
56# define XFS_BIGFS_STRING
57#endif
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#ifdef DEBUG
60# define XFS_DBG_STRING "debug"
61#else
62# define XFS_DBG_STRING "no debug"
63#endif
64
Christoph Hellwig668332e2010-10-06 18:41:15 +000065#define XFS_VERSION_STRING "SGI XFS"
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define XFS_BUILD_OPTIONS XFS_ACL_STRING \
67 XFS_SECURITY_STRING \
68 XFS_REALTIME_STRING \
69 XFS_BIGFS_STRING \
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 XFS_DBG_STRING /* DBG must be last */
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072struct xfs_inode;
73struct xfs_mount;
74struct xfs_buftarg;
75struct block_device;
76
77extern __uint64_t xfs_max_file_offset(unsigned int);
78
Christoph Hellwigf538d4d2005-11-02 10:26:59 +110079extern void xfs_blkdev_issue_flush(struct xfs_buftarg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Christoph Hellwig39655162007-10-21 16:42:17 -070081extern const struct export_operations xfs_export_operations;
Stephen Hemminger46e58762010-05-13 17:53:20 -070082extern const struct xattr_handler *xfs_xattr_handlers[];
Alexey Dobriyan0d54b212009-09-21 17:01:09 -070083extern const struct quotactl_ops xfs_quotactl_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Christoph Hellwigb267ce92007-08-30 17:21:30 +100085#define XFS_M(sb) ((struct xfs_mount *)((sb)->s_fs_info))
Christoph Hellwigb09cc772007-08-30 17:19:57 +100086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#endif /* __XFS_SUPER_H__ */