Commit cb585bcc authored by Luis Carlos Cobo's avatar Luis Carlos Cobo Committed by John W. Linville

mac80211: fix spinlock recursion on sta expiration

Signed-off-by: default avatarLuis Carlos Cobo <luisca@cozybit.com>
Acked-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 73bb3e4a
...@@ -3079,7 +3079,7 @@ static void ieee80211_sta_expire(struct net_device *dev, unsigned long exp_time) ...@@ -3079,7 +3079,7 @@ static void ieee80211_sta_expire(struct net_device *dev, unsigned long exp_time)
if (time_after(jiffies, sta->last_rx + exp_time)) { if (time_after(jiffies, sta->last_rx + exp_time)) {
printk(KERN_DEBUG "%s: expiring inactive STA %s\n", printk(KERN_DEBUG "%s: expiring inactive STA %s\n",
dev->name, print_mac(mac, sta->addr)); dev->name, print_mac(mac, sta->addr));
sta_info_unlink(&sta); __sta_info_unlink(&sta);
if (sta) if (sta)
list_add(&sta->list, &tmp_list); list_add(&sta->list, &tmp_list);
} }
......
...@@ -454,7 +454,7 @@ static struct sta_info *__sta_info_unpin(struct sta_info *sta) ...@@ -454,7 +454,7 @@ static struct sta_info *__sta_info_unpin(struct sta_info *sta)
return ret; return ret;
} }
static void __sta_info_unlink(struct sta_info **sta) void __sta_info_unlink(struct sta_info **sta)
{ {
struct ieee80211_local *local = (*sta)->local; struct ieee80211_local *local = (*sta)->local;
struct ieee80211_sub_if_data *sdata = (*sta)->sdata; struct ieee80211_sub_if_data *sdata = (*sta)->sdata;
......
...@@ -347,6 +347,7 @@ int sta_info_insert(struct sta_info *sta); ...@@ -347,6 +347,7 @@ int sta_info_insert(struct sta_info *sta);
* has already unlinked it. * has already unlinked it.
*/ */
void sta_info_unlink(struct sta_info **sta); void sta_info_unlink(struct sta_info **sta);
void __sta_info_unlink(struct sta_info **sta);
void sta_info_destroy(struct sta_info *sta); void sta_info_destroy(struct sta_info *sta);
void sta_info_set_tim_bit(struct sta_info *sta); void sta_info_set_tim_bit(struct sta_info *sta);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment