Starting work on inode decoding

This commit is contained in:
Caleb Gardner
2025-05-12 13:46:46 -05:00
parent 58e89c0981
commit b3a5ff8f94
7 changed files with 236 additions and 81 deletions
+19
View File
@@ -0,0 +1,19 @@
pub const DeviceInode = packed struct {
hard_links: u32,
device: u32,
};
pub const ExtDeviceInode = packed struct {
hard_links: u32,
device: u32,
xattr_index: u32,
};
pub const IPCInode = packed struct {
hard_links: u32,
};
pub const ExtIPCInode = packed struct {
hard_links: u32,
xattr_index: u32,
};