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

Function vfs_sync_sigdefer

freebsd/kern/vfs_init.c:236–245  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

234}
235
236static int
237vfs_sync_sigdefer(struct mount *mp, int waitfor)
238{
239 int prev_stops, rc;
240
241 prev_stops = sigdeferstop(SIGDEFERSTOP_SILENT);
242 rc = (*mp->mnt_vfc->vfc_vfsops_sd->vfs_sync)(mp, waitfor);
243 sigallowstop(prev_stops);
244 return (rc);
245}
246
247static int
248vfs_vget_sigdefer(struct mount *mp, ino_t ino, int flags, struct vnode **vpp)

Callers

nothing calls this directly

Calls 2

sigdeferstopFunction · 0.85
sigallowstopFunction · 0.85

Tested by

no test coverage detected