This commit is contained in:
rsc 2006-09-07 15:31:33 +00:00
parent 19297caf0d
commit 0294e3e290

11
fsvar.h
View file

@ -1,11 +1,12 @@
// in-core file system types // in-core file system types
struct inode { struct inode {
uint dev; uint dev; // Device number
uint inum; uint inum; // Inode number
int count; int ref; // Reference count
int busy; int busy; // Is the inode "locked"?
short type;
short type; // copy of disk inode
short major; short major;
short minor; short minor;
short nlink; short nlink;