public inbox for linux-block@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lightnvm: fix bad block initialization
@ 2018-02-23 17:40 Heiner Litz
  2018-02-23 18:45 ` Matias Bjørling
  0 siblings, 1 reply; 5+ messages in thread
From: Heiner Litz @ 2018-02-23 17:40 UTC (permalink / raw)
  To: linux-block; +Cc: javier, matias, Heiner Litz

fix reading bad block device information to correctly setup the per line
blk_bitmap during lightnvm initialization

Signed-off-by: Heiner Litz <hlitz@ucsc.edu>
---
 drivers/lightnvm/pblk-init.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/lightnvm/pblk-init.c b/drivers/lightnvm/pblk-init.c
index 86a94a7faa96..e0eba150ac7e 100644
--- a/drivers/lightnvm/pblk-init.c
+++ b/drivers/lightnvm/pblk-init.c
@@ -461,10 +461,11 @@ static int pblk_bb_line(struct pblk *pblk, struct pblk_line *line,
 	struct nvm_tgt_dev *dev = pblk->dev;
 	struct nvm_geo *geo = &dev->geo;
 	int i, bb_cnt = 0;
+	int blk_per_lun = geo->nr_chks * geo->plane_mode;
 
 	for (i = 0; i < blk_per_line; i++) {
 		struct pblk_lun *rlun = &pblk->luns[i];
-		u8 *lun_bb_log = bb_log + i * blk_per_line;
+		u8 *lun_bb_log = bb_log + i * blk_per_lun;
 
 		if (lun_bb_log[line->id] == NVM_BLK_T_FREE)
 			continue;
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [PATCH] lightnvm: fix bad block initialization
@ 2018-02-22  8:10 Heiner Litz
  0 siblings, 0 replies; 5+ messages in thread
From: Heiner Litz @ 2018-02-22  8:10 UTC (permalink / raw)
  To: linux-block; +Cc: Heiner Litz

fix reading bad block device information to correctly setup the per line blk_bitmap during lightnvm initialization 

Signed-off-by: Heiner Litz <hlitz@ucsc.edu>
---
 drivers/lightnvm/pblk-init.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/lightnvm/pblk-init.c b/drivers/lightnvm/pblk-init.c
index 86a94a7faa96..e0eba150ac7e 100644
--- a/drivers/lightnvm/pblk-init.c
+++ b/drivers/lightnvm/pblk-init.c
@@ -461,10 +461,11 @@ static int pblk_bb_line(struct pblk *pblk, struct pblk_line *line,
 	struct nvm_tgt_dev *dev = pblk->dev;
 	struct nvm_geo *geo = &dev->geo;
 	int i, bb_cnt = 0;
+	int blk_per_lun = geo->nr_chks * geo->plane_mode;
 
 	for (i = 0; i < blk_per_line; i++) {
 		struct pblk_lun *rlun = &pblk->luns[i];
-		u8 *lun_bb_log = bb_log + i * blk_per_line;
+		u8 *lun_bb_log = bb_log + i * blk_per_lun;
 
 		if (lun_bb_log[line->id] == NVM_BLK_T_FREE)
 			continue;
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-02-24  9:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-23 17:40 [PATCH] lightnvm: fix bad block initialization Heiner Litz
2018-02-23 18:45 ` Matias Bjørling
2018-02-24  9:11   ` Javier Gonzalez
2018-02-24  9:15   ` Javier Gonzalez
  -- strict thread matches above, loose matches on Subject: below --
2018-02-22  8:10 Heiner Litz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox