| 234 | } |
| 235 | |
| 236 | static int |
| 237 | vfs_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 | |
| 247 | static int |
| 248 | vfs_vget_sigdefer(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) |
nothing calls this directly
no test coverage detected