add directory Linux-0.98

This commit is contained in:
gohigh
2024-02-19 00:21:16 -05:00
parent 265896c4ae
commit 56596ada90
13765 changed files with 3471432 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#ifndef _EXT_FS_SB
#define _EXT_FS_SB
/*
* extended-fs super-block data in memory
*/
struct ext_sb_info {
unsigned long s_ninodes;
unsigned long s_nzones;
unsigned long s_firstdatazone;
unsigned long s_log_zone_size;
unsigned long s_max_size;
unsigned long s_firstfreeblocknumber;
unsigned long s_freeblockscount;
struct buffer_head * s_firstfreeblock;
unsigned long s_firstfreeinodenumber;
unsigned long s_freeinodescount;
struct buffer_head * s_firstfreeinodeblock;
};
#endif