no buf->qnext

This commit is contained in:
Robert Morris 2019-09-24 14:41:51 -04:00
parent 9ead904afe
commit deaff5d8a6

View file

@ -7,7 +7,6 @@ struct buf {
uint refcnt;
struct buf *prev; // LRU cache list
struct buf *next;
struct buf *qnext; // disk queue
uchar data[BSIZE];
};