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