48737a8
From: Josh Boyer <jwboyer@fedoraproject.org>
48737a8
Date: Thu, 29 Jan 2015 14:03:17 -0500
48737a8
Subject: [PATCH] drm/i915: Disable verbose state checks
48737a8
48737a8
For stable releases, we disable the verbose state checks in the i915 driver.
48737a8
They are mostly for development purposes and they fill the retrace server
48737a8
to the point of uselessness.  We leave these enabled in rawhide kernels,
48737a8
where they are both more likely to get attention from upstream and more
48737a8
likely to be fixable.
48737a8
48737a8
Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org>
48737a8
---
48737a8
 drivers/gpu/drm/i915/i915_params.c | 2 +-
48737a8
 1 file changed, 1 insertion(+), 1 deletion(-)
48737a8
48737a8
diff --git a/drivers/gpu/drm/i915/i915_params.c b/drivers/gpu/drm/i915/i915_params.c
ea45716
index 44f2262a5553..09566acd995d 100644
48737a8
--- a/drivers/gpu/drm/i915/i915_params.c
48737a8
+++ b/drivers/gpu/drm/i915/i915_params.c
48737a8
@@ -51,7 +51,7 @@ struct i915_params i915 __read_mostly = {
48737a8
 	.disable_vtd_wa = 0,
48737a8
 	.use_mmio_flip = 0,
48737a8
 	.mmio_debug = 0,
48737a8
-	.verbose_state_checks = 1,
48737a8
+	.verbose_state_checks = 0,
ea45716
 	.nuclear_pageflip = 0,
48737a8
 };
48737a8