First iteration of denali server
This commit is contained in:
parent
82b1a5c4db
commit
ffa2d97a64
18 changed files with 273 additions and 39 deletions
20
sys/denali/include/denali/denali.h
Normal file
20
sys/denali/include/denali/denali.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#define DENALI_INVALID 0
|
||||
#define DENALI_READ 100
|
||||
|
||||
struct DenaliRead {
|
||||
uint64_t device_id;
|
||||
|
||||
uint64_t lba;
|
||||
uint64_t size;
|
||||
};
|
||||
|
||||
// Will also include a memory capability.
|
||||
struct DenaliReadResponse {
|
||||
uint64_t device_id;
|
||||
uint64_t lba;
|
||||
uint64_t size;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue