gallium/util: replace pipe_mutex with mtx_t
authorTimothy Arceri <tarceri@itsqueeze.com>
Sun, 5 Mar 2017 01:32:01 +0000 (12:32 +1100)
committerTimothy Arceri <tarceri@itsqueeze.com>
Mon, 6 Mar 2017 21:48:11 +0000 (08:48 +1100)
pipe_mutex was made unnecessary with fd33a6bcd7f12.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
45 files changed:
src/gallium/auxiliary/os/os_thread.h
src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c
src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c
src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
src/gallium/auxiliary/pipebuffer/pb_bufmgr_pool.c
src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c
src/gallium/auxiliary/pipebuffer/pb_cache.h
src/gallium/auxiliary/pipebuffer/pb_slab.h
src/gallium/auxiliary/util/u_debug_flush.c
src/gallium/auxiliary/util/u_queue.h
src/gallium/auxiliary/util/u_range.h
src/gallium/auxiliary/util/u_ringbuffer.c
src/gallium/drivers/ddebug/dd_pipe.h
src/gallium/drivers/freedreno/freedreno_screen.h
src/gallium/drivers/llvmpipe/lp_fence.h
src/gallium/drivers/llvmpipe/lp_scene.h
src/gallium/drivers/llvmpipe/lp_screen.h
src/gallium/drivers/nouveau/nv50/nv50_surface.c
src/gallium/drivers/nouveau/nvc0/nvc0_surface.c
src/gallium/drivers/r300/r300_screen.h
src/gallium/drivers/radeon/r600_pipe_common.h
src/gallium/drivers/radeonsi/si_pipe.h
src/gallium/drivers/radeonsi/si_shader.h
src/gallium/drivers/rbug/rbug_context.h
src/gallium/drivers/rbug/rbug_screen.h
src/gallium/drivers/svga/svga_screen.h
src/gallium/drivers/svga/svga_screen_cache.h
src/gallium/drivers/vc4/vc4_screen.h
src/gallium/state_trackers/dri/dri_screen.h
src/gallium/state_trackers/glx/xlib/xm_api.h
src/gallium/state_trackers/hgl/hgl_context.h
src/gallium/state_trackers/nine/nine_queue.c
src/gallium/state_trackers/nine/nine_state.c
src/gallium/state_trackers/va/va_private.h
src/gallium/state_trackers/vdpau/vdpau_private.h
src/gallium/targets/haiku-softpipe/GalliumContext.h
src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h
src/gallium/winsys/radeon/drm/radeon_drm_bo.h
src/gallium/winsys/radeon/drm/radeon_drm_winsys.c
src/gallium/winsys/radeon/drm/radeon_drm_winsys.h
src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
src/gallium/winsys/svga/drm/vmw_fence.c
src/gallium/winsys/svga/drm/vmw_surface.h
src/gallium/winsys/virgl/drm/virgl_drm_winsys.h
src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.h

index 6eca2ca2c7ab4cc965619cf34409851b7c7eb601..af350b878abde6885eed2091bcbf45606f755114 100644 (file)
@@ -108,12 +108,8 @@ static inline int pipe_thread_is_self( pipe_thread thread )
    return 0;
 }
 
-/* pipe_mutex
- */
-typedef mtx_t pipe_mutex;
-
 #define pipe_static_mutex(mutex) \
-   static pipe_mutex mutex = _MTX_INITIALIZER_NP
+   static mtx_t mutex = _MTX_INITIALIZER_NP
 
 #define pipe_mutex_init(mutex) \
    (void) mtx_init(&(mutex), mtx_plain)
@@ -131,11 +127,11 @@ typedef mtx_t pipe_mutex;
    __pipe_mutex_assert_locked(&(mutex))
 
 static inline void
-__pipe_mutex_assert_locked(pipe_mutex *mutex)
+__pipe_mutex_assert_locked(mtx_t *mutex)
 {
 #ifdef DEBUG
    /* NOTE: this would not work for recursive mutexes, but
-    * pipe_mutex doesn't support those
+    * mtx_t doesn't support those
     */
    int ret = mtx_trylock(mutex);
    assert(ret == thrd_busy);
@@ -179,7 +175,7 @@ typedef struct {
    unsigned count;
    unsigned waiters;
    uint64_t sequence;
-   pipe_mutex mutex;
+   mtx_t mutex;
    pipe_condvar condvar;
 } pipe_barrier;
 
@@ -231,7 +227,7 @@ static inline void pipe_barrier_wait(pipe_barrier *barrier)
 
 typedef struct
 {
-   pipe_mutex mutex;
+   mtx_t mutex;
    pipe_condvar cond;
    int counter;
 } pipe_semaphore;
index 7717d784f78af3da2b5de3a070660e6d8812698d..f5e761b1e6b333a41db9062706447dfb72db8a5d 100644 (file)
@@ -81,7 +81,7 @@ struct fenced_manager
    /**
     * Following members are mutable and protected by this mutex.
     */
-   pipe_mutex mutex;
+   mtx_t mutex;
 
    /**
     * Fenced buffer list.
index 4e36866e08cc9b89ea4202a7e8cc664b667ff8b6..26ce60314b95141718e15f366f5a9012f9b8fb53 100644 (file)
@@ -78,7 +78,7 @@ struct pb_debug_buffer
 
    struct debug_stack_frame create_backtrace[PB_DEBUG_CREATE_BACKTRACE];
 
-   pipe_mutex mutex;
+   mtx_t mutex;
    unsigned map_count;
    struct debug_stack_frame map_backtrace[PB_DEBUG_MAP_BACKTRACE];
    
@@ -95,7 +95,7 @@ struct pb_debug_manager
    pb_size underflow_size;
    pb_size overflow_size;
    
-   pipe_mutex mutex;
+   mtx_t mutex;
    struct list_head list;
 };
 
index 023a028a1d00116521f14ab7dd45bcc8f13bd960..ef7e5adac3248c142b7f2a4dc87122b1d63e6d9b 100644 (file)
@@ -53,7 +53,7 @@ struct mm_pb_manager
 {
    struct pb_manager base;
    
-   pipe_mutex mutex;
+   mtx_t mutex;
    
    pb_size size;
    struct mem_block *heap;
index 98877b46352b595ac1c8ed77e90f0ef32898c7fc..3bfe720b185af1f529d2cab1b6b87e5da6d4a0fb 100644 (file)
@@ -56,7 +56,7 @@ struct pool_pb_manager
 {
    struct pb_manager base;
    
-   pipe_mutex mutex;
+   mtx_t mutex;
    
    pb_size bufSize;
    pb_size bufAlign;
index cc42eeae564d8a24b5b11d754f4c54a3eb2b5cf1..54aba980179f5bc4855fc62f0a112e3938354b9d 100644 (file)
@@ -128,7 +128,7 @@ struct pb_slab_manager
     */
    struct list_head slabs;
    
-   pipe_mutex mutex;
+   mtx_t mutex;
 };
 
 
index 7000fcd1c5a8ffcc8bbb3b363ad77f7ac064fb90..d082eca8b5d1177b7035c42bcd2cc50ed176883a 100644 (file)
@@ -52,7 +52,7 @@ struct pb_cache
     */
    struct list_head buckets[4];
 
-   pipe_mutex mutex;
+   mtx_t mutex;
    uint64_t cache_size;
    uint64_t max_cache_size;
    unsigned usecs;
index e779d95e08a003e8ca79bd7b872c36c0816a5fb8..78a4bf7c47c9bb337032bfeac7f2225214dbab43 100644 (file)
@@ -110,7 +110,7 @@ typedef bool (slab_can_reclaim_fn)(void *priv, struct pb_slab_entry *);
  */
 struct pb_slabs
 {
-   pipe_mutex mutex;
+   mtx_t mutex;
 
    unsigned min_order;
    unsigned num_orders;
index 52e72cd6d88579ef70b7ac83a945370de7aba626..6a8a91d3130921d96d3418ec05fa997eb9604045 100644 (file)
@@ -53,7 +53,7 @@
 struct debug_flush_buf {
    /* Atomic */
    struct pipe_reference reference; /* Must be the first member. */
-   pipe_mutex mutex;
+   mtx_t mutex;
    /* Immutable */
    boolean supports_unsync;
    unsigned bt_depth;
index 2e0a5a36e269999d0ead0152098fd81d8d8793e5..8d4804f5c6a1496bccf691626053a945a3635ab2 100644 (file)
@@ -40,7 +40,7 @@
  * Put this into your job structure.
  */
 struct util_queue_fence {
-   pipe_mutex mutex;
+   mtx_t mutex;
    pipe_condvar cond;
    int signalled;
 };
@@ -57,7 +57,7 @@ struct util_queue_job {
 /* Put this into your context. */
 struct util_queue {
    const char *name;
-   pipe_mutex lock;
+   mtx_t lock;
    pipe_condvar has_queued_cond;
    pipe_condvar has_space_cond;
    pipe_thread *threads;
index a1da5e5a6f0ea2ef6f7ea368c039bd5331efb163..9055d7b6007f51662041bb42279aeab937f18fe5 100644 (file)
@@ -43,7 +43,7 @@ struct util_range {
    unsigned end; /* exclusive */
 
    /* for the range to be consistent with multiple contexts: */
-   pipe_mutex write_mutex;
+   mtx_t write_mutex;
 };
 
 
index a97236fe54cc6181e0fadd4208a7a141113bf404..19f82f52bf62d16caf93c25154c29d4ca3601288 100644 (file)
@@ -17,7 +17,7 @@ struct util_ringbuffer
    unsigned head;
    unsigned tail;
    pipe_condvar change;
-   pipe_mutex mutex;
+   mtx_t mutex;
 };
 
 
index 08cd1e3b9f18efa15ff100ebb757dedfb2226069..dc7c325885d071b5563b81c5d2124a96266a97d0 100644 (file)
@@ -235,7 +235,7 @@ struct dd_context
     * the thread dumps the record of the oldest unsignalled fence.
     */
    pipe_thread thread;
-   pipe_mutex mutex;
+   mtx_t mutex;
    int kill_thread;
    struct pipe_resource *fence;
    struct pipe_transfer *fence_transfer;
index 087b07e0b09f261c8945c1ea3d24ec6d99611f4f..f2b1d8cea7621e0bed5f38c3e3efc4509e0ecea7 100644 (file)
@@ -44,7 +44,7 @@ struct fd_bo;
 struct fd_screen {
        struct pipe_screen base;
 
-       pipe_mutex lock;
+       mtx_t lock;
 
        /* it would be tempting to use pipe_reference here, but that
         * really doesn't work well if it isn't the first member of
index d7f0c153ec8c38d26b411bc00f325fc8d14fa009..4fc0801a6f0797cf85d5dd6cffb88d1055063461 100644 (file)
@@ -43,7 +43,7 @@ struct lp_fence
    struct pipe_reference reference;
    unsigned id;
 
-   pipe_mutex mutex;
+   mtx_t mutex;
    pipe_condvar signalled;
 
    boolean issued;
index b1464bb54c40f5de785e4e2b5ba6475d54557fe9..da29057f1ef19f4f3b7543752b9edd32308c9c7f 100644 (file)
@@ -174,7 +174,7 @@ struct lp_scene {
    unsigned tiles_x, tiles_y;
 
    int curr_x, curr_y;  /**< for iterating over bins */
-   pipe_mutex mutex;
+   mtx_t mutex;
 
    struct cmd_bin tile[TILES_X][TILES_Y];
    struct data_block_list data;
index 00bf20c8c5f0348f860b7fcd4ca9e0bcdc99566b..da702ad77539575e1fcd95c30d0d9851da9072f6 100644 (file)
@@ -56,7 +56,7 @@ struct llvmpipe_screen
    unsigned timestamp;
 
    struct lp_rasterizer *rast;
-   pipe_mutex rast_mutex;
+   mtx_t rast_mutex;
 };
 
 
index f5fa9d6cadad9efee053c2373844489dfab9add3..01bf14ba730687ad8072121b866c6c8ed0e6de69 100644 (file)
@@ -821,7 +821,7 @@ struct nv50_blitter
 
    struct nv50_tsc_entry sampler[2]; /* nearest, bilinear */
 
-   pipe_mutex mutex;
+   mtx_t mutex;
 };
 
 struct nv50_blitctx
index d567d8289488ee63f8309c903dd0cd7864501c4b..96b2b5fa9069d577ffb2bbc9b7142775a6aa8767 100644 (file)
@@ -772,7 +772,7 @@ struct nvc0_blitter
 
    struct nv50_tsc_entry sampler[2]; /* nearest, bilinear */
 
-   pipe_mutex mutex;
+   mtx_t mutex;
 
    struct nvc0_screen *screen;
 };
index 4b783af959d100602cb4a9e22ff90aac3016a533..952dc341ab7ec7394625f7ac20387fa676599eed 100644 (file)
@@ -48,7 +48,7 @@ struct r300_screen {
 
     /* The MSAA texture with CMASK access; */
     struct pipe_resource *cmask_resource;
-    pipe_mutex cmask_mutex;
+    mtx_t cmask_mutex;
 };
 
 
index 55d2d0bd5ff05454d07bbade3153f4a3e4816655..726dbb30fcdde78e061850f6317d6de088480897 100644 (file)
@@ -381,7 +381,7 @@ struct r600_common_screen {
        /* Auxiliary context. Mainly used to initialize resources.
         * It must be locked prior to using and flushed before unlocking. */
        struct pipe_context             *aux_context;
-       pipe_mutex                      aux_context_lock;
+       mtx_t                           aux_context_lock;
 
        /* This must be in the screen, because UE4 uses one context for
         * compilation and another one for rendering.
@@ -394,7 +394,7 @@ struct r600_common_screen {
        unsigned                        num_shader_cache_hits;
 
        /* GPU load thread. */
-       pipe_mutex                      gpu_load_mutex;
+       mtx_t                           gpu_load_mutex;
        pipe_thread                     gpu_load_thread;
        union r600_mmio_counters        mmio_counters;
        volatile unsigned               gpu_load_stop_thread; /* bool */
index ec7cf30ef7e7dd1404efd9193ad2daddb35e70a9..617ec2054c8896d40f3dcd8f5226234ffe91cde0 100644 (file)
@@ -84,7 +84,7 @@ struct si_screen {
        bool                            use_monolithic_shaders;
        bool                            record_llvm_ir;
 
-       pipe_mutex                      shader_parts_mutex;
+       mtx_t                   shader_parts_mutex;
        struct si_shader_part           *vs_prologs;
        struct si_shader_part           *vs_epilogs;
        struct si_shader_part           *tcs_epilogs;
@@ -104,7 +104,7 @@ struct si_screen {
         * - GS and CS aren't cached, but it's certainly possible to cache
         *   those as well.
         */
-       pipe_mutex                      shader_cache_mutex;
+       mtx_t                   shader_cache_mutex;
        struct hash_table               *shader_cache;
 
        /* Shader compiler queue for multithreaded compilation. */
index c38e7f560b6aeb2669ed0baa1abefe03bc40ca76..17ffc5d8c78b9dc993411b50db8dc1d3b0ce4a8e 100644 (file)
@@ -278,7 +278,7 @@ struct si_shader_selector {
        struct util_queue_fence ready;
        struct si_compiler_ctx_state compiler_ctx_state;
 
-       pipe_mutex              mutex;
+       mtx_t           mutex;
        struct si_shader        *first_variant; /* immutable after the first variant */
        struct si_shader        *last_variant; /* mutable */
 
index e99f6edc5235e1e807e745d436bbfd1aa0c32087..6f11fa46b5d43f5abcd67799c31de8b579f0adb8 100644 (file)
@@ -42,7 +42,7 @@ struct rbug_context {
    struct rbug_list list;
 
    /* call locking */
-   pipe_mutex call_mutex;
+   mtx_t call_mutex;
 
    /* current state */
    struct {
@@ -58,7 +58,7 @@ struct rbug_context {
    } curr;
 
    /* draw locking */
-   pipe_mutex draw_mutex;
+   mtx_t draw_mutex;
    pipe_condvar draw_cond;
    unsigned draw_num_rules;
    int draw_blocker;
@@ -74,7 +74,7 @@ struct rbug_context {
    } draw_rule;
 
    /* list of state objects */
-   pipe_mutex list_mutex;
+   mtx_t list_mutex;
    unsigned num_shaders;
    struct rbug_list shaders;
 };
index fd92374beda43aff2cff54d15d611565fe61b990..67e28762b70ff83a799839948b136a63aadb1f81 100644 (file)
@@ -49,7 +49,7 @@ struct rbug_screen
    /* remote debugger */
    struct rbug_rbug *rbug;
 
-   pipe_mutex list_mutex;
+   mtx_t list_mutex;
    int num_contexts;
    int num_resources;
    int num_surfaces;
index 6cafeba148053c85ab4ee4d221e859ccdeb85573..68834a69e2e59a0d46723e0ee8f09636cbe77920 100644 (file)
@@ -66,9 +66,9 @@ struct svga_screen
    } debug;
 
    unsigned texture_timestamp;
-   pipe_mutex tex_mutex; 
+   mtx_t tex_mutex;
 
-   pipe_mutex swc_mutex; /* Used for buffer uploads */
+   mtx_t swc_mutex; /* Used for buffer uploads */
 
    /* which formats to translate depth formats into */
    struct {
index 619603a82385d502d490d068ff3e649509e12e7a..2ade1025fcac52840c55a4c4ab4eae4a4d8f077a 100644 (file)
@@ -105,7 +105,7 @@ struct svga_host_surface_cache_entry
  */
 struct svga_host_surface_cache 
 {
-   pipe_mutex mutex;
+   mtx_t mutex;
    
    /* Unused buffers are put in buckets to speed up lookups */
    struct list_head bucket[SVGA_HOST_SURFACE_CACHE_BUCKETS];
index 1f91ad37f8861a4f6f0665d682d6ab9934905f9b..54751ff0b0dd1ef4e860fcc154c6629c0f0ab709 100644 (file)
@@ -77,14 +77,14 @@ struct vc4_screen {
                 struct list_head *size_list;
                 uint32_t size_list_size;
 
-                pipe_mutex lock;
+                mtx_t lock;
 
                 uint32_t bo_size;
                 uint32_t bo_count;
         } bo_cache;
 
         struct util_hash_table *bo_handles;
-        pipe_mutex bo_handles_mutex;
+        mtx_t bo_handles_mutex;
 
         uint32_t bo_size;
         uint32_t bo_count;
index dc4692a1c6ba23c5aaa365279e220bfa3facbf6b..7f5fd13630f9072bff037fb80e41e648ad767a2a 100644 (file)
@@ -89,7 +89,7 @@ struct dri_screen
    __DRIimage * (*lookup_egl_image)(struct dri_screen *ctx, void *handle);
 
    /* OpenCL interop */
-   pipe_mutex opencl_func_mutex;
+   mtx_t opencl_func_mutex;
    opencl_dri_event_add_ref_t opencl_dri_event_add_ref;
    opencl_dri_event_release_t opencl_dri_event_release;
    opencl_dri_event_wait_t opencl_dri_event_wait;
index ccf35a5eb5a4dd453bed57b8dc9ed962e9fd2bc5..06bf839c96ededc6c65166e5fdfcdec9f44fc147 100644 (file)
@@ -76,7 +76,7 @@ typedef struct xmesa_visual *XMesaVisual;
 
 
 struct xmesa_display {
-   pipe_mutex mutex;
+   mtx_t mutex;
 
    Display *display;
    struct pipe_screen *screen;
index d2ec7fb49c4397cb2eba8b90dc7665d5950cc25a..5acb2f08db18a30dae85135bbb222d2a12e7c0a9 100644 (file)
@@ -74,7 +74,7 @@ struct hgl_context
        Bitmap* bitmap;
        color_space colorSpace;
 
-       pipe_mutex fbMutex;
+       mtx_t fbMutex;
 
        struct hgl_buffer* draw;
        struct hgl_buffer* read;
index b50b57bc90f4f0cd26283b0f283781ba003c1c4a..4724b6be58497bdfd07263dd95117c47907dd2b7 100644 (file)
@@ -74,8 +74,8 @@ struct nine_queue_pool {
     BOOL worker_wait;
     pipe_condvar event_pop;
     pipe_condvar event_push;
-    pipe_mutex mutex_pop;
-    pipe_mutex mutex_push;
+    mtx_t mutex_pop;
+    mtx_t mutex_push;
 };
 
 /* Consumer functions: */
index 90c49cf8f88a973743283a12604f84dd8a00a4fc..231e42272ec3915c36752f4738a0481dfafe5e81 100644 (file)
@@ -64,13 +64,13 @@ struct csmt_context {
     struct nine_queue_pool* pool;
     BOOL terminate;
     pipe_condvar event_processed;
-    pipe_mutex mutex_processed;
+    mtx_t mutex_processed;
     struct NineDevice9 *device;
     BOOL processed;
     BOOL toPause;
     BOOL hasPaused;
-    pipe_mutex thread_running;
-    pipe_mutex thread_resume;
+    mtx_t thread_running;
+    mtx_t thread_resume;
 };
 
 /* Wait for instruction to be processed.
index a74446174ca056db24dc0e39643bdb327a365a11..a7cedaeead6204e6d91b283410540ad10c6dadf9 100644 (file)
@@ -209,7 +209,7 @@ typedef struct {
    struct vl_compositor compositor;
    struct vl_compositor_state cstate;
    vl_csc_matrix csc;
-   pipe_mutex mutex;
+   mtx_t mutex;
 } vlVaDriver;
 
 typedef struct {
index cc20e5d7ca6842a1995637dc1d693abc08c7daa7..b36c0c4aec260f1f156594c7535d4a5baf4ad5a7 100644 (file)
@@ -354,7 +354,7 @@ typedef struct
    struct pipe_context *context;
    struct vl_compositor compositor;
    struct pipe_sampler_view *dummy_sv;
-   pipe_mutex mutex;
+   mtx_t mutex;
 } vlVdpDevice;
 
 typedef struct
@@ -439,7 +439,7 @@ typedef struct
 typedef struct
 {
    vlVdpDevice *device;
-   pipe_mutex mutex;
+   mtx_t mutex;
    struct pipe_video_codec *decoder;
 } vlVdpDecoder;
 
index 22076cbb141315c157d5927f95c95e909e0d14eb..d8d75b91c06004b79ed6ce499af3f4e51f130702 100644 (file)
@@ -50,7 +50,7 @@ private:
                // Context Management
                struct hgl_context*     fContext[CONTEXT_MAX];
                context_id                      fCurrentContext;
-               pipe_mutex                      fMutex;
+               mtx_t                   fMutex;
 };
 
 
index b19d9767dad11acdc499018ad03ed41148a2a7a3..a5154ffe7bf9422e20a365a82972882447929b63 100644 (file)
@@ -52,7 +52,7 @@ struct amdgpu_winsys {
 
    amdgpu_device_handle dev;
 
-   pipe_mutex bo_fence_lock;
+   mtx_t bo_fence_lock;
 
    int num_cs; /* The number of command streams created. */
    unsigned num_total_rejected_cs;
@@ -79,7 +79,7 @@ struct amdgpu_winsys {
    bool check_vm;
 
    /* List of all allocated buffers */
-   pipe_mutex global_bo_list_lock;
+   mtx_t global_bo_list_lock;
    struct list_head global_bo_list;
    unsigned num_buffers;
 };
index 236e94cbbff9dbef98237dea11a1874231def4ef..d5fababe702358dcbf151cbc88bcc478064bf393 100644 (file)
@@ -43,7 +43,7 @@ struct radeon_bo {
             struct pb_cache_entry cache_entry;
 
             void *ptr;
-            pipe_mutex map_mutex;
+            mtx_t map_mutex;
             unsigned map_count;
             bool use_reusable_pool;
         } real;
index a39a7bed5f42958a17ae0d0e1241c4e252bb0bb0..6c6d920d0324b7c16b3098157b6205c9d033fd2d 100644 (file)
@@ -57,7 +57,7 @@ pipe_static_mutex(fd_tab_mutex);
  * with multiple contexts (here command streams) backed by one winsys. */
 static bool radeon_set_fd_access(struct radeon_drm_cs *applier,
                                  struct radeon_drm_cs **owner,
-                                 pipe_mutex *mutex,
+                                 mtx_t *mutex,
                                  unsigned request, const char *request_name,
                                  bool enable)
 {
index 04659e45ef73d1548c0d27de826bdf06a7f6f3dd..362dab2239809c0710784d66c78bc9b9b5eb0060 100644 (file)
@@ -78,9 +78,9 @@ struct radeon_drm_winsys {
     struct util_hash_table *bo_handles;
     /* List of buffer virtual memory ranges. Protectded by bo_handles_mutex. */
     struct util_hash_table *bo_vas;
-    pipe_mutex bo_handles_mutex;
-    pipe_mutex bo_va_mutex;
-    pipe_mutex bo_fence_lock;
+    mtx_t bo_handles_mutex;
+    mtx_t bo_va_mutex;
+    mtx_t bo_fence_lock;
 
     uint64_t va_offset;
     struct list_head va_holes;
@@ -91,9 +91,9 @@ struct radeon_drm_winsys {
     uint32_t num_cpus;      /* Number of CPUs. */
 
     struct radeon_drm_cs *hyperz_owner;
-    pipe_mutex hyperz_owner_mutex;
+    mtx_t hyperz_owner_mutex;
     struct radeon_drm_cs *cmask_owner;
-    pipe_mutex cmask_owner_mutex;
+    mtx_t cmask_owner_mutex;
 
     /* multithreaded command submission */
     struct util_queue cs_queue;
index d049d1dbc464c844c5badb22dceb5cf71220eb75..4c5a12121f822c47d56b9f4f1d51aaedca92df0f 100644 (file)
@@ -70,7 +70,7 @@ struct fenced_manager
    /**
     * Following members are mutable and protected by this mutex.
     */
-   pipe_mutex mutex;
+   mtx_t mutex;
 
    /**
     * Fenced buffer list.
index bcf473a932cdd6d4d9a96dc740eb2aaca16cb835..0fbb078a84dc2632fe63247cc34f6d9b779cac1f 100644 (file)
@@ -40,7 +40,7 @@ struct vmw_fence_ops
    struct pb_fence_ops base;
    struct vmw_winsys_screen *vws;
 
-   pipe_mutex mutex;
+   mtx_t mutex;
 
    /*
     * Protected by mutex;
index f8b582d2cefe13c31b237239c0dd0782ed2fa3eb..baeef5056bd4f677a9258e4ded2f53448e60274a 100644 (file)
@@ -57,7 +57,7 @@ struct vmw_svga_winsys_surface
    unsigned next_present_no;
    uint32_t present_fences[VMW_MAX_PRESENTS];
 
-   pipe_mutex mutex;
+   mtx_t mutex;
    struct svga_winsys_buffer *buf; /* Current backing guest buffer */
    uint32_t mapcount; /* Number of mappers */
    uint32_t map_mode; /* PIPE_TRANSFER_[READ|WRITE] */
index ffd7658ca81faf6e2a6569c92fca4827faa62aa2..f6772153a42a39e9c460c93439ea549d3886d1c8 100644 (file)
@@ -59,11 +59,11 @@ struct virgl_drm_winsys
    struct list_head delayed;
    int num_delayed;
    unsigned usecs;
-   pipe_mutex mutex;
+   mtx_t mutex;
 
    struct util_hash_table *bo_handles;
    struct util_hash_table *bo_names;
-   pipe_mutex bo_handles_mutex;
+   mtx_t bo_handles_mutex;
 };
 
 struct virgl_drm_cmd_buf {
index b4faa70b67e8af6d3bda438ad6d2d57aa75442c8..031037b6b5f250e60d519d8d13d245189ea5afc4 100644 (file)
@@ -48,7 +48,7 @@ struct virgl_vtest_winsys {
    struct list_head delayed;
    int num_delayed;
    unsigned usecs;
-   pipe_mutex mutex;
+   mtx_t mutex;
 };
 
 struct virgl_hw_res {