Re: [Intel-gfx] [PATCH] drm/i915: Emit telltales for extra levels of debug upon initialisation

2016-10-18 Thread Matthew Auld
On 14 October 2016 at 14:27, Chris Wilson  wrote:
> After printing our welcome message to the user, also include
> supplementary details on what debugging is enabled (useful for us to
> sanity check what extra safeguards are on for any random kernel).
>
> Signed-off-by: Chris Wilson 
Reviewed-by: Matthew Auld 
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx


[Intel-gfx] [PATCH] drm/i915: Emit telltales for extra levels of debug upon initialisation

2016-10-14 Thread Chris Wilson
After printing our welcome message to the user, also include
supplementary details on what debugging is enabled (useful for us to
sanity check what extra safeguards are on for any random kernel).

Signed-off-by: Chris Wilson 
---
 drivers/gpu/drm/i915/i915_drv.c | 4 
 1 file changed, 4 insertions(+)

diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index 98fc6d3b2ca1..4df75e63cf22 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -1241,6 +1241,10 @@ int i915_driver_load(struct pci_dev *pdev, const struct 
pci_device_id *ent)
DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n",
 driver.name, driver.major, driver.minor, driver.patchlevel,
 driver.date, pci_name(pdev), dev_priv->drm.primary->index);
+   if (IS_ENABLED(CONFIG_DRM_I915_DEBUG))
+   DRM_INFO("DRM_I915_DEBUG enabled\n");
+   if (IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM))
+   DRM_INFO("DRM_I915_DEBUG_GEM enabled\n");
 
intel_runtime_pm_put(dev_priv);
 
-- 
2.9.3

___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx