blob: c82578af56a5bbff035a272f258327a7fce6ecfd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Patockaa920f6b2009-04-02 19:55:23 +010019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020struct dm_bio_details {
Christoph Hellwig74d46992017-08-23 19:10:32 +020021 struct gendisk *bi_disk;
22 u8 bi_partno;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 unsigned long bi_flags;
Kent Overstreet75d5d812013-08-07 14:24:19 -070024 struct bvec_iter bi_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025};
26
27static inline void dm_bio_record(struct dm_bio_details *bd, struct bio *bio)
28{
Christoph Hellwig74d46992017-08-23 19:10:32 +020029 bd->bi_disk = bio->bi_disk;
30 bd->bi_partno = bio->bi_partno;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 bd->bi_flags = bio->bi_flags;
Kent Overstreet75d5d812013-08-07 14:24:19 -070032 bd->bi_iter = bio->bi_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033}
34
35static inline void dm_bio_restore(struct dm_bio_details *bd, struct bio *bio)
36{
Christoph Hellwig74d46992017-08-23 19:10:32 +020037 bio->bi_disk = bd->bi_disk;
38 bio->bi_partno = bd->bi_partno;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 bio->bi_flags = bd->bi_flags;
Kent Overstreet75d5d812013-08-07 14:24:19 -070040 bio->bi_iter = bd->bi_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041}
42
43#endif