Searched refs:bioops (Results 1 – 3 of 3) sorted by relevance
69 } bioops;461 if (bioops.io_start) in buf_start()462 (*bioops.io_start)(bp); in buf_start()470 if (bioops.io_complete) in buf_complete()471 (*bioops.io_complete)(bp); in buf_complete()478 if (bioops.io_deallocate) in buf_deallocate()479 (*bioops.io_deallocate)(bp); in buf_deallocate()485 if (bioops.io_countdeps) in buf_countdeps()486 return ((*bioops.io_countdeps)(bp, i)); in buf_countdeps()
2541 bioops.io_start = softdep_disk_io_initiation; in softdep_initialize()2542 bioops.io_complete = softdep_disk_write_complete; in softdep_initialize()2543 bioops.io_deallocate = softdep_deallocate_dependencies; in softdep_initialize()2544 bioops.io_countdeps = softdep_count_dependencies; in softdep_initialize()2561 bioops.io_start = NULL; in softdep_uninitialize()2562 bioops.io_complete = NULL; in softdep_uninitialize()2563 bioops.io_deallocate = NULL; in softdep_uninitialize()2564 bioops.io_countdeps = NULL; in softdep_uninitialize()
98 struct bio_ops bioops; /* I/O operation notification */ variable