| 118 | } |
| 119 | |
| 120 | void filepath::encode(ceph::buffer::list& bl) const { |
| 121 | using ceph::encode; |
| 122 | __u8 struct_v = 1; |
| 123 | encode(struct_v, bl); |
| 124 | encode(ino, bl); |
| 125 | encode(path, bl); |
| 126 | } |
| 127 | |
| 128 | void filepath::decode(ceph::buffer::list::const_iterator& blp) { |
| 129 | using ceph::decode; |