diff options
author | Giridhar Malavali <giridhar.malavali@qlogic.com> | 2009-03-24 16:07:58 (GMT) |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-04-03 14:22:45 (GMT) |
commit | 7d9dade34b72a0fe12a0ac63259b4810602736fe (patch) | |
tree | 56e9f7caa1da8baeb5b55000721dde9f6b09ea6b | |
parent | 94279edece858ce68ed20428a5df995750a3dcff (diff) | |
download | linux-7d9dade34b72a0fe12a0ac63259b4810602736fe.tar.xz |
[SCSI] qla2xxx: Correct over-allocation of firmware-dump buffer.
fce_size should be calculated based on the FCE_SIZE #define.
Signed-off-by: Giridhar Malavali <giridhar.malavali@qlogic.com>
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 87f9abc..1d28b53 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -816,7 +816,7 @@ qla2x00_alloc_fw_dump(scsi_qla_host_t *vha) qla_printk(KERN_INFO, ha, "Allocated (%d KB) for FCE...\n", FCE_SIZE / 1024); - fce_size = sizeof(struct qla2xxx_fce_chain) + EFT_SIZE; + fce_size = sizeof(struct qla2xxx_fce_chain) + FCE_SIZE; ha->flags.fce_enabled = 1; ha->fce_dma = tc_dma; ha->fce = tc; |