diff options
author | Guangguan Wang <guangguan.wang@linux.alibaba.com> | 2023-11-22 21:52:57 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-11-24 12:13:14 +0000 |
commit | f8e80fc4acebab0447567e77d6abc30fb44250cc (patch) | |
tree | 49c332a3d7f99990d267060ad453609d7f5a8255 /net/smc/af_smc.c | |
parent | a8d4879d5f1fac060719567d1a8e8f8e68a127fc (diff) |
net/smc: add sysctl for max links per lgr for SMC-R v2.1
Add a new sysctl: net.smc.smcr_max_links_per_lgr, which is
used to control the preferred max links per lgr for SMC-R
v2.1. The default value of this sysctl is 2, and the acceptable
value ranges from 1 to 2.
Signed-off-by: Guangguan Wang <guangguan.wang@linux.alibaba.com>
Reviewed-by: Dust Li <dust.li@linux.alibaba.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/smc/af_smc.c')
-rw-r--r-- | net/smc/af_smc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c index 2a1388841951..c61666e5beed 100644 --- a/net/smc/af_smc.c +++ b/net/smc/af_smc.c @@ -2461,7 +2461,7 @@ static void smc_listen_work(struct work_struct *work) if (rc) goto out_decl; - rc = smc_clc_srv_v2x_features_validate(pclc, ini); + rc = smc_clc_srv_v2x_features_validate(new_smc, pclc, ini); if (rc) goto out_decl; |