From: Paulo Zanoni Date: Mon, 14 Sep 2015 18:19:58 +0000 (-0300) Subject: drm/i915: print the correct amount of bytes allocated for the CFB X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b8bf5d7fe0dee64ed0a73fa1e95ba8e464d605da;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git drm/i915: print the correct amount of bytes allocated for the CFB And also print the threshold. I was surprised to see a log message claiming the CFB size was 32mb when there was less than 24mb available for it. Reviewed-by: Ville Syrjälä Signed-off-by: Paulo Zanoni Signed-off-by: Daniel Vetter --- diff --git a/drivers/gpu/drm/i915/intel_fbc.c b/drivers/gpu/drm/i915/intel_fbc.c index 6f3c2ea75dd8..69726a7ed0d0 100644 --- a/drivers/gpu/drm/i915/intel_fbc.c +++ b/drivers/gpu/drm/i915/intel_fbc.c @@ -634,8 +634,9 @@ static int intel_fbc_alloc_cfb(struct drm_i915_private *dev_priv, int size, dev_priv->fbc.uncompressed_size = size; - DRM_DEBUG_KMS("reserved %d bytes of contiguous stolen space for FBC\n", - size); + DRM_DEBUG_KMS("reserved %llu bytes of contiguous stolen space for FBC, threshold: %d\n", + dev_priv->fbc.compressed_fb.size, + dev_priv->fbc.threshold); return 0;