Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
rsc committed Aug 24, 2007
1 parent 766ba5c commit 872a63e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions bio.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ bget(uint dev, uint sector)
panic("bget: no buffers");
}

// Return a B_BUSY buf with the contents of the indicated
// disk sector.
// Return a B_BUSY buf with the contents of the indicated disk sector.
struct buf*
bread(uint dev, uint sector)
{
Expand All @@ -114,8 +113,7 @@ bread(uint dev, uint sector)
return b;
}

// Write buf's contents to disk.
// Must be locked.
// Write buf's contents to disk. Must be locked.
void
bwrite(struct buf *b)
{
Expand Down

0 comments on commit 872a63e

Please sign in to comment.