mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-01-11 18:22:42 +01:00
handshake: add more debugging around PMKSA caching
Instead of just printing the PMKSA pointer separate this into two separate debug messages, one for if the PMKSA exists and the other if it does not. In addition print out the MAC of the AP so we have a reference of which PMKSA this is.
This commit is contained in:
parent
4b535cee1f
commit
bf82aff039
@ -1272,10 +1272,12 @@ void handshake_state_cache_pmksa(struct handshake_state *s)
|
||||
{
|
||||
struct pmksa *pmksa = handshake_state_steal_pmksa(s);
|
||||
|
||||
l_debug("%p", pmksa);
|
||||
|
||||
if (!pmksa)
|
||||
if (!pmksa) {
|
||||
l_debug("No PMKSA for "MAC, MAC_STR(s->aa));
|
||||
return;
|
||||
}
|
||||
|
||||
l_debug("Caching PMKSA for "MAC, MAC_STR(s->aa));
|
||||
|
||||
if (L_WARN_ON(pmksa_cache_put(pmksa) < 0))
|
||||
l_free(pmksa);
|
||||
|
Loading…
Reference in New Issue
Block a user