xv6-cs450/fs.h
kaashoek ea2909b6b5 user-level malloc (untested)
nit in sbrk
indirect block
fix dup to share fd struct
2006-08-24 02:44:41 +00:00

45 lines
814 B
C

// on-disk file system format
#define BSIZE 512 // block size
// sector 1 (2nd sector)
struct superblock{
uint size;
uint nblocks;
uint ninodes;
};
#define NADDRS NDIRECT+1
#define NDIRECT 12
#define INDIRECT 12
#define NINDIRECT (BSIZE / sizeof(uint))
#define MAXFILE (NDIRECT + NINDIRECT)
struct dinode {
short type;
short major;
short minor;
short nlink;
uint size;
uint addrs[NADDRS];
};
#define T_DIR 1
#define T_FILE 2
#define T_DEV 3
// sector 0 is unused, sector 1 is superblock, inodes start at sector 2
#define IPB (BSIZE / sizeof(struct dinode))
#define IBLOCK(inum) (inum / IPB + 2) // start of inode
#define BPB (BSIZE*8)
#define BBLOCK(b,ninodes) (b/BPB + (ninodes/IPB) + 3) // start of bitmap
#define DIRSIZ 14
struct dirent {
ushort inum;
char name[DIRSIZ];
};