Lines Matching defs:mpfe
463 mac_policy_fastpath_enable(struct mac_policy_fastpath_elem *mpfe)
466 MPASS(mpfe->count >= 0);
467 mpfe->count++;
468 if (mpfe->count == 1) {
469 MPASS(*mpfe->flag == false);
470 *mpfe->flag = true;
475 mac_policy_fastpath_disable(struct mac_policy_fastpath_elem *mpfe)
478 MPASS(mpfe->count >= 1);
479 mpfe->count--;
480 if (mpfe->count == 0) {
481 MPASS(*mpfe->flag == true);
482 *mpfe->flag = false;
489 struct mac_policy_fastpath_elem *mpfe;
497 mpfe = &mac_policy_fastpath_array[i];
498 if (ops[mpfe->offset] != NULL)
499 mac_policy_fastpath_enable(mpfe);
506 struct mac_policy_fastpath_elem *mpfe;
514 mpfe = &mac_policy_fastpath_array[i];
515 if (ops[mpfe->offset] != NULL)
516 mac_policy_fastpath_disable(mpfe);