head               36 bio.c            struct buf head;
head               48 bio.c            bcache.head.prev = &bcache.head;
head               49 bio.c            bcache.head.next = &bcache.head;
head               51 bio.c              b->next = bcache.head.next;
head               52 bio.c              b->prev = &bcache.head;
head               54 bio.c              bcache.head.next->prev = b;
head               55 bio.c              bcache.head.next = b;
head               71 bio.c            for(b = bcache.head.next; b != &bcache.head; b = b->next){
head               86 bio.c            for(b = bcache.head.prev; b != &bcache.head; b = b->prev){
head              133 bio.c            b->next = bcache.head.next;
head              134 bio.c            b->prev = &bcache.head;
head              135 bio.c            bcache.head.next->prev = b;
head              136 bio.c            bcache.head.next = b;