diff options
Diffstat (limited to 'net/rds')
-rw-r--r-- | net/rds/ib_cm.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/rds/ib_cm.c b/net/rds/ib_cm.c index ce3775abc6e7..11d535b16125 100644 --- a/net/rds/ib_cm.c +++ b/net/rds/ib_cm.c | |||
@@ -677,9 +677,8 @@ int rds_ib_cm_handle_connect(struct rdma_cm_id *cm_id, | |||
677 | event->param.conn.initiator_depth); | 677 | event->param.conn.initiator_depth); |
678 | 678 | ||
679 | /* rdma_accept() calls rdma_reject() internally if it fails */ | 679 | /* rdma_accept() calls rdma_reject() internally if it fails */ |
680 | err = rdma_accept(cm_id, &conn_param); | 680 | if (rdma_accept(cm_id, &conn_param)) |
681 | if (err) | 681 | rds_ib_conn_error(conn, "rdma_accept failed\n"); |
682 | rds_ib_conn_error(conn, "rdma_accept failed (%d)\n", err); | ||
683 | 682 | ||
684 | out: | 683 | out: |
685 | if (conn) | 684 | if (conn) |