All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch] xen-blkback: add missing return on error in
@ 2011-08-05 14:18 ` Dan Carpenter
  0 siblings, 0 replies; 6+ messages in thread
From: Dan Carpenter @ 2011-08-05 14:18 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk; +Cc: Laszlo Ersek, Joe Jin, open list, kernel-janitors

We should return here after reporting the error.  Otherwise we'd hit
a NULL deref of blkif->xenblkd on the next line.

Signed-off-by: Dan Carpenter <error27@gmail.com>

diff --git a/drivers/block/xen-blkback/xenbus.c b/drivers/block/xen-blkback/xenbus.c
index 32d4c3c..b750299 100644
--- a/drivers/block/xen-blkback/xenbus.c
+++ b/drivers/block/xen-blkback/xenbus.c
@@ -107,6 +107,7 @@ static void xen_update_blkif_status(struct xen_blkif *blkif)
 		err = PTR_ERR(blkif->xenblkd);
 		blkif->xenblkd = NULL;
 		xenbus_dev_error(blkif->be->dev, err, "start xenblkd");
+		return;
 	}
 
 	blkif->be->kthread_pid = blkif->xenblkd->pid;

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

end of thread, other threads:[~2011-08-06 14:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-05 14:18 [patch] xen-blkback: add missing return on error in Dan Carpenter
2011-08-05 14:18 ` [patch] xen-blkback: add missing return on error in xen_update_blkif_status() Dan Carpenter
2011-08-05 15:05 ` Laszlo Ersek
2011-08-05 15:05   ` Laszlo Ersek
2011-08-06 14:46 ` [patch] xen-blkback: add missing return on error in Konrad Rzeszutek Wilk
2011-08-06 14:46   ` [patch] xen-blkback: add missing return on error in xen_update_blkif_status() Konrad Rzeszutek Wilk

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.