xv6-cs450/bio.c

140 lines
3.2 KiB
C
Raw Normal View History

2006-09-07 16:28:12 +02:00
// Buffer cache.
//
// The buffer cache is a linked list of buf structures holding
// cached copies of disk block contents. Caching disk blocks
// in memory reduces the number of disk reads and also provides
// a synchronization point for disk blocks used by multiple processes.
2006-09-07 16:28:12 +02:00
//
// Interface:
// * To get a buffer for a particular disk block, call bread.
2011-10-11 12:41:37 +02:00
// * After changing buffer data, call bwrite to write it to disk.
// * When done with the buffer, call brelse.
// * Do not use the buffer after calling brelse.
// * Only one process at a time can use a buffer,
// so do not keep them longer than necessary.
2006-09-07 16:28:12 +02:00
//
// The implementation uses three state flags internally:
// * B_BUSY: the block has been returned from bread
// and has not been passed back to brelse.
2011-10-11 12:41:37 +02:00
// * B_VALID: the buffer data has been read from the disk.
// * B_DIRTY: the buffer data has been modified
// and needs to be written to disk.
2006-09-07 16:28:12 +02:00
#include "types.h"
#include "defs.h"
2007-08-28 01:26:33 +02:00
#include "param.h"
#include "spinlock.h"
#include "buf.h"
2009-05-31 03:29:17 +02:00
struct {
struct spinlock lock;
struct buf buf[NBUF];
2009-05-31 03:29:17 +02:00
// Linked list of all buffers, through prev/next.
// head.next is most recently used.
struct buf head;
} bcache;
2006-08-13 00:34:13 +02:00
void
binit(void)
{
2006-08-13 00:34:13 +02:00
struct buf *b;
initlock(&bcache.lock, "bcache");
2006-08-13 00:34:13 +02:00
2007-08-28 07:00:53 +02:00
//PAGEBREAK!
2006-09-07 16:28:12 +02:00
// Create linked list of buffers
2009-05-31 03:29:17 +02:00
bcache.head.prev = &bcache.head;
bcache.head.next = &bcache.head;
for(b = bcache.buf; b < bcache.buf+NBUF; b++){
b->next = bcache.head.next;
b->prev = &bcache.head;
b->dev = -1;
bcache.head.next->prev = b;
bcache.head.next = b;
2006-08-13 00:34:13 +02:00
}
}
// Look through buffer cache for sector on device dev.
2006-09-07 16:28:12 +02:00
// If not found, allocate fresh block.
2011-10-11 12:41:37 +02:00
// In either case, return B_BUSY buffer.
2006-09-07 16:28:12 +02:00
static struct buf*
2006-09-07 16:39:05 +02:00
bget(uint dev, uint sector)
{
struct buf *b;
2009-05-31 03:29:17 +02:00
acquire(&bcache.lock);
loop:
2011-10-11 12:41:37 +02:00
// Is the sector already cached?
2009-05-31 03:29:17 +02:00
for(b = bcache.head.next; b != &bcache.head; b = b->next){
if(b->dev == dev && b->sector == sector){
if(!(b->flags & B_BUSY)){
b->flags |= B_BUSY;
release(&bcache.lock);
return b;
}
sleep(b, &bcache.lock);
goto loop;
}
}
// Not cached; recycle some non-busy and clean buffer.
2009-05-31 03:29:17 +02:00
for(b = bcache.head.prev; b != &bcache.head; b = b->prev){
if((b->flags & B_BUSY) == 0 && (b->flags & B_DIRTY) == 0){
b->dev = dev;
b->sector = sector;
b->flags = B_BUSY;
release(&bcache.lock);
return b;
}
}
panic("bget: no buffers");
}
// Return a B_BUSY buf with the contents of the indicated disk sector.
2006-09-06 19:27:19 +02:00
struct buf*
bread(uint dev, uint sector)
{
struct buf *b;
2006-09-07 16:28:12 +02:00
b = bget(dev, sector);
if(!(b->flags & B_VALID))
iderw(b);
return b;
}
2011-10-11 12:41:37 +02:00
// Write b's contents to disk. Must be B_BUSY.
2006-08-07 03:38:46 +02:00
void
bwrite(struct buf *b)
2006-08-07 03:38:46 +02:00
{
if((b->flags & B_BUSY) == 0)
2006-09-07 17:29:54 +02:00
panic("bwrite");
b->flags |= B_DIRTY;
iderw(b);
2006-08-07 03:38:46 +02:00
}
2011-10-11 12:41:37 +02:00
// Release a B_BUSY buffer.
// Move to the head of the MRU list.
void
brelse(struct buf *b)
{
if((b->flags & B_BUSY) == 0)
panic("brelse");
2006-09-06 19:27:19 +02:00
2009-05-31 03:29:17 +02:00
acquire(&bcache.lock);
2006-08-13 00:34:13 +02:00
b->next->prev = b->prev;
b->prev->next = b->next;
2009-05-31 03:29:17 +02:00
b->next = bcache.head.next;
b->prev = &bcache.head;
bcache.head.next->prev = b;
bcache.head.next = b;
2006-08-13 00:34:13 +02:00
b->flags &= ~B_BUSY;
wakeup(b);
2009-05-31 03:29:17 +02:00
release(&bcache.lock);
}