diff options
author | Jiri Benc <jbenc@suse.cz> | 2006-10-18 19:34:40 +0200 |
---|---|---|
committer | John W. Linville <linville@laptop.(none)> | 2006-10-31 22:15:38 -0500 |
commit | aec41a0d02342fc9e3b6bb278eae50fa29f04d1f (patch) | |
tree | 93449a57c4e1d92f85dd3b79da79f00715798499 /net/ieee80211/ieee80211_rx.c | |
parent | 16b7b2ac0148e839da86af8747b6fa4aad43a9b7 (diff) | |
download | linux-3.10-aec41a0d02342fc9e3b6bb278eae50fa29f04d1f.tar.gz linux-3.10-aec41a0d02342fc9e3b6bb278eae50fa29f04d1f.tar.bz2 linux-3.10-aec41a0d02342fc9e3b6bb278eae50fa29f04d1f.zip |
[PATCH] ieee80211: don't flood log with errors
The "ieee80211: Workaround malformed 802.11 frames from AP" patch (see
http://kernel.org/git/?p=linux/kernel/git/linville/wireless-2.6.git;a=commit;h=f09fc44d8c25f22c4d985bb93857338ed02feac6 )
fixes the problem with some buggy APs but also converts debug message into
an error one. This floods the log with errors when you are near such AP (you
get a message for every beacon). This patch reverts the error message back
to the debug one.
Signed-off-by: Jiri Benc <jbenc@suse.cz>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/ieee80211/ieee80211_rx.c')
-rw-r--r-- | net/ieee80211/ieee80211_rx.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/ieee80211/ieee80211_rx.c b/net/ieee80211/ieee80211_rx.c index 770704183a1..2759312a420 100644 --- a/net/ieee80211/ieee80211_rx.c +++ b/net/ieee80211/ieee80211_rx.c @@ -1078,12 +1078,12 @@ static int ieee80211_parse_info_param(struct ieee80211_info_element while (length >= sizeof(*info_element)) { if (sizeof(*info_element) + info_element->len > length) { - IEEE80211_ERROR("Info elem: parse failed: " - "info_element->len + 2 > left : " - "info_element->len+2=%zd left=%d, id=%d.\n", - info_element->len + - sizeof(*info_element), - length, info_element->id); + IEEE80211_DEBUG_MGMT("Info elem: parse failed: " + "info_element->len + 2 > left : " + "info_element->len+2=%zd left=%d, id=%d.\n", + info_element->len + + sizeof(*info_element), + length, info_element->id); /* We stop processing but don't return an error here * because some misbehaviour APs break this rule. ie. * Orinoco AP1000. */ |