Adding "cfg80211_send_intermediate_result" call on reception of new beacon/probe response. Signed-off-by: Victor Goldenshtein <VictorG@xxxxxx> --- net/mac80211/scan.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/net/mac80211/scan.c b/net/mac80211/scan.c index 6f09eca..1204165 100644 --- a/net/mac80211/scan.c +++ b/net/mac80211/scan.c @@ -159,6 +159,7 @@ ieee80211_scan_rx(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb) __le16 fc; bool presp, beacon = false; struct ieee802_11_elems elems; + struct cfg80211_bss *cbss = NULL; if (skb->len < 2) return RX_DROP_UNUSABLE; @@ -209,8 +210,11 @@ ieee80211_scan_rx(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb) bss = ieee80211_bss_info_update(sdata->local, rx_status, mgmt, skb->len, &elems, channel, beacon); - if (bss) + if (bss) { + cbss = container_of((void *)bss, struct cfg80211_bss, priv); + cfg80211_send_intermediate_result(sdata->dev, cbss); ieee80211_rx_bss_put(sdata->local, bss); + } /* If we are on-operating-channel, and this packet is for the * current channel, pass the pkt on up the stack so that -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html