be2iscsi: Remove unused mcc_cq_lock
authorJitendra Bhivare <jitendra.bhivare@broadcom.com>
Thu, 4 Feb 2016 10:19:09 +0000 (15:49 +0530)
committerMartin K. Petersen <martin.petersen@oracle.com>
Wed, 24 Feb 2016 02:27:02 +0000 (21:27 -0500)
mcc_cq_lock spin_lock is used only in beiscsi_process_mcc which is
called only when all interrupts are disabled from mgmt_epfw_cleanup
during unloading of driver. There is no other context where there can be
contention for the processing of CQ.

Signed-off-by: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/be2iscsi/be.h
drivers/scsi/be2iscsi/be_cmds.c
drivers/scsi/be2iscsi/be_main.c

index 7d425af66530efc21712c473af10181d44064538..1524fe419e5c8aa27b4ff671385b5190e57f5468 100644 (file)
@@ -132,7 +132,6 @@ struct be_ctrl_info {
        /* MCC Rings */
        struct be_mcc_obj mcc_obj;
        spinlock_t mcc_lock;    /* For serializing mcc cmds to BE card */
-       spinlock_t mcc_cq_lock;
 
        wait_queue_head_t mcc_wait[MAX_MCC_CMD + 1];
        unsigned int mcc_tag[MAX_MCC_CMD];
index 34c33d422ec4b8bb73fa45c863fca68021f5c08e..e8e9d2202959a38f18c8d390000bee872061ff82 100644 (file)
@@ -532,7 +532,6 @@ int beiscsi_process_mcc(struct beiscsi_hba *phba)
        int num = 0, status = 0;
        struct be_ctrl_info *ctrl = &phba->ctrl;
 
-       spin_lock_bh(&phba->ctrl.mcc_cq_lock);
        while ((compl = be_mcc_compl_get(phba))) {
                if (compl->flags & CQE_FLAGS_ASYNC_MASK) {
                        beiscsi_process_async_event(phba, compl);
@@ -547,7 +546,6 @@ int beiscsi_process_mcc(struct beiscsi_hba *phba)
        if (num)
                hwi_ring_cq_db(phba, phba->ctrl.mcc_obj.cq.id, num, 1);
 
-       spin_unlock_bh(&phba->ctrl.mcc_cq_lock);
        return status;
 }
 
index 70179e122b869e3435fd12dbba218562c4fbf05b..314fd2c094359399e62a9319f83d008507336de2 100644 (file)
@@ -730,7 +730,6 @@ static int be_ctrl_init(struct beiscsi_hba *phba, struct pci_dev *pdev)
        memset(mbox_mem_align->va, 0, sizeof(struct be_mcc_mailbox));
        mutex_init(&ctrl->mbox_lock);
        spin_lock_init(&phba->ctrl.mcc_lock);
-       spin_lock_init(&phba->ctrl.mcc_cq_lock);
 
        return status;
 }
This page took 0.028063 seconds and 5 git commands to generate.