From: Eric Anholt Date: Mon, 18 Jun 2007 19:20:07 +0000 (-0700) Subject: Fix TTM static allocation flags. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bf0ae055de73e0cf66085e02ad4881bea497e4cb;p=mesa.git Fix TTM static allocation flags. --- diff --git a/src/mesa/drivers/dri/common/dri_bufmgr_ttm.c b/src/mesa/drivers/dri/common/dri_bufmgr_ttm.c index 508d4f50539..47ea42ad553 100644 --- a/src/mesa/drivers/dri/common/dri_bufmgr_ttm.c +++ b/src/mesa/drivers/dri/common/dri_bufmgr_ttm.c @@ -150,7 +150,7 @@ dri_ttm_alloc_static(dri_bufmgr *bufmgr, const char *name, * pass all of the allocation class flags. */ flags = location_mask | DRM_BO_FLAG_READ | DRM_BO_FLAG_WRITE | - DRM_BO_FLAG_EXE | DRM_BO_FLAG_NO_EVICT | DRM_BO_FLAG_NO_MOVE; + DRM_BO_FLAG_EXE | DRM_BO_FLAG_NO_MOVE; /* No hints we want to use. */ hint = 0;