blob: 745e3ab4aa0af1449852aca186e1a081fb38ab84 [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>
Christoph Hellwigfe45e632021-09-20 14:33:27 +020011#include <linux/blk-integrity.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13/*
14 * There are lots of mutable fields in the bio struct that get
15 * changed by the lower levels of the block layer. Some targets,
16 * such as multipath, may wish to resubmit a bio on error. The
17 * functions in this file help the target record and restore the
18 * original bio state.
19 */
Mikulas Patockaa920f6b2009-04-02 19:55:23 +010020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021struct dm_bio_details {
Christoph Hellwig309dca302021-01-24 11:02:34 +010022 struct block_device *bi_bdev;
Mike Snitzer1b171592020-02-28 18:00:53 -050023 int __bi_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 unsigned long bi_flags;
Kent Overstreet75d5d812013-08-07 14:24:19 -070025 struct bvec_iter bi_iter;
Mike Snitzer1b171592020-02-28 18:00:53 -050026 bio_end_io_t *bi_end_io;
27#if defined(CONFIG_BLK_DEV_INTEGRITY)
28 struct bio_integrity_payload *bi_integrity;
29#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070030};
31
32static inline void dm_bio_record(struct dm_bio_details *bd, struct bio *bio)
33{
Christoph Hellwig309dca302021-01-24 11:02:34 +010034 bd->bi_bdev = bio->bi_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 bd->bi_flags = bio->bi_flags;
Kent Overstreet75d5d812013-08-07 14:24:19 -070036 bd->bi_iter = bio->bi_iter;
Mike Snitzer1b171592020-02-28 18:00:53 -050037 bd->__bi_remaining = atomic_read(&bio->__bi_remaining);
38 bd->bi_end_io = bio->bi_end_io;
39#if defined(CONFIG_BLK_DEV_INTEGRITY)
40 bd->bi_integrity = bio_integrity(bio);
41#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
43
44static inline void dm_bio_restore(struct dm_bio_details *bd, struct bio *bio)
45{
Christoph Hellwig309dca302021-01-24 11:02:34 +010046 bio->bi_bdev = bd->bi_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 bio->bi_flags = bd->bi_flags;
Kent Overstreet75d5d812013-08-07 14:24:19 -070048 bio->bi_iter = bd->bi_iter;
Mike Snitzer1b171592020-02-28 18:00:53 -050049 atomic_set(&bio->__bi_remaining, bd->__bi_remaining);
50 bio->bi_end_io = bd->bi_end_io;
51#if defined(CONFIG_BLK_DEV_INTEGRITY)
52 bio->bi_integrity = bd->bi_integrity;
53#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
56#endif