aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/lightnvm/core.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/lightnvm/core.c b/drivers/lightnvm/core.c
index ea50fa5b6ba6..ea6dba530f0a 100644
--- a/drivers/lightnvm/core.c
+++ b/drivers/lightnvm/core.c
@@ -308,6 +308,12 @@ int nvm_register(struct request_queue *q, char *disk_name,
308 if (ret) 308 if (ret)
309 goto err_init; 309 goto err_init;
310 310
311 if (dev->ops->max_phys_sect > 256) {
312 pr_info("nvm: max sectors supported is 256.\n");
313 ret = -EINVAL;
314 goto err_init;
315 }
316
311 if (dev->ops->max_phys_sect > 1) { 317 if (dev->ops->max_phys_sect > 1) {
312 dev->ppalist_pool = dev->ops->create_dma_pool(dev->q, 318 dev->ppalist_pool = dev->ops->create_dma_pool(dev->q,
313 "ppalist"); 319 "ppalist");
@@ -316,10 +322,6 @@ int nvm_register(struct request_queue *q, char *disk_name,
316 ret = -ENOMEM; 322 ret = -ENOMEM;
317 goto err_init; 323 goto err_init;
318 } 324 }
319 } else if (dev->ops->max_phys_sect > 256) {
320 pr_info("nvm: max sectors supported is 256.\n");
321 ret = -EINVAL;
322 goto err_init;
323 } 325 }
324 326
325 down_write(&nvm_lock); 327 down_write(&nvm_lock);