aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/sgi-gru/gruhandles.c
diff options
context:
space:
mode:
authorJack Steiner <steiner@sgi.com>2009-12-15 19:48:07 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2009-12-16 10:20:15 -0500
commit648eb8e50200a09db2488623958d9cbd4b8aaf55 (patch)
treeb8f2dc6444eccbd7a34cdea784528a46eeebb84b /drivers/misc/sgi-gru/gruhandles.c
parentf2965d68b6775290218ff2a040e64c8b40556280 (diff)
gru: improve messages for malfunctioning GRUs
Improve error messages for malfunctioning GRUs. Identify the type of instruction that is failing. Signed-off-by: Jack Steiner <steiner@sgi.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/misc/sgi-gru/gruhandles.c')
-rw-r--r--drivers/misc/sgi-gru/gruhandles.c22
1 files changed, 19 insertions, 3 deletions
diff --git a/drivers/misc/sgi-gru/gruhandles.c b/drivers/misc/sgi-gru/gruhandles.c
index 37e7cfc53b9c..806419a6b44c 100644
--- a/drivers/misc/sgi-gru/gruhandles.c
+++ b/drivers/misc/sgi-gru/gruhandles.c
@@ -54,6 +54,21 @@ static void start_instruction(void *h)
54 gru_flush_cache(h); 54 gru_flush_cache(h);
55} 55}
56 56
57static void report_instruction_timeout(void *h)
58{
59 unsigned long goff = GSEGPOFF((unsigned long)h);
60 char *id = "???";
61
62 if (TYPE_IS(CCH, goff))
63 id = "CCH";
64 else if (TYPE_IS(TGH, goff))
65 id = "TGH";
66 else if (TYPE_IS(TFH, goff))
67 id = "TFH";
68
69 panic(KERN_ALERT "GRU %p (%s) is malfunctioning\n", h, id);
70}
71
57static int wait_instruction_complete(void *h, enum mcs_op opc) 72static int wait_instruction_complete(void *h, enum mcs_op opc)
58{ 73{
59 int status; 74 int status;
@@ -64,9 +79,10 @@ static int wait_instruction_complete(void *h, enum mcs_op opc)
64 status = GET_MSEG_HANDLE_STATUS(h); 79 status = GET_MSEG_HANDLE_STATUS(h);
65 if (status != CCHSTATUS_ACTIVE) 80 if (status != CCHSTATUS_ACTIVE)
66 break; 81 break;
67 if (GRU_OPERATION_TIMEOUT < (get_cycles() - start_time)) 82 if (GRU_OPERATION_TIMEOUT < (get_cycles() - start_time)) {
68 panic("GRU %p is malfunctioning: start %ld, end %ld\n", 83 report_instruction_timeout(h);
69 h, start_time, (unsigned long)get_cycles()); 84 start_time = get_cycles();
85 }
70 } 86 }
71 if (gru_options & OPT_STATS) 87 if (gru_options & OPT_STATS)
72 update_mcs_stats(opc, get_cycles() - start_time); 88 update_mcs_stats(opc, get_cycles() - start_time);