| 112 | } |
| 113 | |
| 114 | void filepath::append(const filepath& a) { |
| 115 | ceph_assert(a.pure_relative()); |
| 116 | for (unsigned i=0; i<a.depth(); i++) |
| 117 | push_dentry(a[i]); |
| 118 | } |
| 119 | |
| 120 | void filepath::encode(ceph::buffer::list& bl) const { |
| 121 | using ceph::encode; |
no test coverage detected