mac80211_hwsim: remove deprecated radio_enabled
This removes the use of the deprecated radio_enabled setting and code associated with that. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
729e9c7663
commit
4c4c671aea
@ -280,7 +280,6 @@ struct mac80211_hwsim_data {
|
|||||||
struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
|
struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
|
||||||
|
|
||||||
struct ieee80211_channel *channel;
|
struct ieee80211_channel *channel;
|
||||||
int radio_enabled;
|
|
||||||
unsigned long beacon_int; /* in jiffies unit */
|
unsigned long beacon_int; /* in jiffies unit */
|
||||||
unsigned int rx_filter;
|
unsigned int rx_filter;
|
||||||
int started;
|
int started;
|
||||||
@ -418,8 +417,7 @@ static bool mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
|
|||||||
if (data == data2)
|
if (data == data2)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (!data2->started || !data2->radio_enabled ||
|
if (!data2->started || !hwsim_ps_rx_ok(data2, skb) ||
|
||||||
!hwsim_ps_rx_ok(data2, skb) ||
|
|
||||||
data->channel->center_freq != data2->channel->center_freq ||
|
data->channel->center_freq != data2->channel->center_freq ||
|
||||||
!(data->group & data2->group))
|
!(data->group & data2->group))
|
||||||
continue;
|
continue;
|
||||||
@ -441,7 +439,6 @@ static bool mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
|
|||||||
|
|
||||||
static int mac80211_hwsim_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
|
static int mac80211_hwsim_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
struct mac80211_hwsim_data *data = hw->priv;
|
|
||||||
bool ack;
|
bool ack;
|
||||||
struct ieee80211_tx_info *txi;
|
struct ieee80211_tx_info *txi;
|
||||||
|
|
||||||
@ -453,13 +450,6 @@ static int mac80211_hwsim_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
|
|||||||
return NETDEV_TX_OK;
|
return NETDEV_TX_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!data->radio_enabled) {
|
|
||||||
printk(KERN_DEBUG "%s: dropped TX frame since radio "
|
|
||||||
"disabled\n", wiphy_name(hw->wiphy));
|
|
||||||
dev_kfree_skb(skb);
|
|
||||||
return NETDEV_TX_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
ack = mac80211_hwsim_tx_frame(hw, skb);
|
ack = mac80211_hwsim_tx_frame(hw, skb);
|
||||||
|
|
||||||
txi = IEEE80211_SKB_CB(skb);
|
txi = IEEE80211_SKB_CB(skb);
|
||||||
@ -546,7 +536,7 @@ static void mac80211_hwsim_beacon(unsigned long arg)
|
|||||||
struct ieee80211_hw *hw = (struct ieee80211_hw *) arg;
|
struct ieee80211_hw *hw = (struct ieee80211_hw *) arg;
|
||||||
struct mac80211_hwsim_data *data = hw->priv;
|
struct mac80211_hwsim_data *data = hw->priv;
|
||||||
|
|
||||||
if (!data->started || !data->radio_enabled)
|
if (!data->started)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ieee80211_iterate_active_interfaces_atomic(
|
ieee80211_iterate_active_interfaces_atomic(
|
||||||
@ -562,15 +552,14 @@ static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
|
|||||||
struct mac80211_hwsim_data *data = hw->priv;
|
struct mac80211_hwsim_data *data = hw->priv;
|
||||||
struct ieee80211_conf *conf = &hw->conf;
|
struct ieee80211_conf *conf = &hw->conf;
|
||||||
|
|
||||||
printk(KERN_DEBUG "%s:%s (freq=%d radio_enabled=%d idle=%d ps=%d)\n",
|
printk(KERN_DEBUG "%s:%s (freq=%d idle=%d ps=%d)\n",
|
||||||
wiphy_name(hw->wiphy), __func__,
|
wiphy_name(hw->wiphy), __func__,
|
||||||
conf->channel->center_freq, conf->radio_enabled,
|
conf->channel->center_freq,
|
||||||
!!(conf->flags & IEEE80211_CONF_IDLE),
|
!!(conf->flags & IEEE80211_CONF_IDLE),
|
||||||
!!(conf->flags & IEEE80211_CONF_PS));
|
!!(conf->flags & IEEE80211_CONF_PS));
|
||||||
|
|
||||||
data->channel = conf->channel;
|
data->channel = conf->channel;
|
||||||
data->radio_enabled = conf->radio_enabled;
|
if (!data->started || !data->beacon_int)
|
||||||
if (!data->started || !data->radio_enabled || !data->beacon_int)
|
|
||||||
del_timer(&data->beacon_timer);
|
del_timer(&data->beacon_timer);
|
||||||
else
|
else
|
||||||
mod_timer(&data->beacon_timer, jiffies + data->beacon_int);
|
mod_timer(&data->beacon_timer, jiffies + data->beacon_int);
|
||||||
@ -787,8 +776,7 @@ static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif)
|
|||||||
pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
|
pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
|
||||||
memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
|
memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
|
||||||
memcpy(pspoll->ta, mac, ETH_ALEN);
|
memcpy(pspoll->ta, mac, ETH_ALEN);
|
||||||
if (data->radio_enabled &&
|
if (!mac80211_hwsim_tx_frame(data->hw, skb))
|
||||||
!mac80211_hwsim_tx_frame(data->hw, skb))
|
|
||||||
printk(KERN_DEBUG "%s: PS-Poll frame not ack'ed\n", __func__);
|
printk(KERN_DEBUG "%s: PS-Poll frame not ack'ed\n", __func__);
|
||||||
dev_kfree_skb(skb);
|
dev_kfree_skb(skb);
|
||||||
}
|
}
|
||||||
@ -819,8 +807,7 @@ static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac,
|
|||||||
memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
|
memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
|
||||||
memcpy(hdr->addr2, mac, ETH_ALEN);
|
memcpy(hdr->addr2, mac, ETH_ALEN);
|
||||||
memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
|
memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
|
||||||
if (data->radio_enabled &&
|
if (!mac80211_hwsim_tx_frame(data->hw, skb))
|
||||||
!mac80211_hwsim_tx_frame(data->hw, skb))
|
|
||||||
printk(KERN_DEBUG "%s: nullfunc frame not ack'ed\n", __func__);
|
printk(KERN_DEBUG "%s: nullfunc frame not ack'ed\n", __func__);
|
||||||
dev_kfree_skb(skb);
|
dev_kfree_skb(skb);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user