netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* mlx4: smatch stuff: saving error codes in u8
@ 2011-12-15  8:48 Dan Carpenter
  2011-12-15  9:05 ` Yevgeny Petrilin
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2011-12-15  8:48 UTC (permalink / raw)
  To: Yevgeny Petrilin; +Cc: netdev

Hi Yevgeny,

Smatch complains about some recent changes to the mlx4 driver:
drivers/net/ethernet/mellanox/mlx4/cmd.c +364 mlx4_slave_cmd(27)
	warn: assigning -22 to unsigned variable 'vhcr->status'


   361                                          mlx4_err(dev, "response expected while"
   362                                                   "output mailbox is NULL for "
   363                                                   "command 0x%x\n", op);
   364                                          vhcr->status = -EINVAL;
                                                ^^^^^^^^^^^^^^^^^^^^^^^
This is supposed to store some hardware specific error codes.  -EINVAL
should be CMD_STAT_BAD_PARAM.  Saving negative numbers to unsigned char
doesn't work.

   365                                  }
   366                          }
   367                          ret = vhcr->status;
                                ^^^^^^^^^^^^^^^^^^^
We should be using the mlx4_status_to_errno() function here to translate
the hardware error codes to linux error codes.

Also "ret" here gets passed to the the callers who again save it to
vhcr_cmd->status = __mlx4_cmd() in mlx4_master_process_vhcr().  The
__mlx4_cmd() function only returns linux error codes, not hardware error
codes.

Also the mlx4_master_process_vhcr() function sets vhcr_cmd->status to
linux error codes (which is a mistake) but it doesn't set "ret" on all
paths so it sometimes returns success even though an error occured
(which is a second separate mistake).

regards,
dan carpenter

^ permalink raw reply	[flat|nested] 2+ messages in thread

* RE: mlx4: smatch stuff: saving error codes in u8
  2011-12-15  8:48 mlx4: smatch stuff: saving error codes in u8 Dan Carpenter
@ 2011-12-15  9:05 ` Yevgeny Petrilin
  0 siblings, 0 replies; 2+ messages in thread
From: Yevgeny Petrilin @ 2011-12-15  9:05 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: netdev@vger.kernel.org

> Hi Yevgeny,
> 
> Smatch complains about some recent changes to the mlx4 driver:
> drivers/net/ethernet/mellanox/mlx4/cmd.c +364 mlx4_slave_cmd(27)
> 	warn: assigning -22 to unsigned variable 'vhcr->status'
> 
> We should be using the mlx4_status_to_errno() function here to
> translate
> the hardware error codes to linux error codes.
> 
> Also "ret" here gets passed to the the callers who again save it to
> vhcr_cmd->status = __mlx4_cmd() in mlx4_master_process_vhcr().  The
> __mlx4_cmd() function only returns linux error codes, not hardware
> error
> codes.
> 
> Also the mlx4_master_process_vhcr() function sets vhcr_cmd->status to
> linux error codes (which is a mistake) but it doesn't set "ret" on all
> paths so it sometimes returns success even though an error occured
> (which is a second separate mistake).
> 

Thanks Dan,
Will send fixes to this ASAP.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-12-15  9:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-15  8:48 mlx4: smatch stuff: saving error codes in u8 Dan Carpenter
2011-12-15  9:05 ` Yevgeny Petrilin

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).