Module: Mesa Branch: 9.1 Commit: 0437388d596908ed5c3059f0ca5723a7a2915057 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0437388d596908ed5c3059f0ca5723a7a2915057
Author: Alex Deucher <[email protected]> Date: Thu Aug 8 21:11:22 2013 -0400 r600g: disable GPUVM by default Cayman and trinity systems still seem to suffer from stability problems with GPUVM. This also fixes compute on these asics. It can still be enabled for testing by setting env var RADEON_VA=true. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=65958 Signed-off-by: Alex Deucher <[email protected]> CC: "9.2" <[email protected]> CC: "9.1" <[email protected]> Reviewed-by: Christian König <[email protected]> (cherry picked from commit c88783047e2a0faa39d6f3ac6fbd3f26a480d5d3) --- src/gallium/winsys/radeon/drm/radeon_drm_winsys.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c b/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c index 8c44c51..87c65ff 100644 --- a/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c +++ b/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c @@ -382,7 +382,7 @@ static boolean do_winsys_init(struct radeon_drm_winsys *ws) &ws->info.r600_ib_vm_max_size)) ws->info.r600_virtual_address = FALSE; } - if (ws->gen == DRV_R600 && !debug_get_bool_option("RADEON_VA", TRUE)) + if (ws->gen == DRV_R600 && !debug_get_bool_option("RADEON_VA", FALSE)) ws->info.r600_virtual_address = FALSE; } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
