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

Function vop_mknod_post

freebsd/kern/vfs_subr.c:5762–5773  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5760}
5761
5762void
5763vop_mknod_post(void *ap, int rc)
5764{
5765 struct vop_mknod_args *a;
5766 struct vnode *dvp;
5767
5768 a = ap;
5769 dvp = a->a_dvp;
5770 vn_seqc_write_end(dvp);
5771 if (!rc)
5772 VFS_KNOTE_LOCKED(dvp, NOTE_WRITE);
5773}
5774
5775void
5776vop_reclaim_post(void *ap, int rc)

Callers

nothing calls this directly

Calls 1

vn_seqc_write_endFunction · 0.85

Tested by

no test coverage detected