From owner-cvs-src@FreeBSD.ORG Wed Dec 27 18:46:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E6E6416A40F; Wed, 27 Dec 2006 18:46:18 +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 D82BB13C481; Wed, 27 Dec 2006 18:46:18 +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 kBRIkIEf081087; Wed, 27 Dec 2006 18:46:18 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id kBRIkIt7081086; Wed, 27 Dec 2006 18:46:18 GMT (envelope-from sam) Message-Id: <200612271846.kBRIkIt7081086@repoman.freebsd.org> From: Sam Leffler Date: Wed, 27 Dec 2006 18:46:18 +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.h ieee80211.c ieee80211_node.c ieee80211_output.c ieee80211_proto.c ieee80211_var.h src/sys/net if_media.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 18:46:19 -0000 sam 2006-12-27 18:46:18 UTC FreeBSD src repository Modified files: sys/net80211 _ieee80211.h ieee80211.c ieee80211_node.c ieee80211_output.c ieee80211_proto.c ieee80211_var.h sys/net if_media.h Log: First cut at half/quarter-rate 11a channel support (e.g. for use in the Public Safety Band): o add channel flags to identify half/quarter-rate operation o add rate sets (need to check spec on 4Mb/s in 1/4 rate) o add if_media definitions for new rates o split net80211 channel setup out into ieee80211_chan_init o fixup ieee80211_mhz2ieee and ieee80211_ieee2mhz to understand half/quarter rate channels: note we temporarily use a nonstandard/hack numbering that avoids overlap with 2.4G channels because we don't (yet) have enough state to identify and/or map overlapping channel sets o fixup ieee80211_ifmedia_init so it can be called post attach and will recalculate the channel list and associated state; this enables changing channel-related state like the regulatory domain after attach (will be needed for 802.11d support too) o add ieee80211_get_suprates to return a reference to the supported rate set for a given channel o add 3, 4.5, and 27 MB/s tx rates to rate <-> media conversion routines o const-poison channel arg to ieee80211_chan2mode Revision Changes Path 1.37 +9 -0 src/sys/net/if_media.h 1.5 +6 -0 src/sys/net80211/_ieee80211.h 1.32 +103 -42 src/sys/net80211/ieee80211.c 1.76 +2 -3 src/sys/net80211/ieee80211_node.c 1.46 +4 -4 src/sys/net80211/ieee80211_output.c 1.32 +3 -2 src/sys/net80211/ieee80211_proto.c 1.44 +3 -1 src/sys/net80211/ieee80211_var.h