Re: [PATCH 1/3] cfg80211: Add support to configure station specific RSSI threshold for AP mode

2018-11-11 Thread Tamizh chelvam
+ int (*set_sta_mon_rssi_config)(struct wiphy *wiphy, + struct net_device *dev, + const u8 *addr, + const s32 *rssi_tholds, +

Re: [PATCH 1/3] cfg80211: Add support to configure station specific RSSI threshold for AP mode

2018-11-09 Thread Johannes Berg
Hi, Sorry for the delay in reviewing this. > + int (*set_sta_mon_rssi_config)(struct wiphy *wiphy, > + struct net_device *dev, > + const u8 *addr, > + const s32 *rssi_tholds,

RE: [EXTERNAL] Re: [PATCH 1/3] cfg80211: Add support to configure station specific RSSI threshold for AP mode

2018-10-16 Thread Tamizh Chelvam Raja
>> +static int nl80211_set_sta_mon(struct sk_buff *skb, struct genl_info >> +*info) { >> + struct cfg80211_registered_device *rdev = info->user_ptr[0]; >> + struct net_device *dev = info->user_ptr[1]; >> + struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1]; >> + bool

Re: [PATCH 1/3] cfg80211: Add support to configure station specific RSSI threshold for AP mode

2018-10-16 Thread Sergey Matyukevich
> Signed-off-by: Tamizh chelvam > --- > include/net/cfg80211.h | 28 + > include/uapi/linux/nl80211.h | 18 ++ > net/wireless/nl80211.c | 131 > +- > net/wireless/rdev-ops.h | 18 ++ > 4 files changed, 181

[PATCH 1/3] cfg80211: Add support to configure station specific RSSI threshold for AP mode

2018-10-15 Thread Tamizh chelvam
Add infrastructure to configure station specific RSSI threshold configuration to monitor station's signal strength variation. This configuration will be useful for the application like steering which requires change in the station's current signal strength. New NL80211_CMD_SET_STA_MON introduced