* drm/i915:Fix array bounds warnings
@ 2012-03-29 7:59 majianpeng
0 siblings, 0 replies; only message in thread
From: majianpeng @ 2012-03-29 7:59 UTC (permalink / raw)
To: keithp; +Cc: dri-devel
>From 9f714f4192fcfccfc312466531a77f0e73162417 Mon Sep 17 00:00:00 2001
From: majianpeng <majianpeng@gmail.com>
Date: Thu, 29 Mar 2012 15:48:02 +0800
Subject: [PATCH] drm/i915:Fix array bounds warnings.
Signed-off-by: majianpeng <majianpeng@gmail.com>
---
drivers/gpu/drm/i915/i915_debugfs.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
index fdb7cce..8ad59dd 100644
--- a/drivers/gpu/drm/i915/i915_debugfs.c
+++ b/drivers/gpu/drm/i915/i915_debugfs.c
@@ -704,6 +704,7 @@ static void i915_ring_error_state(struct seq_file *m,
struct drm_i915_error_state *error,
unsigned ring)
{
+ BUG_ON(ring >= I915_NUM_RINGS);
seq_printf(m, "%s command stream:\n", ring_str(ring));
seq_printf(m, " HEAD: 0x%08x\n", error->head[ring]);
seq_printf(m, " TAIL: 0x%08x\n", error->tail[ring]);
--
1.7.5.4
--------------
majianpeng
2012-03-29
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-03-29 7:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-29 7:59 drm/i915:Fix array bounds warnings majianpeng
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.