2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2006-06-09 06:48:30 +00:00
|
|
|
* Copyright (c) 2000-2006 Silicon Graphics, Inc.
|
2005-11-02 03:58:39 +00:00
|
|
|
* All Rights Reserved.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-11-02 03:58:39 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
2005-04-16 22:20:36 +00:00
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
2005-11-02 03:58:39 +00:00
|
|
|
* This program is distributed in the hope that it would be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-11-02 03:58:39 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
#ifndef __XFS_VFS_H__
|
|
|
|
#define __XFS_VFS_H__
|
|
|
|
|
|
|
|
#include <linux/vfs.h>
|
|
|
|
#include "xfs_fs.h"
|
|
|
|
|
2007-08-29 01:53:12 +00:00
|
|
|
struct inode;
|
2006-06-09 07:07:12 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
struct fid;
|
|
|
|
struct cred;
|
|
|
|
struct seq_file;
|
|
|
|
struct super_block;
|
2007-08-29 00:58:01 +00:00
|
|
|
struct xfs_inode;
|
2007-08-30 07:20:39 +00:00
|
|
|
struct xfs_mount;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct xfs_mount_args;
|
|
|
|
|
2006-06-09 07:07:12 +00:00
|
|
|
typedef struct kstatfs bhv_statvfs_t;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-09 04:58:38 +00:00
|
|
|
#define SHUTDOWN_META_IO_ERROR 0x0001 /* write attempt to metadata failed */
|
|
|
|
#define SHUTDOWN_LOG_IO_ERROR 0x0002 /* write attempt to the log failed */
|
|
|
|
#define SHUTDOWN_FORCE_UMOUNT 0x0004 /* shutdown from a forced unmount */
|
|
|
|
#define SHUTDOWN_CORRUPT_INCORE 0x0008 /* corrupt in-memory data structures */
|
|
|
|
#define SHUTDOWN_REMOTE_REQ 0x0010 /* shutdown came from remote cell */
|
|
|
|
#define SHUTDOWN_DEVICE_REQ 0x0020 /* failed all paths to the device */
|
|
|
|
|
2007-08-30 07:21:30 +00:00
|
|
|
#define xfs_test_for_freeze(mp) ((mp)->m_super->s_frozen)
|
|
|
|
#define xfs_wait_for_freeze(mp,l) vfs_check_frozen((mp)->m_super, (l))
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif /* __XFS_VFS_H__ */
|