gallium/util: replace pipe_mutex_destroy() with mtx_destroy()

pipe_mutex_destroy() was made unnecessary with fd33a6bcd7.

Replace was done with:
find ./src -type f -exec sed -i -- \
's:pipe_mutex_destroy(\([^)]*\)):mtx_destroy(\&\1):g' {} \;

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
Timothy Arceri 2017-03-05 12:32:04 +11:00
parent 75b47dda0c
commit be188289e1
35 changed files with 50 additions and 53 deletions

View File

@ -108,9 +108,6 @@ static inline int pipe_thread_is_self( pipe_thread thread )
return 0; return 0;
} }
#define pipe_mutex_destroy(mutex) \
mtx_destroy(&(mutex))
#define pipe_mutex_lock(mutex) \ #define pipe_mutex_lock(mutex) \
(void) mtx_lock(&(mutex)) (void) mtx_lock(&(mutex))
@ -185,7 +182,7 @@ static inline void pipe_barrier_init(pipe_barrier *barrier, unsigned count)
static inline void pipe_barrier_destroy(pipe_barrier *barrier) static inline void pipe_barrier_destroy(pipe_barrier *barrier)
{ {
assert(barrier->waiters == 0); assert(barrier->waiters == 0);
pipe_mutex_destroy(barrier->mutex); mtx_destroy(&barrier->mutex);
cnd_destroy(&barrier->condvar); cnd_destroy(&barrier->condvar);
} }
@ -238,7 +235,7 @@ pipe_semaphore_init(pipe_semaphore *sema, int init_val)
static inline void static inline void
pipe_semaphore_destroy(pipe_semaphore *sema) pipe_semaphore_destroy(pipe_semaphore *sema)
{ {
pipe_mutex_destroy(sema->mutex); mtx_destroy(&sema->mutex);
cnd_destroy(&sema->cond); cnd_destroy(&sema->cond);
} }

View File

@ -992,7 +992,7 @@ fenced_bufmgr_destroy(struct pb_manager *mgr)
#endif #endif
pipe_mutex_unlock(fenced_mgr->mutex); pipe_mutex_unlock(fenced_mgr->mutex);
pipe_mutex_destroy(fenced_mgr->mutex); mtx_destroy(&fenced_mgr->mutex);
if (fenced_mgr->provider) if (fenced_mgr->provider)
fenced_mgr->provider->destroy(fenced_mgr->provider); fenced_mgr->provider->destroy(fenced_mgr->provider);

View File

@ -240,7 +240,7 @@ pb_debug_buffer_destroy(struct pb_buffer *_buf)
LIST_DEL(&buf->head); LIST_DEL(&buf->head);
pipe_mutex_unlock(mgr->mutex); pipe_mutex_unlock(mgr->mutex);
pipe_mutex_destroy(buf->mutex); mtx_destroy(&buf->mutex);
pb_reference(&buf->buffer, NULL); pb_reference(&buf->buffer, NULL);
FREE(buf); FREE(buf);
@ -449,7 +449,7 @@ pb_debug_manager_destroy(struct pb_manager *_mgr)
} }
pipe_mutex_unlock(mgr->mutex); pipe_mutex_unlock(mgr->mutex);
pipe_mutex_destroy(mgr->mutex); mtx_destroy(&mgr->mutex);
mgr->provider->destroy(mgr->provider); mgr->provider->destroy(mgr->provider);
FREE(mgr); FREE(mgr);
} }

View File

@ -298,5 +298,5 @@ void
pb_cache_deinit(struct pb_cache *mgr) pb_cache_deinit(struct pb_cache *mgr)
{ {
pb_cache_release_all_buffers(mgr); pb_cache_release_all_buffers(mgr);
pipe_mutex_destroy(mgr->mutex); mtx_destroy(&mgr->mutex);
} }

View File

@ -248,5 +248,5 @@ pb_slabs_deinit(struct pb_slabs *slabs)
} }
FREE(slabs->groups); FREE(slabs->groups);
pipe_mutex_destroy(slabs->mutex); mtx_destroy(&slabs->mutex);
} }

View File

@ -123,7 +123,7 @@ util_queue_fence_destroy(struct util_queue_fence *fence)
{ {
assert(fence->signalled); assert(fence->signalled);
cnd_destroy(&fence->cond); cnd_destroy(&fence->cond);
pipe_mutex_destroy(fence->mutex); mtx_destroy(&fence->mutex);
} }
/**************************************************************************** /****************************************************************************
@ -251,7 +251,7 @@ fail:
if (queue->jobs) { if (queue->jobs) {
cnd_destroy(&queue->has_space_cond); cnd_destroy(&queue->has_space_cond);
cnd_destroy(&queue->has_queued_cond); cnd_destroy(&queue->has_queued_cond);
pipe_mutex_destroy(queue->lock); mtx_destroy(&queue->lock);
FREE(queue->jobs); FREE(queue->jobs);
} }
/* also util_queue_is_initialized can be used to check for success */ /* also util_queue_is_initialized can be used to check for success */
@ -283,7 +283,7 @@ util_queue_destroy(struct util_queue *queue)
cnd_destroy(&queue->has_space_cond); cnd_destroy(&queue->has_space_cond);
cnd_destroy(&queue->has_queued_cond); cnd_destroy(&queue->has_queued_cond);
pipe_mutex_destroy(queue->lock); mtx_destroy(&queue->lock);
FREE(queue->jobs); FREE(queue->jobs);
FREE(queue->threads); FREE(queue->threads);
} }

View File

@ -85,7 +85,7 @@ util_range_init(struct util_range *range)
static inline void static inline void
util_range_destroy(struct util_range *range) util_range_destroy(struct util_range *range)
{ {
pipe_mutex_destroy(range->write_mutex); mtx_destroy(&range->write_mutex);
} }
#endif #endif

View File

@ -48,7 +48,7 @@ fail:
void util_ringbuffer_destroy( struct util_ringbuffer *ring ) void util_ringbuffer_destroy( struct util_ringbuffer *ring )
{ {
cnd_destroy(&ring->change); cnd_destroy(&ring->change);
pipe_mutex_destroy(ring->mutex); mtx_destroy(&ring->mutex);
FREE(ring->buf); FREE(ring->buf);
FREE(ring); FREE(ring);
} }

View File

@ -598,7 +598,7 @@ dd_context_destroy(struct pipe_context *_pipe)
dctx->kill_thread = 1; dctx->kill_thread = 1;
pipe_mutex_unlock(dctx->mutex); pipe_mutex_unlock(dctx->mutex);
pipe_thread_wait(dctx->thread); pipe_thread_wait(dctx->thread);
pipe_mutex_destroy(dctx->mutex); mtx_destroy(&dctx->mutex);
assert(!dctx->records); assert(!dctx->records);
} }
@ -873,7 +873,7 @@ dd_context_create(struct dd_screen *dscreen, struct pipe_context *pipe)
(void) mtx_init(&dctx->mutex, mtx_plain); (void) mtx_init(&dctx->mutex, mtx_plain);
dctx->thread = pipe_thread_create(dd_thread_pipelined_hang_detect, dctx); dctx->thread = pipe_thread_create(dd_thread_pipelined_hang_detect, dctx);
if (!dctx->thread) { if (!dctx->thread) {
pipe_mutex_destroy(dctx->mutex); mtx_destroy(&dctx->mutex);
goto fail; goto fail;
} }
} }

View File

@ -142,7 +142,7 @@ fd_screen_destroy(struct pipe_screen *pscreen)
slab_destroy_parent(&screen->transfer_pool); slab_destroy_parent(&screen->transfer_pool);
pipe_mutex_destroy(screen->lock); mtx_destroy(&screen->lock);
free(screen); free(screen);
} }

View File

@ -72,7 +72,7 @@ lp_fence_destroy(struct lp_fence *fence)
if (LP_DEBUG & DEBUG_FENCE) if (LP_DEBUG & DEBUG_FENCE)
debug_printf("%s %d\n", __FUNCTION__, fence->id); debug_printf("%s %d\n", __FUNCTION__, fence->id);
pipe_mutex_destroy(fence->mutex); mtx_destroy(&fence->mutex);
cnd_destroy(&fence->signalled); cnd_destroy(&fence->signalled);
FREE(fence); FREE(fence);
} }

View File

@ -90,7 +90,7 @@ void
lp_scene_destroy(struct lp_scene *scene) lp_scene_destroy(struct lp_scene *scene)
{ {
lp_fence_reference(&scene->fence, NULL); lp_fence_reference(&scene->fence, NULL);
pipe_mutex_destroy(scene->mutex); mtx_destroy(&scene->mutex);
assert(scene->data.head->next == NULL); assert(scene->data.head->next == NULL);
FREE(scene->data.head); FREE(scene->data.head);
FREE(scene); FREE(scene);

View File

@ -561,7 +561,7 @@ llvmpipe_destroy_screen( struct pipe_screen *_screen )
if(winsys->destroy) if(winsys->destroy)
winsys->destroy(winsys); winsys->destroy(winsys);
pipe_mutex_destroy(screen->rast_mutex); mtx_destroy(&screen->rast_mutex);
FREE(screen); FREE(screen);
} }

View File

@ -1780,7 +1780,7 @@ nv50_blitter_destroy(struct nv50_screen *screen)
} }
} }
pipe_mutex_destroy(blitter->mutex); mtx_destroy(&blitter->mutex);
FREE(blitter); FREE(blitter);
} }

View File

@ -1689,7 +1689,7 @@ nvc0_blitter_destroy(struct nvc0_screen *screen)
} }
} }
pipe_mutex_destroy(blitter->mutex); mtx_destroy(&blitter->mutex);
FREE(blitter); FREE(blitter);
} }

View File

@ -684,7 +684,7 @@ static void r300_destroy_screen(struct pipe_screen* pscreen)
if (rws && !rws->unref(rws)) if (rws && !rws->unref(rws))
return; return;
pipe_mutex_destroy(r300screen->cmask_mutex); mtx_destroy(&r300screen->cmask_mutex);
slab_destroy_parent(&r300screen->pool_transfers); slab_destroy_parent(&r300screen->pool_transfers);
if (rws) if (rws)

View File

@ -1360,8 +1360,8 @@ void r600_destroy_common_screen(struct r600_common_screen *rscreen)
r600_perfcounters_destroy(rscreen); r600_perfcounters_destroy(rscreen);
r600_gpu_load_kill_thread(rscreen); r600_gpu_load_kill_thread(rscreen);
pipe_mutex_destroy(rscreen->gpu_load_mutex); mtx_destroy(&rscreen->gpu_load_mutex);
pipe_mutex_destroy(rscreen->aux_context_lock); mtx_destroy(&rscreen->aux_context_lock);
rscreen->aux_context->destroy(rscreen->aux_context); rscreen->aux_context->destroy(rscreen->aux_context);
slab_destroy_parent(&rscreen->pool_transfers); slab_destroy_parent(&rscreen->pool_transfers);

View File

@ -704,7 +704,7 @@ static void si_destroy_screen(struct pipe_screen* pscreen)
FREE(part); FREE(part);
} }
} }
pipe_mutex_destroy(sscreen->shader_parts_mutex); mtx_destroy(&sscreen->shader_parts_mutex);
si_destroy_shader_cache(sscreen); si_destroy_shader_cache(sscreen);
r600_destroy_common_screen(&sscreen->b); r600_destroy_common_screen(&sscreen->b);
} }

View File

@ -313,7 +313,7 @@ void si_destroy_shader_cache(struct si_screen *sscreen)
if (sscreen->shader_cache) if (sscreen->shader_cache)
_mesa_hash_table_destroy(sscreen->shader_cache, _mesa_hash_table_destroy(sscreen->shader_cache,
si_destroy_shader_cache_entry); si_destroy_shader_cache_entry);
pipe_mutex_destroy(sscreen->shader_cache_mutex); mtx_destroy(&sscreen->shader_cache_mutex);
} }
/* SHADER STATES */ /* SHADER STATES */
@ -1960,7 +1960,7 @@ static void si_delete_shader_selector(struct pipe_context *ctx, void *state)
si_delete_shader(sctx, sel->gs_copy_shader); si_delete_shader(sctx, sel->gs_copy_shader);
util_queue_fence_destroy(&sel->ready); util_queue_fence_destroy(&sel->ready);
pipe_mutex_destroy(sel->mutex); mtx_destroy(&sel->mutex);
free(sel->tokens); free(sel->tokens);
free(sel); free(sel);
} }

View File

@ -919,8 +919,8 @@ svga_destroy_screen( struct pipe_screen *screen )
svga_screen_cache_cleanup(svgascreen); svga_screen_cache_cleanup(svgascreen);
pipe_mutex_destroy(svgascreen->swc_mutex); mtx_destroy(&svgascreen->swc_mutex);
pipe_mutex_destroy(svgascreen->tex_mutex); mtx_destroy(&svgascreen->tex_mutex);
svgascreen->sws->destroy(svgascreen->sws); svgascreen->sws->destroy(svgascreen->sws);

View File

@ -396,7 +396,7 @@ svga_screen_cache_cleanup(struct svga_screen *svgascreen)
sws->fence_reference(sws, &cache->entries[i].fence, NULL); sws->fence_reference(sws, &cache->entries[i].fence, NULL);
} }
pipe_mutex_destroy(cache->mutex); mtx_destroy(&cache->mutex);
} }

View File

@ -404,7 +404,7 @@ dri_destroy_screen_helper(struct dri_screen * screen)
screen->base.screen->destroy(screen->base.screen); screen->base.screen->destroy(screen->base.screen);
dri_destroy_option_cache(screen); dri_destroy_option_cache(screen);
pipe_mutex_destroy(screen->opencl_func_mutex); mtx_destroy(&screen->opencl_func_mutex);
} }
void void

View File

@ -265,8 +265,8 @@ void
nine_queue_delete(struct nine_queue_pool *ctx) nine_queue_delete(struct nine_queue_pool *ctx)
{ {
unsigned i; unsigned i;
pipe_mutex_destroy(ctx->mutex_pop); mtx_destroy(&ctx->mutex_pop);
pipe_mutex_destroy(ctx->mutex_push); mtx_destroy(&ctx->mutex_push);
for (i = 0; i < NINE_CMD_BUFS; i++) for (i = 0; i < NINE_CMD_BUFS; i++)
FREE(ctx->pool[i].mem_pool); FREE(ctx->pool[i].mem_pool);

View File

@ -233,7 +233,7 @@ nine_csmt_destroy( struct NineDevice9 *device, struct csmt_context *ctx )
nine_csmt_wait_processed(ctx); nine_csmt_wait_processed(ctx);
nine_queue_delete(ctx->pool); nine_queue_delete(ctx->pool);
pipe_mutex_destroy(ctx->mutex_processed); mtx_destroy(&ctx->mutex_processed);
FREE(ctx); FREE(ctx);

View File

@ -351,7 +351,7 @@ vlVaTerminate(VADriverContextP ctx)
drv->pipe->destroy(drv->pipe); drv->pipe->destroy(drv->pipe);
drv->vscreen->destroy(drv->vscreen); drv->vscreen->destroy(drv->vscreen);
handle_table_destroy(drv->htab); handle_table_destroy(drv->htab);
pipe_mutex_destroy(drv->mutex); mtx_destroy(&drv->mutex);
FREE(drv); FREE(drv);
return VA_STATUS_SUCCESS; return VA_STATUS_SUCCESS;

View File

@ -166,7 +166,7 @@ vlVdpDecoderDestroy(VdpDecoder decoder)
pipe_mutex_lock(vldecoder->mutex); pipe_mutex_lock(vldecoder->mutex);
vldecoder->decoder->destroy(vldecoder->decoder); vldecoder->decoder->destroy(vldecoder->decoder);
pipe_mutex_unlock(vldecoder->mutex); pipe_mutex_unlock(vldecoder->mutex);
pipe_mutex_destroy(vldecoder->mutex); mtx_destroy(&vldecoder->mutex);
vlRemoveDataHTAB(decoder); vlRemoveDataHTAB(decoder);
DeviceReference(&vldecoder->device, NULL); DeviceReference(&vldecoder->device, NULL);

View File

@ -233,7 +233,7 @@ vlVdpDeviceDestroy(VdpDevice device)
void void
vlVdpDeviceFree(vlVdpDevice *dev) vlVdpDeviceFree(vlVdpDevice *dev)
{ {
pipe_mutex_destroy(dev->mutex); mtx_destroy(&dev->mutex);
vl_compositor_cleanup(&dev->compositor); vl_compositor_cleanup(&dev->compositor);
pipe_sampler_view_reference(&dev->dummy_sv, NULL); pipe_sampler_view_reference(&dev->dummy_sv, NULL);
dev->context->destroy(dev->context); dev->context->destroy(dev->context);

View File

@ -69,7 +69,7 @@ GalliumContext::~GalliumContext()
DestroyContext(i); DestroyContext(i);
Unlock(); Unlock();
pipe_mutex_destroy(fMutex); mtx_destroy(&fMutex);
// TODO: Destroy fScreen // TODO: Destroy fScreen
} }

View File

@ -389,10 +389,10 @@ static void amdgpu_winsys_destroy(struct radeon_winsys *rws)
if (util_queue_is_initialized(&ws->cs_queue)) if (util_queue_is_initialized(&ws->cs_queue))
util_queue_destroy(&ws->cs_queue); util_queue_destroy(&ws->cs_queue);
pipe_mutex_destroy(ws->bo_fence_lock); mtx_destroy(&ws->bo_fence_lock);
pb_slabs_deinit(&ws->bo_slabs); pb_slabs_deinit(&ws->bo_slabs);
pb_cache_deinit(&ws->bo_cache); pb_cache_deinit(&ws->bo_cache);
pipe_mutex_destroy(ws->global_bo_list_lock); mtx_destroy(&ws->global_bo_list_lock);
do_winsys_deinit(ws); do_winsys_deinit(ws);
FREE(rws); FREE(rws);
} }

View File

@ -370,7 +370,7 @@ void radeon_bo_destroy(struct pb_buffer *_buf)
args.handle = bo->handle; args.handle = bo->handle;
drmIoctl(rws->fd, DRM_IOCTL_GEM_CLOSE, &args); drmIoctl(rws->fd, DRM_IOCTL_GEM_CLOSE, &args);
pipe_mutex_destroy(bo->u.real.map_mutex); mtx_destroy(&bo->u.real.map_mutex);
if (bo->initial_domain & RADEON_DOMAIN_VRAM) if (bo->initial_domain & RADEON_DOMAIN_VRAM)
rws->allocated_vram -= align(bo->base.size, rws->info.gart_page_size); rws->allocated_vram -= align(bo->base.size, rws->info.gart_page_size);

View File

@ -538,8 +538,8 @@ static void radeon_winsys_destroy(struct radeon_winsys *rws)
if (util_queue_is_initialized(&ws->cs_queue)) if (util_queue_is_initialized(&ws->cs_queue))
util_queue_destroy(&ws->cs_queue); util_queue_destroy(&ws->cs_queue);
pipe_mutex_destroy(ws->hyperz_owner_mutex); mtx_destroy(&ws->hyperz_owner_mutex);
pipe_mutex_destroy(ws->cmask_owner_mutex); mtx_destroy(&ws->cmask_owner_mutex);
if (ws->info.has_virtual_memory) if (ws->info.has_virtual_memory)
pb_slabs_deinit(&ws->bo_slabs); pb_slabs_deinit(&ws->bo_slabs);
@ -552,9 +552,9 @@ static void radeon_winsys_destroy(struct radeon_winsys *rws)
util_hash_table_destroy(ws->bo_names); util_hash_table_destroy(ws->bo_names);
util_hash_table_destroy(ws->bo_handles); util_hash_table_destroy(ws->bo_handles);
util_hash_table_destroy(ws->bo_vas); util_hash_table_destroy(ws->bo_vas);
pipe_mutex_destroy(ws->bo_handles_mutex); mtx_destroy(&ws->bo_handles_mutex);
pipe_mutex_destroy(ws->bo_va_mutex); mtx_destroy(&ws->bo_va_mutex);
pipe_mutex_destroy(ws->bo_fence_lock); mtx_destroy(&ws->bo_fence_lock);
if (ws->fd >= 0) if (ws->fd >= 0)
close(ws->fd); close(ws->fd);

View File

@ -809,7 +809,7 @@ fenced_bufmgr_destroy(struct pb_manager *mgr)
#endif #endif
pipe_mutex_unlock(fenced_mgr->mutex); pipe_mutex_unlock(fenced_mgr->mutex);
pipe_mutex_destroy(fenced_mgr->mutex); mtx_destroy(&fenced_mgr->mutex);
FREE(fenced_mgr); FREE(fenced_mgr);
} }

View File

@ -201,7 +201,7 @@ vmw_svga_winsys_surface_reference(struct vmw_svga_winsys_surface **pdst,
assert(p_atomic_read(&dst->validated) == 0); assert(p_atomic_read(&dst->validated) == 0);
dst->sid = SVGA3D_INVALID_ID; dst->sid = SVGA3D_INVALID_ID;
#endif #endif
pipe_mutex_destroy(dst->mutex); mtx_destroy(&dst->mutex);
FREE(dst); FREE(dst);
} }

View File

@ -120,8 +120,8 @@ virgl_drm_winsys_destroy(struct virgl_winsys *qws)
util_hash_table_destroy(qdws->bo_handles); util_hash_table_destroy(qdws->bo_handles);
util_hash_table_destroy(qdws->bo_names); util_hash_table_destroy(qdws->bo_names);
pipe_mutex_destroy(qdws->bo_handles_mutex); mtx_destroy(&qdws->bo_handles_mutex);
pipe_mutex_destroy(qdws->mutex); mtx_destroy(&qdws->mutex);
FREE(qdws); FREE(qdws);
} }

View File

@ -619,7 +619,7 @@ virgl_vtest_winsys_destroy(struct virgl_winsys *vws)
virgl_cache_flush(vtws); virgl_cache_flush(vtws);
pipe_mutex_destroy(vtws->mutex); mtx_destroy(&vtws->mutex);
FREE(vtws); FREE(vtws);
} }