This patchsets introduced new NL command and api to support configuring rssi threshold for the connected stations and api to notify userspace application upon crossing the configured threshold. This will be useful for the application which requires station's current signal strength change information. Monitoring station's signal strength through station dump command will unnecessarily increase the system overhead. This event based mechanism will reduce the system overhead and helps application to take a decision for the station for which event received. Tamizh chelvam (3): cfg80211: Add support to configure station specific RSSI threshold for AP mode mac80211: Implement API to configure station specific rssi threshold mac80211: Implement functionality to monitor station's signal stregnth include/net/cfg80211.h | 28 +++++++++ include/net/mac80211.h | 7 +++ include/uapi/linux/nl80211.h | 18 ++++++ net/mac80211/cfg.c | 91 +++++++++++++++++++++++++++++ net/mac80211/rx.c | 51 +++++++++++++++- net/mac80211/sta_info.c | 1 + net/mac80211/sta_info.h | 24 ++++++++ net/wireless/nl80211.c | 131 +++++++++++++++++++++++++++++++++++++----- net/wireless/rdev-ops.h | 18 ++++++ 9 files changed, 354 insertions(+), 15 deletions(-) -- 1.7.9.5