2006-07-21 15:18:04 +02:00
|
|
|
// in-core file system types
|
|
|
|
|
|
|
|
struct inode {
|
2006-09-07 17:31:33 +02:00
|
|
|
uint dev; // Device number
|
|
|
|
uint inum; // Inode number
|
|
|
|
int ref; // Reference count
|
|
|
|
int busy; // Is the inode "locked"?
|
|
|
|
|
|
|
|
short type; // copy of disk inode
|
2006-08-08 20:07:37 +02:00
|
|
|
short major;
|
|
|
|
short minor;
|
2006-07-21 15:18:04 +02:00
|
|
|
short nlink;
|
|
|
|
uint size;
|
2006-08-25 03:11:30 +02:00
|
|
|
uint addrs[NADDRS];
|
2006-07-21 15:18:04 +02:00
|
|
|
};
|
2006-07-22 00:10:40 +02:00
|
|
|
|
|
|
|
extern uint rootdev;
|
2006-08-13 14:22:44 +02:00
|
|
|
|
|
|
|
#define NAMEI_LOOKUP 1
|
|
|
|
#define NAMEI_CREATE 2
|
|
|
|
#define NAMEI_DELETE 3
|