| 963 | "struct mount *"); |
| 964 | |
| 965 | int |
| 966 | mac_mount_check_stat(struct ucred *cred, struct mount *mount) |
| 967 | { |
| 968 | int error; |
| 969 | |
| 970 | MAC_POLICY_CHECK_NOSLEEP(mount_check_stat, cred, mount, mount->mnt_label); |
| 971 | MAC_CHECK_PROBE2(mount_check_stat, error, cred, mount); |
| 972 | |
| 973 | return (error); |
| 974 | } |
| 975 | |
| 976 | void |
| 977 | mac_devfs_create_device(struct ucred *cred, struct mount *mp, |
no outgoing calls
no test coverage detected