a few nits
passes all tests on two-processor smp
This commit is contained in:
parent
b364c4b881
commit
af03ab142d
1
bio.c
1
bio.c
|
@ -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
2
exec.c
|
@ -102,7 +102,7 @@ exec(char *path, char **argv)
|
|||
return 0;
|
||||
|
||||
bad:
|
||||
freevm(pgdir);
|
||||
if (pgdir) freevm(pgdir);
|
||||
iunlockput(ip);
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue