Lines Matching refs:keyring
181 struct key *keyring;
188 * Create an override credential set with special thread keyring for
196 keyring = keyring_alloc(".cifs_spnego",
201 if (IS_ERR(keyring)) {
202 ret = PTR_ERR(keyring);
211 * instruct request_key() to use this special keyring as a cache for
214 set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags);
215 cred->thread_keyring = keyring;
219 cifs_dbg(FYI, "cifs spnego keyring: %d\n", key_serial(keyring));
223 key_put(keyring);