| 460 | } |
| 461 | |
| 462 | static void |
| 463 | mac_policy_fastpath_disable(struct mac_policy_fastpath_elem *mpfe) |
| 464 | { |
| 465 | |
| 466 | MPASS(mpfe->count >= 1); |
| 467 | mpfe->count--; |
| 468 | if (mpfe->count == 0) { |
| 469 | MPASS(*mpfe->flag == true); |
| 470 | *mpfe->flag = false; |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | static void |
| 475 | mac_policy_fastpath_register(struct mac_policy_conf *mpc) |
no outgoing calls
no test coverage detected