diff options
author | Andy Grover <andy.grover@oracle.com> | 2010-03-11 08:50:02 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-17 00:16:57 -0400 |
commit | 97069788d6784ac92d050557a02f6e7bf4d1f53d (patch) | |
tree | a1749dae883efd89777c031b18285f0570080b89 /net/rds/iw_cm.c | |
parent | 571c02fa81e43ebb4b793f626d6c7bf0fa18902b (diff) |
RDS: Turn down alarming reconnect messages
RDS's error messages when a connection goes down are a little
extreme. A connection may go down, and it will be re-established,
and everything is fine. This patch links these messages through
rdsdebug(), instead of to printk directly.
Signed-off-by: Andy Grover <andy.grover@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds/iw_cm.c')
-rw-r--r-- | net/rds/iw_cm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/rds/iw_cm.c b/net/rds/iw_cm.c index 394cf6b4d0aa..6bc638fd252c 100644 --- a/net/rds/iw_cm.c +++ b/net/rds/iw_cm.c | |||
@@ -156,9 +156,11 @@ static void rds_iw_qp_event_handler(struct ib_event *event, void *data) | |||
156 | case IB_EVENT_QP_REQ_ERR: | 156 | case IB_EVENT_QP_REQ_ERR: |
157 | case IB_EVENT_QP_FATAL: | 157 | case IB_EVENT_QP_FATAL: |
158 | default: | 158 | default: |
159 | rds_iw_conn_error(conn, "RDS/IW: Fatal QP Event %u - connection %pI4->%pI4...reconnecting\n", | 159 | rdsdebug("Fatal QP Event %u " |
160 | "- connection %pI4->%pI4, reconnecting\n", | ||
160 | event->event, &conn->c_laddr, | 161 | event->event, &conn->c_laddr, |
161 | &conn->c_faddr); | 162 | &conn->c_faddr); |
163 | rds_conn_drop(conn); | ||
162 | break; | 164 | break; |
163 | } | 165 | } |
164 | } | 166 | } |