diff options
author | Austin Clements <[email protected]> | 2011-08-29 16:14:44 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2011-08-29 16:14:44 -0400 |
commit | 22f7db5336cb20c82eb1ffa45c0ef63825442c95 (patch) | |
tree | 7d84f128d0e9960c6c0bb95a398461dec895d389 /file.h | |
parent | 920b7b44b553b228212b0c5913f07614ac958cf8 (diff) | |
download | xv6-labs-22f7db5336cb20c82eb1ffa45c0ef63825442c95.tar.gz xv6-labs-22f7db5336cb20c82eb1ffa45c0ef63825442c95.tar.bz2 xv6-labs-22f7db5336cb20c82eb1ffa45c0ef63825442c95.zip |
Renumber I_VALID since I_BUSY is gone
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ struct inode { uint addrs[NDIRECT+1]; }; -#define I_VALID 0x2 +#define I_VALID 0x1 // device implementations |