sysctl.c (8a84fc15ae5cafcc366dd85cf8e1ab2040679abc) sysctl.c (0b4d414714f0d2f922d39424b0c5c82ad900a381)
1/* SCTP kernel reference Implementation
2 * (C) Copyright IBM Corp. 2002, 2004
3 * Copyright (c) 2002 Intel Corp.
4 *
5 * This file is part of the SCTP kernel reference Implementation
6 *
7 * Sysctl related interfaces for SCTP.
8 *

--- 240 unchanged lines hidden (view full) ---

249 { .ctl_name = 0 }
250};
251
252static struct ctl_table_header * sctp_sysctl_header;
253
254/* Sysctl registration. */
255void sctp_sysctl_register(void)
256{
1/* SCTP kernel reference Implementation
2 * (C) Copyright IBM Corp. 2002, 2004
3 * Copyright (c) 2002 Intel Corp.
4 *
5 * This file is part of the SCTP kernel reference Implementation
6 *
7 * Sysctl related interfaces for SCTP.
8 *

--- 240 unchanged lines hidden (view full) ---

249 { .ctl_name = 0 }
250};
251
252static struct ctl_table_header * sctp_sysctl_header;
253
254/* Sysctl registration. */
255void sctp_sysctl_register(void)
256{
257 sctp_sysctl_header = register_sysctl_table(sctp_root_table, 0);
257 sctp_sysctl_header = register_sysctl_table(sctp_root_table);
258}
259
260/* Sysctl deregistration. */
261void sctp_sysctl_unregister(void)
262{
263 unregister_sysctl_table(sctp_sysctl_header);
264}
258}
259
260/* Sysctl deregistration. */
261void sctp_sysctl_unregister(void)
262{
263 unregister_sysctl_table(sctp_sysctl_header);
264}