| 277 | void SsdFile::read( |
| 278 | uint64_t offset, |
| 279 | const std::vector<folly::Range<char*>>& buffers) { |
| 280 | readFile_->preadv(offset, buffers); |
| 281 | } |
| 282 | |
| 283 | std::optional<std::pair<uint64_t, int32_t>> SsdFile::getSpace( |
| 284 | const std::vector<CachePin>& pins, |
| 285 | int32_t begin) { |
| 286 | int32_t next = begin; |
no test coverage detected