aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2008-11-27 22:23:36 -0500
committerNiv Sardi <xaiki@sgi.com>2008-11-30 19:36:46 -0500
commit00dd4029e9afa642c2b26dc3aac834322ac29b4a (patch)
tree175fdc9fa1569d66d42e75bec46fb8001e140346 /fs/xfs
parentf35642e2f89f2b0379e929bd9027342365abc839 (diff)
[XFS] remove bhv_statvfs_t typedef
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Dave Chinner <david@fromorbit.com> Signed-off-by: Niv Sardi <xaiki@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r--fs/xfs/linux-2.6/xfs_vfs.h2
-rw-r--r--fs/xfs/quota/xfs_qm_bhv.c4
-rw-r--r--fs/xfs/xfs_mount.h2
3 files changed, 3 insertions, 5 deletions
diff --git a/fs/xfs/linux-2.6/xfs_vfs.h b/fs/xfs/linux-2.6/xfs_vfs.h
index 0ab60bc2e761..8de5c4c95cb6 100644
--- a/fs/xfs/linux-2.6/xfs_vfs.h
+++ b/fs/xfs/linux-2.6/xfs_vfs.h
@@ -31,8 +31,6 @@ struct xfs_inode;
31struct xfs_mount; 31struct xfs_mount;
32struct xfs_mount_args; 32struct xfs_mount_args;
33 33
34typedef struct kstatfs bhv_statvfs_t;
35
36#define SHUTDOWN_META_IO_ERROR 0x0001 /* write attempt to metadata failed */ 34#define SHUTDOWN_META_IO_ERROR 0x0001 /* write attempt to metadata failed */
37#define SHUTDOWN_LOG_IO_ERROR 0x0002 /* write attempt to the log failed */ 35#define SHUTDOWN_LOG_IO_ERROR 0x0002 /* write attempt to the log failed */
38#define SHUTDOWN_FORCE_UMOUNT 0x0004 /* shutdown from a forced unmount */ 36#define SHUTDOWN_FORCE_UMOUNT 0x0004 /* shutdown from a forced unmount */
diff --git a/fs/xfs/quota/xfs_qm_bhv.c b/fs/xfs/quota/xfs_qm_bhv.c
index 9556df9f7dab..bc6c5cca3e12 100644
--- a/fs/xfs/quota/xfs_qm_bhv.c
+++ b/fs/xfs/quota/xfs_qm_bhv.c
@@ -50,7 +50,7 @@
50 50
51STATIC void 51STATIC void
52xfs_fill_statvfs_from_dquot( 52xfs_fill_statvfs_from_dquot(
53 bhv_statvfs_t *statp, 53 struct kstatfs *statp,
54 xfs_disk_dquot_t *dp) 54 xfs_disk_dquot_t *dp)
55{ 55{
56 __uint64_t limit; 56 __uint64_t limit;
@@ -87,7 +87,7 @@ xfs_fill_statvfs_from_dquot(
87STATIC void 87STATIC void
88xfs_qm_statvfs( 88xfs_qm_statvfs(
89 xfs_inode_t *ip, 89 xfs_inode_t *ip,
90 bhv_statvfs_t *statp) 90 struct kstatfs *statp)
91{ 91{
92 xfs_mount_t *mp = ip->i_mount; 92 xfs_mount_t *mp = ip->i_mount;
93 xfs_dquot_t *dqp; 93 xfs_dquot_t *dqp;
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h
index e3f618c84e47..d70314302520 100644
--- a/fs/xfs/xfs_mount.h
+++ b/fs/xfs/xfs_mount.h
@@ -134,7 +134,7 @@ typedef struct xfs_dquot * (*xfs_dqvopchown_t)(
134 struct xfs_dquot **, struct xfs_dquot *); 134 struct xfs_dquot **, struct xfs_dquot *);
135typedef int (*xfs_dqvopchownresv_t)(struct xfs_trans *, struct xfs_inode *, 135typedef int (*xfs_dqvopchownresv_t)(struct xfs_trans *, struct xfs_inode *,
136 struct xfs_dquot *, struct xfs_dquot *, uint); 136 struct xfs_dquot *, struct xfs_dquot *, uint);
137typedef void (*xfs_dqstatvfs_t)(struct xfs_inode *, bhv_statvfs_t *); 137typedef void (*xfs_dqstatvfs_t)(struct xfs_inode *, struct kstatfs *);
138typedef int (*xfs_dqsync_t)(struct xfs_mount *, int flags); 138typedef int (*xfs_dqsync_t)(struct xfs_mount *, int flags);
139typedef int (*xfs_quotactl_t)(struct xfs_mount *, int, int, xfs_caddr_t); 139typedef int (*xfs_quotactl_t)(struct xfs_mount *, int, int, xfs_caddr_t);
140 140