diff options
author | David Howells <dhowells@redhat.com> | 2012-05-11 09:56:56 (GMT) |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2012-05-11 09:56:56 (GMT) |
commit | 1eb1bcf5bfad001128293b86d891c9d6f2f27333 (patch) | |
tree | af7fce4f0dae5bad37335b0fcf8b2e0d27342a9b /security | |
parent | 9f7ce8e249ab761c7ed753059cb16319ede41762 (diff) | |
download | linux-fsl-qoriq-1eb1bcf5bfad001128293b86d891c9d6f2f27333.tar.xz |
KEYS: Announce key type (un)registration
Announce the (un)registration of a key type in the core key code rather than
in the callers.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Mimi Zohar <zohar@us.ibm.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/keys/key.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/security/keys/key.c b/security/keys/key.c index 06783cf..dc62894 100644 --- a/security/keys/key.c +++ b/security/keys/key.c @@ -980,6 +980,8 @@ int register_key_type(struct key_type *ktype) /* store the type */ list_add(&ktype->link, &key_types_list); + + pr_notice("Key type %s registered\n", ktype->name); ret = 0; out: @@ -1002,6 +1004,7 @@ void unregister_key_type(struct key_type *ktype) list_del_init(&ktype->link); downgrade_write(&key_types_sem); key_gc_keytype(ktype); + pr_notice("Key type %s unregistered\n", ktype->name); up_read(&key_types_sem); } EXPORT_SYMBOL(unregister_key_type); |