buffer header pool */
| 149 | |
| 150 | static char *buf; /* buffer header pool */ |
| 151 | static struct buf * |
| 152 | nbufp(unsigned i) |
| 153 | { |
| 154 | return ((struct buf *)(buf + (sizeof(struct buf) + |
| 155 | sizeof(vm_page_t) * atop(maxbcachebuf)) * i)); |
| 156 | } |
| 157 | |
| 158 | caddr_t __read_mostly unmapped_buf; |
| 159 |
no outgoing calls
no test coverage detected