| 3013 | } |
| 3014 | |
| 3015 | void |
| 3016 | vref(struct vnode *vp) |
| 3017 | { |
| 3018 | enum vgetstate vs; |
| 3019 | |
| 3020 | CTR2(KTR_VFS, "%s: vp %p", __func__, vp); |
| 3021 | vs = vget_prep(vp); |
| 3022 | vget_finish_ref(vp, vs); |
| 3023 | } |
| 3024 | |
| 3025 | void |
| 3026 | vrefact(struct vnode *vp) |
no test coverage detected