// SPDX-License-Identifier: GPL-2.0-only /* * net/dccp/sysctl.c * * An implementation of the DCCP protocol * Arnaldo Carvalho de Melo <[email protected]> */ #include <linux/mm.h> #include <linux/sysctl.h> #include "dccp.h" #include "feat.h" #ifndef CONFIG_SYSCTL #error This file should not be compiled without CONFIG_SYSCTL defined #endif /* Boundary values */ static int u8_max = …; static unsigned long seqw_min = …, seqw_max = …; /* maximum on 32 bit */ static struct ctl_table dccp_default_table[] = …; static struct ctl_table_header *dccp_table_header; int __init dccp_sysctl_init(void) { … } void dccp_sysctl_exit(void) { … }