int max_rates)
 {
        struct ieee80211_sub_if_data *sdata;
-       struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
        struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
        struct ieee80211_supported_band *sband;
 
        sdata = vif_to_sdata(vif);
        sband = sdata->local->hw.wiphy->bands[info->band];
 
-       if (ieee80211_is_data(hdr->frame_control))
+       if (ieee80211_is_tx_data(skb))
                rate_control_apply_mask(sdata, sta, sband, dest, max_rates);
 
        if (dest[0].idx < 0)
 
        u32 len;
        struct ieee80211_tx_rate_control txrc;
        struct ieee80211_sta_rates *ratetbl = NULL;
+       bool encap = info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP;
        bool assoc = false;
 
        memset(&txrc, 0, sizeof(txrc));
         * just wants a probe response.
         */
        if (tx->sdata->vif.bss_conf.use_short_preamble &&
-           (ieee80211_is_data(hdr->frame_control) ||
+           (ieee80211_is_tx_data(tx->skb) ||
             (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
                txrc.short_preamble = true;
 
                 "%s: Dropped data frame as no usable bitrate found while "
                 "scanning and associated. Target station: "
                 "%pM on %d GHz band\n",
-                tx->sdata->name, hdr->addr1,
+                tx->sdata->name,
+                encap ? ((struct ethhdr *)hdr)->h_dest : hdr->addr1,
                 info->band ? 5 : 2))
                return TX_DROP;
 
 
        if (txrc.reported_rate.idx < 0) {
                txrc.reported_rate = tx->rate;
-               if (tx->sta && ieee80211_is_data(hdr->frame_control))
+               if (tx->sta && ieee80211_is_tx_data(tx->skb))
                        tx->sta->tx_stats.last_rate = txrc.reported_rate;
        } else if (tx->sta)
                tx->sta->tx_stats.last_rate = txrc.reported_rate;
        else
                info->flags &= ~IEEE80211_TX_CTL_AMPDU;
 
-       if (info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP)
+       if (info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) {
+               if (!ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) {
+                       r = ieee80211_tx_h_rate_ctrl(&tx);
+                       if (r != TX_CONTINUE) {
+                               ieee80211_free_txskb(&local->hw, skb);
+                               goto begin;
+                       }
+               }
                goto encap_out;
+       }
 
        if (info->control.flags & IEEE80211_TX_CTRL_FAST_XMIT) {
                struct sta_info *sta = container_of(txq->sta, struct sta_info,