mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
e187013abe
Add a per ns sysctl that controls the txhash rethink behavior: net.core.txrehash. When enabled, the same behavior is retained, when disabled, rethink is not performed. Sysctl is enabled by default. Signed-off-by: Akhmat Karakotov <hmukos@yandex-team.ru> Reviewed-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
21 lines
340 B
C
21 lines
340 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __NETNS_CORE_H__
|
|
#define __NETNS_CORE_H__
|
|
|
|
struct ctl_table_header;
|
|
struct prot_inuse;
|
|
|
|
struct netns_core {
|
|
/* core sysctls */
|
|
struct ctl_table_header *sysctl_hdr;
|
|
|
|
int sysctl_somaxconn;
|
|
u8 sysctl_txrehash;
|
|
|
|
#ifdef CONFIG_PROC_FS
|
|
struct prot_inuse __percpu *prot_inuse;
|
|
#endif
|
|
};
|
|
|
|
#endif
|