Searched refs:bioops (Results 1 – 3 of 3) sorted by relevance
68 } bioops;453 if (bioops.io_start) in buf_start()454 (*bioops.io_start)(bp); in buf_start()462 if (bioops.io_complete) in buf_complete()463 (*bioops.io_complete)(bp); in buf_complete()470 if (bioops.io_deallocate) in buf_deallocate()471 (*bioops.io_deallocate)(bp); in buf_deallocate()477 if (bioops.io_countdeps) in buf_countdeps()478 return ((*bioops.io_countdeps)(bp, i)); in buf_countdeps()
2540 /* initialise bioops hack */ in softdep_initialize() 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() 2560 /* clear bioops hack */ in softdep_uninitialize() 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 in softdep_uninitialize() [all...]
96 struct bio_ops bioops; /* I/O operation notification */ variable