mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 14:49:24 +01:00
station/wsc: remove beacon loss handling
Modern kernels ~5.4+ have changed the way lost beacons are reported and effectively make the lost beacon event useless because it is immediately followed by a disconnect event. This does not allow IWD enough time to do much of anything before the disconnect comes in and we are forced to fully re-connect to a different AP.
This commit is contained in:
parent
32db13aef8
commit
836beb1276
@ -2085,29 +2085,6 @@ static bool station_cannot_roam(struct station *station)
|
||||
station->state == STATION_STATE_ROAMING;
|
||||
}
|
||||
|
||||
static void station_lost_beacon(struct station *station)
|
||||
{
|
||||
l_debug("%u", netdev_get_ifindex(station->netdev));
|
||||
|
||||
if (station->state != STATION_STATE_ROAMING &&
|
||||
station->state != STATION_STATE_CONNECTED)
|
||||
return;
|
||||
|
||||
/*
|
||||
* Tell the roam mechanism to not bother requesting Neighbor Reports,
|
||||
* preauthenticating or performing other over-the-DS type of
|
||||
* authentication to target AP, even while station->connected_bss is
|
||||
* still non-NULL. The current connection is in a serious condition
|
||||
* and we might wasting our time with those mechanisms.
|
||||
*/
|
||||
station->roam_no_orig_ap = true;
|
||||
|
||||
if (station_cannot_roam(station))
|
||||
return;
|
||||
|
||||
station_roam_trigger_cb(NULL, station);
|
||||
}
|
||||
|
||||
#define WNM_REQUEST_MODE_PREFERRED_CANDIDATE_LIST (1 << 0)
|
||||
#define WNM_REQUEST_MODE_TERMINATION_IMMINENT (1 << 3)
|
||||
#define WNM_REQUEST_MODE_ESS_DISASSOCIATION_IMMINENT (1 << 4)
|
||||
@ -2235,9 +2212,6 @@ static void station_netdev_event(struct netdev *netdev, enum netdev_event event,
|
||||
case NETDEV_EVENT_ASSOCIATING:
|
||||
l_debug("Associating");
|
||||
break;
|
||||
case NETDEV_EVENT_LOST_BEACON:
|
||||
station_lost_beacon(station);
|
||||
break;
|
||||
case NETDEV_EVENT_DISCONNECT_BY_AP:
|
||||
case NETDEV_EVENT_DISCONNECT_BY_SME:
|
||||
station_disconnect_event(station, event_data);
|
||||
|
@ -247,9 +247,6 @@ static void wsc_enrollee_netdev_event(struct netdev *netdev,
|
||||
case NETDEV_EVENT_AUTHENTICATING:
|
||||
case NETDEV_EVENT_ASSOCIATING:
|
||||
break;
|
||||
case NETDEV_EVENT_LOST_BEACON:
|
||||
l_debug("Lost beacon");
|
||||
break;
|
||||
case NETDEV_EVENT_DISCONNECT_BY_AP:
|
||||
l_debug("Disconnect by AP");
|
||||
wsc_enrollee_connect_cb(wsce->netdev,
|
||||
|
Loading…
Reference in New Issue
Block a user