| 448 | }; |
| 449 | |
| 450 | static void |
| 451 | mac_policy_fastpath_enable(struct mac_policy_fastpath_elem *mpfe) |
| 452 | { |
| 453 | |
| 454 | MPASS(mpfe->count >= 0); |
| 455 | mpfe->count++; |
| 456 | if (mpfe->count == 1) { |
| 457 | MPASS(*mpfe->flag == false); |
| 458 | *mpfe->flag = true; |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | static void |
| 463 | mac_policy_fastpath_disable(struct mac_policy_fastpath_elem *mpfe) |
no outgoing calls
no test coverage detected