Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1284836

[PATCH 1/9] lightnvm: use flags in rrpc_get_blk

From Matias Bjørling <m@bjorling.me>
Newsgroups linux.kernel
Subject [PATCH 1/9] lightnvm: use flags in rrpc_get_blk
Date 2015-12-06 11:30 +0100
Message-ID <qCEJQ-5Hj-5@gated-at.bofh.it> (permalink)
References <qCEJP-5Hj-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


From: Wenwei Tao <ww.tao0320@gmail.com>

rrpc_get_blk use constant 0 as the input parameter
of nvm_get_blk, this may result in getting gc block
failed unexpectedly.

Signed-off-by: Wenwei Tao <ww.tao0320@gmail.com>
Signed-off-by: Matias Bjørling <m@bjorling.me>
---
 drivers/lightnvm/rrpc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/lightnvm/rrpc.c b/drivers/lightnvm/rrpc.c
index 75e59c3..d606c7a 100644
--- a/drivers/lightnvm/rrpc.c
+++ b/drivers/lightnvm/rrpc.c
@@ -182,7 +182,7 @@ static struct rrpc_block *rrpc_get_blk(struct rrpc *rrpc, struct rrpc_lun *rlun,
 	struct nvm_block *blk;
 	struct rrpc_block *rblk;
 
-	blk = nvm_get_blk(rrpc->dev, rlun->parent, 0);
+	blk = nvm_get_blk(rrpc->dev, rlun->parent, flags);
 	if (!blk)
 		return NULL;
 
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH 1/9] lightnvm: use flags in rrpc_get_blk Matias Bjørling <m@bjorling.me> - 2015-12-06 11:30 +0100

csiph-web