blob: 7861eea8349aa2e201520c7b06e2cffaf9d6be5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//! AFS Extent Types
pub const SpanKey = extern struct {
key_length: u16 = 0,
channel_type: u8 = 0,
padding: u8 = 0,
node_id: u32 = 0,
start_cell: u32 = 0,
};
pub const SpanRecord = extern struct {
start_cell: u64 = 0,
cell_count: u64 = 0,
};
|