aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorDenis ChengRq <crquan@gmail.com>2008-10-09 02:57:05 -0400
committerJens Axboe <jens.axboe@oracle.com>2008-10-09 02:57:05 -0400
commit6feef531f55cf4a20fd9eb39f5352e5745203603 (patch)
tree2c52b800edcbdf01abefcf27e900985c087f1b36 /fs
parentad3316bf4eeb53c89164f759767f911072b56203 (diff)
block: mark bio_split_pool static
Since all bio_split calls refer the same single bio_split_pool, the bio_split function can use bio_split_pool directly instead of the mempool_t parameter; then the mempool_t parameter can be removed from bio_split param list, and bio_split_pool is only referred in fs/bio.c file, can be marked static. Signed-off-by: Denis ChengRq <crquan@gmail.com> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/bio.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/fs/bio.c b/fs/bio.c
index a5af5809f566..77a55bcceedb 100644
--- a/fs/bio.c
+++ b/fs/bio.c
@@ -30,7 +30,7 @@
30 30
31static struct kmem_cache *bio_slab __read_mostly; 31static struct kmem_cache *bio_slab __read_mostly;
32 32
33mempool_t *bio_split_pool __read_mostly; 33static mempool_t *bio_split_pool __read_mostly;
34 34
35/* 35/*
36 * if you change this list, also change bvec_alloc or things will 36 * if you change this list, also change bvec_alloc or things will
@@ -1256,9 +1256,9 @@ static void bio_pair_end_2(struct bio *bi, int err)
1256 * split a bio - only worry about a bio with a single page 1256 * split a bio - only worry about a bio with a single page
1257 * in it's iovec 1257 * in it's iovec
1258 */ 1258 */
1259struct bio_pair *bio_split(struct bio *bi, mempool_t *pool, int first_sectors) 1259struct bio_pair *bio_split(struct bio *bi, int first_sectors)
1260{ 1260{
1261 struct bio_pair *bp = mempool_alloc(pool, GFP_NOIO); 1261 struct bio_pair *bp = mempool_alloc(bio_split_pool, GFP_NOIO);
1262 1262
1263 if (!bp) 1263 if (!bp)
1264 return bp; 1264 return bp;
@@ -1292,7 +1292,7 @@ struct bio_pair *bio_split(struct bio *bi, mempool_t *pool, int first_sectors)
1292 bp->bio2.bi_end_io = bio_pair_end_2; 1292 bp->bio2.bi_end_io = bio_pair_end_2;
1293 1293
1294 bp->bio1.bi_private = bi; 1294 bp->bio1.bi_private = bi;
1295 bp->bio2.bi_private = pool; 1295 bp->bio2.bi_private = bio_split_pool;
1296 1296
1297 if (bio_integrity(bi)) 1297 if (bio_integrity(bi))
1298 bio_integrity_split(bi, bp, first_sectors); 1298 bio_integrity_split(bi, bp, first_sectors);
@@ -1455,7 +1455,6 @@ EXPORT_SYMBOL(bio_map_kern);
1455EXPORT_SYMBOL(bio_copy_kern); 1455EXPORT_SYMBOL(bio_copy_kern);
1456EXPORT_SYMBOL(bio_pair_release); 1456EXPORT_SYMBOL(bio_pair_release);
1457EXPORT_SYMBOL(bio_split); 1457EXPORT_SYMBOL(bio_split);
1458EXPORT_SYMBOL(bio_split_pool);
1459EXPORT_SYMBOL(bio_copy_user); 1458EXPORT_SYMBOL(bio_copy_user);
1460EXPORT_SYMBOL(bio_uncopy_user); 1459EXPORT_SYMBOL(bio_uncopy_user);
1461EXPORT_SYMBOL(bioset_create); 1460EXPORT_SYMBOL(bioset_create);