| 507 | }; |
| 508 | |
| 509 | static __inline void |
| 510 | _crypto_use_buf(struct crypto_buffer *cb, void *buf, int len) |
| 511 | { |
| 512 | cb->cb_buf = buf; |
| 513 | cb->cb_buf_len = len; |
| 514 | cb->cb_type = CRYPTO_BUF_CONTIG; |
| 515 | } |
| 516 | |
| 517 | static __inline void |
| 518 | _crypto_use_mbuf(struct crypto_buffer *cb, struct mbuf *m) |
no outgoing calls
no test coverage detected