| 44 | } |
| 45 | |
| 46 | const char *file_object_t::c_str() const { |
| 47 | if (!buf[0]) |
| 48 | snprintf(buf, sizeof(buf), "%llx.%08llx", (long long unsigned)ino, (long long unsigned)bno); |
| 49 | return buf; |
| 50 | } |
| 51 | |
| 52 | std::ostream& operator<<(std::ostream& out, const snapid_t& s) { |
| 53 | if (s == CEPH_NOSNAP) |
no outgoing calls
no test coverage detected