This patch removes unused dump functions for crypto_user_stats. There are remains of the copy/paste of crypto_user_base to crypto_user_stat and I forgot to remove them. Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
13 lines
400 B
C
13 lines
400 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <net/netlink.h>
|
|
|
|
struct crypto_alg *crypto_alg_match(struct crypto_user_alg *p, int exact);
|
|
|
|
#ifdef CONFIG_CRYPTO_STATS
|
|
int crypto_reportstat(struct sk_buff *in_skb, struct nlmsghdr *in_nlh, struct nlattr **attrs);
|
|
#else
|
|
static int crypto_reportstat(struct sk_buff *in_skb, struct nlmsghdr *in_nlh, struct nlattr **attrs)
|
|
{
|
|
return -ENOTSUPP;
|
|
}
|
|
#endif
|