summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorIlya Dryomov <idryomov@gmail.com>2015-11-20 22:16:46 +0100
committerJens Axboe <axboe@fb.com>2015-11-24 15:24:25 -0700
commitc2789bd403f4c0c541a359cf318b1dda9a14234f (patch)
tree66c59dbd1c5e41a708c8cd847c5884b434768298 /block
parent55ce0da1da287822e5ffb5fcd6e357180d5ba4cd (diff)
downloadlinux-0-day-c2789bd403f4c0c541a359cf318b1dda9a14234f.tar.gz
linux-0-day-c2789bd403f4c0c541a359cf318b1dda9a14234f.tar.xz
block: rename request_queue slab cache
Name the cache after the actual name of the struct. Signed-off-by: Ilya Dryomov <idryomov@gmail.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block')
-rw-r--r--block/blk-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-core.c b/block/blk-core.c
index 5131993b23a1a..c0c884efa40f7 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -3513,7 +3513,7 @@ int __init blk_dev_init(void)
request_cachep = kmem_cache_create("blkdev_requests",
sizeof(struct request), 0, SLAB_PANIC, NULL);
- blk_requestq_cachep = kmem_cache_create("blkdev_queue",
+ blk_requestq_cachep = kmem_cache_create("request_queue",
sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
return 0;