From: Sreenath Sharma Date: Sat, 31 Aug 2013 08:11:41 +0000 (+0300) Subject: P2P: Immediate group removal in GC in case of deauthentication X-Git-Tag: aosp-kk-from-upstream~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43ee470494a78440db8eb675ed67dc0e9f9e4cf9;p=thirdparty%2Fhostap.git P2P: Immediate group removal in GC in case of deauthentication Right now in case of deauthentication from GO, immediate group removal will happen in GC only if the deauthentication packet has a valid IE. However, the IE in deauthentication packet is mandated only for managed P2P group. So in normal P2P group the group removal is delayed and will happen later only in group idle timeout. This fixes a regression from commit d7df0fa727a2a79d7b22df6c68961220349ab2e3 that changed the previous check for data->deauth_info != NULL to data->deauth_info->ie != NULL. Signed-hostap: Sreenath Sharma --- diff --git a/wpa_supplicant/events.c b/wpa_supplicant/events.c index 40c6adf97..8d6c23496 100644 --- a/wpa_supplicant/events.c +++ b/wpa_supplicant/events.c @@ -2473,7 +2473,7 @@ static void wpas_event_disconnect(struct wpa_supplicant *wpa_s, const u8 *addr, wpas_auth_failed(wpa_s); #ifdef CONFIG_P2P - if (deauth && ie && ie_len > 0) { + if (deauth && reason_code > 0) { if (wpas_p2p_deauth_notif(wpa_s, addr, reason_code, ie, ie_len, locally_generated) > 0) { /*