Before adding more calls in this function, simplify the error path.
Reviewed-by: Damien Le Moal <damien.lemoal@wdc.com>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Cc: Tejun Heo <tj@kernel.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Ming Lei <ming.lei@redhat.com>
Cc: Himanshu Madhani <himanshu.madhani@oracle.com>
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com>
Acked-by: Tejun Heo <tj@kernel.org>
Link: https://lore.kernel.org/r/20210618004456.7280-3-bvanassche@acm.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
        if (preloaded)
                radix_tree_preload_end();
 
-       ret = blk_throtl_init(q);
+       ret = blk_iolatency_init(q);
        if (ret)
                goto err_destroy_all;
 
-       ret = blk_iolatency_init(q);
-       if (ret) {
-               blk_throtl_exit(q);
+       ret = blk_throtl_init(q);
+       if (ret)
                goto err_destroy_all;
-       }
+
        return 0;
 
 err_destroy_all: