forked from luck/tmp_suning_uos_patched
mac80211: misc cleanups
This patch removes unneeded member (skbuff) from ieee80211_ibss_add_sta() method in its declaration (in ieee80211_i.h) and its callers (in rx.c and mlme.c) This patch removes unneeded member from struct ieee80211_rx_data in ieee80211_i.h. (Originally posted as two patches. -- JWL) Signed-off-by: Rami Rosen <ramirose@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
4dec9b807b
commit
ab1f5c0bb8
@ -187,7 +187,6 @@ struct ieee80211_rx_data {
|
|||||||
struct ieee80211_rx_status *status;
|
struct ieee80211_rx_status *status;
|
||||||
struct ieee80211_rate *rate;
|
struct ieee80211_rate *rate;
|
||||||
|
|
||||||
u16 ethertype;
|
|
||||||
unsigned int flags;
|
unsigned int flags;
|
||||||
int sent_ps_buffered;
|
int sent_ps_buffered;
|
||||||
int queue;
|
int queue;
|
||||||
@ -864,8 +863,7 @@ int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid);
|
|||||||
void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata,
|
void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata,
|
||||||
struct ieee80211_if_sta *ifsta);
|
struct ieee80211_if_sta *ifsta);
|
||||||
struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
|
struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
|
||||||
struct sk_buff *skb, u8 *bssid,
|
u8 *bssid, u8 *addr, u64 supp_rates);
|
||||||
u8 *addr, u64 supp_rates);
|
|
||||||
int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason);
|
int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason);
|
||||||
int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason);
|
int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason);
|
||||||
u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata);
|
u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata);
|
||||||
|
@ -1565,8 +1565,7 @@ static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
|
|||||||
(unsigned long long) sta->sta.supp_rates[band]);
|
(unsigned long long) sta->sta.supp_rates[band]);
|
||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
ieee80211_ibss_add_sta(sdata, NULL, mgmt->bssid,
|
ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
|
||||||
mgmt->sa, supp_rates);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
rcu_read_unlock();
|
rcu_read_unlock();
|
||||||
@ -1638,9 +1637,7 @@ static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
|
|||||||
sdata->dev->name, mgmt->bssid);
|
sdata->dev->name, mgmt->bssid);
|
||||||
#endif
|
#endif
|
||||||
ieee80211_sta_join_ibss(sdata, &sdata->u.sta, bss);
|
ieee80211_sta_join_ibss(sdata, &sdata->u.sta, bss);
|
||||||
ieee80211_ibss_add_sta(sdata, NULL,
|
ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
|
||||||
mgmt->bssid, mgmt->sa,
|
|
||||||
supp_rates);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2373,8 +2370,7 @@ void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
|
|||||||
* must be callable in atomic context.
|
* must be callable in atomic context.
|
||||||
*/
|
*/
|
||||||
struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
|
struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
|
||||||
struct sk_buff *skb, u8 *bssid,
|
u8 *bssid,u8 *addr, u64 supp_rates)
|
||||||
u8 *addr, u64 supp_rates)
|
|
||||||
{
|
{
|
||||||
struct ieee80211_local *local = sdata->local;
|
struct ieee80211_local *local = sdata->local;
|
||||||
struct sta_info *sta;
|
struct sta_info *sta;
|
||||||
|
@ -1850,9 +1850,8 @@ static int prepare_for_handlers(struct ieee80211_sub_if_data *sdata,
|
|||||||
return 0;
|
return 0;
|
||||||
rx->flags &= ~IEEE80211_RX_RA_MATCH;
|
rx->flags &= ~IEEE80211_RX_RA_MATCH;
|
||||||
} else if (!rx->sta)
|
} else if (!rx->sta)
|
||||||
rx->sta = ieee80211_ibss_add_sta(sdata, rx->skb,
|
rx->sta = ieee80211_ibss_add_sta(sdata, bssid, hdr->addr2,
|
||||||
bssid, hdr->addr2,
|
BIT(rx->status->rate_idx));
|
||||||
BIT(rx->status->rate_idx));
|
|
||||||
break;
|
break;
|
||||||
case NL80211_IFTYPE_MESH_POINT:
|
case NL80211_IFTYPE_MESH_POINT:
|
||||||
if (!multicast &&
|
if (!multicast &&
|
||||||
|
Loading…
Reference in New Issue
Block a user