]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Merge branches 'bart-srp', 'generic-errors', 'ira-cleanups' and 'mwang-v8' into k...
authorDoug Ledford <dledford@redhat.com>
Wed, 20 May 2015 20:12:40 +0000 (16:12 -0400)
committerDoug Ledford <dledford@redhat.com>
Wed, 20 May 2015 20:12:40 +0000 (16:12 -0400)
1  2  3  4 
drivers/infiniband/core/cma.c
drivers/infiniband/core/mad.c
drivers/infiniband/core/user_mad.c
drivers/infiniband/core/verbs.c
drivers/infiniband/ulp/srp/ib_srp.c
include/rdma/ib_verbs.h
net/sunrpc/xprtrdma/svc_rdma_transport.c

Simple merge
Simple merge
Simple merge
Simple merge
index 06d91e7e4163ce2e0a86424a12b66ceb549f28ef,667df9d423eff1168020bfc6196a66324604b5f7,918814cd0f806f5344e5f293e2bb059010237727,918814cd0f806f5344e5f293e2bb059010237727..c3f654d20038eaab65ee66da2924e7404ced8c52
@@@@@ -1919,20 -1930,21 -1929,20 -1929,20 +1920,21 @@@@@ static void srp_handle_qp_err(u64 wr_id
                return;
        }
    
 ---    if (target->connected && !target->qp_in_error) {
 +++    if (ch->connected && !target->qp_in_error) {
                if (wr_id & LOCAL_INV_WR_ID_MASK) {
                        shost_printk(KERN_ERR, target->scsi_host, PFX
- --                                 "LOCAL_INV failed with status %d\n",
- --                                 wc_status);
+ ++                                 "LOCAL_INV failed with status %s (%d)\n",
+ ++                                 ib_wc_status_msg(wc_status), wc_status);
                } else if (wr_id & FAST_REG_WR_ID_MASK) {
                        shost_printk(KERN_ERR, target->scsi_host, PFX
- --                                 "FAST_REG_MR failed status %d\n",
- --                                 wc_status);
+ ++                                 "FAST_REG_MR failed status %s (%d)\n",
+ ++                                 ib_wc_status_msg(wc_status), wc_status);
                } else {
                        shost_printk(KERN_ERR, target->scsi_host,
- --                                 PFX "failed %s status %d for iu %p\n",
+ ++                                 PFX "failed %s status %s (%d) for iu %p\n",
                                     send_err ? "send" : "receive",
- --                                 wc_status, (void *)(uintptr_t)wr_id);
+ ++                                 ib_wc_status_msg(wc_status), wc_status,
+ ++                                 (void *)(uintptr_t)wr_id);
                }
                queue_work(system_long_wq, &target->tl_err_work);
        }
Simple merge