| 48 | |
| 49 | namespace fs::Ext2{ |
| 50 | enum ErrorAction{ |
| 51 | Continue = 1, // Continue |
| 52 | ReadOnly = 2, // Mount readonly |
| 53 | KernelPanic = 3, // Kernel Panic |
| 54 | }; |
| 55 | |
| 56 | enum Ext2InodeType { |
| 57 | BadInode = 1, |
nothing calls this directly
no outgoing calls
no test coverage detected