diff options
author | Michael Chan <mchan@broadcom.com> | 2010-10-13 14:06:47 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-14 10:45:54 -0700 |
commit | fdf24086f4752aee5dfb40143c736250df017820 (patch) | |
tree | b4bf02475161d17d7e7335d801c69e9947ec92b7 /drivers/scsi | |
parent | a2c9e769dbb92336ddacba01d399ad0f509e7094 (diff) | |
download | linux-3.10-fdf24086f4752aee5dfb40143c736250df017820.tar.gz linux-3.10-fdf24086f4752aee5dfb40143c736250df017820.tar.bz2 linux-3.10-fdf24086f4752aee5dfb40143c736250df017820.zip |
cnic: Defer iscsi connection cleanup
The bnx2x devices require a 2 second quiet time before sending the last
RAMROD command to destroy a connection. This sleep wait adds up to a
long delay when iscsid is serially destroying maultiple connections.
Create a workqueue to perform the final connection cleanup in the
background to speed up the process. This significantly speeds up the
process as the wait time can be done in parallel for multiple connections.
Signed-off-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/bnx2i/57xx_iscsi_constants.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/bnx2i/57xx_iscsi_constants.h b/drivers/scsi/bnx2i/57xx_iscsi_constants.h index 2fceb19eb27..1b6f86b2482 100644 --- a/drivers/scsi/bnx2i/57xx_iscsi_constants.h +++ b/drivers/scsi/bnx2i/57xx_iscsi_constants.h @@ -120,6 +120,8 @@ /* additional LOM specific iSCSI license not installed */ #define ISCSI_KCQE_COMPLETION_STATUS_LOM_ISCSI_NOT_ENABLED (0x51) +#define ISCSI_KCQE_COMPLETION_STATUS_CID_BUSY (0x80) + /* SQ/RQ/CQ DB structure sizes */ #define ISCSI_SQ_DB_SIZE (16) #define ISCSI_RQ_DB_SIZE (16) |