aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/mtip32xx
diff options
context:
space:
mode:
authorRobert Elliott <elliott@hp.com>2014-09-02 11:38:49 -0500
committerJens Axboe <axboe@fb.com>2014-09-02 15:39:03 -0600
commitdc501dc0d9dc9cbabc18b920f91a26c207e9476c (patch)
treec86eefd1c630c97810f48cfc4e0aa5d4b77d7aae /drivers/block/mtip32xx
parentblk-merge: fix blk_recount_segments (diff)
downloadlinux-dev-dc501dc0d9dc9cbabc18b920f91a26c207e9476c.tar.xz
linux-dev-dc501dc0d9dc9cbabc18b920f91a26c207e9476c.zip
blk-mq: pass along blk_mq_alloc_tag_set return values
Two of the blk-mq based drivers do not pass back the return value from blk_mq_alloc_tag_set, instead just returning -ENOMEM. blk_mq_alloc_tag_set returns -EINVAL if the number of queues or queue depth is bad. -ENOMEM implies that retrying after freeing some memory might be more successful, but that won't ever change in the -EINVAL cases. Change the null_blk and mtip32xx drivers to pass along the return value. Signed-off-by: Robert Elliott <elliott@hp.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/block/mtip32xx')
-rw-r--r--drivers/block/mtip32xx/mtip32xx.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/block/mtip32xx/mtip32xx.c b/drivers/block/mtip32xx/mtip32xx.c
index db1e9560d8a7..5c8e7fe07745 100644
--- a/drivers/block/mtip32xx/mtip32xx.c
+++ b/drivers/block/mtip32xx/mtip32xx.c
@@ -3918,7 +3918,6 @@ skip_create_disk:
if (rv) {
dev_err(&dd->pdev->dev,
"Unable to allocate request queue\n");
- rv = -ENOMEM;
goto block_queue_alloc_init_error;
}