]> git.ipfire.org Git - thirdparty/hostap.git/commit
P2P: Reduce the idle time in Wait peer connect state
authorNeeraj Kumar Garg <neerajkg@broadcom.com>
Sun, 18 Dec 2011 16:01:11 +0000 (18:01 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 18 Dec 2011 16:01:11 +0000 (18:01 +0200)
commitd58ed4e3062da0f3ebbe7434ddb58e1bdc26a67c
tree2f27fbd1f752758a0a40e961db3d7a037b962971
parentbfe3557a0790a036c75f5cd58a318f408a8d4ab8
P2P: Reduce the idle time in Wait peer connect state

When waiting for go_neg frame from the peer in WAIT_PEER_CONNECT state,
I have observed that sometimes it takes 20 to 30 secs for successful GO
negotiation. I also found out that it is because of 1 second idle time,
in WAIT_PEER_CONNECT state. While it is good to have 1 second idle time
[for doing power-save or doing some other legacy STA Scan or some other
useful stuff], this makes GO Negotiation process slow.

We wait for 1 second idle and then listen for a random time between
100(min)-300(max) ms. Assume P1 is in WAIT_PEER_CONNECT state and P2 is
the one which is now to send go_neg frame. If P2 sends GO Negotiation
frame just at the boundary of 300 ms of P1 and assume that P2 takes
close to 600-800 ms for one iteration of sending go_neg request (one
iteration is GO Negotiation Request frame time + dwell time +
listen_time), P2 needs to transmit at least 16-18 Action frames for
hitting the listen time of P1.

Following patch reduces the idle time to 500 ms. Alternatively we can
increase the listen time interval to 500 ms just for WAIT_PEER_CONNECT
state.
src/p2p/p2p.c