diff options
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_vfs.h')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_vfs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/xfs/linux-2.6/xfs_vfs.h b/fs/xfs/linux-2.6/xfs_vfs.h index dca3481aaafa..75994e1318bc 100644 --- a/fs/xfs/linux-2.6/xfs_vfs.h +++ b/fs/xfs/linux-2.6/xfs_vfs.h | |||
@@ -28,6 +28,7 @@ struct fid; | |||
28 | struct cred; | 28 | struct cred; |
29 | struct seq_file; | 29 | struct seq_file; |
30 | struct super_block; | 30 | struct super_block; |
31 | struct xfs_inode; | ||
31 | struct xfs_mount_args; | 32 | struct xfs_mount_args; |
32 | 33 | ||
33 | typedef struct kstatfs bhv_statvfs_t; | 34 | typedef struct kstatfs bhv_statvfs_t; |
@@ -131,7 +132,7 @@ typedef int (*vfs_vget_t)(bhv_desc_t *, struct bhv_vnode **, struct fid *); | |||
131 | typedef int (*vfs_dmapiops_t)(bhv_desc_t *, caddr_t); | 132 | typedef int (*vfs_dmapiops_t)(bhv_desc_t *, caddr_t); |
132 | typedef int (*vfs_quotactl_t)(bhv_desc_t *, int, int, caddr_t); | 133 | typedef int (*vfs_quotactl_t)(bhv_desc_t *, int, int, caddr_t); |
133 | typedef void (*vfs_init_vnode_t)(bhv_desc_t *, | 134 | typedef void (*vfs_init_vnode_t)(bhv_desc_t *, |
134 | struct bhv_vnode *, bhv_desc_t *, int); | 135 | struct bhv_vnode *, struct xfs_inode *, int); |
135 | typedef void (*vfs_force_shutdown_t)(bhv_desc_t *, int, char *, int); | 136 | typedef void (*vfs_force_shutdown_t)(bhv_desc_t *, int, char *, int); |
136 | typedef void (*vfs_freeze_t)(bhv_desc_t *); | 137 | typedef void (*vfs_freeze_t)(bhv_desc_t *); |
137 | 138 | ||
@@ -201,7 +202,7 @@ extern int vfs_sync(bhv_desc_t *, int, struct cred *); | |||
201 | extern int vfs_vget(bhv_desc_t *, struct bhv_vnode **, struct fid *); | 202 | extern int vfs_vget(bhv_desc_t *, struct bhv_vnode **, struct fid *); |
202 | extern int vfs_dmapiops(bhv_desc_t *, caddr_t); | 203 | extern int vfs_dmapiops(bhv_desc_t *, caddr_t); |
203 | extern int vfs_quotactl(bhv_desc_t *, int, int, caddr_t); | 204 | extern int vfs_quotactl(bhv_desc_t *, int, int, caddr_t); |
204 | extern void vfs_init_vnode(bhv_desc_t *, struct bhv_vnode *, bhv_desc_t *, int); | 205 | extern void vfs_init_vnode(bhv_desc_t *, struct bhv_vnode *, struct xfs_inode *, int); |
205 | extern void vfs_force_shutdown(bhv_desc_t *, int, char *, int); | 206 | extern void vfs_force_shutdown(bhv_desc_t *, int, char *, int); |
206 | extern void vfs_freeze(bhv_desc_t *); | 207 | extern void vfs_freeze(bhv_desc_t *); |
207 | 208 | ||