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

Function vfs_root_sigdefer

freebsd/kern/vfs_init.c:192–201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190}
191
192static int
193vfs_root_sigdefer(struct mount *mp, int flags, struct vnode **vpp)
194{
195 int prev_stops, rc;
196
197 prev_stops = sigdeferstop(SIGDEFERSTOP_SILENT);
198 rc = (*mp->mnt_vfc->vfc_vfsops_sd->vfs_root)(mp, flags, vpp);
199 sigallowstop(prev_stops);
200 return (rc);
201}
202
203static int
204vfs_cachedroot_sigdefer(struct mount *mp, int flags, struct vnode **vpp)

Callers

nothing calls this directly

Calls 2

sigdeferstopFunction · 0.85
sigallowstopFunction · 0.85

Tested by

no test coverage detected