* vm_map_entry_dispose: [ internal use only ] * * Inverse of vm_map_entry_create. */
| 955 | * Inverse of vm_map_entry_create. |
| 956 | */ |
| 957 | static void |
| 958 | vm_map_entry_dispose(vm_map_t map, vm_map_entry_t entry) |
| 959 | { |
| 960 | uma_zfree(map->system_map ? kmapentzone : mapentzone, entry); |
| 961 | } |
| 962 | |
| 963 | /* |
| 964 | * vm_map_entry_create: [ internal use only ] |
no test coverage detected