Hi On Tuesday 02 August 2011, Greg KH wrote: > On Tue, Jul 26, 2011 at 03:34:33PM +0200, Stefan Lippers-Hollmann wrote: > > Hi > > > > On Tuesday 26 July 2011, you wrote: > > > Gitweb: > > > http://git.kernel.org/linus/37c962d195005d009e130e65a9e55960996c3cab > > > Commit: 37c962d195005d009e130e65a9e55960996c3cab > > > Parent: a7ec965587af75b1a74ff4ef8f4c3c48b2e45239 > > > Author: Roland Vossen <[email protected]> > > > AuthorDate: Wed Jun 29 16:48:22 2011 -0700 > > > Committer: Greg Kroah-Hartman <[email protected]> > > > CommitDate: Tue Jul 5 09:58:57 2011 -0700 > > > > > > staging: brcm80211: fix for reported log spam problem > > > > > > 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 > > > > Please consider adding this patch to -stable (3.0 only). Judging from > > the feedback I've received so far, brcmsmac is very noisy without it. > > It doesn't apply to the 3.0 kernel tree, care to provide a backported > version that I could use?
Trivial backport below: $ git show 37c962d195005d009e130e65a9e55960996c3cab | sed s/mac80211_if\\.c/wl_mac80211\\.c/ >From 37c962d195005d009e130e65a9e55960996c3cab Mon Sep 17 00:00:00 2001 From: Roland Vossen <[email protected]> Date: Wed, 29 Jun 2011 16:48:22 -0700 Subject: [PATCH] staging: brcm80211: fix for reported log spam problem 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 <[email protected]> Signed-off-by: Roland Vossen <[email protected]> Reviewed-by: Arend van Spriel <[email protected]> Reviewed-by: Franky Lin <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Stefan Lippers-Hollmann <[email protected]> --- Trivial backport s/mac80211_if\\.c/wl_mac80211\\.c/ to 3.0-stable drivers/staging/brcm80211/brcmsmac/wl_mac80211.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/drivers/staging/brcm80211/brcmsmac/wl_mac80211.c b/drivers/staging/brcm80211/brcmsmac/mac80211_if.c --- 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; } -- 1.7.5.4 _______________________________________________ stable mailing list [email protected] http://linux.kernel.org/mailman/listinfo/stable
