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

Function rte_bitmap_free

dpdk/lib/eal/include/rte_bitmap.h:290–299  ·  view source on GitHub ↗

* Bitmap free * * @param bmp * Handle to bitmap instance * @return * 0 upon success, error code otherwise */

Source from the content-addressed store, hash-verified

288 * 0 upon success, error code otherwise
289 */
290static inline int
291rte_bitmap_free(struct rte_bitmap *bmp)
292{
293 /* Check input arguments */
294 if (bmp == NULL) {
295 return -1;
296 }
297
298 return 0;
299}
300
301/**
302 * Bitmap reset

Callers 8

mr_freeFunction · 0.85
tid_freeFunction · 0.85
bond_ethdev_closeFunction · 0.85
hn_chim_uninitFunction · 0.85
mlx5_mr_freeFunction · 0.85
test_bitmap_all_clearFunction · 0.85
test_bitmap_all_setFunction · 0.85

Calls

no outgoing calls

Tested by 2

test_bitmap_all_clearFunction · 0.68
test_bitmap_all_setFunction · 0.68