check the consistency of mempool (size, cookies, ...) */
| 1209 | |
| 1210 | /* check the consistency of mempool (size, cookies, ...) */ |
| 1211 | void |
| 1212 | rte_mempool_audit(struct rte_mempool *mp) |
| 1213 | { |
| 1214 | mempool_audit_cache(mp); |
| 1215 | mempool_audit_cookies(mp); |
| 1216 | |
| 1217 | /* For case where mempool DEBUG is not set, and cache size is 0 */ |
| 1218 | RTE_SET_USED(mp); |
| 1219 | } |
| 1220 | |
| 1221 | /* dump the status of the mempool on the console */ |
| 1222 | void |
no test coverage detected