quiet
This commit is contained in:
parent
2cbb4b1842
commit
72a590d9e5
1 changed files with 2 additions and 2 deletions
4
mkfs.c
4
mkfs.c
|
@ -260,11 +260,11 @@ iappend(uint inum, void *xp, int n)
|
|||
x = xint(din.addrs[fbn]);
|
||||
} else {
|
||||
if(xint(din.addrs[INDIRECT]) == 0) {
|
||||
printf("allocate indirect block\n");
|
||||
// printf("allocate indirect block\n");
|
||||
din.addrs[INDIRECT] = xint(freeblock++);
|
||||
usedblocks++;
|
||||
}
|
||||
printf("read indirect block\n");
|
||||
// printf("read indirect block\n");
|
||||
rsect(xint(din.addrs[INDIRECT]), (char*) indirect);
|
||||
if(indirect[fbn - NDIRECT] == 0) {
|
||||
indirect[fbn - NDIRECT] = xint(freeblock++);
|
||||
|
|
Loading…
Reference in a new issue