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

Function vop_remove_post

freebsd/kern/vfs_subr.c:5801–5816  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5799}
5800
5801void
5802vop_remove_post(void *ap, int rc)
5803{
5804 struct vop_remove_args *a;
5805 struct vnode *dvp, *vp;
5806
5807 a = ap;
5808 dvp = a->a_dvp;
5809 vp = a->a_vp;
5810 vn_seqc_write_end(dvp);
5811 vn_seqc_write_end(vp);
5812 if (!rc) {
5813 VFS_KNOTE_LOCKED(dvp, NOTE_WRITE);
5814 VFS_KNOTE_LOCKED(vp, NOTE_DELETE);
5815 }
5816}
5817
5818void
5819vop_rename_post(void *ap, int rc)

Callers

nothing calls this directly

Calls 1

vn_seqc_write_endFunction · 0.85

Tested by

no test coverage detected