| 5786 | } |
| 5787 | |
| 5788 | void |
| 5789 | vop_remove_pre(void *ap) |
| 5790 | { |
| 5791 | struct vop_remove_args *a; |
| 5792 | struct vnode *dvp, *vp; |
| 5793 | |
| 5794 | a = ap; |
| 5795 | dvp = a->a_dvp; |
| 5796 | vp = a->a_vp; |
| 5797 | vn_seqc_write_begin(dvp); |
| 5798 | vn_seqc_write_begin(vp); |
| 5799 | } |
| 5800 | |
| 5801 | void |
| 5802 | vop_remove_post(void *ap, int rc) |
nothing calls this directly
no test coverage detected