scsi: myrs: Fix the processor absent message in processor_show()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 19 Oct 2018 09:18:19 +0000 (12:18 +0300)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 19 Oct 2018 22:31:37 +0000 (18:31 -0400)
If both processors are absent then it's supposed to print that, but
instead we print that just the second processor is absent.

Fixes: 77266186397c ("scsi: myrs: Add Mylex RAID controller (SCSI interface)")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/myrs.c

index 947d9b6..0264a2e 100644 (file)
@@ -1366,11 +1366,11 @@ static ssize_t processor_show(struct device *dev,
                               first_processor, info->cpu[0].cpu_count,
                               info->cpu[1].cpu_name,
                               second_processor, info->cpu[1].cpu_count);
-       else if (!second_processor)
+       else if (first_processor && !second_processor)
                ret = snprintf(buf, 64, "1: %s (%s, %d cpus)\n2: absent\n",
                               info->cpu[0].cpu_name,
                               first_processor, info->cpu[0].cpu_count);
-       else if (!first_processor)
+       else if (!first_processor && second_processor)
                ret = snprintf(buf, 64, "1: absent\n2: %s (%s, %d cpus)\n",
                               info->cpu[1].cpu_name,
                               second_processor, info->cpu[1].cpu_count);