All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cxl: Unlock on error in probe
@ 2017-05-05  5:34 ` Dan Carpenter
  0 siblings, 0 replies; 14+ messages in thread
From: Dan Carpenter @ 2017-05-05  5:34 UTC (permalink / raw)
  To: Ian Munsie, Christophe Lombard
  Cc: Frederic Barrat, linuxppc-dev, kernel-janitors

We should unlock if get_cxl_adapter() fails.

Fixes: 594ff7d067ca ("cxl: Support to flash a new image on the adapter from a guest")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/drivers/misc/cxl/flash.c b/drivers/misc/cxl/flash.c
index 7c61c70ba3f6..37475abea3e6 100644
--- a/drivers/misc/cxl/flash.c
+++ b/drivers/misc/cxl/flash.c
@@ -401,8 +401,10 @@ static int device_open(struct inode *inode, struct file *file)
 	if (down_interruptible(&sem) != 0)
 		return -EPERM;
 
-	if (!(adapter = get_cxl_adapter(adapter_num)))
-		return -ENODEV;
+	if (!(adapter = get_cxl_adapter(adapter_num))) {
+		rc = -ENODEV;
+		goto err_unlock;
+	}
 
 	file->private_data = adapter;
 	continue_token = 0;
@@ -446,6 +448,8 @@ static int device_open(struct inode *inode, struct file *file)
 		free_page((unsigned long) le);
 err:
 	put_device(&adapter->dev);
+err_unlock:
+	up(&sem);
 
 	return rc;
 }

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

end of thread, other threads:[~2017-05-05 15:29 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20170505053622.0670F124037@b01ledav002.gho.pok.ibm.com>
2017-05-05  7:14 ` [PATCH] cxl: Unlock on error in probe Andrew Donnellan
2017-05-05  7:14   ` Andrew Donnellan
2017-05-05  7:23   ` walter harms
2017-05-05  7:23     ` walter harms
2017-05-05  7:39     ` Dan Carpenter
2017-05-05  7:39       ` Dan Carpenter
2017-05-05  7:37   ` Dan Carpenter
2017-05-05  7:37     ` Dan Carpenter
     [not found]   ` <20170505073800.4F753124037@b01ledav002.gho.pok.ibm.com>
2017-05-05  7:46     ` Andrew Donnellan
2017-05-05  7:46       ` Andrew Donnellan
2017-05-05  5:34 Dan Carpenter
2017-05-05  5:34 ` Dan Carpenter
2017-05-05 15:29 ` Frederic Barrat
2017-05-05 15:29   ` Frederic Barrat

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.