cvs commit: src/sys/net80211 ieee80211_ht.c ieee80211_ht.h
ieee80211_node.c ieee80211_node.h ieee80211_output.c
ieee80211_power.c ieee80211_proto.c ieee80211_proto.h
ieee80211_var.h src/sys/dev/ath if_ath.c src/sys/dev/ral rt2560.c ...
Sam Leffler
sam at FreeBSD.org
Mon Sep 17 12:07:24 PDT 2007
sam 2007-09-17 19:07:24 UTC
FreeBSD src repository
Modified files:
sys/net80211 ieee80211_ht.c ieee80211_ht.h
ieee80211_node.c ieee80211_node.h
ieee80211_output.c ieee80211_power.c
ieee80211_proto.c ieee80211_proto.h
ieee80211_var.h
sys/dev/ath if_ath.c
sys/dev/ral rt2560.c rt2661.c
sys/dev/usb if_rum.c if_ural.c
Log:
Update beacon handling to sync w/ vap code base:
o add driver callback to handle notification of beacon changes;
this is required for devices that manage beacon frames themselves
(devices must override the default handler which does nothing)
o move beacon update-related flags from ieee80211com to the beacon
offsets storage (or handle however a driver wants)
o expand beacon offsets structure with members needed for 11h/dfs
and appie's
o change calling convention for ieee80211_beacon_alloc and
ieee80211_beacon_update
o add overlapping bss support for 11g; requires driver to pass
beacon frames from overlapping bss up to net80211 which is not
presently done by any driver
o move HT beacon contents update to a routine in the HT code area
Reviewed by: avatar, thompsa, sephe
Approved by: re (blanket wireless)
Revision Changes Path
1.177 +13 -3 src/sys/dev/ath/if_ath.c
1.17 +13 -2 src/sys/dev/ral/rt2560.c
1.17 +1 -1 src/sys/dev/ral/rt2661.c
1.13 +1 -1 src/sys/dev/usb/if_rum.c
1.69 +1 -1 src/sys/dev/usb/if_ural.c
1.3 +33 -3 src/sys/net80211/ieee80211_ht.c
1.2 +3 -0 src/sys/net80211/ieee80211_ht.h
1.86 +87 -42 src/sys/net80211/ieee80211_node.c
1.28 +5 -0 src/sys/net80211/ieee80211_node.h
1.52 +20 -22 src/sys/net80211/ieee80211_output.c
1.2 +2 -1 src/sys/net80211/ieee80211_power.c
1.41 +7 -1 src/sys/net80211/ieee80211_proto.c
1.26 +35 -7 src/sys/net80211/ieee80211_proto.h
1.52 +15 -3 src/sys/net80211/ieee80211_var.h
More information about the cvs-all
mailing list