From owner-cvs-all@FreeBSD.ORG Sun Sep 21 23:25:50 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 979EE106566C; Sun, 21 Sep 2008 23:25:50 +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 841FF8FC08; Sun, 21 Sep 2008 23:25:50 +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 m8LNPoiU081864; Sun, 21 Sep 2008 23:25:50 GMT (envelope-from sam@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id m8LNPoqD081859; Sun, 21 Sep 2008 23:25:50 GMT (envelope-from sam@repoman.freebsd.org) Message-Id: <200809212325.m8LNPoqD081859@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to sam@repoman.freebsd.org using -f From: Sam Leffler Date: Sun, 21 Sep 2008 23:25:33 +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_node.c ieee80211_node.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: Sun, 21 Sep 2008 23:25:50 -0000 sam 2008-09-21 23:25:33 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_node.c ieee80211_node.h Log: SVN rev 183251 on 2008-09-21 23:25:33Z by sam Add current transmit parameters for fixed rate handling so drivers don't duplicate this. These are setup according to the role of the node--the bss node for ap and adhoc modes need to use parameters that are the least common denomimator of all nodes in the bss; otherwise we are setting up params for a station joining a bss and we select those according to the capabilities of the station. This stuff needs more work as we do extra work due to having setup in common code paths shared by nodes using both roles. Revision Changes Path 1.101 +45 -0 src/sys/net80211/ieee80211_node.c 1.35 +1 -0 src/sys/net80211/ieee80211_node.h