diff options
author | Javier González <jg@lightnvm.io> | 2017-06-26 05:57:19 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2017-06-26 18:27:39 -0400 |
commit | 0880a9aa2d91ff5131ecd0902a758afe760b9c1c (patch) | |
tree | 4a6859cc239610cf63a4a4875a6048e5b6a6b680 /drivers/lightnvm/pblk-init.c | |
parent | fd1b0158f5f5937d73d5c61e229350c6b905d0da (diff) |
lightnvm: pblk: delete redundant buffer pointer
After refactoring the metadata path, the backpointer controlling
synced I/Os in a line becomes unnecessary; metadata is scheduled
on the write thread, thus we know when the end of the line is reached
and act on it directly.
Signed-off-by: Javier González <javier@cnexlabs.com>
Signed-off-by: Matias Bjørling <matias@cnexlabs.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/lightnvm/pblk-init.c')
-rw-r--r-- | drivers/lightnvm/pblk-init.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/lightnvm/pblk-init.c b/drivers/lightnvm/pblk-init.c index 54e03c3e7962..cd10f2d74cf9 100644 --- a/drivers/lightnvm/pblk-init.c +++ b/drivers/lightnvm/pblk-init.c | |||
@@ -890,7 +890,6 @@ static void *pblk_init(struct nvm_tgt_dev *dev, struct gendisk *tdisk, | |||
890 | atomic_long_set(&pblk->req_writes, 0); | 890 | atomic_long_set(&pblk->req_writes, 0); |
891 | atomic_long_set(&pblk->sub_writes, 0); | 891 | atomic_long_set(&pblk->sub_writes, 0); |
892 | atomic_long_set(&pblk->sync_writes, 0); | 892 | atomic_long_set(&pblk->sync_writes, 0); |
893 | atomic_long_set(&pblk->compl_writes, 0); | ||
894 | atomic_long_set(&pblk->inflight_reads, 0); | 893 | atomic_long_set(&pblk->inflight_reads, 0); |
895 | atomic_long_set(&pblk->cache_reads, 0); | 894 | atomic_long_set(&pblk->cache_reads, 0); |
896 | atomic_long_set(&pblk->sync_reads, 0); | 895 | atomic_long_set(&pblk->sync_reads, 0); |