MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vget_abort

Function vget_abort

freebsd/kern/vfs_subr.c:2936–2950  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2934}
2935
2936void
2937vget_abort(struct vnode *vp, enum vgetstate vs)
2938{
2939
2940 switch (vs) {
2941 case VGET_USECOUNT:
2942 vrele(vp);
2943 break;
2944 case VGET_HOLDCNT:
2945 vdrop(vp);
2946 break;
2947 default:
2948 __assert_unreachable();
2949 }
2950}
2951
2952int
2953vget(struct vnode *vp, int flags)

Callers 3

vget_finishFunction · 0.85
cache_fplookup_finalFunction · 0.85

Calls 2

vdropFunction · 0.85
vreleFunction · 0.70

Tested by

no test coverage detected