| 1103 | } |
| 1104 | |
| 1105 | void cap_reconnect_t::encode_old(bufferlist& bl) const { |
| 1106 | using ceph::encode; |
| 1107 | encode(path, bl); |
| 1108 | capinfo.flock_len = flockbl.length(); |
| 1109 | encode(capinfo, bl); |
| 1110 | ceph::encode_nohead(flockbl, bl); |
| 1111 | } |
| 1112 | |
| 1113 | void cap_reconnect_t::decode(bufferlist::const_iterator& bl) { |
| 1114 | DECODE_START(2, bl); |
no test coverage detected