diff --git a/[refs] b/[refs] index 15ab6b3aede1..18a56e07095a 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: f501dba4c4c5bda1b64c941997ab7ece1d503945 +refs/heads/master: c258d2de972d1e391a3dec731e0801ed1cc85494 diff --git a/trunk/net/wireless/nl80211.c b/trunk/net/wireless/nl80211.c index 5c8b3bfada4b..37264d56bace 100644 --- a/trunk/net/wireless/nl80211.c +++ b/trunk/net/wireless/nl80211.c @@ -1821,7 +1821,7 @@ static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info) } /* - * Get vlan interface making sure it is on the right wiphy. + * Get vlan interface making sure it is running and on the right wiphy. */ static int get_vlan(struct genl_info *info, struct cfg80211_registered_device *rdev, @@ -1839,6 +1839,8 @@ static int get_vlan(struct genl_info *info, return -EINVAL; if ((*vlan)->ieee80211_ptr->wiphy != &rdev->wiphy) return -EINVAL; + if (!netif_running(*vlan)) + return -ENETDOWN; } return 0; }