xv6-cs450/fs.h
rtm 8a8be1b8c3 low-level keyboard input (not hooked up to /dev yet)
fix acquire() to cli() *before* incrementing nlock
make T_SYSCALL a trap gate, not an interrupt gate
sadly, various crashes if you hold down a keyboard key...
2006-08-10 02:07:10 +00:00

39 lines
688 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 NDIRECT 13
struct dinode {
short type;
short major;
short minor;
short nlink;
uint size;
uint addrs[NDIRECT];
};
#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];
};