dm-bio-record.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
  4. *
  5. * This file is released under the GPL.
  6. */
  7. #ifndef DM_BIO_RECORD_H
  8. #define DM_BIO_RECORD_H
  9. #include <linux/bio.h>
  10. #include <linux/blk-integrity.h>
  11. /*
  12. * There are lots of mutable fields in the bio struct that get
  13. * changed by the lower levels of the block layer. Some targets,
  14. * such as multipath, may wish to resubmit a bio on error. The
  15. * functions in this file help the target record and restore the
  16. * original bio state.
  17. */
  18. struct dm_bio_details {
  19. struct block_device *bi_bdev;
  20. int __bi_remaining;
  21. unsigned long bi_flags;
  22. struct bvec_iter bi_iter;
  23. bio_end_io_t *bi_end_io;
  24. #if defined(CONFIG_BLK_DEV_INTEGRITY)
  25. struct bio_integrity_payload *bi_integrity;
  26. #endif
  27. };
  28. static inline void dm_bio_record(struct dm_bio_details *bd, struct bio *bio)
  29. {
  30. bd->bi_bdev = bio->bi_bdev;
  31. bd->bi_flags = bio->bi_flags;
  32. bd->bi_iter = bio->bi_iter;
  33. bd->__bi_remaining = atomic_read(&bio->__bi_remaining);
  34. bd->bi_end_io = bio->bi_end_io;
  35. #if defined(CONFIG_BLK_DEV_INTEGRITY)
  36. bd->bi_integrity = bio_integrity(bio);
  37. #endif
  38. }
  39. static inline void dm_bio_restore(struct dm_bio_details *bd, struct bio *bio)
  40. {
  41. bio->bi_bdev = bd->bi_bdev;
  42. bio->bi_flags = bd->bi_flags;
  43. bio->bi_iter = bd->bi_iter;
  44. atomic_set(&bio->__bi_remaining, bd->__bi_remaining);
  45. bio->bi_end_io = bd->bi_end_io;
  46. #if defined(CONFIG_BLK_DEV_INTEGRITY)
  47. bio->bi_integrity = bd->bi_integrity;
  48. #endif
  49. }
  50. #endif