* @sdata: virtual interface to build the header for
  * @skb: the skb to build the header in
  * @info_flags: skb flags to set
+ * @ctrl_flags: info control flags to set
  *
  * This function takes the skb with 802.3 header and reformats the header to
  * the appropriate IEEE 802.11 header based on which interface the packet is
  */
 static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata,
                                           struct sk_buff *skb, u32 info_flags,
-                                          struct sta_info *sta)
+                                          struct sta_info *sta, u32 ctrl_flags)
 {
        struct ieee80211_local *local = sdata->local;
        struct ieee80211_tx_info *info;
        info->flags = info_flags;
        info->ack_frame_id = info_id;
        info->band = band;
+       info->control.flags = ctrl_flags;
 
        return skb;
  free:
 
 void __ieee80211_subif_start_xmit(struct sk_buff *skb,
                                  struct net_device *dev,
-                                 u32 info_flags)
+                                 u32 info_flags,
+                                 u32 ctrl_flags)
 {
        struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
        struct ieee80211_local *local = sdata->local;
                skb->prev = NULL;
                skb->next = NULL;
 
-               skb = ieee80211_build_hdr(sdata, skb, info_flags, sta);
+               skb = ieee80211_build_hdr(sdata, skb, info_flags,
+                                         sta, ctrl_flags);
                if (IS_ERR(skb))
                        goto out;
 
                __skb_queue_head_init(&queue);
                ieee80211_convert_to_unicast(skb, dev, &queue);
                while ((skb = __skb_dequeue(&queue)))
-                       __ieee80211_subif_start_xmit(skb, dev, 0);
+                       __ieee80211_subif_start_xmit(skb, dev, 0, 0);
        } else {
-               __ieee80211_subif_start_xmit(skb, dev, 0);
+               __ieee80211_subif_start_xmit(skb, dev, 0, 0);
        }
 
        return NETDEV_TX_OK;
                goto out;
        }
 
-       skb = ieee80211_build_hdr(sdata, skb, info_flags, sta);
+       skb = ieee80211_build_hdr(sdata, skb, info_flags, sta, 0);
        if (IS_ERR(skb))
                goto out;
 
        skb_reset_mac_header(skb);
 
        local_bh_disable();
-       __ieee80211_subif_start_xmit(skb, skb->dev, flags);
+       __ieee80211_subif_start_xmit(skb, skb->dev, flags, 0);
        local_bh_enable();
 
        return 0;