diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-11-25 14:30:31 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-12-21 18:38:54 -0500 |
commit | 12375ef933fa8271396ed0c1e318cb1bd2e2689d (patch) | |
tree | b05ccc4573cb8f0a1b89edeeae7e6c5805f75f67 /net/mac80211/sta_info.c | |
parent | 47846c9b0c10808d9337d2e7d09361f3e0a0a71a (diff) |
mac80211: trace interface name
It's not all that useful to have the vif/sdata pointer,
we'd rather refer to the interfaces by their name.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/sta_info.c')
-rw-r--r-- | net/mac80211/sta_info.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c index 294f1b8b1545..d1a77e79d7a9 100644 --- a/net/mac80211/sta_info.c +++ b/net/mac80211/sta_info.c | |||
@@ -397,7 +397,7 @@ int sta_info_insert(struct sta_info *sta) | |||
397 | struct ieee80211_sub_if_data, | 397 | struct ieee80211_sub_if_data, |
398 | u.ap); | 398 | u.ap); |
399 | 399 | ||
400 | drv_sta_notify(local, &sdata->vif, STA_NOTIFY_ADD, &sta->sta); | 400 | drv_sta_notify(local, sdata, STA_NOTIFY_ADD, &sta->sta); |
401 | sdata = sta->sdata; | 401 | sdata = sta->sdata; |
402 | } | 402 | } |
403 | 403 | ||
@@ -537,7 +537,7 @@ static void __sta_info_unlink(struct sta_info **sta) | |||
537 | struct ieee80211_sub_if_data, | 537 | struct ieee80211_sub_if_data, |
538 | u.ap); | 538 | u.ap); |
539 | 539 | ||
540 | drv_sta_notify(local, &sdata->vif, STA_NOTIFY_REMOVE, | 540 | drv_sta_notify(local, sdata, STA_NOTIFY_REMOVE, |
541 | &(*sta)->sta); | 541 | &(*sta)->sta); |
542 | sdata = (*sta)->sdata; | 542 | sdata = (*sta)->sdata; |
543 | } | 543 | } |
@@ -876,7 +876,7 @@ void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta) | |||
876 | struct ieee80211_local *local = sdata->local; | 876 | struct ieee80211_local *local = sdata->local; |
877 | int sent, buffered; | 877 | int sent, buffered; |
878 | 878 | ||
879 | drv_sta_notify(local, &sdata->vif, STA_NOTIFY_AWAKE, &sta->sta); | 879 | drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta); |
880 | 880 | ||
881 | if (!skb_queue_empty(&sta->ps_tx_buf)) | 881 | if (!skb_queue_empty(&sta->ps_tx_buf)) |
882 | sta_info_clear_tim_bit(sta); | 882 | sta_info_clear_tim_bit(sta); |