| 5613 | #endif |
| 5614 | |
| 5615 | void |
| 5616 | vop_create_pre(void *ap) |
| 5617 | { |
| 5618 | struct vop_create_args *a; |
| 5619 | struct vnode *dvp; |
| 5620 | |
| 5621 | a = ap; |
| 5622 | dvp = a->a_dvp; |
| 5623 | vn_seqc_write_begin(dvp); |
| 5624 | } |
| 5625 | |
| 5626 | void |
| 5627 | vop_create_post(void *ap, int rc) |
nothing calls this directly
no test coverage detected