| 1012 | void vrefact(struct vnode *vp); |
| 1013 | void v_addpollinfo(struct vnode *vp); |
| 1014 | static __inline int |
| 1015 | vrefcnt(struct vnode *vp) |
| 1016 | { |
| 1017 | |
| 1018 | return (vp->v_usecount); |
| 1019 | } |
| 1020 | |
| 1021 | #define vholdl(vp) do { \ |
| 1022 | ASSERT_VI_LOCKED(vp, __func__); \ |
no outgoing calls
no test coverage detected