Loading drivers/net/wireless/iwlwifi/dvm/rxon.c +6 −6 Original line number Diff line number Diff line Loading @@ -1012,12 +1012,12 @@ static void iwl_calc_basic_rates(struct iwl_priv *priv, * As a consequence, it's not as complicated as it sounds, just add * any lower rates to the ACK rate bitmap. */ if (IWL_RATE_11M_INDEX < lowest_present_ofdm) ofdm |= IWL_RATE_11M_MASK >> IWL_FIRST_CCK_RATE; if (IWL_RATE_5M_INDEX < lowest_present_ofdm) ofdm |= IWL_RATE_5M_MASK >> IWL_FIRST_CCK_RATE; if (IWL_RATE_2M_INDEX < lowest_present_ofdm) ofdm |= IWL_RATE_2M_MASK >> IWL_FIRST_CCK_RATE; if (IWL_RATE_11M_INDEX < lowest_present_cck) cck |= IWL_RATE_11M_MASK >> IWL_FIRST_CCK_RATE; if (IWL_RATE_5M_INDEX < lowest_present_cck) cck |= IWL_RATE_5M_MASK >> IWL_FIRST_CCK_RATE; if (IWL_RATE_2M_INDEX < lowest_present_cck) cck |= IWL_RATE_2M_MASK >> IWL_FIRST_CCK_RATE; /* 1M already there or needed so always add */ cck |= IWL_RATE_1M_MASK >> IWL_FIRST_CCK_RATE; Loading net/mac80211/offchannel.c +0 −2 Original line number Diff line number Diff line Loading @@ -462,8 +462,6 @@ void ieee80211_roc_purge(struct ieee80211_sub_if_data *sdata) list_move_tail(&roc->list, &tmp_list); roc->abort = true; } ieee80211_start_next_roc(local); mutex_unlock(&local->mtx); list_for_each_entry_safe(roc, tmp, &tmp_list, list) { Loading net/nfc/llcp/llcp.c +4 −1 Original line number Diff line number Diff line Loading @@ -985,15 +985,18 @@ static void nfc_llcp_recv_hdlc(struct nfc_llcp_local *local, /* Remove skbs from the pending queue */ if (llcp_sock->send_ack_n != nr) { struct sk_buff *s, *tmp; u8 n; llcp_sock->send_ack_n = nr; /* Remove and free all skbs until ns == nr */ skb_queue_walk_safe(&llcp_sock->tx_pending_queue, s, tmp) { n = nfc_llcp_ns(s); skb_unlink(s, &llcp_sock->tx_pending_queue); kfree_skb(s); if (nfc_llcp_ns(s) == nr) if (n == nr) break; } Loading Loading
drivers/net/wireless/iwlwifi/dvm/rxon.c +6 −6 Original line number Diff line number Diff line Loading @@ -1012,12 +1012,12 @@ static void iwl_calc_basic_rates(struct iwl_priv *priv, * As a consequence, it's not as complicated as it sounds, just add * any lower rates to the ACK rate bitmap. */ if (IWL_RATE_11M_INDEX < lowest_present_ofdm) ofdm |= IWL_RATE_11M_MASK >> IWL_FIRST_CCK_RATE; if (IWL_RATE_5M_INDEX < lowest_present_ofdm) ofdm |= IWL_RATE_5M_MASK >> IWL_FIRST_CCK_RATE; if (IWL_RATE_2M_INDEX < lowest_present_ofdm) ofdm |= IWL_RATE_2M_MASK >> IWL_FIRST_CCK_RATE; if (IWL_RATE_11M_INDEX < lowest_present_cck) cck |= IWL_RATE_11M_MASK >> IWL_FIRST_CCK_RATE; if (IWL_RATE_5M_INDEX < lowest_present_cck) cck |= IWL_RATE_5M_MASK >> IWL_FIRST_CCK_RATE; if (IWL_RATE_2M_INDEX < lowest_present_cck) cck |= IWL_RATE_2M_MASK >> IWL_FIRST_CCK_RATE; /* 1M already there or needed so always add */ cck |= IWL_RATE_1M_MASK >> IWL_FIRST_CCK_RATE; Loading
net/mac80211/offchannel.c +0 −2 Original line number Diff line number Diff line Loading @@ -462,8 +462,6 @@ void ieee80211_roc_purge(struct ieee80211_sub_if_data *sdata) list_move_tail(&roc->list, &tmp_list); roc->abort = true; } ieee80211_start_next_roc(local); mutex_unlock(&local->mtx); list_for_each_entry_safe(roc, tmp, &tmp_list, list) { Loading
net/nfc/llcp/llcp.c +4 −1 Original line number Diff line number Diff line Loading @@ -985,15 +985,18 @@ static void nfc_llcp_recv_hdlc(struct nfc_llcp_local *local, /* Remove skbs from the pending queue */ if (llcp_sock->send_ack_n != nr) { struct sk_buff *s, *tmp; u8 n; llcp_sock->send_ack_n = nr; /* Remove and free all skbs until ns == nr */ skb_queue_walk_safe(&llcp_sock->tx_pending_queue, s, tmp) { n = nfc_llcp_ns(s); skb_unlink(s, &llcp_sock->tx_pending_queue); kfree_skb(s); if (nfc_llcp_ns(s) == nr) if (n == nr) break; } Loading