On Wed, 2018-01-17 at 13:01 +0530, tamizhr@xxxxxxxxxxxxxx wrote: > From: Pradeep Kumar Chitrapu <pradeepc@xxxxxxxxxxxxxx> > > Enable connection monitoring for AP mode which makes it possible to > track signal strength of connected stations. > if (wdev->iftype != NL80211_IFTYPE_STATION && > - wdev->iftype != NL80211_IFTYPE_P2P_CLIENT) > + wdev->iftype != NL80211_IFTYPE_P2P_CLIENT && > + wdev->iftype != NL80211_IFTYPE_AP && > + wdev->iftype != NL80211_IFTYPE_P2P_GO && > + wdev->iftype != NL80211_IFTYPE_AP_VLAN) > return -EOPNOTSUPP; > This seems problematic - you'll probably need a driver support flag for this. And since clients might want to know whether this works or not, just make that an nl80211 extended feature bit? johannes