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

Function ff_munmap

lib/ff_host_interface.c:88–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88int
89ff_munmap(void *addr, uint64_t len)
90{
91#ifdef FF_USE_PAGE_ARRAY
92 if ( len == 4096 ){
93 return ff_mem_free_addr(addr);
94 }
95#endif
96 //rte_free(addr);
97 //return 0;
98 return (munmap(addr, len));
99}
100
101
102void *

Callers 1

kmem_freeFunction · 0.85

Calls 1

ff_mem_free_addrFunction · 0.85

Tested by

no test coverage detected