initfs: Remove uid and gid fields for inodes

The initfs creation code always puts 0 in them.
This commit is contained in:
bjorn3
2026-02-17 20:00:04 +01:00
parent 3e62ff9ec7
commit edd1c249e9
5 changed files with 4 additions and 17 deletions
-2
View File
@@ -87,8 +87,6 @@ pub struct InodeHeader {
pub type_and_mode: U32,
pub length: U32,
pub offset: Offset,
pub uid: U32,
pub gid: U32,
}
pub const MODE_MASK: u32 = 0xFFF;