virtio-blk: free vblk-vqs in error path of virtblk_probe()
[ Upstream commite7eea44eef
] Else there will be memory leak if alloc_disk() fails. Fixes:6a27b656fc
("block: virtio-blk: support multi virt queues per virtio-blk device") Signed-off-by: Hou Tao <houtao1@huawei.com> Reviewed-by: Stefano Garzarella <sgarzare@redhat.com> Reviewed-by: Ming Lei <ming.lei@redhat.com> Signed-off-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
f795a88ead
commit
8964c93436
|
@ -990,6 +990,7 @@ out_put_disk:
|
|||
put_disk(vblk->disk);
|
||||
out_free_vq:
|
||||
vdev->config->del_vqs(vdev);
|
||||
kfree(vblk->vqs);
|
||||
out_free_vblk:
|
||||
kfree(vblk);
|
||||
out_free_index:
|
||||
|
|
Loading…
Reference in New Issue