2006-09-07 16:28:12 +02:00
|
|
|
// Buffer cache.
|
|
|
|
//
|
2007-08-27 16:09:30 +02:00
|
|
|
// 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.
|
2016-08-25 15:13:00 +02:00
|
|
|
//
|
2007-08-27 16:09:30 +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.
|
2007-08-27 16:09:30 +02:00
|
|
|
// * 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.
|
2019-07-29 23:33:16 +02:00
|
|
|
|
2006-09-07 16:28:12 +02:00
|
|
|
|
2006-07-21 15:18:04 +02:00
|
|
|
#include "types.h"
|
2007-08-28 01:26:33 +02:00
|
|
|
#include "param.h"
|
2006-07-21 15:18:04 +02:00
|
|
|
#include "spinlock.h"
|
2016-09-11 23:24:04 +02:00
|
|
|
#include "sleeplock.h"
|
2019-05-31 17:45:42 +02:00
|
|
|
#include "riscv.h"
|
|
|
|
#include "defs.h"
|
2015-04-03 14:22:02 +02:00
|
|
|
#include "fs.h"
|
2006-07-21 15:18:04 +02:00
|
|
|
#include "buf.h"
|
|
|
|
|
2009-05-31 03:29:17 +02:00
|
|
|
struct {
|
|
|
|
struct spinlock lock;
|
|
|
|
struct buf buf[NBUF];
|
2006-08-11 00:08:14 +02:00
|
|
|
|
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
|
|
|
|
2006-08-11 00:08:14 +02:00
|
|
|
void
|
|
|
|
binit(void)
|
|
|
|
{
|
2006-08-13 00:34:13 +02:00
|
|
|
struct buf *b;
|
|
|
|
|
2009-05-31 07:12:21 +02:00
|
|
|
initlock(&bcache.lock, "bcache");
|
2006-08-13 00:34:13 +02:00
|
|
|
|
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;
|
2016-09-11 23:24:04 +02:00
|
|
|
initsleeplock(&b->lock, "buffer");
|
2009-05-31 03:29:17 +02:00
|
|
|
bcache.head.next->prev = b;
|
|
|
|
bcache.head.next = b;
|
2006-08-13 00:34:13 +02:00
|
|
|
}
|
2006-08-11 00:08:14 +02:00
|
|
|
}
|
2006-07-21 15:18:04 +02:00
|
|
|
|
2015-04-03 14:22:02 +02:00
|
|
|
// Look through buffer cache for block on device dev.
|
2014-08-27 20:14:52 +02:00
|
|
|
// If not found, allocate a buffer.
|
2016-09-11 23:24:04 +02:00
|
|
|
// In either case, return locked buffer.
|
2006-09-07 16:28:12 +02:00
|
|
|
static struct buf*
|
2015-04-03 14:22:02 +02:00
|
|
|
bget(uint dev, uint blockno)
|
2006-07-21 15:18:04 +02:00
|
|
|
{
|
2006-08-12 13:38:57 +02:00
|
|
|
struct buf *b;
|
2006-07-21 15:18:04 +02:00
|
|
|
|
2009-05-31 03:29:17 +02:00
|
|
|
acquire(&bcache.lock);
|
2011-08-29 23:18:40 +02:00
|
|
|
|
2015-04-03 14:22:02 +02:00
|
|
|
// Is the block already cached?
|
2009-05-31 03:29:17 +02:00
|
|
|
for(b = bcache.head.next; b != &bcache.head; b = b->next){
|
2015-04-03 14:22:02 +02:00
|
|
|
if(b->dev == dev && b->blockno == blockno){
|
2016-09-12 02:17:22 +02:00
|
|
|
b->refcnt++;
|
|
|
|
release(&bcache.lock);
|
|
|
|
acquiresleep(&b->lock);
|
|
|
|
return b;
|
2007-08-08 11:50:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-09 12:54:45 +02:00
|
|
|
// Not cached; recycle an unused buffer.
|
2009-05-31 03:29:17 +02:00
|
|
|
for(b = bcache.head.prev; b != &bcache.head; b = b->prev){
|
2019-07-29 23:33:16 +02:00
|
|
|
if(b->refcnt == 0) {
|
2007-08-08 11:50:26 +02:00
|
|
|
b->dev = dev;
|
2015-04-03 14:22:02 +02:00
|
|
|
b->blockno = blockno;
|
2019-07-29 23:33:16 +02:00
|
|
|
b->valid = 0;
|
2016-09-12 02:17:22 +02:00
|
|
|
b->refcnt = 1;
|
2011-08-29 23:18:40 +02:00
|
|
|
release(&bcache.lock);
|
2016-09-12 02:17:22 +02:00
|
|
|
acquiresleep(&b->lock);
|
2007-08-08 11:50:26 +02:00
|
|
|
return b;
|
2006-07-21 15:18:04 +02:00
|
|
|
}
|
|
|
|
}
|
2007-08-08 11:50:26 +02:00
|
|
|
panic("bget: no buffers");
|
2006-07-21 15:18:04 +02:00
|
|
|
}
|
|
|
|
|
2016-09-11 23:24:04 +02:00
|
|
|
// Return a locked buf with the contents of the indicated block.
|
2006-09-06 19:27:19 +02:00
|
|
|
struct buf*
|
2015-04-03 14:22:02 +02:00
|
|
|
bread(uint dev, uint blockno)
|
2006-07-21 15:18:04 +02:00
|
|
|
{
|
|
|
|
struct buf *b;
|
|
|
|
|
2015-04-03 14:22:02 +02:00
|
|
|
b = bget(dev, blockno);
|
2019-07-29 23:33:16 +02:00
|
|
|
if(!b->valid) {
|
|
|
|
virtio_disk_rw(b, 0);
|
|
|
|
b->valid = 1;
|
2015-04-03 14:22:02 +02:00
|
|
|
}
|
2006-07-21 15:18:04 +02:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2016-09-11 23:24:04 +02:00
|
|
|
// Write b's contents to disk. Must be locked.
|
2006-08-07 03:38:46 +02:00
|
|
|
void
|
2007-08-22 08:01:32 +02:00
|
|
|
bwrite(struct buf *b)
|
2006-08-07 03:38:46 +02:00
|
|
|
{
|
2016-09-12 02:17:22 +02:00
|
|
|
if(!holdingsleep(&b->lock))
|
2006-09-07 17:29:54 +02:00
|
|
|
panic("bwrite");
|
2019-07-29 23:33:16 +02:00
|
|
|
virtio_disk_rw(b, 1);
|
2006-08-07 03:38:46 +02:00
|
|
|
}
|
|
|
|
|
2016-09-11 23:24:04 +02:00
|
|
|
// Release a locked buffer.
|
2011-10-11 12:41:37 +02:00
|
|
|
// Move to the head of the MRU list.
|
2006-07-21 15:18:04 +02:00
|
|
|
void
|
|
|
|
brelse(struct buf *b)
|
|
|
|
{
|
2016-09-12 02:17:22 +02:00
|
|
|
if(!holdingsleep(&b->lock))
|
2006-07-21 15:18:04 +02:00
|
|
|
panic("brelse");
|
2006-09-06 19:27:19 +02:00
|
|
|
|
2016-09-11 23:24:04 +02:00
|
|
|
releasesleep(&b->lock);
|
2006-07-21 15:18:04 +02:00
|
|
|
|
2016-09-12 02:17:22 +02:00
|
|
|
acquire(&bcache.lock);
|
|
|
|
b->refcnt--;
|
|
|
|
if (b->refcnt == 0) {
|
|
|
|
// no one is waiting for it.
|
|
|
|
b->next->prev = b->prev;
|
|
|
|
b->prev->next = b->next;
|
|
|
|
b->next = bcache.head.next;
|
|
|
|
b->prev = &bcache.head;
|
|
|
|
bcache.head.next->prev = b;
|
|
|
|
bcache.head.next = b;
|
|
|
|
}
|
|
|
|
|
2009-05-31 03:29:17 +02:00
|
|
|
release(&bcache.lock);
|
2006-07-21 15:18:04 +02:00
|
|
|
}
|