[PATCH] ieee80211: Crypto cleanup

2006-03-31 Thread Jouni Malinen
Remove Host AP and Prism2 references from IEEE 802.11 crypto code. Clean up coding style and some comments. Replace couple of kmalloc+memset with kzalloc. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/include/net/ieee80211_crypt.h

Re: [SOFTMAC] Reduce default rate to 11Mbps.

2006-03-24 Thread Jouni Malinen
. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [SOFTMAC] Reduce scan dwell time

2006-03-24 Thread Jouni Malinen
is not present, I would assume that the drivers would do whatever they want and in many cases I would expect this to be active scan. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL

Re: [patch] net/ieee80211: report hidden ESSIDs as zero-length, nothidden

2006-03-24 Thread Jouni Malinen
was used to probe for specific SSID(s). If this information is not available, reporting an empty SSID sounds like a good policy. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL

Re: [patch] net/ieee80211: report hidden ESSIDs as zero-length, not hidden

2006-03-24 Thread Jouni Malinen
IEs and interacting with roaming and association. Doing this also has the advantage of being able to remove all scan and network collection logistics out of the kernel and into user space. Agreed. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from

Re: [SOFTMAC] Reduce scan dwell time

2006-03-24 Thread Jouni Malinen
been modified to do something else. Have you actually observed that FullMAC drivers are using passive scanning (i.e., used a wireless sniffer to see what they are doing)? Most drivers I've looked at at this level are sending out probe request frames.. -- Jouni Malinen

Re: [patch] net/ieee80211: report hidden ESSIDs as zero-length, not

2006-03-24 Thread Jouni Malinen
for WPA supplicant and fetching them from scan results is one convenient mechanism. In other words, proper WPA/WPA2 validation of WPA/RSN IEs requires that the Beacon/ProbeResp IEs are available for the current AP. -- Jouni MalinenPGP id EFC895FA

Re: [patch] net/ieee80211: report hidden ESSIDs as zero-length,not hidden

2006-03-24 Thread Jouni Malinen
for the cases where Beacon frame used an empty SSID (or had another SSID in case of multi-SSID). In case scanning is moved to user space, this process would happen in an user space application instead. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list

[PATCH 0/2] Host AP driver update

2006-03-24 Thread Jouni Malinen
Please apply following two patches to Host AP driver in wireless-2.6. The second patch (Fix EAPOL frame encryption) is a trivial bug fix for a somewhat unfortunate bug and it could be a good candidate for a 2.6.16.x stable release ([EMAIL PROTECTED] cc'ed). -- Jouni Malinen

[PATCH 2/2] hostap: Fix EAPOL frame encryption

2006-03-24 Thread Jouni Malinen
-authentication. http://hostap.epitest.fi/bugz/show_bug.cgi?id=126 Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: linux-2.6.16/drivers/net/wireless/hostap/hostap_80211_tx.c === --- linux-2.6.16.orig/drivers/net/wireless/hostap

[PATCH 1/2] hostap: Make hostap_tx_encrypt() static

2006-03-24 Thread Jouni Malinen
hostap_tx_encrypt() is used only inside hostap_80211_tx.c and there are no plans to use it elsewhere in the future either, so let's make it static. As a bonus, this should silence Coverity scanner from complaining about bogus FORWARD_NULL case (CID: 274). Signed-off-by: Jouni Malinen [EMAIL

[PATCH 1/6] hostap: Fix hw reset after CMDCODE_ACCESS_WRITE timeout

2006-03-19 Thread Jouni Malinen
From: Adrian Bunk [EMAIL PROTECTED] The Coverity checker (CID: 59) noted that the call to prism2_hw_reset() was dead code. Move prism2_hw_reset() call to a place where it is actually executed. Signed-off-by: Adrian Bunk [EMAIL PROTECTED] Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index

[PATCH 2/6] hostap: Fix ap_add_sta() return value verification

2006-03-19 Thread Jouni Malinen
; memset(sta-supported_rates, 0, sizeof(sta-supported_rates)); -- -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http

[PATCH 0/6] Host AP update (fixes for issues found by Coverity)

2006-03-19 Thread Jouni Malinen
differences. Please apply to the appropriate branch(es). -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo

[PATCH 3/6] hostap: Fix double free in prism2_config() error path

2006-03-19 Thread Jouni Malinen
From: Eugene Teo [EMAIL PROTECTED] The Coverity checker (CID: 930) spotted this double free on error path (allocation failure). Do not free these here since generic error path will take care of this. Signed-off-by: Eugene Teo [EMAIL PROTECTED] Signed-off-by: Jouni Malinen [EMAIL PROTECTED

[PATCH 4/6] hostap: Fix unlikely read overrun in CIS parsing

2006-03-19 Thread Jouni Malinen
The Coverity checker (CID: 452, 453, 454, 455, 456) spotted this unlikely read overrun of CIS buffer. Abort if CISTPL_CONFIG or CISTPL_MANFID would not fit in buffer. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/drivers/net/wireless/hostap/hostap_plx.c

[PATCH 5/6] hostap: Remove dead code (duplicated idx != 0)

2006-03-19 Thread Jouni Malinen
The Coverity checker (CID: 58) spotted this duplicated idx != 0 validation for unicast keys in prism2_ioctl_siwencodeext(). Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/drivers/net/wireless/hostap/hostap_ioctl.c

[PATCH 6/6] hostap: Fix memory leak on PCI probe error path

2006-03-19 Thread Jouni Malinen
The Coverity checker (CID: 659, 660) spotted this resource leak on PCI probe error path. Free private data structure if pci_enable_device() fails. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/drivers/net/wireless/hostap/hostap_pci.c

Re: [RFC/PATCH 6/13] d80211: remove obsolete stuff

2006-03-16 Thread Jouni Malinen
On Thu, Mar 16, 2006 at 05:45:48PM +0100, Jiri Benc wrote: On Wed, 15 Mar 2006 16:36:16 -0800, Jouni Malinen wrote: See the patch below. Is it viable? I'll test this with our low-level driver. This and similar change for ieee80211_get_buffered_bc() add more requirements for the low-level

Re: [RFC/PATCH 3/13] d80211: non-shared interface types

2006-03-15 Thread Jouni Malinen
engineered implementation clean as far as use of proprietary information is concerned. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http

Re: [RFC/PATCH 1/13] d80211: allow WDS remote to by set by WE

2006-03-15 Thread Jouni Malinen
info (00:11:22:33:44:55 was not added in /proc/net/ieee80211/wlan0/sta directory). Did I understand something incorrectly here? -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message

Re: [RFC/PATCH 3/13] d80211: non-shared interface types

2006-03-15 Thread Jouni Malinen
On Wed, Mar 15, 2006 at 06:47:40PM +0100, Jiri Benc wrote: On Wed, 15 Mar 2006 09:40:52 -0800, Jouni Malinen wrote: This breaks bcm43xx-d80211 build. Do you happen to have a patch to fix it? Yes, I do. Sorry for not posting it. This is a first part; it's just ugly and quick (but working

Re: [RFC/PATCH 3/13] d80211: non-shared interface types

2006-03-15 Thread Jouni Malinen
On Wed, Mar 15, 2006 at 06:59:53PM +0100, Jiri Benc wrote: On Wed, 15 Mar 2006 09:40:52 -0800, Jouni Malinen wrote: The same issue showed up with our low-level driver. How was the low-level driver supposed to get this information with this change? From struct ieee80211_if_conf

Re: [RFC/PATCH 1/13] d80211: allow WDS remote to by set by WE

2006-03-15 Thread Jouni Malinen
On Wed, Mar 15, 2006 at 07:24:05PM +0100, Jiri Benc wrote: On Wed, 15 Mar 2006 09:52:26 -0800, Jouni Malinen wrote: This sounds good, but I was unable to get this working. I created a WDS link with initial peer address 00:01:02:03:04:05. This added the netdev and STA entry correctly

Re: [RFC/PATCH 6/13] d80211: remove obsolete stuff

2006-03-15 Thread Jouni Malinen
added for the low-level code as far as virtual interfaces are concerned. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http

Re: [RFC/PATCH 6/13] d80211: remove obsolete stuff

2006-03-15 Thread Jouni Malinen
convenient. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [2.6 patch] hostap_{pci,plx}.c: fix memory leaks

2006-03-14 Thread Jouni Malinen
other fixes in a patch set, too. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [RFC/PATCH 6/13] d80211: remove obsolete stuff

2006-03-06 Thread Jouni Malinen
On Mon, Mar 06, 2006 at 08:07:26PM +0100, Jiri Benc wrote: On Mon, 6 Mar 2006 10:49:46 -0800, Jouni Malinen wrote: The reason for this optimization was in even high-end CPUs starting to run out of resources when running one radio with 2007 virtual STAs, Yes, I'm aware of that. But I'm

Re: [RFC/PATCH 7/13] d80211: remove adm_status

2006-03-06 Thread Jouni Malinen
On Mon, Mar 06, 2006 at 02:25:52PM -0800, Jean Tourrilhes wrote: Jouni Malinen wrote : This is used to implement radio on/off without having to change other parts of the configuration (e.g., set interfaces down). The airo driver use 'txpower' for that. txpower has a 'off' option

[PATCH wireless-2.6 0/2] d80211: Devicescape 802.11 update

2006-03-03 Thread Jouni Malinen
Here's couple of patches to the Devicescape 802.11 implementation. Please consider applying to the dscape branch of wireless-2.6 tree. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body

[PATCH wireless-2.6 2/2] d80211: Replace local AES implementation with Crypto API

2006-03-03 Thread Jouni Malinen
Replace local AES implementation (net/d80211/aes.c) with calls to Crypto API. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/net/d80211/aes.c === --- wireless-2.6.orig/net/d80211/aes.c +++ /dev/null @@ -1,564

[PATCH wireless-2.6 0/5] d80211: Devicescape 802.11 update

2006-02-17 Thread Jouni Malinen
Here's couple of patches to the Devicescape 802.11 implementation. Please consider applying to the dscape branch of wireless-2.6 tree. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body

[PATCH wireless-2.6 2/5] d80211: Update rx.skb after RX handler calls

2006-02-17 Thread Jouni Malinen
-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/net/d80211/ieee80211.c === --- wireless-2.6.orig/net/d80211/ieee80211.c +++ wireless-2.6/net/d80211/ieee80211.c @@ -3325,6 +3325,7 @@ void __ieee80211_rx(struct net_device *d

[PATCH wireless-2.6 1/5] d80211: Correct spelling for Devicescape

2006-02-17 Thread Jouni Malinen
's' is not capitalized in Devicescape. Let's try to fix these cases before the incorrect spelling is copied into more places. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/drivers/net/wireless/Kconfig

[PATCH wireless-2.6 3/5] d80211: Remove EXPORT_SYMTAB define

2006-02-17 Thread Jouni Malinen
No need to define EXPORT_SYMTAB separatel here when this is built inside the current kernel tree. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/net/d80211/ieee80211.c === --- wireless-2.6.orig/net/d80211

[PATCH wireless-2.6 4/5] d80211: Add radar detection parameters

2006-02-17 Thread Jouni Malinen
Add parameters for radar detection that were previously left as a to-do item. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/include/net/d80211.h === --- wireless-2.6.orig/include/net/d80211.h +++ wireless-2.6

[PATCH wireless-2.6 5/5] d80211: Whitespace cleanup - no functional changes

2006-02-17 Thread Jouni Malinen
Let's clean up some of the whitespace use (extra lines, trailing whitespace, incorrect indentation). Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/net/d80211/ieee80211.c === --- wireless-2.6.orig/net/d80211

Re: [wireless-2.6] d80211/ieee80211 symbol clash

2006-02-02 Thread Jouni Malinen
at the same time is something that I don't see as a very strong requirement at the moment. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info

Re: [wireless-2.6] d80211/ieee80211 symbol clash

2006-02-02 Thread Jouni Malinen
functions to ieee80211_rcv, for example. This would certainly be easier to handle than full renaming of all function names in net/d80211. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body

Re: [wireless-2.6] d80211/ieee80211 symbol clash

2006-02-02 Thread Jouni Malinen
. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [patch] drivers/net/wireless: correct reported ssid lengths

2006-01-30 Thread Jouni Malinen
On Mon, Jan 30, 2006 at 10:13:16AM -0800, Jean Tourrilhes wrote: On Fri, Jan 27, 2006 at 05:01:44PM -0800, Jouni Malinen wrote: It is spelled very clearly on my web site : --- # The HostAP driver is the reference implementation

Re: [patch] drivers/net/wireless: correct reported ssid lengths

2006-01-28 Thread Jouni Malinen
On Sat, Jan 28, 2006 at 11:07:10AM -0500, Dan Williams wrote: On Fri, 2006-01-27 at 17:01 -0800, Jouni Malinen wrote: On Thu, Jan 12, 2006 at 03:00:58PM -0500, Dan Williams wrote: 1) The patch preserves the null-termination of the ESSID, it just doesn't return the expanded length

[PATCH d80211]: Add support for WE-18

2006-01-27 Thread Jouni Malinen
(or whatever branch is appropriate for this kind of change) of the wireless-2.6 tree. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: wireless-2.6/net/d80211/ieee80211.c === --- wireless-2.6.orig/net/d80211/ieee80211.c +++ wireless-2.6

Re: [patch] drivers/net/wireless: correct reported ssid lengths

2006-01-27 Thread Jouni Malinen
started using real SSID length, but was changed in September 2004 to use len+1 after Jean explained what the SIOCSIWESSID was designed to do.. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body

Re: [ANNOUNCE] RT2x00 ieee80211 stack switch

2006-01-27 Thread Jouni Malinen
or so. This is a very old interface for a customer. I don't think it was ever really used at Devicescape and I certainly don't see much need for it in the current version. In other words, it could just be removed. -- Jouni MalinenPGP id EFC895FA

Re: State of the Union: Wireless / 802.11 master device

2006-01-18 Thread Jouni Malinen
for scheduling and transmission. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: State of the Union: Wireless / 802.11 master device

2006-01-17 Thread Jouni Malinen
On Tue, Jan 17, 2006 at 01:05:16PM +0100, Jiri Benc wrote: On Mon, 16 Jan 2006 19:07:51 -0800, Jouni Malinen wrote: Actually, there is a use for the master device. It can be used to monitor what is going on over the radio from all virtual APs/STAs, e.g., by running Ethereal on it. You

Re: State of the Union: Wireless / 802.11 master device

2006-01-17 Thread Jouni Malinen
On Tue, Jan 17, 2006 at 02:55:31PM -0500, jamal wrote: On Tue, 2006-17-01 at 11:42 -0800, Jouni Malinen wrote: so if i understood correctly: You have a master netdevice which underneath it has child netdevices? I'm not sure what exactly child netdev means, but it sounds like something

Re: State of the Union: Wireless

2006-01-16 Thread Jouni Malinen
Ethereal on it. Isn't VLANs implemented in the same way with the netdev added by the driver (master device). The low-level wireless driver could do the same thing and then user space tools can add whatever virtual interfaces are needed. -- Jouni MalinenPGP

Re: [PATCH] hostap: allow flashing firmware

2006-01-04 Thread Jouni Malinen
(volatile) download can be used to upgrade the firmware without having to modify the flash contents. This is also what the current Windows drivers are doing. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev

Re: Broadcom 43xx first results

2005-12-06 Thread Jouni Malinen
AP when merging in the version that ipw2x00 was using needs more attention when deciding what kind of design would allow all drivers to work with shared IEEE 802.11 stack. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line

Re: Issue 0 WAS (Re: Oustanding issues WAS(IRe: Consensus? WAS(RFC 2863)

2005-11-23 Thread Jouni Malinen
. In that way, supplicant doesn't even need to know about these associations being done through the same radio and it can just handle them as it would take care of multiple radios. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line

Re: [2.6 patch] rename hostap.c to hostap_main.c

2005-11-05 Thread Jouni Malinen
). -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 2/2] [NETFILTER] remove bogus hand-coded htonll()

2005-09-03 Thread Jouni Malinen
like swap-8-bytes-unconditionally than doing this based on host byte order.. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http

Re: ifplugd (was: Re: ieee80211 patches)

2005-09-02 Thread Jouni Malinen
to be set UP before authentication, though. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo

Re: ieee80211 patches

2005-09-01 Thread Jouni Malinen
to know about 802.11 details from user space. -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH ieee80211-wifi 3/5] ieee80211: Fix debug comments ipw-ieee80211

2005-08-28 Thread Jouni Malinen
Debug variables and procfs dir should be ieee80211, not ipw. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/include/net/ieee80211.h === --- netdev-2.6.orig/include/net/ieee80211.h +++ netdev-2.6/include/net

[PATCH ieee80211-wifi 1/5] ieee80211: Remove WIRELESS_EXT 17 support

2005-08-28 Thread Jouni Malinen
No need to maintain support for WIRELESS_EXT 17 since this kernel tree is already using WIRELESS_EXT 18. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/include/net/ieee80211.h === --- netdev-2.6.orig/include/net

[PATCH ieee80211-wifi 4/5] hostap: Update version

2005-08-28 Thread Jouni Malinen
Version 0.4.4 of Host AP driver was released, so let's sync the version number in netdev-2.6 tree. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap_config.h === --- netdev-2.6.orig

[PATCH ieee80211-wifi 2/5] ieee80211: Remove EAPOL debug

2005-08-28 Thread Jouni Malinen
IEEE 802.11 code has no business touching payloads of EAPOL frames. There are some EAPOL structures defined for debugging and these were confusingly called EAP types which they are not. Let's just remove these before someone else starts using them in the kernel. Signed-off-by: Jouni Malinen

[PATCH ieee80211-wifi 5/5] hostap: Fix hash values for product strings

2005-08-28 Thread Jouni Malinen
hostap_cs: 0.4.1-kernel (Jouni Malinen [EMAIL PROTECTED]) pcmcia: hostap_cs: invalid hash for product string BUFFALO: is 0x1b01a57b, should be 0x2decece3 pcmcia: see Documentation/pcmcia/devicetable.txt for details pcmcia: hostap_cs: invalid hash for product string WLI-CF-S11G: is 0xefd5102a

Re: [PATCH] hostap: Fix null pointer dereference in prism2_pccard_card_present()

2005-08-28 Thread Jouni Malinen
that local-hw_priv is always set (and it should have been). Fix this by setting local-hw_priv before registering the interrupt handler. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap_cs.c

[PATCH ieee80211-wifi 3/9] hostap: Use void *hw_priv instead of #ifdef in local data

2005-08-14 Thread Jouni Malinen
without having to compile and link the same code separately for each one. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap_cs.c === --- netdev-2.6.orig/drivers/net/wireless/hostap

[PATCH ieee80211-wifi 2/9] hostap: Remove experimental PCI bus master/DMA code

2005-08-14 Thread Jouni Malinen
to verify whether it works or not. Getting this out makes it easier to maintain the driver and allows some cleanups that have been partly postponed because of this experimental bus master/DMA code. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap_wlan.h

[PATCH ieee80211-wifi 0/9] hostap/ieee80211: hostap update and small changes to ieee80211

2005-08-14 Thread Jouni Malinen
to ieee80211-devel mailing list. The changes here are still mainly for hostap, but there are couple of small changes to net/ieee80211.h and the renamed define affects net/ieee80211 and ipw2200. Please let me know, if this is not suitable for the ieee80211-devel list. -- Jouni Malinen

[PATCH ieee80211-wifi 7/9] ieee80211: Fix frame control pver mask

2005-08-14 Thread Jouni Malinen
-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/include/net/ieee80211.h === --- netdev-2.6.orig/include/net/ieee80211.h +++ netdev-2.6/include/net/ieee80211.h @@ -103,7 +103,7 @@ struct eapol { #defineMAX_FRAG_THRESHOLD

[PATCH ieee80211-wifi 5/9] hostap: Replace hostap_ieee80211_hdr with ieee80211_hdr

2005-08-14 Thread Jouni Malinen
Replace hostap-specific struct hostap_ieee80211_hdr with struct ieee80211_hdr from net/ieee80211.h. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap_80211.h === --- netdev-2.6.orig

[PATCH ieee80211-wifi 4/9] hostap: Remove extra defines

2005-08-14 Thread Jouni Malinen
Remove unused defines that are already available from generic kernel header files. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap_wlan.h === --- netdev-2.6.orig/drivers/net

[PATCH ieee80211-wifi 2/3] hostap: Capability field is called ESS, not BSS

2005-08-14 Thread Jouni Malinen
Remove backwards compatibility define for WLAN_CAPABILITY_ESS now that net/ieee80211.h defines this. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap_common.h === --- netdev-2.6

[patch 02/12] hostap update

2005-07-30 Thread Jouni Malinen
From: Adrian Bunk [EMAIL PROTECTED] EXPORT_SYMTAB does nothing. There's no need to define something if it doesn't have any effect. Signed-off-by: Adrian Bunk [EMAIL PROTECTED] Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap.c

[patch 00/12] hostap update

2005-07-30 Thread Jouni Malinen
This set of patches updates Host AP driver in the ieee80211-wifi branch of the netdev-2.6 git tree with changes from my CVS repository and from additional contributed patches from the past couple of months. Please apply to the suitable branch(es) in netdev-2.6. -- Jouni Malinen

[patch 06/12] hostap update

2005-07-30 Thread Jouni Malinen
Add MODULE_VERSION information for the Host AP kernel modules and update the version string to indicate which version of the external Host AP driver is included in the kernel tree. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap.c

[patch 07/12] hostap update

2005-07-30 Thread Jouni Malinen
Added support for setting channel mask for scan requests ('iwpriv wlan0 scan_channels 0x00ff' masks scans to use channels 1-8). Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap_common.h

[patch 10/12] hostap update

2005-07-30 Thread Jouni Malinen
From: Brandon Enochs [EMAIL PROTECTED] line 129 of hostap_80211_rx.c should read: LWNG_SETVAL(mactime, 2, 0, 4, rx_stats-mac_time); not: LWNG_SETVAL(mactime, 2, 0, 0, rx_stats-mac_time); The length field is incorrect. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev

[patch 08/12] hostap update

2005-07-30 Thread Jouni Malinen
Cleaned up scan result processing by converting struct hfa384x_scan_result into struct hfa384x_hostscan_result. This removes special cases from result processing since the results are only used in one, hostscan, format. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net

Re: [-mm patch] include/net/ieee80211.h must #include linux/wireless.h

2005-07-30 Thread Jouni Malinen
.. Is there valid need to keep this header file compatible with older kernel versions? -- Jouni MalinenPGP id EFC895FA - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info

[PATCH ieee80211-wifi 1/2] hostap: Start using net/ieee80211.h

2005-07-30 Thread Jouni Malinen
sinc net/ieee80211.h is using incompatible definitions. This will be resolved in the future by updating Host AP to use the versions that do not shift type/stype. Signed-off-by: Jouni Malinen [EMAIL PROTECTED] Index: netdev-2.6/drivers/net/wireless/hostap/hostap.c

<    1   2