From owner-cvs-src-old@FreeBSD.ORG Thu Oct 30 16:22:09 2008 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBE411065670 for ; Thu, 30 Oct 2008 16:22:09 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 387178FC28 for ; Thu, 30 Oct 2008 16:22:09 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id m9UGM9U0058084 for ; Thu, 30 Oct 2008 16:22:09 GMT (envelope-from sam@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id m9UGM9TW058083 for cvs-src-old@freebsd.org; Thu, 30 Oct 2008 16:22:09 GMT (envelope-from sam@repoman.freebsd.org) Message-Id: <200810301622.m9UGM9TW058083@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to sam@repoman.freebsd.org using -f From: Sam Leffler Date: Thu, 30 Oct 2008 16:22:04 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ath if_ath.c src/sys/net80211 ieee80211_adhoc.c ieee80211_hostap.c ieee80211_sta.c ieee80211_wds.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Oct 2008 16:22:09 -0000 sam 2008-10-30 16:22:04 UTC FreeBSD src repository Modified files: sys/dev/ath if_ath.c sys/net80211 ieee80211_adhoc.c ieee80211_hostap.c ieee80211_sta.c ieee80211_wds.c Log: SVN rev 184480 on 2008-10-30 16:22:04Z by sam Fix checks for fast frames negotiation. ni_ath_flags holds the capabilities reported by the ap. These need to be cross-checked against the local configuration in the vap. Previously we were only checking the ap capabilities which meant that if an ap reported it was ff-capable but we were not setup to use them we'd try to do ff aggregation and drop the frame. There are a number of problems to be fixed here but applying this fix immediately as the problem causes all traffic to stop (and has not workaround). Reported by: Ashish Shukla Revision Changes Path 1.215 +1 -1 src/sys/dev/ath/if_ath.c 1.7 +1 -1 src/sys/net80211/ieee80211_adhoc.c 1.9 +1 -1 src/sys/net80211/ieee80211_hostap.c 1.11 +1 -1 src/sys/net80211/ieee80211_sta.c 1.4 +1 -1 src/sys/net80211/ieee80211_wds.c