diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2011-02-16 16:04:32 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-02-24 12:40:36 -0500 |
commit | fdafd4dfc7bbdd40a4692192b77299b28c8a948f (patch) | |
tree | 4cf643cd03696811695f9d7a0fc0d1e2937c0233 /drivers/scsi/cxgbi | |
parent | fc336387dbf02bd89cc5ea38da07e4058cfb4de0 (diff) |
[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>
Diffstat (limited to 'drivers/scsi/cxgbi')
-rw-r--r-- | drivers/scsi/cxgbi/cxgb3i/cxgb3i.c | 2 | ||||
-rw-r--r-- | drivers/scsi/cxgbi/cxgb4i/cxgb4i.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/cxgbi/cxgb3i/cxgb3i.c b/drivers/scsi/cxgbi/cxgb3i/cxgb3i.c index e2362b97f329..69a6769c633e 100644 --- a/drivers/scsi/cxgbi/cxgb3i/cxgb3i.c +++ b/drivers/scsi/cxgbi/cxgb3i/cxgb3i.c | |||
@@ -105,7 +105,7 @@ static struct iscsi_transport cxgb3i_iscsi_transport = { | |||
105 | /* owner and name should be set already */ | 105 | /* owner and name should be set already */ |
106 | .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST | 106 | .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST |
107 | | CAP_DATADGST | CAP_DIGEST_OFFLOAD | | 107 | | CAP_DATADGST | CAP_DIGEST_OFFLOAD | |
108 | CAP_PADDING_OFFLOAD, | 108 | CAP_PADDING_OFFLOAD | CAP_TEXT_NEGO, |
109 | .param_mask = ISCSI_MAX_RECV_DLENGTH | ISCSI_MAX_XMIT_DLENGTH | | 109 | .param_mask = ISCSI_MAX_RECV_DLENGTH | ISCSI_MAX_XMIT_DLENGTH | |
110 | ISCSI_HDRDGST_EN | ISCSI_DATADGST_EN | | 110 | ISCSI_HDRDGST_EN | ISCSI_DATADGST_EN | |
111 | ISCSI_INITIAL_R2T_EN | ISCSI_MAX_R2T | | 111 | ISCSI_INITIAL_R2T_EN | ISCSI_MAX_R2T | |
diff --git a/drivers/scsi/cxgbi/cxgb4i/cxgb4i.c b/drivers/scsi/cxgbi/cxgb4i/cxgb4i.c index 5b1f0785dafd..719aa71f5b10 100644 --- a/drivers/scsi/cxgbi/cxgb4i/cxgb4i.c +++ b/drivers/scsi/cxgbi/cxgb4i/cxgb4i.c | |||
@@ -106,7 +106,7 @@ static struct iscsi_transport cxgb4i_iscsi_transport = { | |||
106 | .name = DRV_MODULE_NAME, | 106 | .name = DRV_MODULE_NAME, |
107 | .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST | | 107 | .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST | |
108 | CAP_DATADGST | CAP_DIGEST_OFFLOAD | | 108 | CAP_DATADGST | CAP_DIGEST_OFFLOAD | |
109 | CAP_PADDING_OFFLOAD, | 109 | CAP_PADDING_OFFLOAD | CAP_TEXT_NEGO, |
110 | .param_mask = ISCSI_MAX_RECV_DLENGTH | ISCSI_MAX_XMIT_DLENGTH | | 110 | .param_mask = ISCSI_MAX_RECV_DLENGTH | ISCSI_MAX_XMIT_DLENGTH | |
111 | ISCSI_HDRDGST_EN | ISCSI_DATADGST_EN | | 111 | ISCSI_HDRDGST_EN | ISCSI_DATADGST_EN | |
112 | ISCSI_INITIAL_R2T_EN | ISCSI_MAX_R2T | | 112 | ISCSI_INITIAL_R2T_EN | ISCSI_MAX_R2T | |