| 454 | } |
| 455 | |
| 456 | static void |
| 457 | lomac_copy_single(struct mac_lomac *labelfrom, struct mac_lomac *labelto) |
| 458 | { |
| 459 | |
| 460 | KASSERT((labelfrom->ml_flags & MAC_LOMAC_FLAG_SINGLE) != 0, |
| 461 | ("lomac_copy_single: labelfrom not single")); |
| 462 | |
| 463 | labelto->ml_single = labelfrom->ml_single; |
| 464 | labelto->ml_flags |= MAC_LOMAC_FLAG_SINGLE; |
| 465 | } |
| 466 | |
| 467 | static void |
| 468 | lomac_copy_auxsingle(struct mac_lomac *labelfrom, struct mac_lomac *labelto) |
no outgoing calls
no test coverage detected