From owner-cvs-src-old@FreeBSD.ORG Thu Jan 8 17:22:02 2009 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 2E3351065A11 for ; Thu, 8 Jan 2009 17:22:02 +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 171838FC20 for ; Thu, 8 Jan 2009 17:22:02 +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 n08HM1UH054869 for ; Thu, 8 Jan 2009 17:22:01 GMT (envelope-from sam@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n08HM1Wv054868 for cvs-src-old@freebsd.org; Thu, 8 Jan 2009 17:22:01 GMT (envelope-from sam@repoman.freebsd.org) Message-Id: <200901081722.n08HM1Wv054868@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to sam@repoman.freebsd.org using -f From: Sam Leffler Date: Thu, 8 Jan 2009 17:12:47 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ifconfig ifconfig.8 ifieee80211.c src/sys/conf files options src/sys/dev/ath if_ath.c if_athioctl.h if_athvar.h src/sys/net80211 ieee80211.c ieee80211.h ieee80211_adhoc.c ieee80211_ddb.c ieee80211_freebsd.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, 08 Jan 2009 17:22:04 -0000 sam 2009-01-08 17:12:47 UTC FreeBSD src repository Modified files: sbin/ifconfig ifconfig.8 ifieee80211.c sys/conf files options sys/dev/ath if_ath.c if_athioctl.h if_athvar.h sys/net80211 ieee80211.c ieee80211.h ieee80211_adhoc.c ieee80211_ddb.c ieee80211_freebsd.c ieee80211_input.c ieee80211_input.h ieee80211_ioctl.c ieee80211_ioctl.h ieee80211_node.c ieee80211_node.h ieee80211_output.c ieee80211_proto.h ieee80211_scan.h ieee80211_scan_sta.c ieee80211_var.h tools/tools/ath/athdebug athdebug.c tools/tools/ath/athstats Makefile athstats.c main.c usr.sbin/wlandebug wlandebug.c Added files: sys/net80211 ieee80211_tdma.c ieee80211_tdma.h Log: SVN rev 186904 on 2009-01-08 17:12:47Z by sam TDMA support for long distance point-to-point links using ath devices: o add net80211 support for a tdma vap that is built on top of the existing adhoc-demo support o add tdma scheduling of frame transmission to the ath driver; it's conceivable other devices might be capable of this too in which case they can make use of the 802.11 protocol additions etc. o add minor bits to user tools that need to know: ifconfig to setup and configure, new statistics in athstats, and new debug mask bits While the architecture can support >2 slots in a TDMA BSS the current design is intended (and tested) for only 2 slots. Sponsored by: Intel Revision Changes Path 1.157 +61 -1 src/sbin/ifconfig/ifconfig.8 1.65 +68 -3 src/sbin/ifconfig/ifieee80211.c 1.1363 +1 -0 src/sys/conf/files 1.654 +10 -0 src/sys/conf/options 1.224 +695 -45 src/sys/dev/ath/if_ath.c 1.21 +8 -2 src/sys/dev/ath/if_athioctl.h 1.77 +31 -3 src/sys/dev/ath/if_athvar.h 1.59 +16 -1 src/sys/net80211/ieee80211.c 1.24 +23 -1 src/sys/net80211/ieee80211.h 1.8 +26 -1 src/sys/net80211/ieee80211_adhoc.c 1.18 +2 -2 src/sys/net80211/ieee80211_ddb.c 1.25 +11 -1 src/sys/net80211/ieee80211_freebsd.c 1.123 +5 -1 src/sys/net80211/ieee80211_input.c 1.2 +7 -1 src/sys/net80211/ieee80211_input.h 1.71 +20 -1 src/sys/net80211/ieee80211_ioctl.c 1.31 +9 -2 src/sys/net80211/ieee80211_ioctl.h 1.117 +15 -1 src/sys/net80211/ieee80211_node.c 1.43 +2 -1 src/sys/net80211/ieee80211_node.h 1.73 +24 -2 src/sys/net80211/ieee80211_output.c 1.34 +3 -1 src/sys/net80211/ieee80211_proto.h 1.5 +2 -1 src/sys/net80211/ieee80211_scan.h 1.19 +65 -1 src/sys/net80211/ieee80211_scan_sta.c 1.1 +715 -0 src/sys/net80211/ieee80211_tdma.c (new) 1.1 +66 -0 src/sys/net80211/ieee80211_tdma.h (new) 1.67 +13 -2 src/sys/net80211/ieee80211_var.h 1.6 +3 -1 src/tools/tools/ath/athdebug/athdebug.c 1.8 +1 -0 src/tools/tools/ath/athstats/Makefile 1.10 +13 -2 src/tools/tools/ath/athstats/athstats.c 1.5 +4 -1 src/tools/tools/ath/athstats/main.c 1.10 +3 -3 src/usr.sbin/wlandebug/wlandebug.c