Home
last modified time | relevance | path

Searched refs:pg_upmap_items (Results 1 – 3 of 3) sorted by relevance

/linux/net/ceph/
H A Ddebugfs.c126 for (n = rb_first(&map->pg_upmap_items); n; n = rb_next(n)) { in osdmap_show()
132 for (i = 0; i < pg->pg_upmap_items.len; i++) in osdmap_show()
134 pg->pg_upmap_items.from_to[i][0], in osdmap_show()
135 pg->pg_upmap_items.from_to[i][1]); in osdmap_show()
H A Dosdmap.c1124 map->pg_upmap_items = RB_ROOT; in ceph_osdmap_alloc()
1160 while (!RB_EMPTY_ROOT(&map->pg_upmap_items)) { in ceph_osdmap_destroy()
1162 rb_entry(rb_first(&map->pg_upmap_items), in ceph_osdmap_destroy()
1164 rb_erase(&pg->node, &map->pg_upmap_items); in ceph_osdmap_destroy()
1618 pg->pg_upmap_items.len = len; in __decode_pg_upmap_items()
1620 pg->pg_upmap_items.from_to[i][0] = ceph_decode_32(p); in __decode_pg_upmap_items()
1621 pg->pg_upmap_items.from_to[i][1] = ceph_decode_32(p); in __decode_pg_upmap_items()
1632 return decode_pg_mapping(p, end, &map->pg_upmap_items, in decode_pg_upmap_items()
1639 return decode_pg_mapping(p, end, &map->pg_upmap_items, in decode_new_pg_upmap_items()
1646 return decode_pg_mapping(p, end, &map->pg_upmap_items, NULL, true); in decode_old_pg_upmap_items()
[all …]
/linux/include/linux/ceph/
H A Dosdmap.h166 } pg_upmap_items; member
187 struct rb_root pg_upmap_items; /* from -> to within raw set */ member