aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx/qla_attr.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_attr.c')
-rw-r--r--drivers/scsi/qla2xxx/qla_attr.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c
index 1f1a7c0e88e7..70e60651c48d 100644
--- a/drivers/scsi/qla2xxx/qla_attr.c
+++ b/drivers/scsi/qla2xxx/qla_attr.c
@@ -391,6 +391,7 @@ qla2x00_sysfs_write_vpd(struct kobject *kobj,
391 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, 391 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
392 struct device, kobj))); 392 struct device, kobj)));
393 struct qla_hw_data *ha = vha->hw; 393 struct qla_hw_data *ha = vha->hw;
394 uint8_t *tmp_data;
394 395
395 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->vpd_size) 396 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->vpd_size)
396 return 0; 397 return 0;
@@ -405,6 +406,19 @@ qla2x00_sysfs_write_vpd(struct kobject *kobj,
405 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->vpd_base, count); 406 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->vpd_base, count);
406 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd, ha->vpd_base, count); 407 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd, ha->vpd_base, count);
407 408
409 /* Update flash version information for 4Gb & above. */
410 if (!IS_FWI2_CAPABLE(ha))
411 goto done;
412
413 tmp_data = vmalloc(256);
414 if (!tmp_data) {
415 qla_printk(KERN_WARNING, ha,
416 "Unable to allocate memory for VPD information update.\n");
417 goto done;
418 }
419 ha->isp_ops->get_flash_version(vha, tmp_data);
420 vfree(tmp_data);
421done:
408 return count; 422 return count;
409} 423}
410 424