lightnvm: pblk: consider max hw sectors supported for max_write_pgs
authorZhoujie Wu <zjwu@marvell.com>
Tue, 9 Oct 2018 11:12:14 +0000 (13:12 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 24 Nov 2019 07:20:52 +0000 (08:20 +0100)
commit3f4f4c639f2930bf658cddef4ebac5b2b96417d5
tree1bac8d4859ee6f9a17066122e8e1dec14049f74b
parentd4ab0df8d5dd109e75adf3382a9e118551c50945
lightnvm: pblk: consider max hw sectors supported for max_write_pgs

[ Upstream commit 8a57fc3823d08edb1661a06d9e0a8c2365ac561e ]

When do GC, the number of read/write sectors are determined
by max_write_pgs(see gc_rq preparation in pblk_gc_line_prepare_ws).

Due to max_write_pgs doesn't consider max hw sectors
supported by nvme controller(128K), which leads to GC
tries to read 64 * 4K in one command, and see below error
caused by pblk_bio_map_addr in function pblk_submit_read_gc.

[ 2923.005376] pblk: could not add page to bio
[ 2923.005377] pblk: could not allocate GC bio (18446744073709551604)

Signed-off-by: Zhoujie Wu <zjwu@marvell.com>
Reviewed-by: Javier González <javier@cnexlabs.com>
Signed-off-by: Matias Bjørling <mb@lightnvm.io>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/lightnvm/pblk-init.c