public inbox for linux-block@vger.kernel.org
 help / color / mirror / Atom feed
* [bug report] mtip32xx: convert internal command issue to block IO path
@ 2017-06-23  9:05 Dan Carpenter
  2017-06-23 15:18 ` Jens Axboe
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2017-06-23  9:05 UTC (permalink / raw)
  To: axboe; +Cc: linux-block

Hello Jens Axboe,

The patch 3f5e6a35774c: "mtip32xx: convert internal command issue to
block IO path" from Apr 28, 2017, leads to the following static
checker warning:

	drivers/block/mtip32xx/mtip32xx.c:1067 mtip_exec_internal_command()
	warn: 'int_cmd->status' is unsigned

drivers/block/mtip32xx/mtip32xx.c
  1065  
  1066          rv = int_cmd->status;
                     ^^^^^^^^^^^^^^^
This is a new block error code.

  1067          if (rv < 0) {
                    ^^^^^^
So this doesn't make sense.  This used to be rv <= 0.

  1068                  if (rv == -ERESTARTSYS) { /* interrupted */
  1069                          dev_err(&dd->pdev->dev,
  1070                                  "Internal command [%02X] was interrupted after %u ms\n",
  1071                                  fis->command,
  1072                                  jiffies_to_msecs(jiffies - start));
  1073                          rv = -EINTR;
  1074                          goto exec_ic_exit;
  1075                  } else if (rv == 0) /* timeout */
                                   ^^^^^^^
This doesn't make sense either.

  1076                          dev_err(&dd->pdev->dev,
  1077                                  "Internal command did not complete [%02X] within timeout of  %lu ms\n",
  1078                                  fis->command, timeout);
  1079                  else
  1080                          dev_err(&dd->pdev->dev,
  1081                                  "Internal command [%02X] wait returned code [%d] after %lu ms - unhandled\n",
  1082                                  fis->command, rv, timeout);
  1083  
  1084                  if (mtip_check_surprise_removal(dd->pdev) ||
  1085                          test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
  1086                                          &dd->dd_flag)) {
  1087                          dev_err(&dd->pdev->dev,
  1088                                  "Internal command [%02X] wait returned due to SR\n",
  1089                                  fis->command);
  1090                          rv = -ENXIO;

regards,
dan carpenter

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

end of thread, other threads:[~2017-06-23 15:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-23  9:05 [bug report] mtip32xx: convert internal command issue to block IO path Dan Carpenter
2017-06-23 15:18 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox