MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rte_mempool_audit

Function rte_mempool_audit

dpdk/lib/mempool/rte_mempool.c:1211–1219  ·  view source on GitHub ↗

check the consistency of mempool (size, cookies, ...) */

Source from the content-addressed store, hash-verified

1209
1210/* check the consistency of mempool (size, cookies, ...) */
1211void
1212rte_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 */
1222void

Callers 1

rte_mempool_dumpFunction · 0.85

Calls 2

mempool_audit_cacheFunction · 0.85
mempool_audit_cookiesFunction · 0.85

Tested by

no test coverage detected