v3d: Take advantage of _mesa_hash_table_remove_key() in the simulator.

This commit is contained in:
Eric Anholt 2018-11-01 12:22:05 -07:00
parent 47586ab569
commit 3923cf626d
1 changed files with 2 additions and 4 deletions

View File

@ -202,10 +202,8 @@ v3d_free_simulator_bo(struct v3d_simulator_bo *sim_bo)
mtx_lock(&sim_state.mutex);
u_mmFreeMem(sim_bo->block);
if (sim_bo->handle) {
struct hash_entry *entry =
_mesa_hash_table_search(sim_file->bo_map,
int_to_key(sim_bo->handle));
_mesa_hash_table_remove(sim_file->bo_map, entry);
_mesa_hash_table_remove_key(sim_file->bo_map,
int_to_key(sim_bo->handle));
}
mtx_unlock(&sim_state.mutex);
ralloc_free(sim_bo);