// in-core file system typesstructinode{uintdev;// Device numberuintinum;// Inode numberintref;// Reference countintbusy;// Is the inode "locked"?shorttype;// copy of disk inodeshortmajor;shortminor;shortnlink;uintsize;uintaddrs[NADDRS];};externuintrootdev;#define NAMEI_LOOKUP 1#define NAMEI_CREATE 2#define NAMEI_DELETE 3