Message ID | 20210809185314.38187-4-tom@herbertland.com (mailing list archive) |
---|---|
State | RFC |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | txhash: Make hash rethink configurable and change the default | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for net-next |
netdev/subject_prefix | success | Link |
netdev/cc_maintainers | warning | 6 maintainers not CCed: christian.brauner@ubuntu.com daniel@iogearbox.net changbin.du@intel.com ap420073@gmail.com edumazet@google.com kuba@kernel.org |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | fail | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | fail | Errors and warnings before: 326 this patch: 450 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 12 lines checked |
netdev/build_allmodconfig_warn | fail | Errors and warnings before: 618 this patch: 555 |
netdev/header_inline | success | Link |
diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c index 03d3767e6728..bf9696dd7106 100644 --- a/net/core/net_namespace.c +++ b/net/core/net_namespace.c @@ -367,10 +367,8 @@ static int __net_init net_defaults_init_net(struct net *net) { net->core.sysctl_somaxconn = SOMAXCONN; - /* Default rethink mode is aggrssive (i.e. rethink on first RTO) */ - net->core.sysctl_txrehash_mode = SOCK_TXREHASH_MODE_NEG_ADVICE | - SOCK_TXREHASH_MODE_SYN_RTO | - SOCK_TXREHASH_MODE_RTO; + /* Default rethink mode is negative advice (i.e. not rthink on RTO) */ + net->core.sysctl_txrehash_mode = SOCK_TXREHASH_MODE_NEG_ADVICE; return 0; }