Lines Matching refs:bpool
104 struct bpool {
127 static struct bpool *
136 struct bpool *bp;
144 /* bpool internals dimensioning. */
156 total_size = sizeof(struct bpool) +
160 /* bpool memory allocation. */
165 /* bpool memory initialization. */
166 bp = (struct bpool *)p;
170 bp->slabs = (u64 **)&p[sizeof(struct bpool)];
171 bp->slabs_reserved = (u64 **)&p[sizeof(struct bpool) +
173 bp->buffers = (u64 *)&p[sizeof(struct bpool) +
175 bp->buffers_reserved = (u64 *)&p[sizeof(struct bpool) +
233 bpool_free(struct bpool *bp)
245 struct bpool *bp;
257 struct bpool *bp = bc->bp;
263 bcache_init(struct bpool *bp)
293 struct bpool *bp;
320 struct bpool *bp = bc->bp;
372 struct bpool *bp = bc->bp;
434 struct bpool *bp;
750 static struct bpool *bp;