[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>
This commit is contained in:
committed by
Tim Shimmin
parent
2aeaa258c0
commit
0a74cd1964
@ -55,7 +55,6 @@ typedef struct xfs_trans_reservations {
|
||||
struct cred;
|
||||
struct log;
|
||||
struct bhv_vfs;
|
||||
struct bhv_vnode;
|
||||
struct xfs_mount_args;
|
||||
struct xfs_inode;
|
||||
struct xfs_iocore;
|
||||
@ -78,15 +77,15 @@ extern struct bhv_vfsops xfs_vfsops;
|
||||
* Prototypes and functions for the Data Migration subsystem.
|
||||
*/
|
||||
|
||||
typedef int (*xfs_send_data_t)(int, struct bhv_vnode *,
|
||||
typedef int (*xfs_send_data_t)(int, bhv_vnode_t *,
|
||||
xfs_off_t, size_t, int, bhv_vrwlock_t *);
|
||||
typedef int (*xfs_send_mmap_t)(struct vm_area_struct *, uint);
|
||||
typedef int (*xfs_send_destroy_t)(struct bhv_vnode *, dm_right_t);
|
||||
typedef int (*xfs_send_destroy_t)(bhv_vnode_t *, dm_right_t);
|
||||
typedef int (*xfs_send_namesp_t)(dm_eventtype_t, struct bhv_vfs *,
|
||||
struct bhv_vnode *,
|
||||
dm_right_t, struct bhv_vnode *, dm_right_t,
|
||||
bhv_vnode_t *,
|
||||
dm_right_t, bhv_vnode_t *, dm_right_t,
|
||||
char *, char *, mode_t, int, int);
|
||||
typedef void (*xfs_send_unmount_t)(struct bhv_vfs *, struct bhv_vnode *,
|
||||
typedef void (*xfs_send_unmount_t)(struct bhv_vfs *, bhv_vnode_t *,
|
||||
dm_right_t, mode_t, int, int);
|
||||
|
||||
typedef struct xfs_dmops {
|
||||
|
Reference in New Issue
Block a user