aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_mount.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2007-08-28 21:53:12 -0400
committerTim Shimmin <tes@chook.melbourne.sgi.com>2007-10-15 21:40:24 -0400
commit0a74cd1964501fdb577176f14ed3d02b8e148127 (patch)
treeec4aa3dff46b141cd60734bb6c8a0c6b6a2e7111 /fs/xfs/xfs_mount.h
parent2aeaa258c0527026228c43148ec6dffdc56bea1c (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/xfs_mount.h')
-rw-r--r--fs/xfs/xfs_mount.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h
index f5e32f43cd62..02b9a6ee9403 100644
--- a/fs/xfs/xfs_mount.h
+++ b/fs/xfs/xfs_mount.h
@@ -55,7 +55,6 @@ typedef struct xfs_trans_reservations {
55struct cred; 55struct cred;
56struct log; 56struct log;
57struct bhv_vfs; 57struct bhv_vfs;
58struct bhv_vnode;
59struct xfs_mount_args; 58struct xfs_mount_args;
60struct xfs_inode; 59struct xfs_inode;
61struct xfs_iocore; 60struct xfs_iocore;
@@ -78,15 +77,15 @@ extern struct bhv_vfsops xfs_vfsops;
78 * Prototypes and functions for the Data Migration subsystem. 77 * Prototypes and functions for the Data Migration subsystem.
79 */ 78 */
80 79
81typedef int (*xfs_send_data_t)(int, struct bhv_vnode *, 80typedef int (*xfs_send_data_t)(int, bhv_vnode_t *,
82 xfs_off_t, size_t, int, bhv_vrwlock_t *); 81 xfs_off_t, size_t, int, bhv_vrwlock_t *);
83typedef int (*xfs_send_mmap_t)(struct vm_area_struct *, uint); 82typedef int (*xfs_send_mmap_t)(struct vm_area_struct *, uint);
84typedef int (*xfs_send_destroy_t)(struct bhv_vnode *, dm_right_t); 83typedef int (*xfs_send_destroy_t)(bhv_vnode_t *, dm_right_t);
85typedef int (*xfs_send_namesp_t)(dm_eventtype_t, struct bhv_vfs *, 84typedef int (*xfs_send_namesp_t)(dm_eventtype_t, struct bhv_vfs *,
86 struct bhv_vnode *, 85 bhv_vnode_t *,
87 dm_right_t, struct bhv_vnode *, dm_right_t, 86 dm_right_t, bhv_vnode_t *, dm_right_t,
88 char *, char *, mode_t, int, int); 87 char *, char *, mode_t, int, int);
89typedef void (*xfs_send_unmount_t)(struct bhv_vfs *, struct bhv_vnode *, 88typedef void (*xfs_send_unmount_t)(struct bhv_vfs *, bhv_vnode_t *,
90 dm_right_t, mode_t, int, int); 89 dm_right_t, mode_t, int, int);
91 90
92typedef struct xfs_dmops { 91typedef struct xfs_dmops {