xv6-cs450/fs.h

58 lines
1.4 KiB
C
Raw Normal View History

2006-09-07 16:12:30 +02:00
// On-disk file system format.
// This header is shared between kernel and user space.
// Block 0 is unused.
// Block 1 is super block.
// Inodes start at block 2.
2006-08-09 03:09:36 +02:00
#define BSIZE 512 // block size
2006-09-07 16:12:30 +02:00
// File system super block
struct superblock {
uint size; // Size of file system (bytes???) xxx
uint nblocks; // Number of blocks
uint ninodes; // Number of inodes.
};
#define NADDRS (NDIRECT+1)
#define NDIRECT 12
#define INDIRECT 12
#define NINDIRECT (BSIZE / sizeof(uint))
#define MAXFILE (NDIRECT + NINDIRECT)
2006-09-07 16:12:30 +02:00
// On-disk inode structure
struct dinode {
2006-09-07 16:12:30 +02:00
short type; // File type
short major; // Major device number (T_DEV only)
short minor; // Minor device number (T_DEV only)
short nlink; // Number of links to inode in file system
uint size; // Size of file (bytes)
uint addrs[NADDRS]; // Data block addresses
};
2006-08-08 20:07:37 +02:00
2006-09-07 16:12:30 +02:00
#define T_DIR 1 // Directory
#define T_FILE 2 // File
#define T_DEV 3 // Special device
// Inodes per block.
#define IPB (BSIZE / sizeof(struct dinode))
// Block containing inode i
#define IBLOCK(i) ((i) / IPB + 2)
// Bitmap bits per block
#define BPB (BSIZE*8)
2006-09-07 16:12:30 +02:00
// Block containing bit for block b
#define BBLOCK(b, ninodes) (b/BPB + (ninodes)/IPB + 3)
2006-07-22 00:10:40 +02:00
#define DIRSIZ 14
struct dirent {
ushort inum;
2006-07-22 00:10:40 +02:00
char name[DIRSIZ];
};
2006-08-15 17:53:46 +02:00
2006-09-07 16:12:30 +02:00
extern uint rootdev; // Device number of root file system
2006-08-15 17:53:46 +02:00