Commit 5125c15b authored by Russell Cattelan's avatar Russell Cattelan Committed by Nathan Scott

[XFS] Fix one more fsid_t type.

SGI Modid: 2.5.x-xfs:slinx:155873a
parent 23044294
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#define __XFS_VFS_H__ #define __XFS_VFS_H__
#include <linux/vfs.h> #include <linux/vfs.h>
#include "xfs_fs.h"
struct fid; struct fid;
struct cred; struct cred;
...@@ -46,8 +47,8 @@ typedef struct kstatfs xfs_statfs_t; ...@@ -46,8 +47,8 @@ typedef struct kstatfs xfs_statfs_t;
typedef struct vfs { typedef struct vfs {
u_int vfs_flag; /* flags */ u_int vfs_flag; /* flags */
fsid_t vfs_fsid; /* file system ID */ xfs_fsid_t vfs_fsid; /* file system ID */
fsid_t *vfs_altfsid; /* An ID fixed for life of FS */ xfs_fsid_t *vfs_altfsid; /* An ID fixed for life of FS */
bhv_head_t vfs_bh; /* head of vfs behavior chain */ bhv_head_t vfs_bh; /* head of vfs behavior chain */
struct super_block *vfs_super; /* Linux superblock structure */ struct super_block *vfs_super; /* Linux superblock structure */
struct task_struct *vfs_sync_task; struct task_struct *vfs_sync_task;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment