mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[SCSI] cxgbi: enable TEXT PDU support
cxgb3i and cxgb4i support TEXT PDU offloading, so set the bits to enable it. Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
fc336387db
commit
fdafd4dfc7
2 changed files with 2 additions and 2 deletions
|
@ -105,7 +105,7 @@ static struct iscsi_transport cxgb3i_iscsi_transport = {
|
|||
/* owner and name should be set already */
|
||||
.caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
|
||||
| CAP_DATADGST | CAP_DIGEST_OFFLOAD |
|
||||
CAP_PADDING_OFFLOAD,
|
||||
CAP_PADDING_OFFLOAD | CAP_TEXT_NEGO,
|
||||
.param_mask = ISCSI_MAX_RECV_DLENGTH | ISCSI_MAX_XMIT_DLENGTH |
|
||||
ISCSI_HDRDGST_EN | ISCSI_DATADGST_EN |
|
||||
ISCSI_INITIAL_R2T_EN | ISCSI_MAX_R2T |
|
||||
|
|
|
@ -106,7 +106,7 @@ static struct iscsi_transport cxgb4i_iscsi_transport = {
|
|||
.name = DRV_MODULE_NAME,
|
||||
.caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST |
|
||||
CAP_DATADGST | CAP_DIGEST_OFFLOAD |
|
||||
CAP_PADDING_OFFLOAD,
|
||||
CAP_PADDING_OFFLOAD | CAP_TEXT_NEGO,
|
||||
.param_mask = ISCSI_MAX_RECV_DLENGTH | ISCSI_MAX_XMIT_DLENGTH |
|
||||
ISCSI_HDRDGST_EN | ISCSI_DATADGST_EN |
|
||||
ISCSI_INITIAL_R2T_EN | ISCSI_MAX_R2T |
|
||||
|
|
Loading…
Reference in a new issue