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

Function vfs_mount_sigdefer

freebsd/kern/vfs_init.c:168–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166}
167
168static int
169vfs_mount_sigdefer(struct mount *mp)
170{
171 int prev_stops, rc;
172
173 TSRAW(curthread, TS_ENTER, "VFS_MOUNT", mp->mnt_vfc->vfc_name);
174 prev_stops = sigdeferstop(SIGDEFERSTOP_SILENT);
175 rc = (*mp->mnt_vfc->vfc_vfsops_sd->vfs_mount)(mp);
176 sigallowstop(prev_stops);
177 TSRAW(curthread, TS_EXIT, "VFS_MOUNT", mp->mnt_vfc->vfc_name);
178 return (rc);
179}
180
181static int
182vfs_unmount_sigdefer(struct mount *mp, int mntflags)

Callers

nothing calls this directly

Calls 2

sigdeferstopFunction · 0.85
sigallowstopFunction · 0.85

Tested by

no test coverage detected