aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/fnic/fnic_main.c
diff options
context:
space:
mode:
authorVasu Dev <vasu.dev@intel.com>2010-04-09 14:22:59 -0700
committerJames Bottomley <James.Bottomley@suse.de>2010-04-11 14:02:39 -0500
commitda87bfab8a7e6cfd0e1e5c5874d7fd4f7d11e64e (patch)
tree82dbf057ac960b017bc2a477f941de7f9d75c373 /drivers/scsi/fnic/fnic_main.c
parent[SCSI] fcoe: removes unused shost in fcoe_shost_config (diff)
downloadlinux-dev-da87bfab8a7e6cfd0e1e5c5874d7fd4f7d11e64e.tar.xz
linux-dev-da87bfab8a7e6cfd0e1e5c5874d7fd4f7d11e64e.zip
[SCSI] fcoe, fnic, libfc: increased CDB size to 16 bytes for fcoe.
No reason to restrict CDB size to 12 bytes in fcoe, so increased to 16 so that 16 bytes SCSI CDB doesn't fail. Uses common define to set max_cmd_len for fcoe and fnic, fnic is already setting max_cmd_len to 16. sg_readcap -l fails without this fix. Signed-off-by: Vasu Dev <vasu.dev@intel.com> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/fnic/fnic_main.c')
-rw-r--r--drivers/scsi/fnic/fnic_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fnic/fnic_main.c b/drivers/scsi/fnic/fnic_main.c
index 97b212570bcc..265e73d9cd6f 100644
--- a/drivers/scsi/fnic/fnic_main.c
+++ b/drivers/scsi/fnic/fnic_main.c
@@ -556,7 +556,7 @@ static int __devinit fnic_probe(struct pci_dev *pdev,
}
host->max_lun = fnic->config.luns_per_tgt;
host->max_id = FNIC_MAX_FCP_TARGET;
- host->max_cmd_len = FNIC_MAX_CMD_LEN;
+ host->max_cmd_len = FCOE_MAX_CMD_LEN;
fnic_get_res_counts(fnic);