The following changes since commit 1c2e02750b992703a8a18634e08b04353face243: Linus Torvalds: Merge git://git.kernel.org/.../perex/alsa
are found in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git upstream Denis Vlasenko: ieee80211_rx_any: filter out packets, call ieee80211_rx or ieee80211_rx_mgt Johannes Berg: wireless: Add softmac layer to the kernel make softmac depend on IEEE80211 and EXPERIMENTAL softmac: fix some sparse warnings softmac: fix Makefiles softmac: convert to use global workqueue softmac: correctly use netif_carrier_{on,off} softmac: try to reassociate when being disassociated from the AP softmac: add fixme for disassoc softmac: select "best" network based on rssi softmac: check if disassociation is for us before processing it softmac: scan at least once before selecting a network by essid softmac: properly check return value of ieee80211softmac_alloc_mgt softmac: some comment stuff softmac: add copyright and license headers softmac: add MODULE_DESCRIPTION and MODULE_AUTHORs softmac: move EXPORT_SYMBOL_GPL right after functions update copyright in softmac trivial fixes to softmac softmac: update deauth handler to quiet warning softmac: add reassociation code softmac: remove dead code Larry Finger: Fix softmac scan include/net/ieee80211softmac.h | 292 ++++++++++++++ include/net/ieee80211softmac_wx.h | 94 +++++ net/ieee80211/Kconfig | 1 net/ieee80211/Makefile | 1 net/ieee80211/ieee80211_rx.c | 74 ++++ net/ieee80211/softmac/Kconfig | 10 net/ieee80211/softmac/Makefile | 9 net/ieee80211/softmac/ieee80211softmac_assoc.c | 403 ++++++++++++++++++++ net/ieee80211/softmac/ieee80211softmac_auth.c | 376 ++++++++++++++++++ net/ieee80211/softmac/ieee80211softmac_event.c | 159 ++++++++ net/ieee80211/softmac/ieee80211softmac_io.c | 474 +++++++++++++++++++++++ net/ieee80211/softmac/ieee80211softmac_module.c | 457 ++++++++++++++++++++++ net/ieee80211/softmac/ieee80211softmac_priv.h | 239 ++++++++++++ net/ieee80211/softmac/ieee80211softmac_scan.c | 237 ++++++++++++ net/ieee80211/softmac/ieee80211softmac_wx.c | 412 ++++++++++++++++++++ 15 files changed, 3238 insertions(+), 0 deletions(-) create mode 100644 include/net/ieee80211softmac.h create mode 100644 include/net/ieee80211softmac_wx.h create mode 100644 net/ieee80211/softmac/Kconfig create mode 100644 net/ieee80211/softmac/Makefile create mode 100644 net/ieee80211/softmac/ieee80211softmac_assoc.c create mode 100644 net/ieee80211/softmac/ieee80211softmac_auth.c create mode 100644 net/ieee80211/softmac/ieee80211softmac_event.c create mode 100644 net/ieee80211/softmac/ieee80211softmac_io.c create mode 100644 net/ieee80211/softmac/ieee80211softmac_module.c create mode 100644 net/ieee80211/softmac/ieee80211softmac_priv.h create mode 100644 net/ieee80211/softmac/ieee80211softmac_scan.c create mode 100644 net/ieee80211/softmac/ieee80211softmac_wx.c Compressed diff attached... -- John W. Linville [EMAIL PROTECTED]
diff-upstream.bz2
Description: BZip2 compressed data