gallium/util: remove pipe_static_mutex()

This was made unnecessary with fd33a6bcd7.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
Timothy Arceri 2017-03-05 12:32:02 +11:00
parent 2efddc63ee
commit acdcaf9be4
22 changed files with 21 additions and 24 deletions

View File

@ -62,7 +62,7 @@ struct cpufreq_info
static int gcpufreq_count = 0;
static struct list_head gcpufreq_list;
pipe_static_mutex(gcpufreq_mutex);
static mtx_t gcpufreq_mutex = _MTX_INITIALIZER_NP;
static struct cpufreq_info *
find_cfi_by_index(int cpu_index, int mode)

View File

@ -82,7 +82,7 @@ struct diskstat_info
*/
static int gdiskstat_count = 0;
static struct list_head gdiskstat_list;
pipe_static_mutex(gdiskstat_mutex);
static mtx_t gdiskstat_mutex = _MTX_INITIALIZER_NP;
static struct diskstat_info *
find_dsi_by_name(const char *n, int mode)

View File

@ -67,7 +67,7 @@ struct nic_info
*/
static int gnic_count = 0;
static struct list_head gnic_list;
pipe_static_mutex(gnic_mutex);
static mtx_t gnic_mutex = _MTX_INITIALIZER_NP;
static struct nic_info *
find_nic_by_name(const char *n, int mode)

View File

@ -50,7 +50,7 @@
*/
static int gsensors_temp_count = 0;
static struct list_head gsensors_temp_list;
pipe_static_mutex(gsensor_temp_mutex);
static mtx_t gsensor_temp_mutex = _MTX_INITIALIZER_NP;
struct sensors_temp_info
{

View File

@ -108,9 +108,6 @@ static inline int pipe_thread_is_self( pipe_thread thread )
return 0;
}
#define pipe_static_mutex(mutex) \
static mtx_t mutex = _MTX_INITIALIZER_NP
#define pipe_mutex_init(mutex) \
(void) mtx_init(&(mutex), mtx_plain)

View File

@ -63,7 +63,7 @@
#define EXEC_HEAP_SIZE (10*1024*1024)
pipe_static_mutex(exec_mutex);
static mtx_t exec_mutex = _MTX_INITIALIZER_NP;
static struct mem_block *exec_heap = NULL;
static unsigned char *exec_mem = NULL;

View File

@ -77,7 +77,7 @@ struct debug_flush_ctx {
struct list_head head;
};
pipe_static_mutex(list_mutex);
static mtx_t list_mutex = _MTX_INITIALIZER_NP;
static struct list_head ctx_list = {&ctx_list, &ctx_list};
static struct debug_stack_frame *

View File

@ -87,7 +87,7 @@ struct debug_memory_footer
static struct list_head list = { &list, &list };
pipe_static_mutex(list_mutex);
static mtx_t list_mutex = _MTX_INITIALIZER_NP;
static unsigned long last_no = 0;

View File

@ -52,7 +52,7 @@ static FILE *stream;
/* TODO: maybe move this serial machinery to a stand-alone module and
* expose it?
*/
pipe_static_mutex(serials_mutex);
static mtx_t serials_mutex = _MTX_INITIALIZER_NP;
static struct util_hash_table *serials_hash;
static unsigned serials_last;

View File

@ -271,7 +271,7 @@ debug_symbol_print(const void *addr)
}
struct util_hash_table* symbols_hash;
pipe_static_mutex(symbols_mutex);
static mtx_t symbols_mutex = _MTX_INITIALIZER_NP;
static unsigned hash_ptr(void* p)
{

View File

@ -40,7 +40,7 @@ static void util_queue_killall_and_wait(struct util_queue *queue);
static once_flag atexit_once_flag = ONCE_FLAG_INIT;
static struct list_head queue_list;
pipe_static_mutex(exit_mutex);
static mtx_t exit_mutex = _MTX_INITIALIZER_NP;
static void
atexit_handler(void)

View File

@ -59,7 +59,7 @@
static boolean close_stream = FALSE;
static FILE *stream = NULL;
pipe_static_mutex(call_mutex);
static mtx_t call_mutex = _MTX_INITIALIZER_NP;
static long unsigned call_no = 0;
static boolean dumping = FALSE;

View File

@ -189,7 +189,7 @@ xmesa_close_display(Display *display)
static XMesaDisplay
xmesa_init_display( Display *display )
{
pipe_static_mutex(init_mutex);
static mtx_t init_mutex = _MTX_INITIALIZER_NP;
XMesaDisplay xmdpy;
XMesaExtDisplayInfo *info;

View File

@ -48,7 +48,7 @@
#include "os/os_thread.h"
/* Global mutex as described by MSDN */
pipe_static_mutex(d3dlock_global);
static mtx_t d3dlock_global = _MTX_INITIALIZER_NP;
void
NineLockGlobalMutex()

View File

@ -45,7 +45,7 @@
#include "vid_dec.h"
#include "vid_enc.h"
pipe_static_mutex(omx_lock);
static mtx_t omx_lock = _MTX_INITIALIZER_NP;
static Display *omx_display = NULL;
static struct vl_screen *omx_screen = NULL;
static unsigned omx_usecount = 0;

View File

@ -30,7 +30,7 @@
#include "vdpau_private.h"
static struct handle_table *htab = NULL;
pipe_static_mutex(htab_lock);
static mtx_t htab_lock = _MTX_INITIALIZER_NP;
boolean vlCreateHTAB(void)
{

View File

@ -64,7 +64,7 @@
#endif
static struct util_hash_table *dev_tab = NULL;
pipe_static_mutex(dev_tab_mutex);
static mtx_t dev_tab_mutex = _MTX_INITIALIZER_NP;
static unsigned cik_get_num_tile_pipes(struct amdgpu_gpu_info *info)
{

View File

@ -69,7 +69,7 @@ screen_create(struct renderonly *ro)
static struct util_hash_table *etna_tab = NULL;
pipe_static_mutex(etna_screen_mutex);
static mtx_t etna_screen_mutex = _MTX_INITIALIZER_NP;
static void
etna_drm_screen_destroy(struct pipe_screen *pscreen)

View File

@ -42,7 +42,7 @@
static struct util_hash_table *fd_tab = NULL;
pipe_static_mutex(fd_screen_mutex);
static mtx_t fd_screen_mutex = _MTX_INITIALIZER_NP;
static void
fd_drm_screen_destroy(struct pipe_screen *pscreen)

View File

@ -19,7 +19,7 @@
static struct util_hash_table *fd_tab = NULL;
pipe_static_mutex(nouveau_screen_mutex);
static mtx_t nouveau_screen_mutex = _MTX_INITIALIZER_NP;
bool nouveau_drm_screen_unref(struct nouveau_screen *screen)
{

View File

@ -47,7 +47,7 @@
#include <radeon_surface.h>
static struct util_hash_table *fd_tab = NULL;
pipe_static_mutex(fd_tab_mutex);
static mtx_t fd_tab_mutex = _MTX_INITIALIZER_NP;
/* Enable/disable feature access for one command stream.
* If enable == true, return true on success.

View File

@ -806,7 +806,7 @@ virgl_drm_winsys_create(int drmFD)
}
static struct util_hash_table *fd_tab = NULL;
pipe_static_mutex(virgl_screen_mutex);
static mtx_t virgl_screen_mutex = _MTX_INITIALIZER_NP;
static void
virgl_drm_screen_destroy(struct pipe_screen *pscreen)