From owner-cvs-all@FreeBSD.ORG Mon Jan 8 17:24:52 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 623A916A403; Mon, 8 Jan 2007 17:24:52 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 53C4A13C465; Mon, 8 Jan 2007 17:24:52 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l08HOqIj040528; Mon, 8 Jan 2007 17:24:52 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l08HOqfB040527; Mon, 8 Jan 2007 17:24:52 GMT (envelope-from sam) Message-Id: <200701081724.l08HOqfB040527@repoman.freebsd.org> From: Sam Leffler Date: Mon, 8 Jan 2007 17:24:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net80211 ieee80211_input.c ieee80211_node.c ieee80211_proto.c ieee80211_proto.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jan 2007 17:24:52 -0000 sam 2007-01-08 17:24:52 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_input.c ieee80211_node.c ieee80211_proto.c ieee80211_proto.h Log: Correct several issues with rate set negotiation: o add IEEE80211_F_JOIN flag to ieee80211_fix_rate to indicate a station is joining a BSS; this is used to control whether or not we over-write the basic rate bit in the calculated rate set o fix ieee80211_fix_rate to honor IEEE80211_F_DODEL when IEEE80211_F_DONEGO is not specified (e.g. when joining an ibss network) o on sta join always delete unusable rates from the negotiated rate set, this was being done only ibss networks but is also needed for 11g bss with mixed stations o on sta join delete unusable rates from the bss node's rate set, not the scan table entry's rate set o when calculating a rate set for new neighbors in an ibss caculate a negotiated rate set so drivers are not presented with rates they should not use Submitted by: Sepherosa Ziehau (w/ modifications) Obtained from: DragonFly MFC after: 1 month Revision Changes Path 1.98 +1 -0 src/sys/net80211/ieee80211_input.c 1.77 +12 -7 src/sys/net80211/ieee80211_node.c 1.33 +32 -33 src/sys/net80211/ieee80211_proto.c 1.20 +1 -0 src/sys/net80211/ieee80211_proto.h