From ec7818984f14b6ef1c74966dbadd82bd214db62f Mon Sep 17 00:00:00 2001 From: Andy Grover Date: Fri, 3 Feb 2012 11:07:40 -0500 Subject: [PATCH] This patch adds the modparam to rds.ko. Signed-off-by: Andy Grover Signed-off-by: Chris Mason Signed-off-by: Bang Nguyen --- net/rds/af_rds.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net/rds/af_rds.c b/net/rds/af_rds.c index 1b249e75b5d9..25de6b9456b5 100644 --- a/net/rds/af_rds.c +++ b/net/rds/af_rds.c @@ -40,6 +40,11 @@ #include "rds.h" +/* UNUSED for backwards compat only */ +static unsigned int rds_ib_retry_count = 0xdead; +module_param(rds_ib_retry_count, int, 0444); +MODULE_PARM_DESC(rds_ib_retry_count, "UNUSED, set param in rds_rdma instead"); + /* this is just used for stats gathering :/ */ static DEFINE_SPINLOCK(rds_sock_lock); static unsigned long rds_sock_count; -- 2.50.1