// SPDX-License-Identifier: GPL-2.0-or-later /* rxrpc network namespace handling. * * Copyright (C) 2017 Red Hat, Inc. All Rights Reserved. * Written by David Howells ([email protected]) */ #include <linux/proc_fs.h> #include "ar-internal.h" unsigned int rxrpc_net_id; static void rxrpc_service_conn_reap_timeout(struct timer_list *timer) { … } static void rxrpc_peer_keepalive_timeout(struct timer_list *timer) { … } /* * Initialise a per-network namespace record. */ static __net_init int rxrpc_init_net(struct net *net) { … } /* * Clean up a per-network namespace record. */ static __net_exit void rxrpc_exit_net(struct net *net) { … } struct pernet_operations rxrpc_net_ops = …;