Lines Matching refs:info
5050 struct xfs_btree_has_records *info = priv;
5055 if (info->outcome == XBTREE_RECPACKING_EMPTY) {
5056 info->outcome = XBTREE_RECPACKING_SPARSE;
5063 if (xfs_btree_masked_keycmp_lt(cur, &info->start_key, &rec_key,
5064 info->key_mask))
5074 key_contig = cur->bc_ops->keys_contiguous(cur, &info->high_key,
5075 &rec_key, info->key_mask);
5088 if (xfs_btree_masked_keycmp_gt(cur, &rec_high_key, &info->high_key,
5089 info->key_mask))
5090 info->high_key = rec_high_key; /* struct copy */
5117 struct xfs_btree_has_records info = {
5129 xfs_btree_key_from_irec(cur, &info.start_key, low);
5130 xfs_btree_key_from_irec(cur, &info.end_key, high);
5133 xfs_btree_has_records_helper, &info);
5139 if (info.outcome == XBTREE_RECPACKING_EMPTY)
5147 if (xfs_btree_masked_keycmp_ge(cur, &info.high_key, &info.end_key,
5149 info.outcome = XBTREE_RECPACKING_FULL;
5152 *outcome = info.outcome;