diff options
author | Kent Overstreet <koverstreet@google.com> | 2012-09-06 18:34:58 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2012-09-09 04:35:39 -0400 |
commit | f44b48c7691be7643877d1f881b5eeace654d05d (patch) | |
tree | a862b4844b99abfa1bfb6fd437cf1ee4f055c438 /fs | |
parent | 94818742316e27d01506240cf8b07d69844d31af (diff) |
block: Add bio_reset()
Reusing bios is something that's been highly frowned upon in the past,
but driver code keeps doing it anyways. If it's going to happen anyways,
we should provide a generic method.
This'll help with getting rid of bi_destructor - drivers/block/pktcdvd.c
was open coding it, by doing a bio_init() and resetting bi_destructor.
This required reordering struct bio, but the block layer is not yet
nearly fast enough for any cacheline effects to matter here.
v5: Add a define BIO_RESET_BITS, to be very explicit about what parts of
bio->bi_flags are saved.
v6: Further commenting verbosity, per Tejun
v9: Add a function comment
Signed-off-by: Kent Overstreet <koverstreet@google.com>
CC: Jens Axboe <axboe@kernel.dk>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/bio.c | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -263,6 +263,30 @@ void bio_init(struct bio *bio) | |||
263 | EXPORT_SYMBOL(bio_init); | 263 | EXPORT_SYMBOL(bio_init); |
264 | 264 | ||
265 | /** | 265 | /** |
266 | * bio_reset - reinitialize a bio | ||
267 | * @bio: bio to reset | ||
268 | * | ||
269 | * Description: | ||
270 | * After calling bio_reset(), @bio will be in the same state as a freshly | ||
271 | * allocated bio returned bio bio_alloc_bioset() - the only fields that are | ||
272 | * preserved are the ones that are initialized by bio_alloc_bioset(). See | ||
273 | * comment in struct bio. | ||
274 | */ | ||
275 | void bio_reset(struct bio *bio) | ||
276 | { | ||
277 | unsigned long flags = bio->bi_flags & (~0UL << BIO_RESET_BITS); | ||
278 | |||
279 | if (bio_integrity(bio)) | ||
280 | bio_integrity_free(bio); | ||
281 | |||
282 | bio_disassociate_task(bio); | ||
283 | |||
284 | memset(bio, 0, BIO_RESET_BYTES); | ||
285 | bio->bi_flags = flags|(1 << BIO_UPTODATE); | ||
286 | } | ||
287 | EXPORT_SYMBOL(bio_reset); | ||
288 | |||
289 | /** | ||
266 | * bio_alloc_bioset - allocate a bio for I/O | 290 | * bio_alloc_bioset - allocate a bio for I/O |
267 | * @gfp_mask: the GFP_ mask given to the slab allocator | 291 | * @gfp_mask: the GFP_ mask given to the slab allocator |
268 | * @nr_iovecs: number of iovecs to pre-allocate | 292 | * @nr_iovecs: number of iovecs to pre-allocate |