#define pr_fmt(fmt) …
#include <crypto/skcipher.h>
#include <linux/module.h>
#include <linux/net.h>
#include <linux/skbuff.h>
#include <linux/key-type.h>
#include <linux/ctype.h>
#include <linux/slab.h>
#include <net/sock.h>
#include <net/af_rxrpc.h>
#include <keys/rxrpc-type.h>
#include <keys/user-type.h>
#include "ar-internal.h"
static int rxrpc_vet_description_s(const char *);
static int rxrpc_preparse_s(struct key_preparsed_payload *);
static void rxrpc_free_preparse_s(struct key_preparsed_payload *);
static void rxrpc_destroy_s(struct key *);
static void rxrpc_describe_s(const struct key *, struct seq_file *);
struct key_type key_type_rxrpc_s = …;
static int rxrpc_vet_description_s(const char *desc)
{ … }
static int rxrpc_preparse_s(struct key_preparsed_payload *prep)
{ … }
static void rxrpc_free_preparse_s(struct key_preparsed_payload *prep)
{ … }
static void rxrpc_destroy_s(struct key *key)
{ … }
static void rxrpc_describe_s(const struct key *key, struct seq_file *m)
{ … }
int rxrpc_server_keyring(struct rxrpc_sock *rx, sockptr_t optval, int optlen)
{ … }
int rxrpc_sock_set_security_keyring(struct sock *sk, struct key *keyring)
{ … }
EXPORT_SYMBOL(…);