aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatias Bjørling <m@bjorling.me>2015-11-28 10:49:27 -0500
committerJens Axboe <axboe@fb.com>2015-11-29 16:34:58 -0500
commit08236c6bb2980561fba657c58fdc76f2865f236c (patch)
treea45a697e8fc1a36a3e701abc59e2a5a1c999d4fd
parent09f2e716096811081b204c6afd6264c2e64d1210 (diff)
lightnvm: unconverted ppa returned in get_bb_tbl
The get_bb_tbl function takes ppa as a generic address, which is converted to the ppa device address within the device driver. When the update_bbtbl callback is called from get_bb_tbl, the device specific ppa is used, instead of the generic ppa. Make sure to pass the generic ppa. Signed-off-by: Matias Bjørling <m@bjorling.me> Signed-off-by: Jens Axboe <axboe@fb.com>
-rw-r--r--drivers/lightnvm/gennvm.c3
-rw-r--r--drivers/nvme/host/lightnvm.c4
-rw-r--r--include/linux/lightnvm.h2
3 files changed, 5 insertions, 4 deletions
diff --git a/drivers/lightnvm/gennvm.c b/drivers/lightnvm/gennvm.c
index 3969a9875e59..35dde84b71e9 100644
--- a/drivers/lightnvm/gennvm.c
+++ b/drivers/lightnvm/gennvm.c
@@ -75,7 +75,6 @@ static int gennvm_block_bb(struct ppa_addr ppa, int nr_blocks, u8 *blks,
75 struct nvm_block *blk; 75 struct nvm_block *blk;
76 int i; 76 int i;
77 77
78 ppa = dev_to_generic_addr(gn->dev, ppa);
79 lun = &gn->luns[(dev->nr_luns * ppa.g.ch) + ppa.g.lun]; 78 lun = &gn->luns[(dev->nr_luns * ppa.g.ch) + ppa.g.lun];
80 79
81 for (i = 0; i < nr_blocks; i++) { 80 for (i = 0; i < nr_blocks; i++) {
@@ -187,7 +186,7 @@ static int gennvm_blocks_init(struct nvm_dev *dev, struct gen_nvm *gn)
187 ppa.g.lun = lun->vlun.id; 186 ppa.g.lun = lun->vlun.id;
188 ppa = generic_to_dev_addr(dev, ppa); 187 ppa = generic_to_dev_addr(dev, ppa);
189 188
190 ret = dev->ops->get_bb_tbl(dev->q, ppa, 189 ret = dev->ops->get_bb_tbl(dev, ppa,
191 dev->blks_per_lun, 190 dev->blks_per_lun,
192 gennvm_block_bb, gn); 191 gennvm_block_bb, gn);
193 if (ret) 192 if (ret)
diff --git a/drivers/nvme/host/lightnvm.c b/drivers/nvme/host/lightnvm.c
index b9e5cc74053f..06c336410235 100644
--- a/drivers/nvme/host/lightnvm.c
+++ b/drivers/nvme/host/lightnvm.c
@@ -355,10 +355,11 @@ out:
355 return ret; 355 return ret;
356} 356}
357 357
358static int nvme_nvm_get_bb_tbl(struct request_queue *q, struct ppa_addr ppa, 358static int nvme_nvm_get_bb_tbl(struct nvm_dev *nvmdev, struct ppa_addr ppa,
359 int nr_blocks, nvm_bb_update_fn *update_bbtbl, 359 int nr_blocks, nvm_bb_update_fn *update_bbtbl,
360 void *priv) 360 void *priv)
361{ 361{
362 struct request_queue *q = nvmdev->q;
362 struct nvme_ns *ns = q->queuedata; 363 struct nvme_ns *ns = q->queuedata;
363 struct nvme_dev *dev = ns->dev; 364 struct nvme_dev *dev = ns->dev;
364 struct nvme_nvm_command c = {}; 365 struct nvme_nvm_command c = {};
@@ -402,6 +403,7 @@ static int nvme_nvm_get_bb_tbl(struct request_queue *q, struct ppa_addr ppa,
402 goto out; 403 goto out;
403 } 404 }
404 405
406 ppa = dev_to_generic_addr(nvmdev, ppa);
405 ret = update_bbtbl(ppa, nr_blocks, bb_tbl->blk, priv); 407 ret = update_bbtbl(ppa, nr_blocks, bb_tbl->blk, priv);
406 if (ret) { 408 if (ret) {
407 ret = -EINTR; 409 ret = -EINTR;
diff --git a/include/linux/lightnvm.h b/include/linux/lightnvm.h
index 3db5552b17d5..c6916aec43b6 100644
--- a/include/linux/lightnvm.h
+++ b/include/linux/lightnvm.h
@@ -179,7 +179,7 @@ typedef int (nvm_bb_update_fn)(struct ppa_addr, int, u8 *, void *);
179typedef int (nvm_id_fn)(struct request_queue *, struct nvm_id *); 179typedef int (nvm_id_fn)(struct request_queue *, struct nvm_id *);
180typedef int (nvm_get_l2p_tbl_fn)(struct request_queue *, u64, u32, 180typedef int (nvm_get_l2p_tbl_fn)(struct request_queue *, u64, u32,
181 nvm_l2p_update_fn *, void *); 181 nvm_l2p_update_fn *, void *);
182typedef int (nvm_op_bb_tbl_fn)(struct request_queue *, struct ppa_addr, int, 182typedef int (nvm_op_bb_tbl_fn)(struct nvm_dev *, struct ppa_addr, int,
183 nvm_bb_update_fn *, void *); 183 nvm_bb_update_fn *, void *);
184typedef int (nvm_op_set_bb_fn)(struct request_queue *, struct nvm_rq *, int); 184typedef int (nvm_op_set_bb_fn)(struct request_queue *, struct nvm_rq *, int);
185typedef int (nvm_submit_io_fn)(struct request_queue *, struct nvm_rq *); 185typedef int (nvm_submit_io_fn)(struct request_queue *, struct nvm_rq *);