Home
last modified time | relevance | path

Searched refs:prev (Results 1 – 2 of 2) sorted by relevance

/xv6-public/
H A Dbio.c47 bcache.head.prev = &bcache.head; in binit()
51 b->prev = &bcache.head; in binit()
53 bcache.head.next->prev = b; in binit()
81 for(b = bcache.head.prev; b != &bcache.head; b = b->prev){ in bget()
132 b->next->prev = b->prev; in brelse()
133 b->prev->next = b->next; in brelse()
135 b->prev = &bcache.head; in brelse()
136 bcache.head.next->prev = b; in brelse()
H A Dbuf.h7 struct buf *prev; // LRU cache list member