Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 461fa136 authored by Juuso Oikarinen's avatar Juuso Oikarinen Committed by John W. Linville
Browse files

wl1271: Prevent PSM-entry retry loop if PSM cancelled



Prevent endless PSM-entry retry loops, if PSM has already been cancelled while
PSM entry was attempted.

Signed-off-by: default avatarJuuso Oikarinen <juuso.oikarinen@nokia.com>
Reviewed-by: default avatarLuciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: default avatarLuciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 84502563
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -78,12 +78,16 @@ static int wl1271_event_ps_report(struct wl1271 *wl,

	switch (mbox->ps_status) {
	case EVENT_ENTER_POWER_SAVE_FAIL:
		if (!wl->psm) {
			wl->psm_entry_retry = 0;
			break;
		}

		if (wl->psm_entry_retry < wl->conf.conn.psm_entry_retries) {
			wl->psm_entry_retry++;
			wl1271_error("PSM entry failed, retrying %d\n",
				     wl->psm_entry_retry);
			ret = wl1271_ps_set_mode(wl, STATION_POWER_SAVE_MODE);
		} else {
			wl1271_error("PSM entry failed, giving up.\n");
			wl->psm_entry_retry = 0;
			*beacon_loss = true;
		}