nl80211: Skip frame filter config for P2P-Device
There's no point in attempting to configure frame filters on a P2P-Devices that doesn't even have a netdev (nor passes any data traffic), that just results in error messages. Skip it. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
2b916c9fd5
commit
56c192c5ee
1 changed files with 4 additions and 0 deletions
|
@ -11506,6 +11506,10 @@ static int nl80211_configure_data_frame_filters(void *priv, u32 filter_flags)
|
||||||
char path[128];
|
char path[128];
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
/* P2P-Device has no netdev that can (or should) be configured here */
|
||||||
|
if (nl80211_get_ifmode(bss) == NL80211_IFTYPE_P2P_DEVICE)
|
||||||
|
return 0;
|
||||||
|
|
||||||
wpa_printf(MSG_DEBUG, "nl80211: Data frame filter flags=0x%x",
|
wpa_printf(MSG_DEBUG, "nl80211: Data frame filter flags=0x%x",
|
||||||
filter_flags);
|
filter_flags);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue