diff options
author | Christoph Hellwig <hch@infradead.org> | 2007-08-28 21:53:12 -0400 |
---|---|---|
committer | Tim Shimmin <tes@chook.melbourne.sgi.com> | 2007-10-15 21:40:24 -0400 |
commit | 0a74cd1964501fdb577176f14ed3d02b8e148127 (patch) | |
tree | ec4aa3dff46b141cd60734bb6c8a0c6b6a2e7111 /fs/xfs/linux-2.6/xfs_vfs.h | |
parent | 2aeaa258c0527026228c43148ec6dffdc56bea1c (diff) |
[XFS] kill struct bhv_vnode
Now that struct bhv_vnode is empty we can just kill it. Retain bhv_vnode_t
as a typedef for struct inode for the time being until all the fallout is
cleaned up.
SGI-PV: 969608
SGI-Modid: xfs-linux-melb:xfs-kern:29500a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_vfs.h')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_vfs.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/fs/xfs/linux-2.6/xfs_vfs.h b/fs/xfs/linux-2.6/xfs_vfs.h index 75994e1318bc..768ffa96e62b 100644 --- a/fs/xfs/linux-2.6/xfs_vfs.h +++ b/fs/xfs/linux-2.6/xfs_vfs.h | |||
@@ -22,7 +22,7 @@ | |||
22 | #include "xfs_fs.h" | 22 | #include "xfs_fs.h" |
23 | 23 | ||
24 | struct bhv_vfs; | 24 | struct bhv_vfs; |
25 | struct bhv_vnode; | 25 | struct inode; |
26 | 26 | ||
27 | struct fid; | 27 | struct fid; |
28 | struct cred; | 28 | struct cred; |
@@ -124,15 +124,15 @@ typedef int (*vfs_showargs_t)(bhv_desc_t *, struct seq_file *); | |||
124 | typedef int (*vfs_unmount_t)(bhv_desc_t *, int, struct cred *); | 124 | typedef int (*vfs_unmount_t)(bhv_desc_t *, int, struct cred *); |
125 | typedef int (*vfs_mntupdate_t)(bhv_desc_t *, int *, | 125 | typedef int (*vfs_mntupdate_t)(bhv_desc_t *, int *, |
126 | struct xfs_mount_args *); | 126 | struct xfs_mount_args *); |
127 | typedef int (*vfs_root_t)(bhv_desc_t *, struct bhv_vnode **); | 127 | typedef int (*vfs_root_t)(bhv_desc_t *, struct inode **); |
128 | typedef int (*vfs_statvfs_t)(bhv_desc_t *, bhv_statvfs_t *, | 128 | typedef int (*vfs_statvfs_t)(bhv_desc_t *, bhv_statvfs_t *, |
129 | struct bhv_vnode *); | 129 | struct inode *); |
130 | typedef int (*vfs_sync_t)(bhv_desc_t *, int, struct cred *); | 130 | typedef int (*vfs_sync_t)(bhv_desc_t *, int, struct cred *); |
131 | typedef int (*vfs_vget_t)(bhv_desc_t *, struct bhv_vnode **, struct fid *); | 131 | typedef int (*vfs_vget_t)(bhv_desc_t *, struct inode **, struct fid *); |
132 | typedef int (*vfs_dmapiops_t)(bhv_desc_t *, caddr_t); | 132 | typedef int (*vfs_dmapiops_t)(bhv_desc_t *, caddr_t); |
133 | 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); |
134 | typedef void (*vfs_init_vnode_t)(bhv_desc_t *, | 134 | typedef void (*vfs_init_vnode_t)(bhv_desc_t *, |
135 | struct bhv_vnode *, struct xfs_inode *, int); | 135 | struct inode *, struct xfs_inode *, int); |
136 | 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); |
137 | typedef void (*vfs_freeze_t)(bhv_desc_t *); | 137 | typedef void (*vfs_freeze_t)(bhv_desc_t *); |
138 | 138 | ||
@@ -196,13 +196,13 @@ extern int vfs_parseargs(bhv_desc_t *, char *, struct xfs_mount_args *, int); | |||
196 | extern int vfs_showargs(bhv_desc_t *, struct seq_file *); | 196 | extern int vfs_showargs(bhv_desc_t *, struct seq_file *); |
197 | extern int vfs_unmount(bhv_desc_t *, int, struct cred *); | 197 | extern int vfs_unmount(bhv_desc_t *, int, struct cred *); |
198 | extern int vfs_mntupdate(bhv_desc_t *, int *, struct xfs_mount_args *); | 198 | extern int vfs_mntupdate(bhv_desc_t *, int *, struct xfs_mount_args *); |
199 | extern int vfs_root(bhv_desc_t *, struct bhv_vnode **); | 199 | extern int vfs_root(bhv_desc_t *, struct inode **); |
200 | extern int vfs_statvfs(bhv_desc_t *, bhv_statvfs_t *, struct bhv_vnode *); | 200 | extern int vfs_statvfs(bhv_desc_t *, bhv_statvfs_t *, struct inode *); |
201 | extern int vfs_sync(bhv_desc_t *, int, struct cred *); | 201 | extern int vfs_sync(bhv_desc_t *, int, struct cred *); |
202 | extern int vfs_vget(bhv_desc_t *, struct bhv_vnode **, struct fid *); | 202 | extern int vfs_vget(bhv_desc_t *, struct inode **, struct fid *); |
203 | extern int vfs_dmapiops(bhv_desc_t *, caddr_t); | 203 | extern int vfs_dmapiops(bhv_desc_t *, caddr_t); |
204 | extern int vfs_quotactl(bhv_desc_t *, int, int, caddr_t); | 204 | extern int vfs_quotactl(bhv_desc_t *, int, int, caddr_t); |
205 | extern void vfs_init_vnode(bhv_desc_t *, struct bhv_vnode *, struct xfs_inode *, int); | 205 | extern void vfs_init_vnode(bhv_desc_t *, struct inode *, struct xfs_inode *, int); |
206 | extern void vfs_force_shutdown(bhv_desc_t *, int, char *, int); | 206 | extern void vfs_force_shutdown(bhv_desc_t *, int, char *, int); |
207 | extern void vfs_freeze(bhv_desc_t *); | 207 | extern void vfs_freeze(bhv_desc_t *); |
208 | 208 | ||