diff options
author | Coly Li <colyli@suse.de> | 2019-06-28 13:59:57 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-06-28 15:39:18 +0200 |
commit | d91ce7574daf48a4567ba62733d43284f5d2a3f4 (patch) | |
tree | 1fcda7b58205f80f50cec42a5858ff4d4ce52248 /drivers/md/bcache/bcache.h | |
parent | bcache: add comments for mutex_lock(&b->write_lock) (diff) | |
download | linux-d91ce7574daf48a4567ba62733d43284f5d2a3f4.tar.xz linux-d91ce7574daf48a4567ba62733d43284f5d2a3f4.zip |
bcache: remove retry_flush_write from struct cache_set
In struct cache_set, retry_flush_write is added for commit c4dc2497d50d
("bcache: fix high CPU occupancy during journal") which is reverted in
previous patch.
Now it is useless anymore, and this patch removes it from bcache code.
Signed-off-by: Coly Li <colyli@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/bcache/bcache.h')
-rw-r--r-- | drivers/md/bcache/bcache.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/md/bcache/bcache.h b/drivers/md/bcache/bcache.h index cb268d7c6cea..35396248a7d5 100644 --- a/drivers/md/bcache/bcache.h +++ b/drivers/md/bcache/bcache.h @@ -706,7 +706,6 @@ struct cache_set { atomic_long_t reclaim; atomic_long_t flush_write; - atomic_long_t retry_flush_write; enum { ON_ERROR_UNREGISTER, |