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

Function vfs_cachedroot_sigdefer

freebsd/kern/vfs_init.c:203–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201}
202
203static int
204vfs_cachedroot_sigdefer(struct mount *mp, int flags, struct vnode **vpp)
205{
206 int prev_stops, rc;
207
208 prev_stops = sigdeferstop(SIGDEFERSTOP_SILENT);
209 rc = (*mp->mnt_vfc->vfc_vfsops_sd->vfs_cachedroot)(mp, flags, vpp);
210 sigallowstop(prev_stops);
211 return (rc);
212}
213
214static int
215vfs_quotactl_sigdefer(struct mount *mp, int cmd, uid_t uid, void *arg)

Callers

nothing calls this directly

Calls 2

sigdeferstopFunction · 0.85
sigallowstopFunction · 0.85

Tested by

no test coverage detected