unsigned target_nr = 0;
        struct dm_target *ti;
 
+       /*
+        * Empty flush uses a statically initialized bio, &md->flush_bio, as
+        * the base for cloning.  However, blkg association requires that a
+        * bdev is associated with a gendisk, which doesn't happen until the
+        * bdev is opened.  So, blkg association is done at issue time of the
+        * flush rather than when the device is created in alloc_dev().
+        */
+       bio_set_dev(ci->bio, ci->io->md->bdev);
+
        BUG_ON(bio_has_data(ci->bio));
        while ((ti = dm_table_get_target(ci->map, target_nr++)))
                __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
 
+       bio_disassociate_blkg(ci->bio);
+
        return 0;
 }
 
                goto bad;
 
        bio_init(&md->flush_bio, NULL, 0);
-       bio_set_dev(&md->flush_bio, md->bdev);
        md->flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC;
 
        dm_stats_init(&md->stats);