diff mbox

[2/4] P2P: clear listen state during PD-in-FIND

Message ID 1476783857-18822-2-git-send-email-andrei.otcheretianski@intel.com
State Accepted
Headers show

Commit Message

Andrei Otcheretianski Oct. 18, 2016, 9:44 a.m. UTC
From: Arik Nemtsov <arik@wizery.com>

drv->in_listen should be cleared whenever the state timeout is cleared, if
they were set together. If the flag is not cleared, the p2p_listen_end()
called during cancel-remain-on-channel will not restart the search,
relying on the state timeout function to do it.
Use the p2p_stop_listen_for_freq function to clear the listen state
properly.

Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
---
 src/p2p/p2p_pd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/src/p2p/p2p_pd.c b/src/p2p/p2p_pd.c
index 93a0535..54b2ab4 100644
--- a/src/p2p/p2p_pd.c
+++ b/src/p2p/p2p_pd.c
@@ -1581,7 +1581,7 @@  out:
 					 report_config_methods);
 
 	if (p2p->state == P2P_PD_DURING_FIND) {
-		p2p_clear_timeout(p2p);
+		p2p_stop_listen_for_freq(p2p, 0);
 		p2p_continue_find(p2p);
 	}
 }