|
|
| version 1.16, 2007/08/24 16:16:26 | version 1.17, 2007/09/11 06:12:43 |
|---|---|
| Line 54 xfs_fs_decode_fh( | Line 54 xfs_fs_decode_fh( |
| struct dentry *de), | struct dentry *de), |
| void *context) | void *context) |
| { | { |
| xfs_fid2_t ifid; | xfs_fid_t ifid; |
| xfs_fid2_t pfid; | xfs_fid_t pfid; |
| void *parent = NULL; | void *parent = NULL; |
| int is64 = 0; | int is64 = 0; |
| __u32 *p = fh; | __u32 *p = fh; |
| Line 144 xfs_fs_get_dentry( | Line 144 xfs_fs_get_dentry( |
| struct dentry *result; | struct dentry *result; |
| int error; | int error; |
| error = xfs_vget(XFS_M(sb), &vp, (fid_t *)data); | error = xfs_vget(XFS_M(sb), &vp, data); |
| if (error || vp == NULL) | if (error || vp == NULL) |
| return ERR_PTR(-ESTALE) ; | return ERR_PTR(-ESTALE) ; |