Skip to content

Commit

Permalink
bcache: transfer the sb_page reference to register_{bdev,cache}
Browse files Browse the repository at this point in the history
Avoid an extra reference count roundtrip by transferring the sb_page
ownership to the lower level register helpers.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Coly Li <colyli@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
  • Loading branch information
Christoph Hellwig authored and Jens Axboe committed Jan 23, 2020
1 parent ae3cd29 commit fc8f19c
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions drivers/md/bcache/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1368,8 +1368,6 @@ static int register_bdev(struct cache_sb *sb, struct page *sb_page,

bio_init(&dc->sb_bio, dc->sb_bio.bi_inline_vecs, 1);
bio_first_bvec_all(&dc->sb_bio)->bv_page = sb_page;
get_page(sb_page);


if (cached_dev_init(dc, sb->block_size << 9))
goto err;
Expand Down Expand Up @@ -2275,7 +2273,6 @@ static int register_cache(struct cache_sb *sb, struct page *sb_page,

bio_init(&ca->sb_bio, ca->sb_bio.bi_inline_vecs, 1);
bio_first_bvec_all(&ca->sb_bio)->bv_page = sb_page;
get_page(sb_page);

if (blk_queue_discard(bdev_get_queue(bdev)))
ca->discard = CACHE_DISCARD(&ca->sb);
Expand Down Expand Up @@ -2378,7 +2375,7 @@ static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
const char *err;
char *path = NULL;
struct cache_sb *sb;
struct block_device *bdev = NULL;
struct block_device *bdev;
struct page *sb_page;
ssize_t ret;

Expand Down Expand Up @@ -2444,24 +2441,19 @@ static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
ret = register_bdev(sb, sb_page, bdev, dc);
mutex_unlock(&bch_register_lock);
/* blkdev_put() will be called in cached_dev_free() */
if (ret < 0) {
bdev = NULL;
goto out_put_sb_page;
}
if (ret < 0)
goto out_free_sb;
} else {
struct cache *ca = kzalloc(sizeof(*ca), GFP_KERNEL);

if (!ca)
goto out_put_sb_page;

/* blkdev_put() will be called in bch_cache_release() */
if (register_cache(sb, sb_page, bdev, ca) != 0) {
bdev = NULL;
goto out_put_sb_page;
}
if (register_cache(sb, sb_page, bdev, ca) != 0)
goto out_free_sb;
}

put_page(sb_page);
done:
kfree(sb);
kfree(path);
Expand All @@ -2471,8 +2463,7 @@ static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
out_put_sb_page:
put_page(sb_page);
out_blkdev_put:
if (bdev)
blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
out_free_sb:
kfree(sb);
out_free_path:
Expand Down

0 comments on commit fc8f19c

Please sign in to comment.