From db2721e896221a79320212742f04cfc70a9ce9b9 Mon Sep 17 00:00:00 2001 From: Manish Bhardwaj Date: Fri, 27 Jan 2023 17:34:12 +0000 Subject: [PATCH] vblk: increase vblkdev max minor count currently the max number of minors for a vblock device is 16 With the current configuration this is exceeding and causes errors during boot. update the max count to 32 Bug 3899893 JIRA ESLC-7100 Change-Id: I07cf631e95af673ad08d0ecf7186ce9cb0114a1b Signed-off-by: Manish Bhardwaj Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2849763 Tested-by: mobile promotions Reviewed-by: mobile promotions --- drivers/block/tegra_virt_storage/tegra_vblk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/block/tegra_virt_storage/tegra_vblk.h b/drivers/block/tegra_virt_storage/tegra_vblk.h index b016a804..5489ab37 100644 --- a/drivers/block/tegra_virt_storage/tegra_vblk.h +++ b/drivers/block/tegra_virt_storage/tegra_vblk.h @@ -23,7 +23,7 @@ #define DRV_NAME "tegra_hv_vblk" /* Minor number and partition management. */ -#define VBLK_MINORS 16 +#define VBLK_MINORS 32 #define IVC_RESET_RETRIES 30