| 1059 | } |
| 1060 | |
| 1061 | static void |
| 1062 | lomac_devfs_create_symlink(struct ucred *cred, struct mount *mp, |
| 1063 | struct devfs_dirent *dd, struct label *ddlabel, struct devfs_dirent *de, |
| 1064 | struct label *delabel) |
| 1065 | { |
| 1066 | struct mac_lomac *source, *dest; |
| 1067 | |
| 1068 | source = SLOT(cred->cr_label); |
| 1069 | dest = SLOT(delabel); |
| 1070 | |
| 1071 | lomac_copy_single(source, dest); |
| 1072 | } |
| 1073 | |
| 1074 | static void |
| 1075 | lomac_devfs_update(struct mount *mp, struct devfs_dirent *de, |
nothing calls this directly
no test coverage detected