diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-04-22 15:09:05 -0600 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2014-04-22 15:09:05 -0600 |
commit | a6c39cb4f71e61aff19d07e2d0b26bb6e3548fae (patch) | |
tree | 503497d4f6190185f7d94c6259f1ec08c88bd557 /include/linux/bio.h | |
parent | 8876e140ec7b9c57ab5a5dc39b7bb9815f96e3f5 (diff) |
fs/bio: remove bs paramater in biovec_create_pool
bs is no longer used in biovec_create_pool since 9f060e2231ca96 ("block:
Convert integrity to bvec_alloc_bs()")
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/linux/bio.h')
-rw-r--r-- | include/linux/bio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/bio.h b/include/linux/bio.h index bba550826921..5a645769f020 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h @@ -333,7 +333,7 @@ static inline struct bio *bio_next_split(struct bio *bio, int sectors, extern struct bio_set *bioset_create(unsigned int, unsigned int); extern void bioset_free(struct bio_set *); -extern mempool_t *biovec_create_pool(struct bio_set *bs, int pool_entries); +extern mempool_t *biovec_create_pool(int pool_entries); extern struct bio *bio_alloc_bioset(gfp_t, int, struct bio_set *); extern void bio_put(struct bio *); |