mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
48b62a1a97
xfs_mntupdate already is completely Linux specific due to the VFS flags passed in, so it might aswell be merged into xfs_fs_remount. SGI-PV: 981498 SGI-Modid: xfs-linux-melb:xfs-kern:31185a Signed-off-by: Christoph Hellwig <hch@infradead.org> Signed-off-by: David Chinner <dgc@sgi.com> Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
20 lines
513 B
C
20 lines
513 B
C
#ifndef _XFS_VFSOPS_H
|
|
#define _XFS_VFSOPS_H 1
|
|
|
|
struct cred;
|
|
struct xfs_fid;
|
|
struct inode;
|
|
struct kstatfs;
|
|
struct xfs_mount;
|
|
struct xfs_mount_args;
|
|
|
|
int xfs_mount(struct xfs_mount *mp, struct xfs_mount_args *args,
|
|
struct cred *credp);
|
|
int xfs_unmount(struct xfs_mount *mp, int flags, struct cred *credp);
|
|
int xfs_sync(struct xfs_mount *mp, int flags);
|
|
void xfs_do_force_shutdown(struct xfs_mount *mp, int flags, char *fname,
|
|
int lnnum);
|
|
void xfs_attr_quiesce(struct xfs_mount *mp);
|
|
|
|
#endif /* _XFS_VFSOPS_H */
|