From: Andy Grover Date: Fri, 3 Feb 2012 16:07:40 +0000 (-0500) Subject: This patch adds the modparam to rds.ko. X-Git-Tag: v4.1.12-92~319^2^2~2^2~58 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=ec7818984f14b6ef1c74966dbadd82bd214db62f;p=users%2Fjedix%2Flinux-maple.git This patch adds the modparam to rds.ko. Signed-off-by: Andy Grover Signed-off-by: Chris Mason Signed-off-by: Bang Nguyen --- 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;