From ec6c9386c75505c1f82ad7120729ac1aeb658509 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Fri, 22 May 2015 12:28:20 +0200 Subject: [PATCH] ib_srpt: Change default behavior from using SRQ to not using SRQ --- srpt/src/ib_srpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srpt/src/ib_srpt.c b/srpt/src/ib_srpt.c index 01a200fc0..d419a38f3 100644 --- a/srpt/src/ib_srpt.c +++ b/srpt/src/ib_srpt.c @@ -130,9 +130,9 @@ MODULE_PARM_DESC(srp_max_rsp_size, #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 31) \ || defined(RHEL_MAJOR) && RHEL_MAJOR -0 <= 5 -static int use_srq = true; +static int use_srq; #else -static bool use_srq = true; +static bool use_srq; #endif module_param(use_srq, bool, S_IRUGO | S_IWUSR); MODULE_PARM_DESC(use_srq,