From: Ben Greear <greearb@xxxxxxxxxxxxxxx> In case user-space wants to know the name of the device, this will save a name lookup by index, and in case where kernel manages to fully delete the interface before user-space can determine the name, this will ensure user-space has proper name. Signed-off-by: Ben Greear <greearb@xxxxxxxxxxxxxxx> --- net/wireless/nl80211.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 736c474..ba73def 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -12992,6 +12992,7 @@ void nl80211_send_ap_stopped(struct wireless_dev *wdev) goto out; if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || + nla_put_string(msg, NL80211_ATTR_IFNAME, wdev->netdev->name) || nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex) || nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev))) goto out; -- 1.7.11.7 -- 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