a few nits

passes all tests on two-processor smp
This commit is contained in:
Frans Kaashoek 2010-07-23 12:52:50 -04:00
parent b364c4b881
commit af03ab142d
3 changed files with 1 additions and 4 deletions

1
bio.c
View File

@ -109,7 +109,6 @@ bread(uint dev, uint sector)
void
bwrite(struct buf *b)
{
cprintf("bwrite sector %d\n", b->sector);
if((b->flags & B_BUSY) == 0)
panic("bwrite");
b->flags |= B_DIRTY;

2
exec.c
View File

@ -102,7 +102,7 @@ exec(char *path, char **argv)
return 0;
bad:
freevm(pgdir);
if (pgdir) freevm(pgdir);
iunlockput(ip);
return -1;
}

View File

@ -111,8 +111,6 @@ kalloc(int n)
}
}
release(&kmem.lock);
cprintf("kalloc: out of memory\n");
return 0;
}