Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

crypto: bpf - Add MODULE_DESCRIPTION for skcipher

All modules should have a description, building with extra warnings
enabled prints this outfor the for bpf_crypto_skcipher module:

WARNING: modpost: missing MODULE_DESCRIPTION() in crypto/bpf_crypto_skcipher.o

Add a description line.

Fixes: fda4f71282b2 ("bpf: crypto: add skcipher to bpf crypto")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Vadim Fedorenko <vadim.fedorenko@linux.dev>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Arnd Bergmann and committed by
Herbert Xu
f307c87e 9e01aaa1

+1
+1
crypto/bpf_crypto_skcipher.c
··· 80 80 module_init(bpf_crypto_skcipher_init); 81 81 module_exit(bpf_crypto_skcipher_exit); 82 82 MODULE_LICENSE("GPL"); 83 + MODULE_DESCRIPTION("Symmetric key cipher support for BPF");