summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJavier Gonzalez <javier@javigon.com>2015-11-20 12:47:56 (GMT)
committerJens Axboe <axboe@fb.com>2015-11-20 15:33:20 (GMT)
commit0b59733b95f9d7af6bee6e6a4d0d444eb694c514 (patch)
tree8cc6efa06ebc51e8fc15021c46821be456913f23 /include
parent47b3115ae7b799be8b77b0f024215ad4f68d6460 (diff)
downloadlinux-0b59733b95f9d7af6bee6e6a4d0d444eb694c514.tar.xz
lightnvm: keep track of block counts
Maintain number of in use blocks, free blocks, and bad blocks in a per lun basis. This allows the upper layers to get information about the state of each lun. Also, account for blocks reserved to the device on the free block count. nr_free_blocks matches now the actual number of blocks on the free list when the device is booted. Signed-off-by: Javier Gonzalez <javier@cnexlabs.com> Signed-off-by: Matias Bjørling <m@bjorling.me> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/lightnvm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/lightnvm.h b/include/linux/lightnvm.h
index cbe288a..831a20c 100644
--- a/include/linux/lightnvm.h
+++ b/include/linux/lightnvm.h
@@ -213,7 +213,9 @@ struct nvm_lun {
int lun_id;
int chnl_id;
+ unsigned int nr_inuse_blocks; /* Number of used blocks */
unsigned int nr_free_blocks; /* Number of unused blocks */
+ unsigned int nr_bad_blocks; /* Number of bad blocks */
struct nvm_block *blocks;
spinlock_t lock;