Lines Matching defs:right_rec
1943 * Adjust the adjacent records (left_rec, right_rec) involved in a rotation.
1950 * right_rec: the record to the right of left_rec
1951 * right_child_el: is the child list pointed to by right_rec
1956 struct ocfs2_extent_rec *right_rec,
1982 right_end = le32_to_cpu(right_rec->e_cpos);
1983 right_end += le32_to_cpu(right_rec->e_int_clusters);
1985 right_rec->e_cpos = left_rec->e_cpos;
1986 le32_add_cpu(&right_rec->e_cpos, left_clusters);
1988 right_end -= le32_to_cpu(right_rec->e_cpos);
1989 right_rec->e_int_clusters = cpu_to_le32(right_end);
2042 struct ocfs2_extent_rec *left_rec, *right_rec;
2073 right_rec = &el->l_recs[0];
2075 ocfs2_adjust_adjacent_records(left_rec, right_rec, right_el);
3349 struct ocfs2_extent_rec *right_rec;
3372 right_rec = &right_el->l_recs[0];
3373 if (ocfs2_is_empty_extent(right_rec)) {
3375 right_rec = &right_el->l_recs[1];
3380 le32_to_cpu(right_rec->e_cpos));
3422 right_rec = &el->l_recs[index + 1];
3434 le32_add_cpu(&right_rec->e_cpos, -split_clusters);
3435 le64_add_cpu(&right_rec->e_blkno,
3438 le16_add_cpu(&right_rec->e_leaf_clusters, split_clusters);
3516 struct ocfs2_extent_rec *right_rec;
3525 right_rec = &el->l_recs[index];
3602 le32_add_cpu(&right_rec->e_cpos, split_clusters);
3603 le64_add_cpu(&right_rec->e_blkno,
3606 le16_add_cpu(&right_rec->e_leaf_clusters, -split_clusters);
3615 * In the situation that the right_rec is empty and the extent
3619 if (le16_to_cpu(right_rec->e_leaf_clusters) == 0 &&