summaryrefslogtreecommitdiffstats
path: root/drivers/md/bcache/debug.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2021-04-11 21:43:11 +0800
committerJens Axboe <axboe@kernel.dk>2021-04-11 08:37:55 -0600
commit11e9560e6c005b4adca12d17b27dc5ac22b40663 (patch)
treea75024b60c72538df1937c50a5d06100155b8fd1 /drivers/md/bcache/debug.c
parent13e1db65d2b9263c3dfe447077981e7a32c857ae (diff)
downloadlinux-stable-11e9560e6c005b4adca12d17b27dc5ac22b40663.tar.gz
linux-stable-11e9560e6c005b4adca12d17b27dc5ac22b40663.tar.bz2
linux-stable-11e9560e6c005b4adca12d17b27dc5ac22b40663.zip
bcache: remove PTR_CACHE
Remove the PTR_CACHE inline and replace it with a direct dereference of c->cache. (Coly Li: fix the typo from PTR_BUCKET to PTR_CACHE in commit log) Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Coly Li <colyli@suse.de> Link: https://lore.kernel.org/r/20210411134316.80274-3-colyli@suse.de Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/bcache/debug.c')
-rw-r--r--drivers/md/bcache/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/bcache/debug.c b/drivers/md/bcache/debug.c
index 63e809f38e3f..589a052efeb1 100644
--- a/drivers/md/bcache/debug.c
+++ b/drivers/md/bcache/debug.c
@@ -50,7 +50,7 @@ void bch_btree_verify(struct btree *b)
v->keys.ops = b->keys.ops;
bio = bch_bbio_alloc(b->c);
- bio_set_dev(bio, PTR_CACHE(b->c, &b->key, 0)->bdev);
+ bio_set_dev(bio, c->cache->bdev);
bio->bi_iter.bi_sector = PTR_OFFSET(&b->key, 0);
bio->bi_iter.bi_size = KEY_SIZE(&v->key) << 9;
bio->bi_opf = REQ_OP_READ | REQ_META;