diff options
author | Andy Grover <andy.grover@oracle.com> | 2010-03-11 13:50:02 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-17 04:16:57 (GMT) |
commit | 97069788d6784ac92d050557a02f6e7bf4d1f53d (patch) | |
tree | a1749dae883efd89777c031b18285f0570080b89 /net/rds/ib_cm.c | |
parent | 571c02fa81e43ebb4b793f626d6c7bf0fa18902b (diff) | |
download | linux-97069788d6784ac92d050557a02f6e7bf4d1f53d.tar.xz |
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/ib_cm.c')
-rw-r--r-- | net/rds/ib_cm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/rds/ib_cm.c b/net/rds/ib_cm.c index 647cb8f..e1f124b 100644 --- a/net/rds/ib_cm.c +++ b/net/rds/ib_cm.c @@ -203,9 +203,10 @@ static void rds_ib_qp_event_handler(struct ib_event *event, void *data) rdma_notify(ic->i_cm_id, IB_EVENT_COMM_EST); break; default: - rds_ib_conn_error(conn, "RDS/IB: Fatal QP Event %u " + rdsdebug("Fatal QP Event %u " "- connection %pI4->%pI4, reconnecting\n", event->event, &conn->c_laddr, &conn->c_faddr); + rds_conn_drop(conn); break; } } |