| 5637 | } |
| 5638 | |
| 5639 | void |
| 5640 | vop_whiteout_pre(void *ap) |
| 5641 | { |
| 5642 | struct vop_whiteout_args *a; |
| 5643 | struct vnode *dvp; |
| 5644 | |
| 5645 | a = ap; |
| 5646 | dvp = a->a_dvp; |
| 5647 | vn_seqc_write_begin(dvp); |
| 5648 | } |
| 5649 | |
| 5650 | void |
| 5651 | vop_whiteout_post(void *ap, int rc) |
nothing calls this directly
no test coverage detected