Skip to content

Commit

Permalink
[infiniband] Generate more specific errors in response to failure MADs
Browse files Browse the repository at this point in the history
Generate errors within individual MAD transaction consumers such as
ib_pathrec.c and ib_mcast.c, rather than within ib_mi.c.  This allows
for more meaningful error messages to eventually be displayed to the
user.
  • Loading branch information
Michael Brown committed Aug 10, 2009
1 parent 0c30dc6 commit a0d3379
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion src/net/infiniband/ib_cm.c
Expand Up @@ -148,6 +148,8 @@ static void ib_cm_req_complete ( struct ib_device *ibdev,
size_t private_data_len = 0;

/* Report failures */
if ( ( rc == 0 ) && ( mad->hdr.status != htons ( IB_MGMT_STATUS_OK ) ))
rc = -EIO;
if ( rc != 0 ) {
DBGC ( conn, "CM %p connection request failed: %s\n",
conn, strerror ( rc ) );
Expand Down Expand Up @@ -195,7 +197,7 @@ static void ib_cm_req_complete ( struct ib_device *ibdev,
default:
DBGC ( conn, "CM %p unexpected response (attribute %04x)\n",
conn, ntohs ( mad->hdr.attr_id ) );
rc = -EIO;
rc = -ENOTSUP;
break;
}

Expand Down
2 changes: 2 additions & 0 deletions src/net/infiniband/ib_mcast.c
Expand Up @@ -86,6 +86,8 @@ static void ib_mcast_complete ( struct ib_device *ibdev,
unsigned long qkey;

/* Report failures */
if ( ( rc == 0 ) && ( mad->hdr.status != htons ( IB_MGMT_STATUS_OK ) ))
rc = -ENOTCONN;
if ( rc != 0 ) {
DBGC ( ibdev, "IBDEV %p QPN %lx join failed: %s\n",
ibdev, qp->qpn, strerror ( rc ) );
Expand Down
6 changes: 1 addition & 5 deletions src/net/infiniband/ib_mi.c
Expand Up @@ -76,18 +76,14 @@ static int ib_mi_handle ( struct ib_device *ibdev,
struct ib_mad_hdr *hdr = &mad->hdr;
struct ib_mad_transaction *madx;
struct ib_mad_agent *agent;
int rc;

/* Look for a matching transaction by TID */
list_for_each_entry ( madx, &mi->madx, list ) {
if ( memcmp ( &hdr->tid, &madx->mad.hdr.tid,
sizeof ( hdr->tid ) ) != 0 )
continue;
/* Get transaction result status */
rc = ( ( hdr->status == htons ( IB_MGMT_STATUS_OK ) ) ?
0 : -EIO );
/* Found a matching transaction */
madx->op->complete ( ibdev, mi, madx, rc, mad, av );
madx->op->complete ( ibdev, mi, madx, 0, mad, av );
return 0;
}

Expand Down
2 changes: 2 additions & 0 deletions src/net/infiniband/ib_pathrec.c
Expand Up @@ -53,6 +53,8 @@ static void ib_path_complete ( struct ib_device *ibdev,
struct ib_path_record *pathrec = &mad->sa.sa_data.path_record;

/* Report failures */
if ( ( rc == 0 ) && ( mad->hdr.status != htons ( IB_MGMT_STATUS_OK ) ))
rc = -ENETUNREACH;
if ( rc != 0 ) {
DBGC ( ibdev, "IBDEV %p path lookup for %08x:%08x:%08x:%08x "
"failed: %s\n", ibdev, htonl ( dgid->u.dwords[0] ),
Expand Down

0 comments on commit a0d3379

Please sign in to comment.