| 447 | } |
| 448 | |
| 449 | static void |
| 450 | mls_copy(struct mac_mls *source, struct mac_mls *dest) |
| 451 | { |
| 452 | |
| 453 | if (source->mm_flags & MAC_MLS_FLAG_EFFECTIVE) |
| 454 | mls_copy_effective(source, dest); |
| 455 | if (source->mm_flags & MAC_MLS_FLAG_RANGE) |
| 456 | mls_copy_range(source, dest); |
| 457 | } |
| 458 | |
| 459 | /* |
| 460 | * Policy module operations. |
no test coverage detected