* bawrite: * * Asynchronous write. Start output on a buffer, but do not wait for * it to complete. The buffer is released when the output completes. * * bwrite() ( or the VOP routine anyway ) is responsible for handling * B_INVAL buffers. Not us. */
| 2524 | * B_INVAL buffers. Not us. |
| 2525 | */ |
| 2526 | void |
| 2527 | bawrite(struct buf *bp) |
| 2528 | { |
| 2529 | |
| 2530 | bp->b_flags |= B_ASYNC; |
| 2531 | (void) bwrite(bp); |
| 2532 | } |
| 2533 | |
| 2534 | /* |
| 2535 | * babarrierwrite: |
no test coverage detected