Merge tag 'x86-fpu-2021-07-07' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
[linux-2.6-microblaze.git] / block / bio.c
index 44205df..1fab762 100644 (file)
@@ -1375,8 +1375,7 @@ static inline bool bio_remaining_done(struct bio *bio)
  *
  *   bio_endio() can be called several times on a bio that has been chained
  *   using bio_chain().  The ->bi_end_io() function will only be called the
- *   last time.  At this point the BLK_TA_COMPLETE tracing event will be
- *   generated if BIO_TRACE_COMPLETION is set.
+ *   last time.
  **/
 void bio_endio(struct bio *bio)
 {
@@ -1389,6 +1388,11 @@ again:
        if (bio->bi_bdev)
                rq_qos_done_bio(bio->bi_bdev->bd_disk->queue, bio);
 
+       if (bio->bi_bdev && bio_flagged(bio, BIO_TRACE_COMPLETION)) {
+               trace_block_bio_complete(bio->bi_bdev->bd_disk->queue, bio);
+               bio_clear_flag(bio, BIO_TRACE_COMPLETION);
+       }
+
        /*
         * Need to have a real endio function for chained bios, otherwise
         * various corner cases will break (like stacking block devices that
@@ -1402,11 +1406,6 @@ again:
                goto again;
        }
 
-       if (bio->bi_bdev && bio_flagged(bio, BIO_TRACE_COMPLETION)) {
-               trace_block_bio_complete(bio->bi_bdev->bd_disk->queue, bio);
-               bio_clear_flag(bio, BIO_TRACE_COMPLETION);
-       }
-
        blk_throtl_bio_endio(bio);
        /* release cgroup info */
        bio_uninit(bio);