Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: chromeos/compat-wireless/net/mac80211/tx.c

Issue 5326002: Update compat-wireless to 2.6.36-5-spn (Closed) Base URL: http://git.chromium.org/git/kernel.git@master
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/compat-wireless/net/mac80211/tx.c
diff --git a/chromeos/compat-wireless/net/mac80211/tx.c b/chromeos/compat-wireless/net/mac80211/tx.c
index 09d115c75f06178fe2bf910cf7e6376cbe35b644..4bfdd75e72d77d8cca15662fe2b10e61680c18cf 100644
--- a/chromeos/compat-wireless/net/mac80211/tx.c
+++ b/chromeos/compat-wireless/net/mac80211/tx.c
@@ -286,10 +286,9 @@ ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
tx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
ieee80211_is_data(hdr->frame_control))) {
#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
- if (net_ratelimit())
- printk(KERN_DEBUG "%s: dropped data frame to "
- "not associated station %pM\n",
- tx->sdata->name, hdr->addr1);
+ printk(KERN_DEBUG "%s: dropped data frame to not "
Sam Leffler 2010/12/01 00:23:44 lost local change
+ "associated station %pM\n",
+ tx->sdata->name, hdr->addr1);
#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
return TX_DROP;

Powered by Google App Engine
This is Rietveld 408576698