// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) /* Copyright (C) 2019 Netronome Systems, Inc. */ #include <linux/proc_fs.h> #include <linux/seq_file.h> #include <net/snmp.h> #include <net/tls.h> #include "tls.h" #ifdef CONFIG_PROC_FS static const struct snmp_mib tls_mib_list[] = …; static int tls_statistics_seq_show(struct seq_file *seq, void *v) { … } #endif int __net_init tls_proc_init(struct net *net) { … } void __net_exit tls_proc_fini(struct net *net) { … }