diff options
| author | Xiaochang Duan <xduan@qca.qualcomm.com> | 2014-01-23 12:36:49 -0800 |
|---|---|---|
| committer | Prakash Dhavali <pdhavali@qca.qualcomm.com> | 2014-01-29 12:06:37 -0800 |
| commit | 24f87d073f28f74b186e324eb39ce576ea02a210 (patch) | |
| tree | fa69fb99aac22e9f71c99d1a3d13e248e9005c36 | |
| parent | e2b928be2422447b619eeb4fa655bc0fac13e947 (diff) | |
wlan:ibss:adjust rome ibss peer departure timeout reset to 4 seconds
FW is adding probe request to prevent fault rome ibss peer departure
alert. With this change the the timeout for the peer departure needs
to be changed to 4 seconds, no matter how many peers are connected,
for speedy peer departure detection
Change-Id: I13eba16cc792a49c78c750eb1ae7d87996279736
CRs-Fixed: 600925
| -rw-r--r-- | CORE/SERVICES/WMA/wma.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CORE/SERVICES/WMA/wma.c b/CORE/SERVICES/WMA/wma.c index 10cbeba69c2e..868aedc4df47 100644 --- a/CORE/SERVICES/WMA/wma.c +++ b/CORE/SERVICES/WMA/wma.c @@ -7862,10 +7862,10 @@ static u_int16_t wma_calc_ibss_heart_beat_timer(int16_t peer_num) entry value : the heart time threshold value in seconds for detecting ibss peer departure */ static const u_int16_t heart_beat_timer[HDD_MAX_NUM_IBSS_STA] = { - 4, 8, 12, 16, 20, 24, 28, 32, - 36, 40, 44, 48, 52, 56, 60, 64, - 68, 72, 76, 80, 84, 88, 92, 96, - 100, 104, 108, 112, 116, 120, 124, 128}; + 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4}; if (peer_num < 1 || peer_num > HDD_MAX_NUM_IBSS_STA) return 0; |
