|
@@ -266,11 +266,14 @@ static int rsi_send_internal_mgmt_frame(struct rsi_common *common,
|
|
struct sk_buff *skb)
|
|
struct sk_buff *skb)
|
|
{
|
|
{
|
|
struct skb_info *tx_params;
|
|
struct skb_info *tx_params;
|
|
|
|
+ struct rsi_cmd_desc *desc;
|
|
|
|
|
|
if (skb == NULL) {
|
|
if (skb == NULL) {
|
|
rsi_dbg(ERR_ZONE, "%s: Unable to allocate skb\n", __func__);
|
|
rsi_dbg(ERR_ZONE, "%s: Unable to allocate skb\n", __func__);
|
|
return -ENOMEM;
|
|
return -ENOMEM;
|
|
}
|
|
}
|
|
|
|
+ desc->desc_dword0.len_qno |= cpu_to_le16(DESC_IMMEDIATE_WAKEUP);
|
|
|
|
+ skb->priority = MGMT_SOFT_Q;
|
|
tx_params = (struct skb_info *)&IEEE80211_SKB_CB(skb)->driver_data;
|
|
tx_params = (struct skb_info *)&IEEE80211_SKB_CB(skb)->driver_data;
|
|
tx_params->flags |= INTERNAL_MGMT_PKT;
|
|
tx_params->flags |= INTERNAL_MGMT_PKT;
|
|
skb_queue_tail(&common->tx_queue[MGMT_SOFT_Q], skb);
|
|
skb_queue_tail(&common->tx_queue[MGMT_SOFT_Q], skb);
|