The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH 1/3] parport: fix error handling
@ 2015-06-15 14:35 Sudip Mukherjee
  2015-06-15 14:35 ` [PATCH 2/3] parport: fix memory leak Sudip Mukherjee
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sudip Mukherjee @ 2015-06-15 14:35 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, Sudip Mukherjee

After registering the device if exclusive access fails for any reason
then we need to unregister the device to remove all references.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---
 drivers/parport/share.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/parport/share.c b/drivers/parport/share.c
index 8067f54..d8079e3 100644
--- a/drivers/parport/share.c
+++ b/drivers/parport/share.c
@@ -907,7 +907,8 @@ parport_register_dev_model(struct parport *port, const char *name,
 			spin_unlock(&port->physport->pardevice_lock);
 			pr_debug("%s: cannot grant exclusive access for device %s\n",
 				 port->name, name);
-			goto err_put_dev;
+			device_unregister(&par_dev->dev);
+			goto err_put_port;
 		}
 		port->flags |= PARPORT_FLAG_EXCL;
 	}
-- 
1.8.1.2


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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-15 14:35 [PATCH 1/3] parport: fix error handling Sudip Mukherjee
2015-06-15 14:35 ` [PATCH 2/3] parport: fix memory leak Sudip Mukherjee
2015-06-15 14:35 ` [PATCH 3/3] parport: fix freeing freed memory Sudip Mukherjee
2015-07-07  9:11 ` [PATCH 1/3] parport: fix error handling Sudip Mukherjee

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