xv6-65oo2/kernel/buf.h
2019-09-24 14:41:51 -04:00

13 lines
251 B
C

struct buf {
int valid; // has data been read from disk?
int disk; // does disk "own" buf?
uint dev;
uint blockno;
struct sleeplock lock;
uint refcnt;
struct buf *prev; // LRU cache list
struct buf *next;
uchar data[BSIZE];
};