Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 8 Jan 2009 17:12:47 +0000 (UTC)
From:      Sam Leffler <sam@FreeBSD.org>
To:        cvs-src-old@freebsd.org
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 ...
Message-ID:  <200901081722.n08HM1Wv054868@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901081722.n08HM1Wv054868>