comments
This commit is contained in:
parent
19297caf0d
commit
0294e3e290
11
fsvar.h
11
fsvar.h
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue