summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaolo Abeni <pabeni@redhat.com>2022-09-22 13:58:23 +0300
committerPaolo Abeni <pabeni@redhat.com>2022-09-22 13:58:23 +0300
commit3cae32b480d14442e67f3621b2966379acd48bb6 (patch)
tree024a70c93ec33d4e59ad7457e1a8856bbf371770 /include
parent9b17dbd97de78796997583340b540bdb571694e6 (diff)
parent0227f058aa29f5ab6f6ec79c3a36ae41f1e03a13 (diff)
downloadlinux-3cae32b480d14442e67f3621b2966379acd48bb6.tar.xz
Merge branch 'separate-smc-parameter-settings-from-tcp-sysctls'
Wen Gu says: ==================== Separate SMC parameter settings from TCP sysctls SMC shares some sysctls with TCP, but considering the difference between these two protocols, it may not be very suitable for SMC to reuse TCP parameter settings in some cases, such as keepalive time or buffer size. So this patch set aims to introduce some SMC specific sysctls to independently and flexibly set the parameters that suit SMC. ==================== Link: https://lore.kernel.org/r/1663667542-119851-1-git-send-email-guwen@linux.alibaba.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/net/netns/smc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/netns/smc.h b/include/net/netns/smc.h
index 2adbe2b245df..582212ada3ba 100644
--- a/include/net/netns/smc.h
+++ b/include/net/netns/smc.h
@@ -19,5 +19,8 @@ struct netns_smc {
#endif
unsigned int sysctl_autocorking_size;
unsigned int sysctl_smcr_buf_type;
+ int sysctl_smcr_testlink_time;
+ int sysctl_wmem;
+ int sysctl_rmem;
};
#endif