diff options
author | Christoph Hellwig <hch@lst.de> | 2021-04-11 16:43:11 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-04-11 17:37:55 +0300 |
commit | 11e9560e6c005b4adca12d17b27dc5ac22b40663 (patch) | |
tree | a75024b60c72538df1937c50a5d06100155b8fd1 /drivers/md/bcache/journal.c | |
parent | 13e1db65d2b9263c3dfe447077981e7a32c857ae (diff) | |
download | linux-11e9560e6c005b4adca12d17b27dc5ac22b40663.tar.xz |
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/journal.c')
-rw-r--r-- | drivers/md/bcache/journal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/bcache/journal.c b/drivers/md/bcache/journal.c index c6613e817333..de2c0d7699cf 100644 --- a/drivers/md/bcache/journal.c +++ b/drivers/md/bcache/journal.c @@ -768,7 +768,7 @@ static void journal_write_unlocked(struct closure *cl) w->data->csum = csum_set(w->data); for (i = 0; i < KEY_PTRS(k); i++) { - ca = PTR_CACHE(c, k, i); + ca = c->cache; bio = &ca->journal.bio; atomic_long_add(sectors, &ca->meta_sectors_written); |