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

Function vn_seqc_write_end_locked

freebsd/kern/vfs_subr.c:6874–6883  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6872}
6873
6874void
6875vn_seqc_write_end_locked(struct vnode *vp)
6876{
6877
6878 ASSERT_VI_LOCKED(vp, __func__);
6879 VNPASS(vp->v_seqc_users > 0, vp);
6880 vp->v_seqc_users--;
6881 if (vp->v_seqc_users == 0)
6882 seqc_sleepable_write_end(&vp->v_seqc);
6883}
6884
6885void
6886vn_seqc_write_end(struct vnode *vp)

Callers 2

vn_seqc_write_endFunction · 0.85
dounmountFunction · 0.85

Calls 1

seqc_sleepable_write_endFunction · 0.85

Tested by

no test coverage detected