From: rsc Date: Thu, 7 Sep 2006 15:31:33 +0000 (+0000) Subject: comments X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=0294e3e2906de29cafd1662956e9539d817d1dba;p=cs3210-lab1.git comments --- diff --git a/fsvar.h b/fsvar.h index ec8d204..015bda4 100644 --- a/fsvar.h +++ b/fsvar.h @@ -1,11 +1,12 @@ // in-core file system types struct inode { - uint dev; - uint inum; - int count; - int busy; - short type; + uint dev; // Device number + uint inum; // Inode number + int ref; // Reference count + int busy; // Is the inode "locked"? + + short type; // copy of disk inode short major; short minor; short nlink;