* [PATCH 1/1] bfa: Fix for possible null pointer dereference
@ 2013-05-26 19:51 Jakob Normark
2013-05-28 9:29 ` Vijaya Mohan Guvva Guvva
0 siblings, 1 reply; 2+ messages in thread
From: Jakob Normark @ 2013-05-26 19:51 UTC (permalink / raw)
To: Anil Gurumurthy, Vijaya Mohan Guvva, James E.J. Bottomley
Cc: linux-scsi, linux-kernel, Jakob Normark
Fix for cppcheck error in bfa_fcs_lport.c
Kernel version: v3.10-rc2
Signed-off-by: Jakob Normark <jakobnormark@gmail.com>
---
drivers/scsi/bfa/bfa_fcs_lport.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/scsi/bfa/bfa_fcs_lport.c b/drivers/scsi/bfa/bfa_fcs_lport.c
index 1224d04..a37c45a 100644
--- a/drivers/scsi/bfa/bfa_fcs_lport.c
+++ b/drivers/scsi/bfa/bfa_fcs_lport.c
@@ -5615,13 +5615,14 @@ bfa_fcs_lport_get_rport_max_speed(bfa_fcs_lport_t *port)
bfa_port_speed_t max_speed = 0;
struct bfa_port_attr_s port_attr;
bfa_port_speed_t port_speed, rport_speed;
- bfa_boolean_t trl_enabled = bfa_fcport_is_ratelim(port->fcs->bfa);
+ bfa_boolean_t trl_enabled;
if (port == NULL)
return 0;
fcs = port->fcs;
+ trl_enabled = bfa_fcport_is_ratelim(port->fcs->bfa);
/* Get Physical port's current speed */
bfa_fcport_get_attr(port->fcs->bfa, &port_attr);
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: [PATCH 1/1] bfa: Fix for possible null pointer dereference
2013-05-26 19:51 [PATCH 1/1] bfa: Fix for possible null pointer dereference Jakob Normark
@ 2013-05-28 9:29 ` Vijaya Mohan Guvva Guvva
0 siblings, 0 replies; 2+ messages in thread
From: Vijaya Mohan Guvva Guvva @ 2013-05-28 9:29 UTC (permalink / raw)
To: Jakob Normark, Anil Gurumurthy, James E.J. Bottomley
Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
> -----Original Message-----
> From: linux-scsi-owner@vger.kernel.org [mailto:linux-scsi-
> owner@vger.kernel.org] On Behalf Of Jakob Normark
> Sent: Monday, May 27, 2013 1:21 AM
> To: Anil Gurumurthy; Vijaya Mohan Guvva Guvva; James E.J. Bottomley
> Cc: linux-scsi@vger.kernel.org; linux-kernel@vger.kernel.org; Jakob Normark
> Subject: [PATCH 1/1] bfa: Fix for possible null pointer dereference
>
> Fix for cppcheck error in bfa_fcs_lport.c
>
> Kernel version: v3.10-rc2
>
> Signed-off-by: Jakob Normark <jakobnormark@gmail.com>
> ---
> drivers/scsi/bfa/bfa_fcs_lport.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/scsi/bfa/bfa_fcs_lport.c b/drivers/scsi/bfa/bfa_fcs_lport.c
> index 1224d04..a37c45a 100644
> --- a/drivers/scsi/bfa/bfa_fcs_lport.c
> +++ b/drivers/scsi/bfa/bfa_fcs_lport.c
> @@ -5615,13 +5615,14 @@
> bfa_fcs_lport_get_rport_max_speed(bfa_fcs_lport_t *port)
> bfa_port_speed_t max_speed = 0;
> struct bfa_port_attr_s port_attr;
> bfa_port_speed_t port_speed, rport_speed;
> - bfa_boolean_t trl_enabled = bfa_fcport_is_ratelim(port->fcs->bfa);
> + bfa_boolean_t trl_enabled;
>
>
> if (port == NULL)
> return 0;
>
> fcs = port->fcs;
> + trl_enabled = bfa_fcport_is_ratelim(port->fcs->bfa);
>
> /* Get Physical port's current speed */
> bfa_fcport_get_attr(port->fcs->bfa, &port_attr);
> --
> 1.7.9.5
>
> --
Changes looks good. Thanks for the patch.
Acked-by: Vijay Mohan Guvva <vmohan@brocade.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-05-28 9:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-26 19:51 [PATCH 1/1] bfa: Fix for possible null pointer dereference Jakob Normark
2013-05-28 9:29 ` Vijaya Mohan Guvva Guvva
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).