diff options
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_vfs.h')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_vfs.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/xfs/linux-2.6/xfs_vfs.h b/fs/xfs/linux-2.6/xfs_vfs.h index e63dbdbfd8a0..e63b2d012f0c 100644 --- a/fs/xfs/linux-2.6/xfs_vfs.h +++ b/fs/xfs/linux-2.6/xfs_vfs.h | |||
@@ -127,7 +127,6 @@ typedef int (*vfs_statvfs_t)(bhv_desc_t *, bhv_statvfs_t *, | |||
127 | struct inode *); | 127 | struct inode *); |
128 | typedef int (*vfs_sync_t)(bhv_desc_t *, int, struct cred *); | 128 | typedef int (*vfs_sync_t)(bhv_desc_t *, int, struct cred *); |
129 | typedef int (*vfs_vget_t)(bhv_desc_t *, struct inode **, struct fid *); | 129 | typedef int (*vfs_vget_t)(bhv_desc_t *, struct inode **, struct fid *); |
130 | typedef int (*vfs_quotactl_t)(bhv_desc_t *, int, int, caddr_t); | ||
131 | typedef void (*vfs_init_vnode_t)(bhv_desc_t *, | 130 | typedef void (*vfs_init_vnode_t)(bhv_desc_t *, |
132 | struct inode *, struct xfs_inode *, int); | 131 | struct inode *, struct xfs_inode *, int); |
133 | typedef void (*vfs_force_shutdown_t)(bhv_desc_t *, int, char *, int); | 132 | typedef void (*vfs_force_shutdown_t)(bhv_desc_t *, int, char *, int); |
@@ -144,7 +143,6 @@ typedef struct bhv_vfsops { | |||
144 | vfs_statvfs_t vfs_statvfs; /* file system statistics */ | 143 | vfs_statvfs_t vfs_statvfs; /* file system statistics */ |
145 | vfs_sync_t vfs_sync; /* flush files */ | 144 | vfs_sync_t vfs_sync; /* flush files */ |
146 | vfs_vget_t vfs_vget; /* get vnode from fid */ | 145 | vfs_vget_t vfs_vget; /* get vnode from fid */ |
147 | vfs_quotactl_t vfs_quotactl; /* disk quota */ | ||
148 | vfs_init_vnode_t vfs_init_vnode; /* initialize a new vnode */ | 146 | vfs_init_vnode_t vfs_init_vnode; /* initialize a new vnode */ |
149 | vfs_force_shutdown_t vfs_force_shutdown; /* crash and burn */ | 147 | vfs_force_shutdown_t vfs_force_shutdown; /* crash and burn */ |
150 | vfs_freeze_t vfs_freeze; /* freeze fs for snapshot */ | 148 | vfs_freeze_t vfs_freeze; /* freeze fs for snapshot */ |
@@ -163,7 +161,6 @@ typedef struct bhv_vfsops { | |||
163 | #define bhv_vfs_statvfs(v, sp,vp) vfs_statvfs(VFSHEAD(v), sp,vp) | 161 | #define bhv_vfs_statvfs(v, sp,vp) vfs_statvfs(VFSHEAD(v), sp,vp) |
164 | #define bhv_vfs_sync(v, flag,cr) vfs_sync(VFSHEAD(v), flag,cr) | 162 | #define bhv_vfs_sync(v, flag,cr) vfs_sync(VFSHEAD(v), flag,cr) |
165 | #define bhv_vfs_vget(v, vpp,fidp) vfs_vget(VFSHEAD(v), vpp,fidp) | 163 | #define bhv_vfs_vget(v, vpp,fidp) vfs_vget(VFSHEAD(v), vpp,fidp) |
166 | #define bhv_vfs_quotactl(v, c,id,p) vfs_quotactl(VFSHEAD(v), c,id,p) | ||
167 | #define bhv_vfs_init_vnode(v, vp,b,ul) vfs_init_vnode(VFSHEAD(v), vp,b,ul) | 164 | #define bhv_vfs_init_vnode(v, vp,b,ul) vfs_init_vnode(VFSHEAD(v), vp,b,ul) |
168 | #define bhv_vfs_force_shutdown(v,u,f,l) vfs_force_shutdown(VFSHEAD(v), u,f,l) | 165 | #define bhv_vfs_force_shutdown(v,u,f,l) vfs_force_shutdown(VFSHEAD(v), u,f,l) |
169 | #define bhv_vfs_freeze(v) vfs_freeze(VFSHEAD(v)) | 166 | #define bhv_vfs_freeze(v) vfs_freeze(VFSHEAD(v)) |
@@ -180,7 +177,6 @@ typedef struct bhv_vfsops { | |||
180 | #define bhv_next_vfs_statvfs(b, sp,vp) vfs_statvfs(b, sp,vp) | 177 | #define bhv_next_vfs_statvfs(b, sp,vp) vfs_statvfs(b, sp,vp) |
181 | #define bhv_next_vfs_sync(b, flag,cr) vfs_sync(b, flag,cr) | 178 | #define bhv_next_vfs_sync(b, flag,cr) vfs_sync(b, flag,cr) |
182 | #define bhv_next_vfs_vget(b, vpp,fidp) vfs_vget(b, vpp,fidp) | 179 | #define bhv_next_vfs_vget(b, vpp,fidp) vfs_vget(b, vpp,fidp) |
183 | #define bhv_next_vfs_quotactl(b, c,id,p) vfs_quotactl(b, c,id,p) | ||
184 | #define bhv_next_vfs_init_vnode(b, vp,b2,ul) vfs_init_vnode(b, vp,b2,ul) | 180 | #define bhv_next_vfs_init_vnode(b, vp,b2,ul) vfs_init_vnode(b, vp,b2,ul) |
185 | #define bhv_next_force_shutdown(b, fl,f,l) vfs_force_shutdown(b, fl,f,l) | 181 | #define bhv_next_force_shutdown(b, fl,f,l) vfs_force_shutdown(b, fl,f,l) |
186 | #define bhv_next_vfs_freeze(b) vfs_freeze(b) | 182 | #define bhv_next_vfs_freeze(b) vfs_freeze(b) |
@@ -194,7 +190,6 @@ extern int vfs_root(bhv_desc_t *, struct inode **); | |||
194 | extern int vfs_statvfs(bhv_desc_t *, bhv_statvfs_t *, struct inode *); | 190 | extern int vfs_statvfs(bhv_desc_t *, bhv_statvfs_t *, struct inode *); |
195 | extern int vfs_sync(bhv_desc_t *, int, struct cred *); | 191 | extern int vfs_sync(bhv_desc_t *, int, struct cred *); |
196 | extern int vfs_vget(bhv_desc_t *, struct inode **, struct fid *); | 192 | extern int vfs_vget(bhv_desc_t *, struct inode **, struct fid *); |
197 | extern int vfs_quotactl(bhv_desc_t *, int, int, caddr_t); | ||
198 | extern void vfs_init_vnode(bhv_desc_t *, struct inode *, struct xfs_inode *, int); | 193 | extern void vfs_init_vnode(bhv_desc_t *, struct inode *, struct xfs_inode *, int); |
199 | extern void vfs_force_shutdown(bhv_desc_t *, int, char *, int); | 194 | extern void vfs_force_shutdown(bhv_desc_t *, int, char *, int); |
200 | extern void vfs_freeze(bhv_desc_t *); | 195 | extern void vfs_freeze(bhv_desc_t *); |