| 1761 | } |
| 1762 | |
| 1763 | void |
| 1764 | crypto_freereq(struct cryptop *crp) |
| 1765 | { |
| 1766 | if (crp == NULL) |
| 1767 | return; |
| 1768 | |
| 1769 | crypto_destroyreq(crp); |
| 1770 | uma_zfree(cryptop_zone, crp); |
| 1771 | } |
| 1772 | |
| 1773 | static void |
| 1774 | _crypto_initreq(struct cryptop *crp, crypto_session_t cses) |
no test coverage detected