P2P: Add even more debug prints for Probe Request in non-Listen state
It looks like discovery_dev_id test case can still fail and based on the previously added debug prints, this is happening since the P2P module believes it is not in Listen state even when a P2P_LISTEN was issued. p2p_listen_cb() did not get called on remain-on-channel event for some reason, so lets add more debug to find out why this can happen. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
848905b12a
commit
211d7ab3d8
2 changed files with 6 additions and 1 deletions
|
@ -1971,7 +1971,8 @@ p2p_reply_probe(struct p2p_data *p2p, const u8 *addr, const u8 *dst,
|
|||
|
||||
if (!p2p->in_listen || !p2p->drv_in_listen) {
|
||||
/* not in Listen state - ignore Probe Request */
|
||||
p2p_dbg(p2p, "Not in Listen state - ignore Probe Request");
|
||||
p2p_dbg(p2p, "Not in Listen state (in_listen=%d drv_in_listen=%d) - ignore Probe Request",
|
||||
p2p->in_listen, p2p->drv_in_listen);
|
||||
return P2P_PREQ_NOT_LISTEN;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue