aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_da_btree.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_da_btree.c')
-rw-r--r--fs/xfs/xfs_da_btree.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/fs/xfs/xfs_da_btree.c b/fs/xfs/xfs_da_btree.c
index cccf69edb81b..aea37df4aa62 100644
--- a/fs/xfs/xfs_da_btree.c
+++ b/fs/xfs/xfs_da_btree.c
@@ -2165,21 +2165,6 @@ xfs_da_reada_buf(
2165 return rval; 2165 return rval;
2166} 2166}
2167 2167
2168/*
2169 * Calculate the number of bits needed to hold i different values.
2170 */
2171uint
2172xfs_da_log2_roundup(uint i)
2173{
2174 uint rval;
2175
2176 for (rval = 0; rval < NBBY * sizeof(i); rval++) {
2177 if ((1 << rval) >= i)
2178 break;
2179 }
2180 return(rval);
2181}
2182
2183kmem_zone_t *xfs_da_state_zone; /* anchor for state struct zone */ 2168kmem_zone_t *xfs_da_state_zone; /* anchor for state struct zone */
2184kmem_zone_t *xfs_dabuf_zone; /* dabuf zone */ 2169kmem_zone_t *xfs_dabuf_zone; /* dabuf zone */
2185 2170