* [PATCH] scsi: hpsa: simplify hpsa_set_local_logical_count()
@ 2017-10-15 19:35 Christos Gkekas
[not found] ` <4993A297653ECB4581FA5C3C31323D19672184FC@avsrvexchmbx2.microsemi.net>
0 siblings, 1 reply; 2+ messages in thread
From: Christos Gkekas @ 2017-10-15 19:35 UTC (permalink / raw)
To: Don Brace, James E.J. Bottomley, Martin K. Petersen,
esc.storagedev, linux-scsi, linux-kernel
Cc: Christos Gkekas
Variable configured_logical_drive_count is defined as u8 and thus the
nested if statement always evaluates to true. Remove it and simplify.
Signed-off-by: Christos Gkekas <chris.gekas@gmail.com>
---
drivers/scsi/hpsa.c | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 9abe810..7d4f139 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -4090,14 +4090,7 @@ static int hpsa_set_local_logical_count(struct ctlr_info *h,
}
memset(id_ctlr, 0, sizeof(*id_ctlr));
rc = hpsa_bmic_id_controller(h, id_ctlr, sizeof(*id_ctlr));
- if (!rc)
- if (id_ctlr->configured_logical_drive_count < 256)
- *nlocals = id_ctlr->configured_logical_drive_count;
- else
- *nlocals = le16_to_cpu(
- id_ctlr->extended_logical_unit_count);
- else
- *nlocals = -1;
+ *nlocals = rc ? -1 : id_ctlr->configured_logical_drive_count;
return rc;
}
--
2.7.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] scsi: hpsa: simplify hpsa_set_local_logical_count()
[not found] ` <4993A297653ECB4581FA5C3C31323D19672184FC@avsrvexchmbx2.microsemi.net>
@ 2017-10-16 19:06 ` Christos Gkekas
0 siblings, 0 replies; 2+ messages in thread
From: Christos Gkekas @ 2017-10-16 19:06 UTC (permalink / raw)
To: Don Brace
Cc: James E.J. Bottomley, Martin K. Petersen, esc.storagedev,
linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
On 16/10/17 18:55:11 +0000, Don Brace wrote:
> > -----Original Message-----
> > From: Christos Gkekas [mailto:chris.gekas@gmail.com]
> > Sent: Sunday, October 15, 2017 2:35 PM
> > To: Don Brace <don.brace@microsemi.com>; James E.J. Bottomley
> > <jejb@linux.vnet.ibm.com>; Martin K. Petersen
> > <martin.petersen@oracle.com>; esc.storagedev
> > <esc.storagedev@microsemi.com>; linux-scsi@vger.kernel.org; linux-
> > kernel@vger.kernel.org
> > Cc: Christos Gkekas <chris.gekas@gmail.com>
> > Subject: [PATCH] scsi: hpsa: simplify hpsa_set_local_logical_count()
> >
> > EXTERNAL EMAIL
> >
> >
> > Variable configured_logical_drive_count is defined as u8 and thus the
> > nested if statement always evaluates to true. Remove it and simplify.
> >
> > Signed-off-by: Christos Gkekas <chris.gekas@gmail.com>
> > ---
> > drivers/scsi/hpsa.c | 9 +--------
> > 1 file changed, 1 insertion(+), 8 deletions(-)
> >
> > diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
> > index 9abe810..7d4f139 100644
> > --- a/drivers/scsi/hpsa.c
> > +++ b/drivers/scsi/hpsa.c
> > @@ -4090,14 +4090,7 @@ static int hpsa_set_local_logical_count(struct
> > ctlr_info *h,
> > }
> > memset(id_ctlr, 0, sizeof(*id_ctlr));
> > rc = hpsa_bmic_id_controller(h, id_ctlr, sizeof(*id_ctlr));
> > - if (!rc)
> > - if (id_ctlr->configured_logical_drive_count < 256)
> > - *nlocals = id_ctlr->configured_logical_drive_count;
> > - else
> > - *nlocals = le16_to_cpu(
> > - id_ctlr->extended_logical_unit_count);
> > - else
> > - *nlocals = -1;
> > + *nlocals = rc ? -1 : id_ctlr->configured_logical_drive_count;
> > return rc;
> > }
> >
>
> Thanks for your attention to the hpsa driver.
>
> The actual check should be:
> - if (id_ctlr->configured_logical_drive_count < 255)
> We need to return id_ctlr->extended_logical_unit_count otherwise.
>
> Good catch.
>
> Thanks,
> Don Brace
> ESC - Smart Storage
> Microsemi Corporation
>
>
> > --
> > 2.7.4
>
Thanks for reviewing this change, will send an updated patch today.
Thanks,
Christos
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-10-16 19:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-15 19:35 [PATCH] scsi: hpsa: simplify hpsa_set_local_logical_count() Christos Gkekas
[not found] ` <4993A297653ECB4581FA5C3C31323D19672184FC@avsrvexchmbx2.microsemi.net>
2017-10-16 19:06 ` Christos Gkekas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).