aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/scsi/qla4xxx/ql4_os.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c
index 82b46ee8e7c1..199fcf79a051 100644
--- a/drivers/scsi/qla4xxx/ql4_os.c
+++ b/drivers/scsi/qla4xxx/ql4_os.c
@@ -1050,6 +1050,7 @@ static int qla4xxx_get_host_stats(struct Scsi_Host *shost, char *buf, int len)
1050 if (!ql_iscsi_stats) { 1050 if (!ql_iscsi_stats) {
1051 ql4_printk(KERN_ERR, ha, 1051 ql4_printk(KERN_ERR, ha,
1052 "Unable to allocate memory for iscsi stats\n"); 1052 "Unable to allocate memory for iscsi stats\n");
1053 ret = -ENOMEM;
1053 goto exit_host_stats; 1054 goto exit_host_stats;
1054 } 1055 }
1055 1056
@@ -1058,6 +1059,7 @@ static int qla4xxx_get_host_stats(struct Scsi_Host *shost, char *buf, int len)
1058 if (ret != QLA_SUCCESS) { 1059 if (ret != QLA_SUCCESS) {
1059 ql4_printk(KERN_ERR, ha, 1060 ql4_printk(KERN_ERR, ha,
1060 "Unable to retrieve iscsi stats\n"); 1061 "Unable to retrieve iscsi stats\n");
1062 ret = -EIO;
1061 goto exit_host_stats; 1063 goto exit_host_stats;
1062 } 1064 }
1063 host_stats->mactx_frames = le64_to_cpu(ql_iscsi_stats->mac_tx_frames); 1065 host_stats->mactx_frames = le64_to_cpu(ql_iscsi_stats->mac_tx_frames);