From 606d65a1c06dbe884f95a9a63f922b2dfc618d4b Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 5 May 2019 02:05:46 +0000 Subject: [PATCH] qla2x00t-32gbit: Disable ql2xallocfwdump by default Disable allocation of memory for a firmware dump during module initialization by default because it triggers DMAR faults with the IOMMU enabled. Reported-by: Sietse van Zanen git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@8340 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- qla2x00t-32gbit/qla_os.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qla2x00t-32gbit/qla_os.c b/qla2x00t-32gbit/qla_os.c index 2ff8f4a0f..414641ddb 100644 --- a/qla2x00t-32gbit/qla_os.c +++ b/qla2x00t-32gbit/qla_os.c @@ -87,7 +87,7 @@ module_param(ql2xloginretrycount, int, S_IRUGO); MODULE_PARM_DESC(ql2xloginretrycount, "Specify an alternate value for the NVRAM login retry count."); -int ql2xallocfwdump = 1; +int ql2xallocfwdump = 0; module_param(ql2xallocfwdump, int, S_IRUGO); MODULE_PARM_DESC(ql2xallocfwdump, "Option to enable allocation of memory for a firmware dump "