| 193 | } |
| 194 | |
| 195 | void pg_shard_t::encode(ceph::buffer::list &bl) const |
| 196 | { |
| 197 | ENCODE_START(1, 1, bl); |
| 198 | encode(osd, bl); |
| 199 | encode(shard, bl); |
| 200 | ENCODE_FINISH(bl); |
| 201 | } |
| 202 | void pg_shard_t::decode(ceph::buffer::list::const_iterator &bl) |
| 203 | { |
| 204 | DECODE_START(1, bl); |
no test coverage detected