| 57 | } |
| 58 | |
| 59 | int DiskDevice::WriteDiskBlock(uint64_t lba, uint32_t count, void* buffer){ |
| 60 | return -1; |
| 61 | } |
| 62 | |
| 63 | ssize_t DiskDevice::Read(size_t off, size_t size, uint8_t* buffer){ |
| 64 | if(off % blocksize){ |
nothing calls this directly
no outgoing calls
no test coverage detected