diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2015-04-23 14:48:05 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-04-26 14:33:15 +0800 |
commit | bd4a7c69aaed79ae1a299db8063fe4daf5e4a2f1 (patch) | |
tree | e19ee2e98192b6976a796ec0ef3aeae0bc868fe4 /crypto | |
parent | 8a1a2b717e0d4d5f3e3bb59b7dee5079a15ab24b (diff) | |
download | linux-stable-bd4a7c69aaed79ae1a299db8063fe4daf5e4a2f1.tar.gz linux-stable-bd4a7c69aaed79ae1a299db8063fe4daf5e4a2f1.tar.bz2 linux-stable-bd4a7c69aaed79ae1a299db8063fe4daf5e4a2f1.zip |
crypto: api - Fix build error when modules are disabled
The commit 59afdc7b32143528524455039e7557a46b60e4c8 ("crypto:
api - Move module sig ifdef into accessor function") broke the
build when modules are completely disabled because we directly
dereference module->name.
This patch fixes this by using the accessor function module_name.
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/algapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/algapi.c b/crypto/algapi.c index c63836f4ff64..3103e6a1282e 100644 --- a/crypto/algapi.c +++ b/crypto/algapi.c @@ -46,7 +46,7 @@ static inline void crypto_check_module_sig(struct module *mod) { if (fips_enabled && mod && !module_sig_ok(mod)) panic("Module %s signature verification failed in FIPS mode\n", - mod->name); + module_name(mod)); } static int crypto_check_alg(struct crypto_alg *alg) |