diff options
author | Dave Chinner <dchinner@redhat.com> | 2014-06-06 01:15:59 -0400 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-06-06 01:15:59 -0400 |
commit | 8f66193c89f0b0259db6b27b4df3deb828c294f9 (patch) | |
tree | 333c24e2c4d901d044e5b2c3c820cb680919f73c /fs/xfs/xfs_dir2.h | |
parent | d6cf13051f31bf1a54b65643d0e578b3ca2f0692 (diff) |
xfs: convert m_dirblksize to xfs_da_geometry
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_dir2.h')
-rw-r--r-- | fs/xfs/xfs_dir2.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/fs/xfs/xfs_dir2.h b/fs/xfs/xfs_dir2.h index 7a85b9c1f849..9b709ae3ba1e 100644 --- a/fs/xfs/xfs_dir2.h +++ b/fs/xfs/xfs_dir2.h | |||
@@ -80,7 +80,7 @@ struct xfs_dir_ops { | |||
80 | struct xfs_dir3_icleaf_hdr *from); | 80 | struct xfs_dir3_icleaf_hdr *from); |
81 | void (*leaf_hdr_from_disk)(struct xfs_dir3_icleaf_hdr *to, | 81 | void (*leaf_hdr_from_disk)(struct xfs_dir3_icleaf_hdr *to, |
82 | struct xfs_dir2_leaf *from); | 82 | struct xfs_dir2_leaf *from); |
83 | int (*leaf_max_ents)(struct xfs_mount *mp); | 83 | int (*leaf_max_ents)(struct xfs_da_geometry *geo); |
84 | struct xfs_dir2_leaf_entry * | 84 | struct xfs_dir2_leaf_entry * |
85 | (*leaf_ents_p)(struct xfs_dir2_leaf *lp); | 85 | (*leaf_ents_p)(struct xfs_dir2_leaf *lp); |
86 | 86 | ||
@@ -97,10 +97,12 @@ struct xfs_dir_ops { | |||
97 | struct xfs_dir3_icfree_hdr *from); | 97 | struct xfs_dir3_icfree_hdr *from); |
98 | void (*free_hdr_from_disk)(struct xfs_dir3_icfree_hdr *to, | 98 | void (*free_hdr_from_disk)(struct xfs_dir3_icfree_hdr *to, |
99 | struct xfs_dir2_free *from); | 99 | struct xfs_dir2_free *from); |
100 | int (*free_max_bests)(struct xfs_mount *mp); | 100 | int (*free_max_bests)(struct xfs_da_geometry *geo); |
101 | __be16 * (*free_bests_p)(struct xfs_dir2_free *free); | 101 | __be16 * (*free_bests_p)(struct xfs_dir2_free *free); |
102 | xfs_dir2_db_t (*db_to_fdb)(struct xfs_mount *mp, xfs_dir2_db_t db); | 102 | xfs_dir2_db_t (*db_to_fdb)(struct xfs_da_geometry *geo, |
103 | int (*db_to_fdindex)(struct xfs_mount *mp, xfs_dir2_db_t db); | 103 | xfs_dir2_db_t db); |
104 | int (*db_to_fdindex)(struct xfs_da_geometry *geo, | ||
105 | xfs_dir2_db_t db); | ||
104 | }; | 106 | }; |
105 | 107 | ||
106 | extern const struct xfs_dir_ops * | 108 | extern const struct xfs_dir_ops * |