| 103 | } |
| 104 | |
| 105 | static int |
| 106 | nitrox_sym_dev_close(struct rte_cryptodev *cdev) |
| 107 | { |
| 108 | int i, ret; |
| 109 | |
| 110 | for (i = 0; i < cdev->data->nb_queue_pairs; i++) { |
| 111 | ret = nitrox_sym_dev_qp_release(cdev, i); |
| 112 | if (ret) |
| 113 | return ret; |
| 114 | } |
| 115 | |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | static void |
| 120 | nitrox_sym_dev_info_get(struct rte_cryptodev *cdev, |
nothing calls this directly
no test coverage detected