| 162 | ceph_abort(); |
| 163 | } |
| 164 | void get(int by) { |
| 165 | if (ref == 0) |
| 166 | first_get(); |
| 167 | ref++; |
| 168 | #ifdef MDS_REF_SET |
| 169 | if (ref_map.find(by) == ref_map.end()) |
| 170 | ref_map[by] = 0; |
| 171 | ref_map[by]++; |
| 172 | #endif |
| 173 | } |
| 174 | |
| 175 | void print_pin_set(std::ostream& out) const { |
| 176 | #ifdef MDS_REF_SET |
no test coverage detected