aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/algboss.c
diff options
context:
space:
mode:
authorMartin K. Petersen <martin.petersen@oracle.com>2018-08-30 11:00:14 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2018-09-04 11:37:04 +0800
commitdd8b083f9a5ed06946d559e0ca1eda0577ef24a9 (patch)
treeb51a09a36977e0b3c96a290c1bcb053963b6d5f5 /crypto/algboss.c
parentcrypto: arm64/crct10dif - implement non-Crypto Extensions alternative (diff)
downloadlinux-dev-dd8b083f9a5ed06946d559e0ca1eda0577ef24a9.tar.xz
linux-dev-dd8b083f9a5ed06946d559e0ca1eda0577ef24a9.zip
crypto: api - Introduce notifier for new crypto algorithms
Introduce a facility that can be used to receive a notification callback when a new algorithm becomes available. This can be used by existing crypto registrations to trigger a switch from a software-only algorithm to a hardware-accelerated version. A new CRYPTO_MSG_ALG_LOADED state is introduced to the existing crypto notification chain, and the register/unregister functions are exported so they can be called by subsystems outside of crypto. Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Suggested-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/algboss.c')
-rw-r--r--crypto/algboss.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/algboss.c b/crypto/algboss.c
index 5e6df2a087fa..527b44d0af21 100644
--- a/crypto/algboss.c
+++ b/crypto/algboss.c
@@ -274,6 +274,8 @@ static int cryptomgr_notify(struct notifier_block *this, unsigned long msg,
return cryptomgr_schedule_probe(data);
case CRYPTO_MSG_ALG_REGISTER:
return cryptomgr_schedule_test(data);
+ case CRYPTO_MSG_ALG_LOADED:
+ break;
}
return NOTIFY_DONE;