Fix build after removing a bunch of stuff.

This commit is contained in:
Drew Galbraith 2025-05-05 21:04:42 -07:00
parent dc801786b1
commit c645405ca8
7 changed files with 55 additions and 6 deletions

View file

@ -0,0 +1,28 @@
interface Denali {
method Read(ReadRequest) -> (ReadResponse);
method ReadMany(ReadManyRequest) -> (ReadResponse);
}
message DiskBlock {
u64 lba;
u64 size;
}
message ReadRequest {
u64 device_id;
DiskBlock block;
}
message ReadManyRequest {
u64 device_id;
repeated DiskBlock blocks;
}
message ReadResponse {
u64 device_id;
u64 size;
capability memory;
}