diff --git a/srpt/src/ib_srpt.c b/srpt/src/ib_srpt.c index 1df516ba9..b76e7b8b8 100644 --- a/srpt/src/ib_srpt.c +++ b/srpt/src/ib_srpt.c @@ -94,6 +94,8 @@ static unsigned long trace_flag = DEFAULT_SRPT_TRACE_FLAGS; module_param(trace_flag, long, 0644); MODULE_PARM_DESC(trace_flag, "Trace flags for the ib_srpt kernel module."); +#endif +#if defined(CONFIG_SCST_DEBUG) static unsigned long processing_delay_in_us; module_param(processing_delay_in_us, long, 0744); MODULE_PARM_DESC(processing_delay_in_us, @@ -1459,8 +1461,10 @@ static void srpt_completion(struct ib_cq *cq, void *ctx) } } +#if defined(CONFIG_SCST_DEBUG) if (processing_delay_in_us <= MAX_UDELAY_MS * 1000) udelay(processing_delay_in_us); +#endif } }