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

Function getnewvnode_drop_reserve

freebsd/kern/vfs_subr.c:1821–1831  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1819}
1820
1821void
1822getnewvnode_drop_reserve(void)
1823{
1824 struct thread *td;
1825
1826 td = curthread;
1827 if (td->td_vp_reserved != NULL) {
1828 vn_free(td->td_vp_reserved);
1829 td->td_vp_reserved = NULL;
1830 }
1831}
1832
1833static void __noinline
1834freevnode(struct vnode *vp)

Callers 5

zfs_createFunction · 0.85
zfs_mkdirFunction · 0.85
zfs_symlinkFunction · 0.85
zfs_zgetFunction · 0.85
zfs_make_xattrdirFunction · 0.85

Calls 1

vn_freeFunction · 0.85

Tested by

no test coverage detected