Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved. |
| 3 | * |
| 4 | * This file is released under the GPL. |
| 5 | */ |
| 6 | |
| 7 | #ifndef DM_BIO_RECORD_H |
| 8 | #define DM_BIO_RECORD_H |
| 9 | |
| 10 | #include <linux/bio.h> |
| 11 | |
| 12 | /* |
| 13 | * There are lots of mutable fields in the bio struct that get |
| 14 | * changed by the lower levels of the block layer. Some targets, |
| 15 | * such as multipath, may wish to resubmit a bio on error. The |
| 16 | * functions in this file help the target record and restore the |
| 17 | * original bio state. |
| 18 | */ |
Mikulas Patocka | a920f6b | 2009-04-02 19:55:23 +0100 | [diff] [blame] | 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | struct dm_bio_details { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | struct block_device *bi_bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | unsigned long bi_flags; |
Kent Overstreet | 75d5d81 | 2013-08-07 14:24:19 -0700 | [diff] [blame] | 23 | struct bvec_iter bi_iter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | }; |
| 25 | |
| 26 | static inline void dm_bio_record(struct dm_bio_details *bd, struct bio *bio) |
| 27 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | bd->bi_bdev = bio->bi_bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | bd->bi_flags = bio->bi_flags; |
Kent Overstreet | 75d5d81 | 2013-08-07 14:24:19 -0700 | [diff] [blame] | 30 | bd->bi_iter = bio->bi_iter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | static inline void dm_bio_restore(struct dm_bio_details *bd, struct bio *bio) |
| 34 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | bio->bi_bdev = bd->bi_bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | bio->bi_flags = bd->bi_flags; |
Kent Overstreet | 75d5d81 | 2013-08-07 14:24:19 -0700 | [diff] [blame] | 37 | bio->bi_iter = bd->bi_iter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | #endif |