| 190 | } |
| 191 | |
| 192 | static int |
| 193 | vfs_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 | |
| 203 | static int |
| 204 | vfs_cachedroot_sigdefer(struct mount *mp, int flags, struct vnode **vpp) |
nothing calls this directly
no test coverage detected