aboutsummaryrefslogtreecommitdiffstats
path: root/block/ll_rw_blk.c
diff options
context:
space:
mode:
Diffstat (limited to 'block/ll_rw_blk.c')
-rw-r--r--block/ll_rw_blk.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c
index 0ef2971a9e82..5fac138a5be1 100644
--- a/block/ll_rw_blk.c
+++ b/block/ll_rw_blk.c
@@ -1854,8 +1854,10 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
1854 return NULL; 1854 return NULL;
1855 1855
1856 q->node = node_id; 1856 q->node = node_id;
1857 if (blk_init_free_list(q)) 1857 if (blk_init_free_list(q)) {
1858 goto out_init; 1858 kmem_cache_free(requestq_cachep, q);
1859 return NULL;
1860 }
1859 1861
1860 /* 1862 /*
1861 * if caller didn't supply a lock, they get per-queue locking with 1863 * if caller didn't supply a lock, they get per-queue locking with
@@ -1891,9 +1893,7 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
1891 return q; 1893 return q;
1892 } 1894 }
1893 1895
1894 blk_cleanup_queue(q); 1896 blk_put_queue(q);
1895out_init:
1896 kmem_cache_free(requestq_cachep, q);
1897 return NULL; 1897 return NULL;
1898} 1898}
1899EXPORT_SYMBOL(blk_init_queue_node); 1899EXPORT_SYMBOL(blk_init_queue_node);