Add one new helper of blk_rq_copy_request() to copy request, and the helper
will be used in this patch for re-submitting request, so make it as a block
layer internal helper.

Cc: John Garry <john.ga...@huawei.com>
Cc: Bart Van Assche <bvanass...@acm.org>
Cc: Hannes Reinecke <h...@suse.com>
Cc: Christoph Hellwig <h...@lst.de>
Cc: Thomas Gleixner <t...@linutronix.de>
Cc: Mike Snitzer <snit...@redhat.com>
Cc: dm-devel@redhat.com
Signed-off-by: Ming Lei <ming....@redhat.com>
---
 block/blk-core.c | 33 +++++++++++++++++++--------------
 block/blk.h      |  2 ++
 2 files changed, 21 insertions(+), 14 deletions(-)

diff --git a/block/blk-core.c b/block/blk-core.c
index 91537e526b45..76405551d09e 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -1587,6 +1587,24 @@ void blk_rq_unprep_clone(struct request *rq)
 }
 EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
 
+void blk_rq_copy_request(struct request *rq, struct request *rq_src)
+{
+       /* Copy attributes of the original request to the clone request. */
+       rq->__sector = blk_rq_pos(rq_src);
+       rq->__data_len = blk_rq_bytes(rq_src);
+       if (rq_src->rq_flags & RQF_SPECIAL_PAYLOAD) {
+               rq->rq_flags |= RQF_SPECIAL_PAYLOAD;
+               rq->special_vec = rq_src->special_vec;
+       }
+#ifdef CONFIG_BLK_DEV_INTEGRITY
+       rq->nr_integrity_segments = rq_src->nr_integrity_segments;
+#endif
+       rq->nr_phys_segments = rq_src->nr_phys_segments;
+       rq->ioprio = rq_src->ioprio;
+       rq->extra_len = rq_src->extra_len;
+       rq->write_hint = rq_src->write_hint;
+}
+
 /**
  * blk_rq_prep_clone - Helper function to setup clone request
  * @rq: the request to be setup
@@ -1629,20 +1647,7 @@ int blk_rq_prep_clone(struct request *rq, struct request 
*rq_src,
                        rq->bio = rq->biotail = bio;
        }
 
-       /* Copy attributes of the original request to the clone request. */
-       rq->__sector = blk_rq_pos(rq_src);
-       rq->__data_len = blk_rq_bytes(rq_src);
-       if (rq_src->rq_flags & RQF_SPECIAL_PAYLOAD) {
-               rq->rq_flags |= RQF_SPECIAL_PAYLOAD;
-               rq->special_vec = rq_src->special_vec;
-       }
-#ifdef CONFIG_BLK_DEV_INTEGRITY
-       rq->nr_integrity_segments = rq_src->nr_integrity_segments;
-#endif
-       rq->nr_phys_segments = rq_src->nr_phys_segments;
-       rq->ioprio = rq_src->ioprio;
-       rq->extra_len = rq_src->extra_len;
-       rq->write_hint = rq_src->write_hint;
+       blk_rq_copy_request(rq, rq_src);
 
        return 0;
 
diff --git a/block/blk.h b/block/blk.h
index 0a94ec68af32..bbbced0b3c8c 100644
--- a/block/blk.h
+++ b/block/blk.h
@@ -120,6 +120,8 @@ static inline void blk_rq_bio_prep(struct request *rq, 
struct bio *bio,
                rq->rq_disk = bio->bi_disk;
 }
 
+void blk_rq_copy_request(struct request *rq, struct request *rq_src);
+
 #ifdef CONFIG_BLK_DEV_INTEGRITY
 void blk_flush_integrity(void);
 bool __bio_integrity_endio(struct bio *);
-- 
2.25.2

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel

Reply via email to