diff options
author | Christoph Hellwig <hch@lst.de> | 2022-05-04 17:29:49 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-05-05 03:29:52 +0300 |
commit | 513616843d736fb7161b4460cdfe5aa825c5902c (patch) | |
tree | 8081ebe033df5237f6f4d59dd4d835605c9fd18c /block/bio.c | |
parent | f624506f98b198e65b44da303f44974590fb16c0 (diff) | |
download | linux-513616843d736fb7161b4460cdfe5aa825c5902c.tar.xz |
block: remove superfluous calls to blkcg_bio_issue_init
blkcg_bio_issue_init is called in submit_bio. There is no need to have
extra calls that just get overriden in __bio_clone and the two places
that copy and pasted from it.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Mike Snitzer <snitzer@kernel.org>
Link: https://lore.kernel.org/r/20220504142950.567582-2-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/bio.c')
-rw-r--r-- | block/bio.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/block/bio.c b/block/bio.c index 212ccd5b5212..aa94195ffd02 100644 --- a/block/bio.c +++ b/block/bio.c @@ -768,7 +768,6 @@ static int __bio_clone(struct bio *bio, struct bio *bio_src, gfp_t gfp) bio->bi_iter = bio_src->bi_iter; bio_clone_blkg_association(bio, bio_src); - blkcg_bio_issue_init(bio); if (bio_crypt_clone(bio, bio_src, gfp) < 0) return -ENOMEM; |