Searched refs:spnego_key (Results 1 - 3 of 3) sorted by relevance

/linux-master/fs/smb/client/
H A Dcifs_spnego.c94 struct key *spnego_key; local
111 spnego_key = ERR_PTR(-ENOMEM);
118 spnego_key = ERR_PTR(-EINVAL);
161 spnego_key = request_key(&cifs_spnego_key_type, description, "");
165 if (cifsFYI && !IS_ERR(spnego_key)) {
166 struct cifs_spnego_msg *msg = spnego_key->payload.data[0];
174 return spnego_key;
H A Dsess.c1573 struct key *spnego_key = NULL; local
1587 spnego_key = cifs_get_spnego_key(ses, server);
1588 if (IS_ERR(spnego_key)) {
1589 rc = PTR_ERR(spnego_key);
1590 spnego_key = NULL;
1594 msg = spnego_key->payload.data[0];
1690 key_invalidate(spnego_key);
1691 key_put(spnego_key);
H A Dsmb2pdu.c1606 struct key *spnego_key = NULL; local
1614 spnego_key = cifs_get_spnego_key(ses, server);
1615 if (IS_ERR(spnego_key)) {
1616 rc = PTR_ERR(spnego_key);
1619 spnego_key = NULL;
1623 msg = spnego_key->payload.data[0];
1669 key_invalidate(spnego_key);
1670 key_put(spnego_key);

Completed in 227 milliseconds