Use the returned alignment value to allocate aligned buffer for Direct I/O
| 323 | // Use the returned alignment value to allocate |
| 324 | // aligned buffer for Direct I/O |
| 325 | virtual size_t GetRequiredBufferAlignment() const override { |
| 326 | return file_->GetRequiredBufferAlignment(); |
| 327 | } |
| 328 | |
| 329 | // Write bytes in `data` at offset `offset`, Returns Status::OK() on success. |
| 330 | // Pass aligned buffer when use_direct_io() returns true. |
nothing calls this directly
no test coverage detected