From: Eric Anholt Date: Wed, 2 Jan 2008 23:51:27 +0000 (-0800) Subject: Revert "[intel] Use the memory type mask containing the caching flags." X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a099461fa31db1ed8935bb409c321dc46c54ce8d;p=mesa.git Revert "[intel] Use the memory type mask containing the caching flags." This reverts commit 8bb9ae3693362a302206255c61f512d942df9bbf. Validating our kernel buffers with the caching off in flags but on in mask means that the kernel migrates the buffer to be uncached, which is undesired. --- diff --git a/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c b/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c index 92c0be5e0f8..b9eabb42c01 100644 --- a/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c +++ b/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c @@ -59,7 +59,7 @@ * as it would require a bit of investigation to figure * out what mask value should be used. */ -#define INTEL_BO_MASK (DRM_BO_MASK_MEMTYPE | \ +#define INTEL_BO_MASK (DRM_BO_MASK_MEM | \ DRM_BO_FLAG_READ | \ DRM_BO_FLAG_WRITE | \ DRM_BO_FLAG_EXE)