From: Greg Kroah-Hartman Date: Tue, 2 Aug 2011 16:22:20 +0000 (-0700) Subject: 3.0 patches X-Git-Tag: v2.6.39.4~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e50c9538a341e840ec633b6005866213b34c6fb5;p=thirdparty%2Fkernel%2Fstable-queue.git 3.0 patches --- diff --git a/queue-3.0/series b/queue-3.0/series index fb43c636ff7..5e0aba55575 100644 --- a/queue-3.0/series +++ b/queue-3.0/series @@ -24,3 +24,4 @@ ath6kl-cache-firmware.patch ath6kl-fix-crash-when-interface-is-closed-but-scan-is.patch ath9k_hw-fix-incorrect-key_miss-handling.patch cifs-fix-oops-while-mounting-with-prefixpath.patch +staging-brcm80211-fix-for-reported-log-spam-problem.patch diff --git a/queue-3.0/staging-brcm80211-fix-for-reported-log-spam-problem.patch b/queue-3.0/staging-brcm80211-fix-for-reported-log-spam-problem.patch new file mode 100644 index 00000000000..c85a8570175 --- /dev/null +++ b/queue-3.0/staging-brcm80211-fix-for-reported-log-spam-problem.patch @@ -0,0 +1,41 @@ +From 37c962d195005d009e130e65a9e55960996c3cab Mon Sep 17 00:00:00 2001 +From: Roland Vossen +Date: Wed, 29 Jun 2011 16:48:22 -0700 +Subject: staging: brcm80211: fix for reported log spam problem + +From: Roland Vossen + +commit 37c962d195005d009e130e65a9e55960996c3cab upstream. + +Every few minutes, this message would appear in syslog: + +ieee80211 ph0: wl_ops_bss_info_changed: BSS idle: true (implement) + +The message has been deleted, the driver requires no special action on this +particular event (). See: https://bugzilla.kernel.org/show_bug.cgi?id=38162 + +Reported-by: David Hill +Signed-off-by: Roland Vossen +Reviewed-by: Arend van Spriel +Reviewed-by: Franky Lin +Signed-off-by: Greg Kroah-Hartman +Signed-off-by: Stefan Lippers-Hollmann + +--- + drivers/staging/brcm80211/brcmsmac/wl_mac80211.c | 5 ----- + 1 file changed, 5 deletions(-) + +--- a/drivers/staging/brcm80211/brcmsmac/wl_mac80211.c ++++ b/drivers/staging/brcm80211/brcmsmac/wl_mac80211.c +@@ -449,11 +449,6 @@ wl_ops_bss_info_changed(struct ieee80211 + wiphy_err(wiphy, "%s: qos enabled: %s (implement)\n", __func__, + info->qos ? "true" : "false"); + } +- if (changed & BSS_CHANGED_IDLE) { +- /* Idle changed for this BSS/interface */ +- wiphy_err(wiphy, "%s: BSS idle: %s (implement)\n", __func__, +- info->idle ? "true" : "false"); +- } + return; + } +