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

Function vop_mkdir_post

freebsd/kern/vfs_subr.c:5726–5737  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5724}
5725
5726void
5727vop_mkdir_post(void *ap, int rc)
5728{
5729 struct vop_mkdir_args *a;
5730 struct vnode *dvp;
5731
5732 a = ap;
5733 dvp = a->a_dvp;
5734 vn_seqc_write_end(dvp);
5735 if (!rc)
5736 VFS_KNOTE_LOCKED(dvp, NOTE_WRITE | NOTE_LINK);
5737}
5738
5739#ifdef DEBUG_VFS_LOCKS
5740void

Callers

nothing calls this directly

Calls 1

vn_seqc_write_endFunction · 0.85

Tested by

no test coverage detected