aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/lightnvm/core.c
diff options
context:
space:
mode:
authorMatias Bjørling <m@bjorling.me>2016-02-20 08:52:41 +0100
committerJens Axboe <axboe@fb.com>2016-03-03 14:46:35 -0700
commit4ece44af733ff63a7cd12aaa8c85afb6d9fdc664 (patch)
treeaf1736335c8f7abfaebaa3dba63cc5bee77cbd20 /drivers/lightnvm/core.c
parentlightnvm: update closed list outside of intr context (diff)
downloadlinux-dev-4ece44af733ff63a7cd12aaa8c85afb6d9fdc664.tar.xz
linux-dev-4ece44af733ff63a7cd12aaa8c85afb6d9fdc664.zip
lightnvm: rename ->nr_pages to ->nr_sects
The struct rrpc->nr_pages can easily be interpreted as the number of flash pages allocated to rrpc, while it is the nr_sects. Make sure that this is reflected from the variable name. Signed-off-by: Matias Bjørling <m@bjorling.me> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/lightnvm/core.c')
-rw-r--r--drivers/lightnvm/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/lightnvm/core.c b/drivers/lightnvm/core.c
index 968ba7ed4158..1cb4b331c3e8 100644
--- a/drivers/lightnvm/core.c
+++ b/drivers/lightnvm/core.c
@@ -467,7 +467,7 @@ static int nvm_core_init(struct nvm_dev *dev)
dev->blks_per_lun *
dev->luns_per_chnl *
dev->nr_chnls;
- dev->total_pages = dev->total_blocks * dev->pgs_per_blk;
+ dev->total_secs = dev->total_blocks * dev->sec_per_blk;
INIT_LIST_HEAD(&dev->online_targets);
mutex_init(&dev->mlock);