Skip to content

Commit

Permalink
xen-blkfront: plug device number leak in xlblk_init() error path
Browse files Browse the repository at this point in the history
... though after a failed xenbus_register_frontend() all may be lost.

Acked-by: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
  • Loading branch information
Laszlo Ersek authored and Konrad Rzeszutek Wilk committed Oct 13, 2011
1 parent d11e615 commit 469738e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion drivers/block/xen-blkfront.c
Original file line number Diff line number Diff line change
Expand Up @@ -1450,6 +1450,8 @@ static struct xenbus_driver blkfront = {

static int __init xlblk_init(void)
{
int ret;

if (!xen_domain())
return -ENODEV;

Expand All @@ -1459,7 +1461,13 @@ static int __init xlblk_init(void)
return -ENODEV;
}

return xenbus_register_frontend(&blkfront);
ret = xenbus_register_frontend(&blkfront);
if (ret) {
unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
return ret;
}

return 0;
}
module_init(xlblk_init);

Expand Down

0 comments on commit 469738e

Please sign in to comment.