summaryrefslogtreecommitdiffstats
path: root/drivers/block/mtip32xx
diff options
context:
space:
mode:
authorChristophe JAILLET2018-05-10 09:27:31 +0200
committerJens Axboe2018-05-10 16:21:47 +0200
commit8e3c283fc652df38140ce45189de204b47fc3e17 (patch)
treedce3202087062786783e35e98c7d8537fcafea0c /drivers/block/mtip32xx
parentbrd: Mark as non-rotational (diff)
downloadkernel-qcow2-linux-8e3c283fc652df38140ce45189de204b47fc3e17.tar.gz
kernel-qcow2-linux-8e3c283fc652df38140ce45189de204b47fc3e17.tar.xz
kernel-qcow2-linux-8e3c283fc652df38140ce45189de204b47fc3e17.zip
mtip32xx: Fix an error handling path in 'mtip_pci_probe()'
Branch to the right label in the error handling path in order to keep it logical. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block/mtip32xx')
-rw-r--r--drivers/block/mtip32xx/mtip32xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/mtip32xx/mtip32xx.c b/drivers/block/mtip32xx/mtip32xx.c
index 769c551e3d71..06257b872a7d 100644
--- a/drivers/block/mtip32xx/mtip32xx.c
+++ b/drivers/block/mtip32xx/mtip32xx.c
@@ -4273,7 +4273,7 @@ static int mtip_pci_probe(struct pci_dev *pdev,
if (!dd->isr_workq) {
dev_warn(&pdev->dev, "Can't create wq %d\n", dd->instance);
rv = -ENOMEM;
- goto block_initialize_err;
+ goto setmask_err;
}
memset(cpu_list, 0, sizeof(cpu_list));