Linux SCSI subsystem development
 help / color / mirror / Atom feed
* [PATCH] pcmcia: add error handling for pcmcia_enable_device
@ 2018-06-11  5:15 Zhouyang Jia
  2018-06-11  7:21 ` Johannes Thumshirn
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Zhouyang Jia @ 2018-06-11  5:15 UTC (permalink / raw)
  Cc: Zhouyang Jia, James E.J. Bottomley, Martin K. Petersen,
	Johannes Thumshirn, Hannes Reinecke, linux-scsi, linux-kernel

When pcmcia_enable_device fails, the lack of error-handling code may
cause unexpected results.

This patch adds error-handling code after calling pcmcia_enable_device.

Signed-off-by: Zhouyang Jia <jiazhouyang09@gmail.com>
---
 drivers/scsi/pcmcia/qlogic_stub.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/drivers/scsi/pcmcia/qlogic_stub.c b/drivers/scsi/pcmcia/qlogic_stub.c
index 0556054..9287d52 100644
--- a/drivers/scsi/pcmcia/qlogic_stub.c
+++ b/drivers/scsi/pcmcia/qlogic_stub.c
@@ -254,8 +254,14 @@ static void qlogic_release(struct pcmcia_device *link)
 static int qlogic_resume(struct pcmcia_device *link)
 {
 	scsi_info_t *info = link->priv;
+	int ret;
+
+	ret = pcmcia_enable_device(link);
+	if (ret) {
+		pcmcia_disable_device(link);
+		return -ENODEV;
+	}
 
-	pcmcia_enable_device(link);
 	if ((info->manf_id == MANFID_MACNICA) ||
 	    (info->manf_id == MANFID_PIONEER) ||
 	    (info->manf_id == 0x0098)) {
-- 
2.7.4

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

end of thread, other threads:[~2018-06-14 23:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-11  5:15 [PATCH] pcmcia: add error handling for pcmcia_enable_device Zhouyang Jia
2018-06-11  7:21 ` Johannes Thumshirn
2018-06-14  9:23 ` [PATCH v2] " Zhouyang Jia
2018-06-14  9:39   ` Andy Shevchenko
2018-06-14 23:41 ` [PATCH v3] " Zhouyang Jia

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