diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2008-10-22 14:32:58 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2008-12-29 02:28:46 -0500 |
commit | 1b4344986926da324b5cd10b683e5a1a5e1b7db3 (patch) | |
tree | f196fad09555f32e4464df2ea4c8fea17ad99e76 /fs/bio.c | |
parent | 7ff9345ffac56743b5001561bc2dc1e041b79149 (diff) |
bio: move the slab pointer inside the bio_set
In preparation for adding differently sized bios.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'fs/bio.c')
-rw-r--r-- | fs/bio.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1404,12 +1404,15 @@ void bioset_free(struct bio_set *bs) | |||
1404 | 1404 | ||
1405 | struct bio_set *bioset_create(int bio_pool_size, int bvec_pool_size) | 1405 | struct bio_set *bioset_create(int bio_pool_size, int bvec_pool_size) |
1406 | { | 1406 | { |
1407 | struct bio_set *bs = kzalloc(sizeof(*bs), GFP_KERNEL); | 1407 | struct bio_set *bs; |
1408 | 1408 | ||
1409 | bs = kzalloc(sizeof(*bs), GFP_KERNEL); | ||
1409 | if (!bs) | 1410 | if (!bs) |
1410 | return NULL; | 1411 | return NULL; |
1411 | 1412 | ||
1412 | bs->bio_pool = mempool_create_slab_pool(bio_pool_size, bio_slab); | 1413 | bs->bio_slab = bio_slab; |
1414 | |||
1415 | bs->bio_pool = mempool_create_slab_pool(bio_pool_size, bs->bio_slab); | ||
1413 | if (!bs->bio_pool) | 1416 | if (!bs->bio_pool) |
1414 | goto bad; | 1417 | goto bad; |
1415 | 1418 | ||