Skip to content
Snippets Groups Projects
Verified Commit 5abe28fd authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Update to RedoxFS 4

parent 97b1ae39
No related branches found
No related tags found
No related merge requests found
...@@ -14,16 +14,18 @@ struc Node ...@@ -14,16 +14,18 @@ struc Node
.ctime_nsec: resd 1 .ctime_nsec: resd 1
.mtime: resq 1 .mtime: resq 1
.mtime_nsec: resd 1 .mtime_nsec: resd 1
.name: resb 222 .atime: resq 1
.atime_nsec: resd 1
.name: resb 226
.parent: resq 1 .parent: resq 1
.next: resq 1 .next: resq 1
.extents: resb (BLOCK_SIZE - 272) .extents: resb (BLOCK_SIZE - 288)
endstruc endstruc
struc Header struc Header
; Signature, should be b"RedoxFS\0" ; Signature, should be b"RedoxFS\0"
.signature: resb 8 .signature: resb 8
; Version, should be 2 ; Version, should be 4
.version: resq 1, .version: resq 1,
; Disk ID, a 128-bit unique identifier ; Disk ID, a 128-bit unique identifier
.uuid: resb 16, .uuid: resb 16,
...@@ -217,7 +219,7 @@ redoxfs.open: ...@@ -217,7 +219,7 @@ redoxfs.open:
ret ret
.signature: db "RedoxFS",0 .signature: db "RedoxFS",0
.version: dq 3 .version: dq 4
redoxfs.root: redoxfs.root:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment