Searched refs:b_iodone (Results 1 - 3 of 3) sorted by relevance

/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Dio.d62 caddr_t b_iodone; /* I/O completion routine */
76 b_iodone = (caddr_t)B->b_iodone;
/xnu-2422.115.4/bsd/sys/
H A Dbuf_internal.h114 void (*b_iodone)(buf_t, void *); /* Function to call upon completion. */ member in struct:buf
228 #define B_FILTER 0x00400000 /* call b_iodone from biodone as an in-line filter */
229 #define B_CALL 0x00800000 /* Call b_iodone from biodone, assumes b_iodone consumes bp */
/xnu-2422.115.4/bsd/vfs/
H A Dvfs_bio.c663 return ((void *)bp->b_iodone);
675 bp->b_iodone = callback;
721 io_bp->b_iodone = iodone;
782 io_bp->b_iodone = iodone;
906 *old_iodone = bp->b_iodone;
911 bp->b_iodone = filter;
2581 * set then call the b_iodone function so it gets cleaned
2588 void (*iodone_func)(struct buf *, void *) = bp->b_iodone;
2592 bp->b_iodone = NULL;
2596 panic("brelse: bp @ %p has NULL b_iodone!\
[all...]

Completed in 73 milliseconds