Merge branch 'master' of ssh://master.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6
This commit is contained in:
@@ -891,7 +891,6 @@ void hostap_setup_dev(struct net_device *dev, local_info_t *local,
|
|||||||
|
|
||||||
SET_ETHTOOL_OPS(dev, &prism2_ethtool_ops);
|
SET_ETHTOOL_OPS(dev, &prism2_ethtool_ops);
|
||||||
|
|
||||||
netif_stop_queue(dev);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int hostap_enable_hostapd(local_info_t *local, int rtnl_locked)
|
static int hostap_enable_hostapd(local_info_t *local, int rtnl_locked)
|
||||||
|
@@ -912,6 +912,7 @@ static int rt2800pci_probe_hw(struct rt2x00_dev *rt2x00dev)
|
|||||||
__set_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags);
|
__set_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags);
|
||||||
__set_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags);
|
__set_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags);
|
||||||
__set_bit(DRIVER_REQUIRE_TXSTATUS_FIFO, &rt2x00dev->flags);
|
__set_bit(DRIVER_REQUIRE_TXSTATUS_FIFO, &rt2x00dev->flags);
|
||||||
|
__set_bit(DRIVER_REQUIRE_TASKLET_CONTEXT, &rt2x00dev->flags);
|
||||||
if (!modparam_nohwcrypt)
|
if (!modparam_nohwcrypt)
|
||||||
__set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags);
|
__set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags);
|
||||||
__set_bit(DRIVER_SUPPORT_LINK_TUNING, &rt2x00dev->flags);
|
__set_bit(DRIVER_SUPPORT_LINK_TUNING, &rt2x00dev->flags);
|
||||||
|
@@ -664,6 +664,7 @@ enum rt2x00_flags {
|
|||||||
DRIVER_REQUIRE_COPY_IV,
|
DRIVER_REQUIRE_COPY_IV,
|
||||||
DRIVER_REQUIRE_L2PAD,
|
DRIVER_REQUIRE_L2PAD,
|
||||||
DRIVER_REQUIRE_TXSTATUS_FIFO,
|
DRIVER_REQUIRE_TXSTATUS_FIFO,
|
||||||
|
DRIVER_REQUIRE_TASKLET_CONTEXT,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Driver features
|
* Driver features
|
||||||
|
@@ -390,9 +390,12 @@ void rt2x00lib_txdone(struct queue_entry *entry,
|
|||||||
* through a mac80211 library call (RTS/CTS) then we should not
|
* through a mac80211 library call (RTS/CTS) then we should not
|
||||||
* send the status report back.
|
* send the status report back.
|
||||||
*/
|
*/
|
||||||
if (!(skbdesc_flags & SKBDESC_NOT_MAC80211))
|
if (!(skbdesc_flags & SKBDESC_NOT_MAC80211)) {
|
||||||
ieee80211_tx_status(rt2x00dev->hw, entry->skb);
|
if (test_bit(DRIVER_REQUIRE_TASKLET_CONTEXT, &rt2x00dev->flags))
|
||||||
else
|
ieee80211_tx_status(rt2x00dev->hw, entry->skb);
|
||||||
|
else
|
||||||
|
ieee80211_tx_status_ni(rt2x00dev->hw, entry->skb);
|
||||||
|
} else
|
||||||
dev_kfree_skb_any(entry->skb);
|
dev_kfree_skb_any(entry->skb);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -2024,8 +2024,8 @@ static inline void ieee80211_rx_ni(struct ieee80211_hw *hw,
|
|||||||
*
|
*
|
||||||
* This function may not be called in IRQ context. Calls to this function
|
* This function may not be called in IRQ context. Calls to this function
|
||||||
* for a single hardware must be synchronized against each other. Calls
|
* for a single hardware must be synchronized against each other. Calls
|
||||||
* to this function and ieee80211_tx_status_irqsafe() may not be mixed
|
* to this function, ieee80211_tx_status_ni() and ieee80211_tx_status_irqsafe()
|
||||||
* for a single hardware.
|
* may not be mixed for a single hardware.
|
||||||
*
|
*
|
||||||
* @hw: the hardware the frame was transmitted by
|
* @hw: the hardware the frame was transmitted by
|
||||||
* @skb: the frame that was transmitted, owned by mac80211 after this call
|
* @skb: the frame that was transmitted, owned by mac80211 after this call
|
||||||
@@ -2033,14 +2033,34 @@ static inline void ieee80211_rx_ni(struct ieee80211_hw *hw,
|
|||||||
void ieee80211_tx_status(struct ieee80211_hw *hw,
|
void ieee80211_tx_status(struct ieee80211_hw *hw,
|
||||||
struct sk_buff *skb);
|
struct sk_buff *skb);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ieee80211_tx_status_ni - transmit status callback (in process context)
|
||||||
|
*
|
||||||
|
* Like ieee80211_tx_status() but can be called in process context.
|
||||||
|
*
|
||||||
|
* Calls to this function, ieee80211_tx_status() and
|
||||||
|
* ieee80211_tx_status_irqsafe() may not be mixed
|
||||||
|
* for a single hardware.
|
||||||
|
*
|
||||||
|
* @hw: the hardware the frame was transmitted by
|
||||||
|
* @skb: the frame that was transmitted, owned by mac80211 after this call
|
||||||
|
*/
|
||||||
|
static inline void ieee80211_tx_status_ni(struct ieee80211_hw *hw,
|
||||||
|
struct sk_buff *skb)
|
||||||
|
{
|
||||||
|
local_bh_disable();
|
||||||
|
ieee80211_tx_status(hw, skb);
|
||||||
|
local_bh_enable();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ieee80211_tx_status_irqsafe - IRQ-safe transmit status callback
|
* ieee80211_tx_status_irqsafe - IRQ-safe transmit status callback
|
||||||
*
|
*
|
||||||
* Like ieee80211_tx_status() but can be called in IRQ context
|
* Like ieee80211_tx_status() but can be called in IRQ context
|
||||||
* (internally defers to a tasklet.)
|
* (internally defers to a tasklet.)
|
||||||
*
|
*
|
||||||
* Calls to this function and ieee80211_tx_status() may not be mixed for a
|
* Calls to this function, ieee80211_tx_status() and
|
||||||
* single hardware.
|
* ieee80211_tx_status_ni() may not be mixed for a single hardware.
|
||||||
*
|
*
|
||||||
* @hw: the hardware the frame was transmitted by
|
* @hw: the hardware the frame was transmitted by
|
||||||
* @skb: the frame that was transmitted, owned by mac80211 after this call
|
* @skb: the frame that was transmitted, owned by mac80211 after this call
|
||||||
|
@@ -1788,9 +1788,11 @@ ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
|
|||||||
|
|
||||||
fwd_skb = skb_copy(skb, GFP_ATOMIC);
|
fwd_skb = skb_copy(skb, GFP_ATOMIC);
|
||||||
|
|
||||||
if (!fwd_skb && net_ratelimit())
|
if (!fwd_skb && net_ratelimit()) {
|
||||||
printk(KERN_DEBUG "%s: failed to clone mesh frame\n",
|
printk(KERN_DEBUG "%s: failed to clone mesh frame\n",
|
||||||
sdata->name);
|
sdata->name);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
|
fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
|
||||||
memcpy(fwd_hdr->addr2, sdata->vif.addr, ETH_ALEN);
|
memcpy(fwd_hdr->addr2, sdata->vif.addr, ETH_ALEN);
|
||||||
@@ -1828,6 +1830,7 @@ ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
out:
|
||||||
if (is_multicast_ether_addr(hdr->addr1) ||
|
if (is_multicast_ether_addr(hdr->addr1) ||
|
||||||
sdata->dev->flags & IFF_PROMISC)
|
sdata->dev->flags & IFF_PROMISC)
|
||||||
return RX_CONTINUE;
|
return RX_CONTINUE;
|
||||||
|
Reference in New Issue
Block a user