CQ numbers are only 24 bits, so only print 6 hex digits and mask off
reserved part when reporting a CQ event.

Signed-off-by: Roland Dreier <[EMAIL PROTECTED]>


--- linux-export.orig/drivers/infiniband/hw/mthca/mthca_eq.c    2005-03-31 
19:06:55.000000000 -0800
+++ linux-export/drivers/infiniband/hw/mthca/mthca_eq.c 2005-04-01 
12:38:24.575625986 -0800
@@ -344,10 +344,10 @@
                        break;
 
                case MTHCA_EVENT_TYPE_CQ_ERROR:
-                       mthca_warn(dev, "CQ %s on CQN %08x\n",
+                       mthca_warn(dev, "CQ %s on CQN %06x\n",
                                   eqe->event.cq_err.syndrome == 1 ?
                                   "overrun" : "access violation",
-                                  be32_to_cpu(eqe->event.cq_err.cqn));
+                                  be32_to_cpu(eqe->event.cq_err.cqn) & 
0xffffff);
                        break;
 
                case MTHCA_EVENT_TYPE_EQ_OVERFLOW:

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to