Searched refs:blist (Results 1 - 6 of 6) sorted by relevance

/xnu-2782.1.97/bsd/dev/dtrace/
H A Dblist.h8 * blist = blist_create(blocks)
9 * (void) blist_destroy(blist)
10 * blkno = blist_alloc(blist, count)
11 * (void) blist_free(blist, blkno, count)
12 * (void) blist_resize(&blist, count, freeextra)
22 * capable of managing up to (2^31) blocks per blist, though
27 * $FreeBSD: src/sys/sys/blist.h,v 1.2 1999/08/28 00:51:33 peter Exp $
77 typedef struct blist { struct
94 extern void blist_destroy(blist_t blist);
95 extern daddr_t blist_alloc(blist_t blist, daddr_
[all...]
H A Dblist.c32 * Unlike the rlist code, the blist code wires all necessary memory at
35 * on an rlist_free() call. The non-blocking features of the blist code
37 * rlist code uses a little less overall memory then the blist code (but
38 * due to swap interleaving not all that much less), but the blist code
72 #include <sys/blist.h>
99 #include <sys/blist.h>
117 /* #include <sys/blist.h> */
118 #include "blist.h"
154 * blist_create() - create a blist capable of handling up to the specified
159 * The smallest blist consist
[all...]
H A Ddtrace_glue.c1007 #include "blist.h"
1009 /* By passing around blist *handles*, the underlying blist can be resized as needed. */
1011 blist_t blist; member in struct:blist_hdl
1031 p->blist = bl = blist_create( size );
1043 blist_t bl = q->blist;
1050 q->blist = bl;
1064 blist_free( p->blist, (daddr_t)(uintptr_t)vaddr, (daddr_t)size );
1072 blist_destroy( p->blist );
/xnu-2782.1.97/bsd/nfs/
H A Dnfs_bio.c3020 struct nfsbuflists blist, commitlist; local
3063 if (!nfs_buf_iterprepare(np, &blist, flags)) {
3064 while ((bp = LIST_FIRST(&blist))) {
3127 nfs_buf_itercomplete(np, &blist, NBI_DIRTY);
3256 struct nfsbuflists blist; local
3305 if (!nfs_buf_iterprepare(np, &blist, NBI_DIRTY)) {
3306 while ((bp = LIST_FIRST(&blist))) {
3321 nfs_buf_itercomplete(np, &blist, NBI_DIRTY);
3373 nfs_buf_itercomplete(np, &blist, NBI_DIRTY);
3475 struct nfsbuflists blist; local
3714 struct nfsbuflists blist; local
[all...]
H A Dnfs_vnops.c5299 struct nfsbuflists blist; local
5372 if (!nfs_buf_iterprepare(dnp, &blist, NBI_CLEAN)) {
5374 while ((bp = LIST_FIRST(&blist))) {
5420 nfs_buf_itercomplete(dnp, &blist, NBI_CLEAN);
5524 struct nfsbuflists blist; local
5568 if (!nfs_buf_iterprepare(dnp, &blist, NBI_CLEAN)) {
5570 while ((bp = LIST_FIRST(&blist))) {
5604 nfs_buf_itercomplete(dnp, &blist, NBI_CLEAN);
/xnu-2782.1.97/bsd/conf/
H A Dfiles132 bsd/dev/dtrace/blist.c optional config_dtrace

Completed in 157 milliseconds