diff options
Diffstat (limited to 'security/keys/internal.h')
-rw-r--r-- | security/keys/internal.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/security/keys/internal.h b/security/keys/internal.h index 24ba0307b7ad..5d4402a1161a 100644 --- a/security/keys/internal.h +++ b/security/keys/internal.h | |||
@@ -87,7 +87,16 @@ extern wait_queue_head_t request_key_conswq; | |||
87 | extern struct key_type *key_type_lookup(const char *type); | 87 | extern struct key_type *key_type_lookup(const char *type); |
88 | extern void key_type_put(struct key_type *ktype); | 88 | extern void key_type_put(struct key_type *ktype); |
89 | 89 | ||
90 | extern int __key_link(struct key *keyring, struct key *key); | 90 | extern int __key_link_begin(struct key *keyring, |
91 | const struct key_type *type, | ||
92 | const char *description, | ||
93 | struct keyring_list **_prealloc); | ||
94 | extern int __key_link_check_live_key(struct key *keyring, struct key *key); | ||
95 | extern void __key_link(struct key *keyring, struct key *key, | ||
96 | struct keyring_list **_prealloc); | ||
97 | extern void __key_link_end(struct key *keyring, | ||
98 | struct key_type *type, | ||
99 | struct keyring_list *prealloc); | ||
91 | 100 | ||
92 | extern key_ref_t __keyring_search_one(key_ref_t keyring_ref, | 101 | extern key_ref_t __keyring_search_one(key_ref_t keyring_ref, |
93 | const struct key_type *type, | 102 | const struct key_type *type, |