Lines Matching refs:keyring
58 struct key *keyring = info->data; in umh_keys_init() local
60 return install_session_keyring_to_cred(cred, keyring); in umh_keys_init()
68 struct key *keyring = info->data; in umh_keys_cleanup() local
69 key_put(keyring); in umh_keys_cleanup()
101 struct key *key = cons->key, *authkey = cons->authkey, *keyring, in call_sbin_request_key() local
118 keyring = keyring_alloc(desc, cred->fsuid, cred->fsgid, cred, in call_sbin_request_key()
122 if (IS_ERR(keyring)) { in call_sbin_request_key()
123 ret = PTR_ERR(keyring); in call_sbin_request_key()
128 ret = key_link(keyring, authkey); in call_sbin_request_key()
176 ret = call_usermodehelper_keys(request_key, argv, envp, keyring, in call_sbin_request_key()
191 key_put(keyring); in call_sbin_request_key()